From e694abc9666674c293c29c6d36e11dd0e2aa9aed Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 25 Nov 2020 10:51:01 -0600 Subject: [PATCH 01/98] NFP for Space --- design/FY2021/NFP-Spaces.md | 234 ++++++++++++++++++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 design/FY2021/NFP-Spaces.md diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md new file mode 100644 index 00000000000..b8b13e8c4ba --- /dev/null +++ b/design/FY2021/NFP-Spaces.md @@ -0,0 +1,234 @@ +# Adding "Spaces" to EnergyPlus # + +**Michael J. Witte, GARD Analytics, Inc.** +**Jason W. DeGraw, ORNL** +**With input from many more . . .** + + - Original, November 22, 2019 + - Revised, April 1, 2020 + * Keep the current definition of Zone + * Add new objects for Space, SpaceType, CompoundSpaceType, and Enclosure + - Revised, November 25, 2020 + * Condensed and focused on final proposal somewhat agreed to back in April 2020 + * Revised to reflect simplified Construction:AirBoundary object (radiant and solar enclosures are now the same) + +## Justification for New Feature ## + +Thermal zones (HVAC zones) are often composed of a variety of spaces grouped together to be served by +a single thermostat. For example, an office building core zone may include private offices, conference rooms, restrooms +and corridors. Each of these spaces (rooms) has different internal gains and may or may not be fully enclosed by solid surfaces. +Currently, the smallest building element is a zone. This requires the user (or interface) to blend these spaces together for surfaces, +internal gains, and other specifications. The option to specify each space explicitly would greatly simplify input in data managemenent, +especially for space-based interfaces (such as OpenStudio) and for codes and standards modeling. + +There are also computing performance advantages to dividing zones into smaller enclosures for radiant exchange. + +## Overview ## + +### Current EnergyPlus model ### +EnergyPlus input currently has the following (very flat) heierarchy: + + Zone + Surfaces (references a zone name) + People, Lights, etc. (references a zone name or zone list name) + Thermostat (one per zone) + HVAC equipment (attaches to a zone) + +Zones represent an air mass (air node) that exchanges heat with surfaces, internal loads, HVAC equipment, etc. +A Zone is essentially the "atomic unit" of the building. By default a zone has a uniform air temperature, but there are room air models +that allow modeling of stratification and other non-uniform temperature effects. Thermostats and HVAC equipment are assigned per Zone. + +The internal data model adds another layer: + + Enclosure + Zone + Surfaces + People, Lights, etc. + Thermostat + HVAC equipment + Zone + Surfaces + People, Lights, etc. + Thermostat + HVAC equipment + +Enclosures are used for radiant and solar/daylighting exchange. Enclosures are primarily concerned with Surfaces, but they +are also related to internal gains (which cast radiant and visible energy into the enclosure). By default there is one Enclosure for each +Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. +Enclosures are assigned automatically based on the zones connected by an air boundary surface. + + +## New Space Object + +### Relationship assumptions ## + +If we keep the current definition of "Zone" and add the concept of +"Space" (<= Zone), then this would add a new layer to the data model: + + Zone + Thermostat + HVAC equipment + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + Space 3 + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure + Space 1 + Surfaces + Internal Gains (People, Lights, etc.) + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + + +### Definitions + + * Surface - A geometric plane which is attached to a Space. + * A Surface can be opaque, transparent, or an air boundary. + * Each Surface belongs to one Space. + + * Space - A collection of one or more Surfaces and internal gains. + * Each Space belongs to one Zone (explicitly user-assigned). + * The Spaces in a Zone are lumped together for the Zone heat balance. + * There is no heat balance at the Space level. + * Each Space belongs to one Enclosure (implicitly assigned). + + * Zone - An air mass connecting Surfaces, internal gains, and HVAC equipment for heat balance and HVAC control. + * Each Zone is comprised of one or more Spaces. + * All Surfaces and internal gains associated with the Spaces are included in the Zone. + * The Zone heat balance does not change: it has an air node (or a Room Air Model) and includes all Surfaces and + internal gains from its Spaces plus any HVAC which is attached to the Zone. + + * Enclosure - A continuous volume connecting Surfaces for radiant, solar, and daylighting exchange. + * Each Enclosure is comprised of one or more Spaces. + * There is one Enclosure for each Space unless there are air boundary surfaces + which group multiple Spaces into a single Enclosure. + * All Surfaces and internal radiant gains associated with the Spaces are included in the Enclosure. + * Enclosures only distribute radiant (thermal), solar, and visible energy to and from the Surfaces. + * There is no full heat balance at the Enclosure level. Each Enclosure only balances the radiant/solar flux on each + Surface. These fluxes then become part of the Surface inside heat balance. + +## Proposed Input Approach ## +Very minimal changes to current inputs. + + * Old Zone object becomes Space object plus some tags. + * New Zone object has a name and a list of Spaces. + * Surfaces will reference a Space instead of a Zone. + * ZoneHVAC and Thermostats remain as-is and continue to reference a Zone or ZoneList. + * New SpaceList object (equivalent to ZoneList, but for Spaces). + * Internal gains reference Space or Spacelist (instead of Zone or ZoneList). + * ZoneInfiltration and ZoneVentilation remain at the zone level. + +### Proposed objects: + + Space, !- Same fields as old Zone object plus new tags at the end + Name, + Origin, + Multiplier, + Ceiling Height, + Volume, + Floor Area, + Convection algorithms, + Part of Total Floor Area, + User-defined Tags for Space Types (for reporting purposes only at this point) + + Lighting/People/Equipment + Name, + Space or SpaceList Name, !- Replace current Zone or ZoneList Name + Schedule Name, + ... + + ZoneVentilation and ZoneInfiltration + Name, + Zone or ZoneList Name, (or should these more to the Space level and be renamed?) + ... + Part of Total Floor Area; + + Surface, + Name, + ... + Space Name, !- Replace current Zone Name + (InterZone surfaces becomes InterSpace surfaces, air boundary surfaces will connect spaces in an enclosure) + +## Data Structure Considerations ## + + * Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. + + * Proposed Surface ordering (same as current): + - All shading surfaces are first + - All air boundary surfaces are next (once PR8370 merges). + - Group by Zone + - Group by surface type within each Zone + +e.g., Zone1 contains Space1 and Space3, Zone2 contains Space2. + + Shading Surfaces + Air Boundary Surfaces + Space1-OpaqueSurface1 (begin surfaces in Zone1) + Space1-OpaqueSurface2 + Space3-OpaqueSurface1 + Space3-OpaqueSurface2 + Space1-Window1 + Space1-Window2 + Space2-OpaqueSurface1 (begin surfaces in Zone2) + Space2-OpaqueSurface2 + Space2-Window1 + + * Alternate Surface ordering: + - All shading surfaces are first + - All air boundary surfaces are next + - Group by Enclosure (because enclosure radiant exchange is more computationally intensive than zone heat balance?) + - Group by Space within each Enclosure. + - Group by surface type within each Space + - Modify heat balance Zone loops to be Space loops(?) + +e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. + + Shading Surfaces + Air Boundary Surfaces + Space1-OpaqueSurface1 (begin surfaces in Enclosure1) + Space1-OpaqueSurface2 + Space1-Window1 + Space1-Window2 + Space3-OpaqueSurface1 + Space3-OpaqueSurface2 + Space2-OpaqueSurface1 (begin surfaces in Enclosure2) + Space2-OpaqueSurface2 + Space2-Window1 + +## Options/Questions for Discussion + * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? + * Allow Zone Names to be the same as Space Names or force all names to be unique across Spaces and Zones? + * Zone-based or Enclosure-based surface grouping? + +## Testing/Validation/Data Sources ## + +There should be no substantive diffs (possibly some small diffs due to change in computational order). +For the regression tests which are one-to-one Space-To-Zone, all numeric results +should stay exactly the same, but output variable names and table headings may change. + +## Input Output Reference Documentation ## + +The I/O Reference section for Zone becomes Space with some explanatory text at the top. +The new Zone becomes a list of Spaces. + +## Outputs Description ## + +Output variables which are zone-based will remain the same. +Some space-level output variables may be added. +Table reports summarizing inputs at the space level will be added. +Table reports allocating energy at the space level *may* be added. + +## Engineering Reference ## + +Calulations won't change, so doc changes will be minimal to clarify when Space, Zone, and Enclosure. + +## Example File and Transition Changes ## + +* Convert Zone objects to Space objects and add "-Space" to the name. +* Insert new Zone objects (one for each original Zone, no name change). +* Surfaces - Change all Zone names to add "-Space" +* Internal gains - Change all Zone names to add "-Space" From 00d64cd50b11e19d67047c0911c87533a5e92353 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 11 Dec 2020 15:47:33 -0600 Subject: [PATCH 02/98] Space NFP updates --- design/FY2021/NFP-Spaces.md | 56 +++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 15 deletions(-) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index b8b13e8c4ba..82d42c7627b 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -11,6 +11,11 @@ - Revised, November 25, 2020 * Condensed and focused on final proposal somewhat agreed to back in April 2020 * Revised to reflect simplified Construction:AirBoundary object (radiant and solar enclosures are now the same) + - Revised, December 11, 2020 + * Simplify transition rules by allowing Zone and Space to share names + * Per comments, decide that load assignments like internal gains, infiltration and ventilation, should be at the Space level + * Add language to clarify concerns raised in comments + * Add daylighting and thermal comfort considerations ## Justification for New Feature ## @@ -21,9 +26,14 @@ Currently, the smallest building element is a zone. This requires the user (or i internal gains, and other specifications. The option to specify each space explicitly would greatly simplify input in data managemenent, especially for space-based interfaces (such as OpenStudio) and for codes and standards modeling. -There are also computing performance advantages to dividing zones into smaller enclosures for radiant exchange. +Other advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large +HVAC zone could be modeled as a space so that it does not pass solar or radiant to other surfaces in the larger zone. +There are also potential computing performance advantages to dividing zones into smaller enclosures for radiant exchange and solar +distribution, especially for large HVAC zones with many surfaces. ## Overview ## +As proposed, Zones remain the same entity as before. Space is added as a new layer for assembling surfaces and gains into a Zone. +HVAC connections and controls remain at the Zone level. ### Current EnergyPlus model ### EnergyPlus input currently has the following (very flat) heierarchy: @@ -53,8 +63,8 @@ The internal data model adds another layer: HVAC equipment Enclosures are used for radiant and solar/daylighting exchange. Enclosures are primarily concerned with Surfaces, but they -are also related to internal gains (which cast radiant and visible energy into the enclosure). By default there is one Enclosure for each -Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. +are also related to internal gains (which cast radiant and visible energy into the enclosure) and thermal comfort (MRT). +By default there is one Enclosure for each Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. Enclosures are assigned automatically based on the zones connected by an air boundary surface. @@ -89,6 +99,10 @@ If we keep the current definition of "Zone" and add the concept of * Surface - A geometric plane which is attached to a Space. * A Surface can be opaque, transparent, or an air boundary. * Each Surface belongs to one Space. + * Inter-Space Surfaces (adjacent to another Space) are modeled the same as current inter-Zone surfaces (two linked surfaces). + * Inter-Space surfaces connecting spaces that are part of the same Zone will see the same air temperature but may be in + different enclosures. If they connect spaces that are in different Zones, then they will see different air temperatures as well. + * Air boundary surfaces will combine one or more spaces into an enclosure. * Space - A collection of one or more Surfaces and internal gains. * Each Space belongs to one Zone (explicitly user-assigned). @@ -114,17 +128,20 @@ If we keep the current definition of "Zone" and add the concept of ## Proposed Input Approach ## Very minimal changes to current inputs. - * Old Zone object becomes Space object plus some tags. - * New Zone object has a name and a list of Spaces. + * Old Zone object becomes Space object plus some optional tags. + * New Zone object has a name and a list of Spaces (allow Zone and Space names to be the same, if desired, to + simplify backwards compatibility). * Surfaces will reference a Space instead of a Zone. * ZoneHVAC and Thermostats remain as-is and continue to reference a Zone or ZoneList. * New SpaceList object (equivalent to ZoneList, but for Spaces). * Internal gains reference Space or Spacelist (instead of Zone or ZoneList). - * ZoneInfiltration and ZoneVentilation remain at the zone level. + * ZoneInfiltration:* and ZoneVentilation:* are changed to Infiltration:* and Ventilation:* . + These will reference Space or SpaceList (instead of Zone or ZoneList). + * Daylighting controls will reference a Space. (Daylighting reference points see all windows in an enclosure). ### Proposed objects: - Space, !- Same fields as old Zone object plus new tags at the end + Space, !- Same fields as old Zone object plus new optional tags at the end Name, Origin, Multiplier, @@ -134,24 +151,28 @@ Very minimal changes to current inputs. Convection algorithms, Part of Total Floor Area, User-defined Tags for Space Types (for reporting purposes only at this point) - + + Zone, !- Just a list of Spaces + Name, + Space Name 1, + Space Name 2, + ... + Lighting/People/Equipment Name, Space or SpaceList Name, !- Replace current Zone or ZoneList Name Schedule Name, ... - ZoneVentilation and ZoneInfiltration + Infiltration:* and Ventilation:* Name, - Zone or ZoneList Name, (or should these more to the Space level and be renamed?) + Space or SpaceList Name, !- Replace current Zone or ZoneList Name ... - Part of Total Floor Area; Surface, Name, ... Space Name, !- Replace current Zone Name - (InterZone surfaces becomes InterSpace surfaces, air boundary surfaces will connect spaces in an enclosure) ## Data Structure Considerations ## @@ -201,8 +222,15 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. ## Options/Questions for Discussion * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? + + *Move to Space level and rename to Ventilation:* and Infiltration:*. + * Allow Zone Names to be the same as Space Names or force all names to be unique across Spaces and Zones? + + *Allowing the same names would simplify backward compatibility.* * Zone-based or Enclosure-based surface grouping? + + *This is a design question, somewhat premature at this point.* ## Testing/Validation/Data Sources ## @@ -228,7 +256,5 @@ Calulations won't change, so doc changes will be minimal to clarify when Space, ## Example File and Transition Changes ## -* Convert Zone objects to Space objects and add "-Space" to the name. +* Convert Zone objects to Space objects (one-to-one, just change the object class name). * Insert new Zone objects (one for each original Zone, no name change). -* Surfaces - Change all Zone names to add "-Space" -* Internal gains - Change all Zone names to add "-Space" From 0bb911ef29bfda7fa79aa2f39c5c5cb734f821f2 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 11 Dec 2020 15:47:56 -0600 Subject: [PATCH 03/98] Add historical Space NFP for reference --- .../NFP Space-2020-04-06-early discussions.md | 482 ++++++++++++++++++ 1 file changed, 482 insertions(+) create mode 100644 design/FY2021/NFP Space-2020-04-06-early discussions.md diff --git a/design/FY2021/NFP Space-2020-04-06-early discussions.md b/design/FY2021/NFP Space-2020-04-06-early discussions.md new file mode 100644 index 00000000000..7c5b91e2e52 --- /dev/null +++ b/design/FY2021/NFP Space-2020-04-06-early discussions.md @@ -0,0 +1,482 @@ +# Adding "Spaces" to EnergyPlus # + +**Michael J. Witte, GARD Analytics, Inc.** +**Jason W. DeGraw, ORNL** +**With input from many more . . .** + + - Original, November 22, 2019 + - Revised, April 1, 2020 + * Keep the current definition of Zone + * Add new objects for Space, SpaceType, CompoundSpaceType, and Enclosure + +## Justification for New Feature ## + +*The set-up (Amir Roth, Oct 11, 2019):* + +There are a number of parallel initiatives in EnergyPlus and EnergyPlus 10X that I think need to +be tied together. + +On the 10X side, there are several efforts to clean up and speed up various surface-related +calculations including heat-balance and radiant exchange. LBNL, GARD, and ORNL have been working +on these. On the EnergyPlus side, there is a task to add the OpenStudio Space/SpaceType concept +and load definitions to EnergyPlus to both enable space-level book-keeping and reporting and to +facilitate round-tripping with OSM. Of course, epJSON is implicated as well. + +Given the connections, I think it would be good to get together and do a more comprehensive +planning exercise, to see exactly what the scope of the changes might be. Even if we don't +tackle all of the changes right now, we should at least know what they are so that we don't do +things that run counter to them. + +Right now, the scope appears to be: + +i) a Space object that could be used for standards-style load definitions + +ii) determination of the right granularity at which to do radiant calculations (may overlap with +the Space object) + +iii) implications of doing radiant calculations at a smaller granularity than we currently are +(e.g., do we now need to do conduction calculations on intra-zone walls? do we do this already?) + +iv) view factor calculations + +v) choice of radiant exchange algorithm + +vi) surface data structure reorganization, specifically do we continue to use a single large +surface array? How are surfaces ordered within this array? + +vii) epJSON issues. + +There are probably more that I am not thinking of. + + +## Overview ## + +### Current EnergyPlus model ### +EnergyPlus input currently has the following (very flat) heierarchy: + + Zone + Surfaces (references a zone name) + People, Lights, etc. (references a zone name or zone list name) + Thermostat (one per zone) + HVAC equipment (attaches to a zone) + +Zones represent an air mass (air node) that exchanges heat with surfaces, internal loads, HVAC equipment, etc. +A Zone is essentially the "atomic unit" of the building. By default a zone has a uniform air temperature, but there are room air models +that allow modeling of stratification and other non-uniform temperature effects. Thermostats and HVAC equipment are assigned per Zone. + + +The internal data model adds another layer: + + Enclosure + Zone + Surfaces + People, Lights, etc. + Thermostat + HVAC equipment + Zone + Surfaces + People, Lights, etc. + Thermostat + HVAC equipment + +Enclosures are used for radiant and solar/daylighting +exchange. Enclosures are primarily concerned with Surfaces, but they +are also related to internal gains (which cast radiant and visible +energy into the enclosure). By default there is one Enclosure for each +Zone. By using Construction:AirBoundary, multiple zones may be +grouped into a single larger Enclosure: + + Construction:AirBoundary, + Air Wall, !- Name + GroupedZones, !- Solar and Daylighting Method (Options are GroupedZones or InteriorWindow) + GroupedZones, !- Radiant Exchange Method (Options are GroupedZones or IRTSurface) + SimpleMixing, !- Air Exchange Method + 0.5, !- Simple Mixing Air Changes per Hour {1/hr} + ; !- Simple Mixing Schedule Name + +Presently, enclosures are assigned automatically. They can be listed +(Output:Surfaces:List,ViewFactorInfo;) but there are no explicit input +objects to assign zones to enclosures. Because +Construction:AirBoundary has separate options for solar and radiant +exchange across the air boundary, it is possible that the solar and +radiant enclosures have different zone groupings. + + * AR1: Enclosures are assigned pseudo-automatically using the + air-boundary construction. They are not assigned by analyzing + geometry. Are we keeping the AirBoundary object in the + redesign? + +### Where do Spaces fit in? ### +It is generally agreed that a Space (or Room) is equal to or smaller than a Zone. + +Some relevant definitions from ASHRAE Std 90.1: + + * Enclosed Space: a volume substantially surrounded by solid +surfaces, such as walls, floors, roofs, and openable devices, such as +doors and operable windows. + + * Space: an enclosed space within a building. The classifications of +spaces are as follows for the purpose of determining building envelope +requirements: (and further defines conditioned space, cooled space, +heated space, indirectly conditioned space, semiheated space, +unconditioned space). + + * HVAC Zone: a space or group of spaces within a building with +heating and cooling requirements that are sufficiently similar so that +desired conditions (e.g., temperature) can be maintained throughout +using a single sensor (e.g., thermostat or temperature sensor). + + * Thermal Block: a collection of one or more HVAC zones grouped +together for simulation purposes. Spaces need not be contiguous to be +combined within a single thermal block. + +The relationship of Zones and Spaces for HVAC systems and control are +less clear. The concept of one active thermostat per zone is generally +accepted. Spaces may have HVAC equipment which shares some control +with other Spaces in the Zone. For example, the thermostat in one +office may control the airflow to a VAV terminal unit that supplies +air proportionately to two or more offices (Spaces). This implies the +need for Spaces to have a separate air heat balance and separate zone +temperatures - this currently happens at the Zone level. + +The relationship of Enclosures to Spaces is less certain. In an +open-plan setting, an Enclosure could include multiples zones and +spaces. In a subdivided setting (e.g., row of private offices) an +Enclosure would be a single private office which could correspond to a +Space or multiple offices may comprise the Space. + +There is also a commonly used concept of "Space" as a non-geometric +means to communicate allocations of internal load calculations (are +there other use cases, e.g., HVAC systems?). Internal loads typically +have convective and radiant components and thus would ultimately need +to be assigned to both a zone (air mass or air node, see Zone above) +and an enclosure (with surfaces receiving radiant heat). A "space" +might be a convenient way of associating certain loads with a +combination of a zone and an enclosure. + +Related to this is the concept of SpaceType, such as office or +conference room, which would specify densities for occupancy, +lighting, equipment, etc., and possibly other attributes aligned with +specific codes and standards. Non-geometric connection of loads to +zones and enclosures is supported below with a compound space type +that uses a fractional weighting to distribute energy. + +## New Space Object/Layer + +### Relationship assumptions ## + +First, let's ignore input structures at the moment and potential transition issues. + +If we keep the current definition of "Zone" and add the concept of +"Space" (<= Zone), then here's the proposed model: + + Enclosure + Space 1 + Surfaces + Internal Gains (People, Lights, etc.) + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + + Zone + Thermostat + HVAC equipment + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + Space 3 + Surfaces + Internal Gains (People, Lights, etc.) + +The concept of a "SpaceType" object would allow for convenient assignment of internal gains to Spaces. + +### Definitions and constraints + + * Zone - An air mass connecting surfaces, internal gains, and HVAC equipment for heat balance and HVAC control. + * *Each Zone is comprised of one or more Spaces.* + * *All surfaces and internal gains associated with the Spaces are included in the Zone.* + * *The relationship between Zone and Enclosure is not constrained.* + * *The Zone heat balance does not change: it has an air node (or a Room Air Model) and includes all surfaces and internal gains from its Spaces + plus any HVAC which is attached to the zone.* + + * Enclosure - A continuous volume connecting surfaces for radiant and solar exchange. + * *Each Enclosure is comprised of one or more Spaces.* + * *All surfaces and internal radiant gains associated with the Spaces are included in the Enclosure.* + * *The relationship between Zone and Enclosure is not constrained.* + * *Enclosures only distribute radiant and solar (visible) energy to the surfaces.* + * *There is no full heat balance at the enclosure level. Each enclosure only balances the radiant/solar flux on each surface. These + fluxes then become part of the surface inside heat balance.* + + * Surface - A geometric plane which is attached to a Space. + * *A surface can be opaque, transparent, or an air boundary.* + * *Each Surface belongs to one Space.* + * *Each Surface belongs to one Zone.* + * *Each Surface belongs to one Enclosure.* + + * Space - A collection of one or more surfaces and internal gains. + * *Each Space belongs to one Zone.* + * *Each Space belongs to one Enclosure.* + * *Internal gains may be assigned by a SpaceType object.* + * *The Spaces in a Zone are lumped together for the Zone heat balance.* + * *Optionally allow Space-level heat balances.* + + * SpaceType - List of internal load characteristics, ventilation requirements, etc. (details TBD). + + * CompoundSpaceType - List of SpaceTypes with fractions + +## Proposed Input Approach ## +Very minimal changes to current inputs. + + * Zone remains as-is. + * ZoneHVAC and Thermostats remain as-is. + * Add Space object + * Add SpaceType and CompoundSpaceType objects + * Consider adding HVAC connections and thermostats at the Space level (future) + +### Proposed objects: + + Zone, !- Same as before, but maybe shorter + Name, + !- Move some or all of these fields to the Space object? + + * AR1: I think so + + Origin, + Multiplier, + Ceiling Height, + Volume, + Floor Area, + Convection algorithms, + Part of Total Floor Area; + + * AR1: should this be an IDF object or will this be an internal construct? + Ditch this - keep it internal + Enclosure, !- New object + Name; + + SpaceType, + Name, + + * AR1: In addition to the name of the SpaceType, which can be + anything, there also needs to be a standard enumeration (e.g., + Office, Kitchen, Corridor) as well as a reference to that + standard, either Name and Version (e.g., ASHRAE90.1 and 2004) or + NameVersion (e.g., ASHRAE90.1-2004) + + SpaceTypeStandardEnum, + SpaceTypeStandardName, + SpaceTypeStandardVersion, + +!- The components of this space type are determined through references in Lighting/People/Equipment + !- (makes it easier to maintain as we add more associated gain object types [e.g., all the types of equipment] + !- or need more flexibility than just schedules and power densities) + !- This should probably be a separate discussion. + + * AR1: yes + + CompoundSpaceType, + Name, + SpaceType Name 1, + Fraction 1, + ... + + Lighting/People/Equipment, + Name, + SpaceType, !- Replace current Zone or ZoneList Name with Space Type (or allow all three?) + Schedule Name, + ... + + Space, + Name, + SpaceType Name or CompoundSpaceType Name, !- If blank, there is no "gain aggregation" from this space + !- in the corresponding Zones/Enclosures + Zone Name, + + !- Move some or all of these fields from the Zone object? + Origin, + Multiplier, + Ceiling Height, + Volume, + Floor Area, + Convection algorithms, + Part of Total Floor Area; + + Surface, + Name, + ... + Space Name, !- Replace current Zone Name (or allow both?) + !- This provides "surface assignment" functionality for all surfaces + !- and potentially "gain aggregation" for floor surfaces. + ... + + * AR1: What about AirBoundaries in the new formulation. + +### Options/Questions for Discussion + + * AR1: A lot of these are correlated + + * Require the Space object or make it an optional layer? + * If Space is required, then move most Zone fields to the Space object? + * Allow internal gains to continue referencing Zone or ZoneList names directly? + + * AR1: If it were optional, could we support Zones both with an + without Spaces in the same model? For Zones without Spaces, we + would internally create a Space that is one-to-one with the + Zone. From an IDF standpoint, it would be cleaner to require + Spaces and then middleware or applications would have to + create the one-to-one corresponding Space on their side. + +* Allow Thermostats and ZoneHVAC:EquipmentConnections to reference Spaces or Zones? + + * AR1: Wouldn't moving these to the Space elvel imply that we are + doing heat-balance at that level? What is the point of having a + Zone then? Alternately, what have we done by adding a Space + object other than create a cleaner bookkeeping mechanism for + Zone and Enclosure? + +* Omit the Enclosure object and "Enclosure Name" field in the Space object and assign Enclosures automatically (as is currently done), one-to-one with Spaces unless there are air boundaries. + - Yes, leave this out + * ~If Enclosure is required, then collapse solar and radiant enclosures into a single enclosure + (separate enclosure options were introduced with Construction:AirBoundary)?~ + * Some of the options result in objects that only have a single field for Name, e.g. Enclosure - are we ok with that? + + * AR1: I think we should keep Enclosure internal. From a design + standpoint, there is no point in asking the user or application + to figure something out that you can figure out yourself. It's + just another opportunity for them to screw things up. A + potential exception is if it is very difficult to figure out + Space-to-Enclosure assignment. + +## Data Structure Considerations ## + * Keep existing zone-based data structures and use Spaces to simply map surfaces and internal gains to Zones? + + * AR1: Don't you need some of this data at the Space level so + that you can also aggregate it up these to Enclosures? + + * Remember Space-level assignments for surfaces and internal gains to allow for Space-level heat balance? + (This comment in the setup implies we need to keep track: "enable space-level book-keeping and reporting"). + + * Surface ordering: + - Group by Enclosure (because enclosure radiant exchange is more computationally intensive than zone heat balance) + - Group by Space within each Enclosure. + -Group by surface type within each Space + +e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2, etc. + + Space1-OpaqueSurface1 (begin surfaces in Enclosure1) + Space1-OpaqueSurface2 + Space1-Window1 + Space1-Window2 + Space3-OpaqueSurface1 + Space3-OpaqueSurface2 + Space2-OpaqueSurface1 (begin surfaces in Enclosure2) + Space2-OpaqueSurface2 + Space2-Window1 + +## Testing/Validation/Data Sources ## + +insert text + +## Input Output Reference Documentation ## + +insert text + +## Input Description ## + +insert text + +## Outputs Description ## + +insert text + +## Engineering Reference ## + +insert text + +## Example File and Transition Changes ## + +* If Space, SpaceType, and Enclosure are optional, then no transition required. +* If Space is required, then transition required to add Space and change Surfaces to reference the new Space names. +* If Enclosure is required, then transition required to add Enclosure and determine Space-Enclosure relationships in old idf. +* If SpaceType is required, then transition required to add SpaceType and change internal gains to reference the new SpaceType names. + +## References ## + +insert text + +## E-mail and Conference Call Conclusions ## +### Oct 11 - Nov 14, 2019 +E-mail thread with Roth, Hong, Lee, Adams, Witte, Glazer, Parker, DeGraw, Merket, +Benne, Horowitz, and Kruis is condensed into this NFP. Major points of concensus/divergence are +highlighted. + +### Nov-Dec 2019 Comments + +Amir - I am agnostic about the IDF/epJSON implementation (child-points-to-parent, parent-points-to-children, hybrid), I +can see the benefits of doing things either way. Parent-points-to-children is more intuitive (to me) and most calculations will go this way. Child-point-to- +parent is easier in terms of sanity and invariant checking and 1-to-1 relationships are generally easier to deal with than 1-to-many. I think that +decision should be made to simplify model development and editing and if there is no clear favorite there then it should be made to preserve the current +structure as much as possible. + +Amir - Maybe/probably because I am the least informed person on this thread, this doesn�t make sense to me. In my mind, the current definition +of Zone is not broken. What is broken (or at least not clean) is the relationship between Zone and Enclosure. The use of Space as an atom that +can tie Zones and Enclosures together cleanly and flexibly (and also serve as an anchor for internal loads) fixes that. + +Amir - The problem with �keeping things really simple and removing the Space concept� is that it reverts the ability to have a clean and +flexible relationship between Zone and Enclosure, which is one of the things we wanted to have. Again, I think it would be possible to add +Space objects but keep our current definition of Zone�the Zone �owns� the air-volume, the thermostat, and the HVAC system. The Zone internal +loads are aggregated over all the Spaces in the Zone. The Zone heat balance includes those loads, the air-volume, and all Surfaces attached +fto all Spaces in the Zone. What I hear you saying is not that we have to change heat-balance to work at the Space level, it�s that we actually +*want to change because with improper zoning, spaces within a zone can have highly varying conditions and thermostat placement matters*. +In other words, EnergyPlus currently does a poor job of simulating poorly zoned buildings and as a result does not support evaluation of proper zoning. + Is that right? (Yes) + +Neal - Before we try to tackle terminology, we should make sure we are clear on the conceptual components. I propose we talk about it as: + + * Air nodes: Distinctly unique temperatures of air within the building, each with their own heat balance (based on surface convection, + forced air systems, convective internal gains). These can be referenced by traditional thermostats to control HVAC systems. + + * Enclosures: A collection of components that participate in radiant exchange (based on surface long wave temperatures, radiant internal gains, + transmitted solar). These can be referenced by thermal comfort based thermostats to control HVAC systems. + + * Gain aggregators: A mechanism to aggregate internal gains to air nodes and enclosures (often based on a floor surface area). + I think this is what most people associate with the term "spaces" + + * Surface assignments: A mechanism to assign surfaces to air nodes and enclosures. + +I think we are relatively set on the term "Enclosures". Not much confusion there. But people are using combinations of "Zone" and "Space" +to describe combinations of the other three, and I think it's important to keep these roles separate in our discussion. I think it makes +sense to use the same construct and term for both "gain aggregators" and "surface assignments". My initial inclination is to use the term "Space" +for both of these and to use "Zone" for "air nodes" (for historical consistency), but I could be persuaded otherwise. Generally, I don't like the +term "HVACZone" except as a mechanism to associate air nodes served by the same system for reporting or visualization. + +We should enumerate the use cases in the NFP so we don't lose sight of anything in these discussions (feel free to add): + + 1. Many air nodes within a single enclosure (e.g., open offices + + 2. Many enclosures within a single air node + + 3. Aggregating gains assigned to a floor surface to the appropriate air nodes and enclosures + +Amir - The terminology Neal describes is close to my initial understanding: + + * Space holds internal gains, surfaces (potentially airwalls), and an air-node + + * Enclosure aggregates and operates on the non-airwall surfaces of its child spaces + + * Zone aggregates and operates on the internal gains, surfaces, and air-nodes of its child Spaces, and also holds the thermostat and +HVAC system. + +I think the object design he describes is also cleanest design in terms of transition from the current schema. + +I do want to point out, however, that modeling poorly-zoned buildings using slave zones is not the same as modeling heat-balance at the space-level. +The former is a work-around that requires you to understand a priori that the building is poorly-zoned. The second will tell you that the building is +poorly zoned regardless of what you do. There�s a big conceptual difference between those two. We need to consider this carefully and +I don�t think we can defer the decision because moving to space-level heat-balance requires that we move the association of HVAC and Thermostat objects + from Zone to Space. + +Jason G. - I think you are heading in the right direction but I do wonder if the value of making this change is worth the effort for users and +GUI developers. What if these changes are incorporated into new objects and the existing ones continue to work (for a few releases?) and mapping +from the old to new is done internally? Don't underestimate the hassle this will cause to many users and GUI developers so the value that is being + gained from the user perspective should be spelled out explicitly. + From bf631c2d475bebf336f2bebd7a20b168a6b8787e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 17 Dec 2020 12:19:14 -0600 Subject: [PATCH 04/98] Space - rename old NFP to avoid confusion --- ...ions.md => ZZZ-OLDNFP Space-2020-04-06-early discussions.md} | 2 ++ 1 file changed, 2 insertions(+) rename design/FY2021/{NFP Space-2020-04-06-early discussions.md => ZZZ-OLDNFP Space-2020-04-06-early discussions.md} (99%) diff --git a/design/FY2021/NFP Space-2020-04-06-early discussions.md b/design/FY2021/ZZZ-OLDNFP Space-2020-04-06-early discussions.md similarity index 99% rename from design/FY2021/NFP Space-2020-04-06-early discussions.md rename to design/FY2021/ZZZ-OLDNFP Space-2020-04-06-early discussions.md index 7c5b91e2e52..feda657cf98 100644 --- a/design/FY2021/NFP Space-2020-04-06-early discussions.md +++ b/design/FY2021/ZZZ-OLDNFP Space-2020-04-06-early discussions.md @@ -1,3 +1,5 @@ +# OLD NFP - FOR REFERENCE ONLY # + # Adding "Spaces" to EnergyPlus # **Michael J. Witte, GARD Analytics, Inc.** From 85db3f8c7859a0921149a588b5e20c03b1eb1778 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 11 May 2021 18:57:10 -0500 Subject: [PATCH 05/98] Space NFP Plan C --- design/FY2021/NFP-Spaces.md | 301 +++++++++++------- design/FY2021/Space Examples-FloorArea.png | Bin 0 -> 15080 bytes .../FY2021/Space Examples-FractionOfZone.png | Bin 0 -> 11903 bytes design/FY2021/Space Examples-FullGeometry.png | Bin 0 -> 16083 bytes 4 files changed, 188 insertions(+), 113 deletions(-) create mode 100644 design/FY2021/Space Examples-FloorArea.png create mode 100644 design/FY2021/Space Examples-FractionOfZone.png create mode 100644 design/FY2021/Space Examples-FullGeometry.png diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index 82d42c7627b..30af56646fc 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -16,24 +16,149 @@ * Per comments, decide that load assignments like internal gains, infiltration and ventilation, should be at the Space level * Add language to clarify concerns raised in comments * Add daylighting and thermal comfort considerations + - Revised, May 11, 2021 + * Make Space optional for input + * Add three options to define Space: FractionOfZone, FloorArea, FullGeometry + * Make Space Type just a tag + * Add Compliance:Space for additional tags + ## Justification for New Feature ## +### More Straightforward Input Thermal zones (HVAC zones) are often composed of a variety of spaces grouped together to be served by -a single thermostat. For example, an office building core zone may include private offices, conference rooms, restrooms -and corridors. Each of these spaces (rooms) has different internal gains and may or may not be fully enclosed by solid surfaces. -Currently, the smallest building element is a zone. This requires the user (or interface) to blend these spaces together for surfaces, +a single thermostat. Currently, the user (or interface) must blend these spaces together for surfaces, internal gains, and other specifications. The option to specify each space explicitly would greatly simplify input in data managemenent, especially for space-based interfaces (such as OpenStudio) and for codes and standards modeling. -Other advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large +### Reporting by Space Type +For standards and other purposes, reporting by space type is essential. + +### Radiant and Solar Exchange +Other possible advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large HVAC zone could be modeled as a space so that it does not pass solar or radiant to other surfaces in the larger zone. There are also potential computing performance advantages to dividing zones into smaller enclosures for radiant exchange and solar distribution, especially for large HVAC zones with many surfaces. -## Overview ## -As proposed, Zones remain the same entity as before. Space is added as a new layer for assembling surfaces and gains into a Zone. -HVAC connections and controls remain at the Zone level. + +## Proposed Input Approach ## +New Space object (and related objects) with minimal changes to current inputs. + + * Zone object does not change + * *New optional Space object with Space Type tag.* + * *New Compliance:Space object* for standards-related tags. + * *Three space geometry options:* + * FractionOfZone: Specify fraction of zone floor area for the Space + * FloorArea: Area based on floor surface(s) attached to the Space + * FullGeometry: Define the Space with surfaces on all sides. + * *New SpaceList object* (equivalent to ZoneList, but for Spaces). + * Surfaces will reference a Zone *or Space*. + * Internal gains reference Zone or ZoneList, *Space or Spacelist*. + * ZoneInfiltration:* and ZoneVentilation:* reference Zone or ZoneList, *Space or Spacelist*. + * Daylighting controls will reference a Zone *or Space*. (Daylighting reference points see all windows in an enclosure). + * Thermostats remain as-is and continue to reference a Zone or ZoneList. + * ZoneHVAC remains as-is and continues to reference a single Zone. + * *New DesignSpecification:OutdoorAir:List object* to list OA requirements by Space. + * Sizing:Zone references a DesignSpecification:OutdoorAir *or DesignSpecification:OutdoorAir:List object.* + +### Proposed Input Changes: + + Space, !- Optional new object + Space Name, + Zone Name, + Geometry Method - FractionOfZone, FloorArea, or FullGeometry + Fraction of Zone Area + Space Type Tag + *Optional Fields for FullGeometry* + Origin, + ... + + Zone, !- No change + Name, + + Origin, + ... + + Lights/People/Equipment + Name, + Zone, ZoneList, Space or SpaceList Name, + Schedule Name, + ... + + Infiltration:* and Ventilation:* + Name, + Zone, ZoneList, Space or SpaceList Name, + ... + + Surface, + Name, + ... + Zone or Space Name, + ... + + Compliance:Space !- Optional new object + Space Name, + Tag 1, + Tag 2, + ... + + DesignSpecification:OutdoorAir:List !- Optional new object + List Name, + Space Name 1, + Design Specification Outdoor Air Object Name 1, + Space Name 2, + Design Specification Outdoor Air Object Name 2, + ... + + +![Figure 1 Spaces by Fraction of Zone Floor Area](Space Examples-FractionOfZone.png) + +![Figure 2 Spaces by Floor Area](Space Examples-FloorArea.png) + +![Figure 3 Spaces by Full Geometry](Space Examples-FullGeometry.png) + +## Sizing Considerations ## + + * Zone sizing calculations and reports are all at the Zone level. + * Possible future work could add Space level sizing calculations and reports for FullGeometry Spaces. + +## Testing/Validation/Data Sources ## + +* For new example files with Spaces added, there should be no substantive diffs +compared to the equivalent file without Spaces. There will likely be some small diffs due to +changes in computational order or accumulating space-level values. +* For the regression tests with no Spaces, all numeric results +should stay exactly the same, but some table headings may change. + +## Input Output Reference Documentation ## + +* New docs for Space, SpaceList, Compliance:Space, and DesignSpecification:OutdoorAir:List. +* Add Space or SpaceList options to other objects where applicable. + +## Outputs Description ## + +* Zone-level output variables will remain the same. +* Some space-level output variables may be added. +* Table reports summarizing inputs at the zone level will remain the same. +* Table reports summarizing inputs at the Space Type level will be added. +* Table reports allocating energy at the Space Type level *may* be added. +* Space-level outputs would include: + * Internal gains attached directly to a Space. + * Internal gains attached to a Zone apportioned by Space floor area. + * Floor area for each Space. + * Walls and other surfaces would only be reported at the Space level for FullGeometry Spaces. + +## Engineering Reference ## + +The basic calculations will not change, so changes will be minimal to clarify Space, Zone, and Enclosure. + +## Example File and Transition Changes ## + +* No transition required. +* Take one or more example files and add Spaces (using all three space geometry options). + +## Relationship Assumptions +*(getting deep in the weeds here)* ### Current EnergyPlus model ### EnergyPlus input currently has the following (very flat) heierarchy: @@ -67,54 +192,78 @@ are also related to internal gains (which cast radiant and visible energy into t By default there is one Enclosure for each Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. Enclosures are assigned automatically based on the zones connected by an air boundary surface. +### Proposed model with new Space layer ### -## New Space Object +* Keep the current definition of "Zone". -### Relationship assumptions ## +* Add "Space" (<= Zone). -If we keep the current definition of "Zone" and add the concept of -"Space" (<= Zone), then this would add a new layer to the data model: +* Space objects will be optional in input, but required in the data model. +So if a Zone has no Space defined in input, a Space will be generated automatically. - Zone - Thermostat - HVAC equipment - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) - Space 3 - Surfaces - Internal Gains (People, Lights, etc.) - - Enclosure - Space 1 - Surfaces - Internal Gains (People, Lights, etc.) - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) + Zone 1 + Space 1 + Surfaces + Internal Gains (People, Lights, etc.) + Zone 2 + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + Space 3 + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure A (two spaces with at least one air boundary connecting them into a single enclosure) + Space 1 + Surfaces + Internal Gains (People, Lights, etc.) + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure B (one space defining the entire enclosure) + Space 3 + Surfaces + Internal Gains (People, Lights, etc.) + + ZoneHVAC + Zone 1 + Thermostat + HVAC Equipment + Zone 2 + Thermostat + HVAC Equipment + Zone 3 + Thermostat + HVAC Equipment + - ### Definitions * Surface - A geometric plane which is attached to a Space. * A Surface can be opaque, transparent, or an air boundary. - * Each Surface belongs to one Space. + * Each Surface belongs to one Zone and one Space. * Inter-Space Surfaces (adjacent to another Space) are modeled the same as current inter-Zone surfaces (two linked surfaces). * Inter-Space surfaces connecting spaces that are part of the same Zone will see the same air temperature but may be in different enclosures. If they connect spaces that are in different Zones, then they will see different air temperatures as well. - * Air boundary surfaces will combine one or more spaces into an enclosure. + * Air boundary surfaces will combine one or more spaces and/or zones into an enclosure. - * Space - A collection of one or more Surfaces and internal gains. + * Space - A collection of one or more Surfaces and internal gains or a fraction of a Zone. * Each Space belongs to one Zone (explicitly user-assigned). - * The Spaces in a Zone are lumped together for the Zone heat balance. - * There is no heat balance at the Space level. + * Spaces may be defined by FractionOfZone, FloorArea, or Full Geometry (surfaces) . * Each Space belongs to one Enclosure (implicitly assigned). + * There is no heat balance at the Space level. (This could be added in the future for Sizing only for FullGeometry Spaces). + + * Space Type - Just a tag on Space * Zone - An air mass connecting Surfaces, internal gains, and HVAC equipment for heat balance and HVAC control. * Each Zone is comprised of one or more Spaces. + * If no Spaces are defined for a zone, a Space will automatically be created. * All Surfaces and internal gains associated with the Spaces are included in the Zone. - * The Zone heat balance does not change: it has an air node (or a Room Air Model) and includes all Surfaces and - internal gains from its Spaces plus any HVAC which is attached to the Zone. + * Surfaces and internal gains may also be attached directly to the Zone. + * The Zone heat balance does not change: it has an air temperature (or a Room Air Model) and includes all Surfaces and + internal gains from its Spaces. + * Every Zone with HVAC connected has its own air node and its own air temperature and humidity. * Enclosure - A continuous volume connecting Surfaces for radiant, solar, and daylighting exchange. * Each Enclosure is comprised of one or more Spaces. @@ -125,62 +274,13 @@ If we keep the current definition of "Zone" and add the concept of * There is no full heat balance at the Enclosure level. Each Enclosure only balances the radiant/solar flux on each Surface. These fluxes then become part of the Surface inside heat balance. -## Proposed Input Approach ## -Very minimal changes to current inputs. - - * Old Zone object becomes Space object plus some optional tags. - * New Zone object has a name and a list of Spaces (allow Zone and Space names to be the same, if desired, to - simplify backwards compatibility). - * Surfaces will reference a Space instead of a Zone. - * ZoneHVAC and Thermostats remain as-is and continue to reference a Zone or ZoneList. - * New SpaceList object (equivalent to ZoneList, but for Spaces). - * Internal gains reference Space or Spacelist (instead of Zone or ZoneList). - * ZoneInfiltration:* and ZoneVentilation:* are changed to Infiltration:* and Ventilation:* . - These will reference Space or SpaceList (instead of Zone or ZoneList). - * Daylighting controls will reference a Space. (Daylighting reference points see all windows in an enclosure). - -### Proposed objects: - - Space, !- Same fields as old Zone object plus new optional tags at the end - Name, - Origin, - Multiplier, - Ceiling Height, - Volume, - Floor Area, - Convection algorithms, - Part of Total Floor Area, - User-defined Tags for Space Types (for reporting purposes only at this point) - - Zone, !- Just a list of Spaces - Name, - Space Name 1, - Space Name 2, - ... - - Lighting/People/Equipment - Name, - Space or SpaceList Name, !- Replace current Zone or ZoneList Name - Schedule Name, - ... - - Infiltration:* and Ventilation:* - Name, - Space or SpaceList Name, !- Replace current Zone or ZoneList Name - ... - - Surface, - Name, - ... - Space Name, !- Replace current Zone Name - ## Data Structure Considerations ## * Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. * Proposed Surface ordering (same as current): - All shading surfaces are first - - All air boundary surfaces are next (once PR8370 merges). + - All air boundary surfaces are next. - Group by Zone - Group by surface type within each Zone @@ -220,7 +320,7 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. Space2-OpaqueSurface2 Space2-Window1 -## Options/Questions for Discussion +## OLD: Questions for Discussion * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? *Move to Space level and rename to Ventilation:* and Infiltration:*. @@ -231,30 +331,5 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. * Zone-based or Enclosure-based surface grouping? *This is a design question, somewhat premature at this point.* + -## Testing/Validation/Data Sources ## - -There should be no substantive diffs (possibly some small diffs due to change in computational order). -For the regression tests which are one-to-one Space-To-Zone, all numeric results -should stay exactly the same, but output variable names and table headings may change. - -## Input Output Reference Documentation ## - -The I/O Reference section for Zone becomes Space with some explanatory text at the top. -The new Zone becomes a list of Spaces. - -## Outputs Description ## - -Output variables which are zone-based will remain the same. -Some space-level output variables may be added. -Table reports summarizing inputs at the space level will be added. -Table reports allocating energy at the space level *may* be added. - -## Engineering Reference ## - -Calulations won't change, so doc changes will be minimal to clarify when Space, Zone, and Enclosure. - -## Example File and Transition Changes ## - -* Convert Zone objects to Space objects (one-to-one, just change the object class name). -* Insert new Zone objects (one for each original Zone, no name change). diff --git a/design/FY2021/Space Examples-FloorArea.png b/design/FY2021/Space Examples-FloorArea.png new file mode 100644 index 0000000000000000000000000000000000000000..45884a1661686bdaa34917c6b4dc87037a197e61 GIT binary patch literal 15080 zcmeHtWl)=2yJ&!xmKG~*aoM!EmI48S1d4lcD^lEoySKCjHdfr-U4vV3iWA(66Wkqc z0{c7XeCN-(bLalLb2F34n`EtLJ?n7`_$Vii^^Eu#006*}ln_w_03IVAQHP$QAwJGC zm<FJS`mCeb? zSz1~;J3AvMCvR(Ob9Z-#Kp^bw?AqGeeSLl5;o*&qjpE|s`uh3{3kzT{cyx4hVqzjF zD5#^OqoShX^XJdZ%*-VvC2MPIF)=YFCMJZ0gsZEo-QC@+ilGGb;spf-KY#wz(9ke8 zHrCYCEH5vws;a81t0N;L3k(eW_3PKc!NHFoKV)QNl$DiXFc=5~8X6k%_4T#3wzjaa z*xufrnVGS-w-*r+adL7>NJvmnP(a)_ogE58d?-06$|)g;@PGLQFb?q2K!C@vkALNs)$Q-t?BD(gD||0X%P1o?sg80Y zRuGuvssH$js6uJdu^n3q)!`)Wu*?iRl^SwTy7c=sYe+Re7`7^bm!}|oi!oxW%igk` zVss$pG$%FOSSW>cuJn8VE%lG=ohg+Kw1kdo)O}3suuap%k42Aw7t0Ihyuo&OG}$L2 zx0NO6g7nboD{@8k$iFBR=DBbBzJBdUb+DTvc9)Sf+g?%Q(Usah&11y-Nu}Fc%*|-! z+7MeT$Ra*|!iQI}B&-43D_LQmi@mF0nl~+{DB zdrxpt53z7>p!_3prxQxydrjH9P$rIg!B;}J@Ec&{JiIBO8B3+ESpKTif|E1ckyU-9 z^mB!7V*2nFQ3$=pND^OkH#y8JzEqNu*w!PV;rG(<-$vCP2U2G;G3?!SmhoCIR|yA~ zEx{KtKe3L$y_+OiC_^k7&&t>(^p1A|3x2Z3H35Bc!r=K~EtrR1LmpDM?HNQe0>j++ zfi{e2*Bj7m3nOzonk%=S0Rv%?ca#<|`f2l*TC&?zFJy}8ihntWGM);qme_VEBr@x> zf^~Y5k5;?alDy)^!P3Lh3s;<-f11vgf_E8s&xOk0l&JoVE;f^_`~Bz*3g7b{Eslh8 z!QAIJ%gJ>4!#LD>zqa^j350A1awLPaIMc@Ls%@ zz1jo@Fuee*MjWXz)iZ~vnaK)FnvYIz2)!U>cBAjvFa%FAxNkb$nP@Z|DCJ4~1u1yk zx~a?2ov>|z=7JaBsg9eUMQp+ty(;qar+imoMe5$>A?8Q4R;rn}Nl1Jw2MyjeR= zcF%%+R0_)4!R1MXKUclNLS3uic?%PaI;7SfcMdh%by0(gEm6x#?_&qJk&HgilcD+< zE(@n$k)Ap2=rGnLX{q?h#Bh7MIyiP)!;BDawHs+Dm5EzJTtuvMBi4{4Qw1RRyIE}E z35O^CKts^0tkzPPCH>!__vhshEqZiZSX~@+o`rG@%o{~1^9Yc^#WO7`_v&2?aumzM zH_Gq`Ay=C!nI%|@lHIz7QZ8>&!ogZo;p7JxcUFSuLXcg;ia5m=0 zrWL~&$Y8Pl0ThMr$py(tlN~+*5bCIQWb=Mi>GDaj=Ng>tZn-fGWxPL!bm=1U6^-|; zLOH3L)&SKO-s;M7-OLvKG`HxSgj7DS`2K!Ur6!ZO;gxm|fS`VJOumb;G11CjyjJ!1 zC$tbopi*t1cl1SYic~i^o%uw$+-N#kSM(Nf^5fvga_@-)AAPt=Ij8WJG9IC=liZ{z zuO~!B=W4ZW8r=9N;S8XqHG4Q(_l{61dMZDSW;{GE*5b+yfak6#}56Mq}(iYF*|=N!|H7jU~5o?~LQx zPhwO*=L=)20=F5CgGexTZC?Q9+aszyMBB&#*MNS2!3jo^XEzqWTWnM=C2~|Rg$Mk2 zfBJHpehW5i!s1wn41NCdH9w`>BGti+{poZ<_bxXdPI0C)dwKl?|3K|a^^0n58;x1U zGiu7sU2-Fu6F%qB~;SqdC1&sYim5sU(=H z0f;{xe19<@mVdQ+r%sLfm(&mzdVvT6q~9#MS8A3-2C zQ2r+lb9(!*r#^H-T!e*qh%0QMA9+YfcJ>>ZEbR?s6eU?iY2@xv>~VU z(>m4t#-)%gVSorm-LHnkvV82MhV3QKFCCO!QfO(-#RLzK%sca8qPmc6NWdzk!D*ci z0-8&==Lf*GW4-zDYm25Cm6NjkX-%%tBxQTfuE1cWRUoh7RT{6PfN4qFz(|WGysM}v z6HnFWfk+74dVgdGv=}>1TCrDos*$aD>Oxa)vZv)qz@E(!!f@@elg8%X=occ`+s-8P z`YfLx-`^~Dq8zH1!vr8_s^v8$wSdai7p*Leb5(_%CXp{`q%@OjN?s8cU`pfh#FU~w z+}L7D7Gs)Dp`@6p7N!ztsu&kVI>-g2-)6=+C>+$azzRwahiYSqWnq&!$Rq5b`Lz8zG)a zY$0i_d85!J=G|BDs~}(CETbrNEN#L0^1O}WP7dcwj33jX@QgUl_2}Rl-Z+x*4!*9O z;sI_&X9p2=d!ty>Zrs*xCAeD_aCEwI#0f)Zq?IIRr3 zMICi6{tde5L*WAK5~6>WtUV$7ewifj?qDM7?Y+S2Oq`|60LS$vl@rDs&g%UU2QM_q zXInv=|J485c(LAYfmqibeASLFFNK5K-@*26J%xPMp^<+V@!vEqLZ8H5pAYR`&1IYV z{Jh9{!lli+YcddUuYOxNLY6f@LkZt){;;m>)-4LT9pX9AK@iWDA7ItU3z?a=k=Ewa z%!0Y=j>czf8uI$hSLG#HjzdW@p6O!wfE@wOJ*LOrBeBpRBJ2Y$Rd0M@8;Jh|)k4$zB`IxoR{CjPn!KgbK7=)#IzbBSx1EJu4%bJUR* zRVn@CPbE#AYPGABDtG=q6uu#!RN+q*anZJtVHll25=Wi<62Z!1^cH_X2DjOZbPLNz zvV$$1Qq@L-R@U|S0B?9AwL*D}4_8-xTHbVVZ}p-hl1b)(L>kN^ni{jRlIw$Qbu#CK z@%N<=&fTo9nn1)cfOCI)8bA2Y@AXM1-Q?I@Ai^bjq^;B>Nxh?KYX{iDTJ71%WX>zB zEE7h_9rLuqtwR_*s0sO(5(5k)#ldk0X=?}Z4{DJ~MREmuHZWDCh>~*DxIA0&(fiB$ zyJ^GHs$c#!o?0sXIoT6R1-yR`EHYRT&myjyd`S@f%y+>b@`-2owjcrM*OxuH*exTe}78=f&)Q>|BU z6k8PG|GO) zgur+mWxCcp(?)QVeJ7##^xClTV#iw~5g@3GMTIb4y>*CBel#wfIQIP2M}aE+AD$DN z?>H}KxmVpXM%`4PL>x+$OfN!_z!83jYk=o`FXRX)SPe6`hFjDiLa0#TZ&vXp1S5vS zrp38=1~LpWaPveM=6ZU3J9hPam9Y;gOG%PIMT*E z{np;~4RW5Ad$RKrgmDS@<=k8wWK5;qC}&ECitj%~;Gaq&6R=J2+XV~pd@crZ6Lv+a@1Vpcxehu~#;Z{VprHP*z$eN9r>7g;vlb`M6I1fXJ)Az zW5BW1I~O7Zpc=On_2xSmK^K7*fBZb(GWbsw|^^4rWapMvo#U6+Ij48xn=gs*iZ*)5z z!kYn}lCuU%Kob%20tovb(nYS(@YcW4{Fc)ZGtAs<;p~>AO!9L7Yv8X9t^rpIY%bLM zsHuJRipt2qmtU(0LZjn72FfduO^B8wS(nqkK8_jG=pq%3(dMJQ52#`aT6p*Vo=^i` zCxHVdr|M3711$^X7@t@FXsss<@;XWMgleq$x;P`LK8=+PayZrc6viLAFXv_8xB)(4 z*Pe0)rZ#Mz-KcxQOI-+%^qc0P)|>VqJ==Z!cAbAG@cbowbL!j`Dlh9tiWDHMAE|9Z z(1Rz*H#8a5`y8e*hF2f!sdCI(p{M3Jbj7#*I%c6)S@v$Bn_KHld8k`I)$rYt|G~yEcBQ?kqh6qI;cd3olS};Po3fa=JctbDvv7oNbIXA(ycN+^ zq7}(B;_f)i$;}tbQa`wvBhFb>FeVS4go|Z929UKeZmvqrFzss?jcv#iH zMij!S9O@)9^&2R%n6}|#*V+!->KYOou>I5Ez-o;@x=8agPXn0m1K|+k;v>Dowp2xK zH{b~(FaGNCsmJ-$sm@ipa0+dbO{HO-cS8FxfjYm*T=vtj>XC0@8X9*Jp{?bIh7MOZAz(p&LB9eIBhA1a}Nb0h`2H z8+7XgY?x^y0-sY&6}}z-KY5l2eKP+>r>n?^{^}s|v?(>WZ)KBr(&#Q#g|EsrArZaL zLo(KKTFNNNK*1$s2uyp=Hq>1XN(fLf?gQKv3^YAm2*>*HI zWU4>ExYi^`(+O`V#VoteQk();FUr#?7Khx>xd}+O)ZVv5sPf*hY#tU#?$s0AfgU1* z6=U~VoElrX9eF&tQ_I!R1@W9PLECT?^STXwA8>UIkTFfxwjej$d&@2Aie% zlumJ;v(7is-vG)49DFsp(NeK{QYRXy(&`-U=h;_bm;2;BEFF{R(;9Gqmn*37!PC9%Lsp$rc{VOZ71P zjvTRvY$k#Ji#C#ELs)BbnI3kl56nPhFM@fZw*P!vc_IH&cN1eR^bOi0nxOylboQ6& zzopBFER|1{3{B&PhHTU*2H!ikkFMA&Pob0sVLehw`sPOQg@zxq$y5@ zoLRf!SEe)TdITMEs~QE%GI1IghMV! zUBt)qm-v!DXDQ$G;0>uY(Q!WudNh$+EMPNJ_CLJ7SRp^W%jw<*PGlWom;= zN-T#?=8b{G`goa1WZYa&HJ|pY8FZ<;bU-Ttf_~g?{b7*xa@Hi%t$LFUY^kB@Kkz7X zc{^dVsnP$|)*$22Sx@7(L$+j3Jjc5%F+O+vKY5=^65uZC5L@Pvvgze%(uB25FQa9L zjmqxd%4JoUkoDv*xknJ6ItX@Lxs3h#6bXjU=~|D?11QrD)tuB($KF%RyxPP@O_{%^ zOS>9e(Di4~d#d<0G9w4h;fF;2QPE3LR#8Fh;7<}4Zu2E9CO-6r(~{U13ACOPt---~ zv$W3Pm+-vE6w#x2^q5!1+ZrFN)3!H0ccPi#w}iO9OtlIo^DGNeGr=YZWAt(aqE#lr z#`cc2^L=L$Xp;=SJ#fX)bS=8PXx-c_FD_cVa9il$ID1T-(*1dm)$K|5fYt(bQwD28 zANTmU+yfXEv}4_`iT!}H%QZ=F`hVeJqMe7u9F3>^=FlY>3N`tQUiMnCZ8qz)ar$M; zBpbfYTB22QLF&Nkm6tK>Ee`%2YYsQ3KQM7wgRWNO4htELK9+ct6hgV>*(FKQYY!|E59_tj&IzSN2Q7zBM{#FMj@7|10L8hpnEl(I>g zmE_oq8~uSVO-B7oiD9R_IuE;O%`SX_Of0}=d|j?;z*eT7uKLnKZ*P_~=~DksZ3@|_ zd0vj+Ui|?IZTE z%E&>*p|I|eQ(*(wsir*5;CJr9jv3+-YFiP(r|fUwJ?ywRX7w~=_I56AboyZ4p5&ZF zkMt2GJyr#8c}23N#Hobii-y-F0iLYQX)DQmK34|EjWtg#5A)?;faLR85(}*Q-Yb z?f-SFYvJW!kY1|6)7=sMbES+o>b58PKSyJJJ&09C+igHc?Bk>T(*?t21!&3(xRc6Q z@Rj;3gZ+M4;ebfbpBipumKt6UIbWwn{C{jsQ3!CF^T@@0$w6Z6yIa}T*B_;_?7?$f zvJ~lo1xC-v>_3Lwf!GqU*<+swrbO>bc3stfe-J?$tSQnA@Pd==VU1aUQL^JeTa``4H4*1OL+#j z;cblYQCac4ISzavu)E|-v@KfE z=~V84@PbSqt^V239M&JNN{??kr383pC&TPQm<*-l;?{pE6h^Mk6t2F*s*7qo*t07u zzoq-f+OV;eiX;oYXU4F`%eBN?=w9$hgW;LkOnGnDi{%_gwb(`0SjlFlEYIjjnN(OSrn#OlgoT>MK%(nfPechLmk7qSGDh4+XQmP`VXEHB?%)2l798 zpfSNE; zq;bCU4+O`qQb<=G2s_k6J~k1*;5e<$?v&sXC2g{t>y7B1wJT}BdM6uX)!UIkDSLSF z=^tPo<2?#Ww1WuKR@O%RgxRXYS6_ZJ9Wqpf6%KJ78pcwJUn_vMx2Q%{jqtfDd7XO+ zdcS)+1J#(x+^yH*@PE;NSfb1>5mYgUc1*XUP)#*hGZp)RwL>DO0iyy z3}7D4-#J{TbcTCG8F9Q@I}Lqi`g)!x@0SBAij&BTgPpuCOQhZl@;Dv*hkeSy&HG9W zF;k2P8tqkL%-fan2@oft*fH~%$^y0^44mm|VC6_}BCMa)?<@!B8+-K(0H;pIn(1Q% z%F=gRgk7o}ii;HLP;4C-75}Kn8Q@LaG@=yRiB})g&c8#Naiu{+V5Y^?(DyX>D(~!% zNb7nccCyoN7MEv*3ayVH8cA*kGlg#pdCmwwk@NKd?v7d@qP=K?;6hr z#UB?LWVRej)J4yri)#`PN>`c%LsEQh ziD6d6waxjYBpnMkM6B6dzyrFRu|~ET(vib~lVn$ABpNIO9y-l8r8} zhFxV2h7+l+y6dtmeC5#_DncRA^XJEXG`x%Ij^&`^K(baBKQ?y1p)Z!L#8VbFP}~_lDUpALv=Oc=zhJ`qv~P#g;s#S zA};|Fzdv> zdy{$rH!*+F7qYw;yrRLm%etps_Ot5^K}q}kF?E<+y|3meK}~#}31HaMLyGpBFd? zjkCA&Dv%2e;^Xod0geEJTctjX0E4$af7+qE7^N*?;F|s$7;QKdC&`0_q7Tc0Hi1v0 zvVVM-XNFQl)r3>~#sy@cIdN$Rs{dZVeSO2+p58Zo8Af%|QW1MnHWBJ56MOL)zM0)U?i6g@?dwv&ecQ`xbKE7bXt+8^K1Kf7zYzs;Lb<~~d1i#Woe+<%VDO@U`UZ3Qil2hM~$ zOYTc1v$QzgPwkYP_gUP}Um{i@>dht!TxK2w*T^c=|Io0lu9eS4ZAR988~Qz4g?}Pz zrx-M%t^eNKU3efDB8SRcStXSnuD6SuU)VA$SS|I|Q9*mIvu|jQFNyoQ$_vb^KbxJUY zktrb~t<(wq7aZP7YIe!}&rc~InvlEg>omVrIoEnf64LwE@M6?yP^3)o!%u)Tth%J! zlkmj|wa!+H@}wxvW6emhS~~NKtik@hEuvJaI5&_k(|k8Qq_rjnK|Mq%VOA2n?x3X= z9L*mr%tltqKkMIr^sRa7OB3;+p#Eq3W>J(@lNf0V7HumunWL-e_x*bo*6{o?E>^$$ zzDDiK!M>o9D&ktczVq4D#xX6=iuSTsfM(Jf4|IL|rYr!yRz|K8BCCoOf`!T{y>M43 zxr~fOY_+yeQLl7KwJeqllrvlU6wE)}t1-3Ky_j8N@0M!m-@O^87$}J%Gm)L%gw$*g zSpHJpZ-_OyK=WP+vb!}iOB-s{wU@n7QK1SgqP2;JLscdm-7Ss-``JWmIH-N%ngA zsQ`Y{-KakIr$99X=G+AF!&4RVOZaMeMaXk&XA)boep^+u za@;&rBX{3(Qkio&z+kHgI3DsiyzTVmT$L#LV~AM@`#El`? zB*}f(Q`)(->vdU+5wf5y_u6H&^PoA2PqWX^lgn!^ZSJhTKOJj3)TJB{3oc?-;{r-Z zGub>w9NTn&YgkD!>%Gka)Cr!-=+#{%n}Qo34c^{{x|Rd{DUfl(At3gKW-LXToYQYg z1#}yZJ+|vO@kdy^qJo^H-rNH0-3`1}+GZr-D$myFJI*^APJ*xPl}~s?cVIw&w*7UH zeHO}iYzXl=|BOJ64%_E$_Id~04i{gjOu6YKhTkqM+*!=rfrB+qis6^H8FvYuRWbgP zK!~#p?-u&pL{8~Ofht4Y-5bWccmYQNrSFc5KRu7%PSNWIe+ZGi+B;Qxyhw_$IIpTv ztP1YPEGQ`Mj+(c&noZfqo7I)gIe8+3IAM*wOE!!1(S4 z>zk6QGC4-}P-}ejiV6>&v=k!&wJ#A8fyl`W5m#`Fg7=d{XGk)yYQoJxw$pJ}^DVs0 zq7eJ03HIdm?Qqv0L*GVt=O7%sngX&Am#Lk1h=#p%TRLxcDDi_AG(2Ap&8r}fT^|iT zD-!vERE2Z;Sp~mOm(E%dU=I@JylP?#j#&+>)3lp-F3-!2Ui5|PTX2*-nt&(#jqY)W zLo_?>sG9ZDYbA8DRC)DBPSYK{G$i1H;{4rI-F3e?;&5{|w?z%RtUvX4gOj~%tVG(# zFm-)5qWe5~tiSoXYTBPIkTX~w=*8A`gxh zepzdmsU9%yHD1^ugyg^vU1Z1E?0p9!JfydACpNOW9odcPI!<`~xJB#8t}o)LE{>04 z#+^=dQxP_({VfV^fyyoJN`Cg`RfJlk6?zLRksj9sfq?*YTJz}^oKB_f6gKiU02|8r zT5M%Xy2TXI-L6v*D&Ue{B-b%`Wr3DEnPYStCt+lUPFFuU`Qi=ZxiITe?E4lvv4ZWY z!JeNQj#6ve!p+@D9w?Btz|YjjL9mu{xpJ{PrmJ=|#)&tL@ zyBP}XR=xP`*~r@r|CIHb7Q(VDAzPtBt;;!($Xsp-+~Zj07m96Avc>pO^o_Rj226xG zct@`&$J=BmsaG-;Wvmc}a=EOE!A(!qH#{=4xu*I{z2ZrYA3L-CaB+-)=C++?G*xol ze#QFZuJ-05rA0a#G7teJRm+UuVUj~0ino7kPLj4EWr`_J*;9m5=tl(gWgl&4Y{PEV z!MKth(L{RY%rXZ?lg>$@H=OHk8LDF6$tiiFjGX?hskWr|%46uOLCh#RH$=j3mrsy5 zZ~oFqTq*~}rU2#R5vcY9kLXH^KDMiHuaaKjB*KexQGBi0;j=A{Sdr*TEyInRMmE_1 zgv=&&w#l2q_Tm}hrZjQnpP5eY!cmf$8AWGRwRR4_F6Um*+gM8Y8T-0euRfho=Ng`v zSyMS2l?U^0&`N?T{z7Yye;tZ`1b>F6$G6wNA-_Lh;-m98no53zcY)gkauh#Y=lEZ{ zYx5fp8o1(F!9({Qw}d+DD~8h1TxY*f0FE6=3Rnz*>nX z`=hg*#@e#?y�*xNz$O$)aTn(8U3?fbP;%IC+*ahNSi7wHAWZJNB`sQ8I%^0&}Lk zt~7)YpJ){G*OMhQ;^_XI86-0M6dn=`k@|u=&8StXd_BH~_L&k&=o_}3$gbP;fPJnG zqU{FE@+AwI25|GU^_-{HG1@ve^v@9h^AMW6bfrncsHhMA@&!~T(V5L=HXH?)cvgpoM$0bp}=wW{kyYiRN$80&(WjP*wLb|LR$uejj zaRdTb7BzDBNL{TQ;0QVVs0{~jhw{XVd9$P$oK4|+SG)d!mHya5Ov_@3Au>_2A|5ed zq#1*G%y2jK>&;W-V;rIg| z?xV&6Bw6$0if+bi49TjbTXIf8VQ@zePg^{xnbS7fJoXo620D5P6piD%#hw&>B@^OI9!emd`&M~D`s{2ks z7dG+EavZ0}nMZN4$8AO5`jo|VTuMxm*I#MiAZ!-`sgP)*#j5g6kE@-oMI2tH??;k8 zM^v)<$t zUe*nGi*xMwJhW-ZazOLi0cJQ_>wW| z(Gnv{6!O!gOmxyWQ+QR< zok71SV0PulhiGB_i)s)b`vmQIx9Yx|ZO+zgBOik?&M2cV6-l(t=9j6(z{W_B@{!leK9hi-$1t)@5Qvqk@doR4GsOfXcPX1|42=KCLOC3O50`i>GqrpCnH=1 zsCg5$GGfv4MEWqq3B?s{IoH*Ub zl=7&fPfFj?^3M1M+7eacLww@#;hz;7p&2JTLLtx^^MnSQB8AX-Z5!=>v;a|y*pw8< zw{*e_(=32a@38@=@nYA#=+P>1qmxlB+*7uhF_O-ll9`Tb>dM61W;jGzbq1gZsnw>& zqZIxw7hC@nvXcK$cJE0?nR*g#<9xFve_%}3v5JXw|7quI)lYZGP#hs@PzlkhE$qvR zKVHKGxU~1m9Xs)!v{p@>jwnu^f>-CSpILT ze*&HsDk2Byy>FIFnr{_UqL^+WMS~F b=jV5uN)oZJ?S1Kxe@cqVi4=d(`})5COm;mE literal 0 HcmV?d00001 diff --git a/design/FY2021/Space Examples-FractionOfZone.png b/design/FY2021/Space Examples-FractionOfZone.png new file mode 100644 index 0000000000000000000000000000000000000000..d2fdf2b825f0a593f01b515aa5e21d2b01d896db GIT binary patch literal 11903 zcmeHtcTkgGw{F0~PwXIqfMB6l=^aF+_ufHz2k8U|pr}Zf(4+*UcaVVerU(e32ZAB= zp3p-=2@o#e_s2amXXf5H-~H>{lbOt$w`A|Vp7reYthJH|O?8Ev(9S{|%%jMEdwUuh8aN!jw6w&l9cN@@ zWM^lmtE>C*<3}hI>hA9D?CkvG#}8FiRdI3g_4W0kp&?^qV-yOtv$NCK*ccTR<>loy zH#Y|cgTunYN=r-6Op_bIKM*S?oI-_u3mpBQF5pR>%39q}#pd z40*0TrB|}L{^lD~FgJ`cJaq0i_SdDv>)SW36{rTMX0t}upI#@djcy7T3SM&#$=;P7 zF{eRI32SLJ1+|}$oDKTl_9f$qX;f3?A()NFFs{(4R4ncB`|K4P6rloo_G#Nsjb*&& zdU&hs;@x7=62j2lg9q-x>q9;%AbjIOhosLG-?HRq6m0ZF!x>cK+IOJbiC9rO?K?_n z+ijV~v@IjsBtxltu5CBG%9raixc00ucx?Yjej;+dwBjmkgOR13nGci%SgAmv*Tzl8 zPw##iCg85_ikxBr=4!3c8V~OUB-1dkJTH!3ES1urYAEiFsbNkpDu?q>%%0>uP1=xV zVN5vn8!cxGL@MowY%S@XT9vj0@A2NA9m{)FWmPayE8*77%kkXEJPX31IOm;O8$0Oo zq%Op;TFGrD#KU2Wi6mBt6LZQHBy||I>I-WLCY*h@6PK5$mVs+W3{EH|39dP|injQG zdEG_u#IBnbx}n;rysZWw7OC~}u;5CCkOc0kSWr|ai;IlamHh6{S;g;65D5>QC{sij z)^|!;${WO#qzamzE`8B|jb;7xN>?|OzagohFg>u$2cl?_a_C3&hgvb2r?w0RmOBx# z#-bJH<}0=a?SV!mvunN$^Om;3xl)o7A826PJ1(<*Q1{zbVsCh2p{N{vW40V0$jd}V zmHtU6d4x?L+tRnz>69h@SjFb4-=6=NIalDLrl;`6hwN~xY}Ndq>a4c;yU^fvb8sLv3Z|oEdlwqz>#}8PaVF z1lI5AT`AI29p#%yRaG1u`C&O)nw@#y8xHL`0e-(G(ID)ea~YZ>NqG=_7|^IIKKw*y zd1}hq$aTydo#yC=1U?fIQtidV zCc@`?^u^hVx#x9C6NNpznfGvikD+p+^v}aV5WfjUjLS%hQEEXR4ZP=f>bz$hp8jiV z#j?fe&Xcv`FMTTjcjD4k@R|9nopCADS|jN3p<6eF%oH~)nT^<-T7g{C+#-X;&9RU+ z>{gBMvQ!8zp&wzi7bCL7f_o!2CCF;Uyk%pgu_8CWo#+u5XZu|*FsZ=i2SQoI^&ZT7 zMDc|wd1dg(%ek79Kh{e2#iY1H!tx#?FBW1ySu<{Nx@4Q(cdhnG=s1*8M?9W`wo-H6 znN1~buk+^4l7a1&B8w@xs@Qx=iPrDR9QgGz@yMUfE!QM0S4H~Gn9}e8@ygAH*pSM7 z|FP*`X(CdIC z;F}Ohb8^tbg`-q;46-yRT*%(&u1?U}bqmNPZ!m1+nsljsz==YM#F|Ch%yf4r%W~NL zh+$A!qVc`8C34Niwx({|z=Q&uw}RscFmS{^ey_Ng+Ol>U&)_`f%o*VBNE~C-@EehC zE-yaGzkIM{F--wHv?tj%#`>sSiKBi+$WIWnmCB!SJL;`Sq?!f!MyiR!wR@rA$GLE* z8Cu3K==-&v48E5tg24DGlkaz`x-R6U$ zCKw%@LOuE=@`;)=$Id%vJ>PQuU1CnlXQ31R=&hC-HtFzY&dp1smwnyiT=(Py;gTGB z84bh*#{!?^Q>)4?;?nNQr*%iGagt`u0UP7JKYAu@M2;Da6Jwa?5e6yN5M+z+{Me9w zwyPwRBy&%KUQoW%*Cd*dpJ29_VMd4fMohsZRW3h+?`xS}MRd0)c17IptWdO83xy^? z7l{m&C{)_6tZ(;jJo9hC1{?0AM#4~%`+AjMI->Ekd-rzDamLHE9&^~w?NJMc_NIs} zocj{<1HkchFreigAt|p$#r^~^J2qc~;AIZaYxCa%G&dxe2_EDV>ea6P2k{MUBHnh; zeJ}dP;urZ)#y=jjt)HmAirt-W2mQL1_Ud)+RgZTpcmEX0W_(q;EbMfL)q&z|4DElX zTayCOUaBowFa16h%S5%y$LuXEPWsF!k%e#4>u8{x%v7fke%7idIvsp0L@tU)PR(W+ z8NT45J(NGIFo75h#e{E)y3Y4g`cBo6w+A0QA-Q$LOW0W2tuNdsFvSF|sK>rFpu233p4}--ms7H}EtN8sz~i2ecHQ=ImjbK&n$~3jDtQ{3LsUu8Z)( zm1=uy#n7T1I}guQd0r227<0*?|NbMt-ImM#Pu({g;TU{DB}coMLFnzH!_R^Tld;Z+ ztn-7rw%JJW^Q9VP+(2K?TyIsTgzr<##$d}TNSiC@4O%Mz5c)qdK-#U*hxz{WPqw7i zk9i-RtuU~&XODx^1zR=UQz?VGLglrd$F4%U~dn0WC=%N=qt57mTjN-h^bs*D~)#a-L#18tw>My3T?<*gQsb;_0rF9nk^r3 zY}j+}S~2=Wfp=ZR7y#-+GQG0gJ`8+ zJYdQ;rPU|3oR<$(aYMs=q|=k?B(GEut#?yPwpRge&>~$ZKis5Fst`Sf` zg{63Egs7i_=GZQh@W2t{CPMO>mgr|k*p}e)+vc~6TwhRRmvbjg>2Iwfgm6QspmZ5Qcvya11jo)5gO_y4$KXc)(I80ug+$1%thnv zQqGhH6#+d>1e_EZc4j>GOr9CaU2I3J^z77BazAv%zjPvuCnPm8ahd4rhF(9XwaJxL zJ?)D6pKJnW{PLypHzQF`Mg`fq1;s1il|32*)m*iD#?GAysYry-ohc-hd{^ zPTJBS(^mktG3ZgklLiz@8Zl~~-t^QXSw_NeK3Bfz8*e%!zDhw<^=i&_I4e5@+Y}-H^Hx#kPOHrt;zHItrFdLo3PW8nMZn= z;fcCi;BM4Eh1d{^kPCV0dD!hOyurOA`J9wa=u?73>mmJ*8Ow(2*sUkuw8BIi?E6^P zrUy*yx5gixpUWov<1+e4eTeD&X-dI}cKMt0m(?yF{XgGo&C#$I!<}M~|FjS%nF8w2 zDZ2xwNV0?Si!pinb`IcqTaD<021)bn2hy)cUV_b-*A4}0f*KKSKsO?F^X}5l>yRtw zs@gNrTt~)ZPpqDBUyLI{3r$A6a)eskb~|#~?0g(mWtJfcfVXs?5~x7Ry96Z;;w$vZ zZnuxdK4@W%yJ^$Vgv5AdhQo5^!NpjSc@a?x*#ye`tU<{0kf)O1In*u?mgdsLk5~S21t5o3*#0XlCtCM3``}IKIHoZf@2ETI9;D! zFda8b|C)!8ciE(+Ar-KtA1Zb!Y02o&T{pDF;xc>VUDi}q97YwRxR;$W^;vs3UBlNy z{GriGNN4lT@E;R}^YqUXT|zqg0=5SAp6K6{HE)R^b>7$!d!EoM(64TOvq06BYPKT% zW4$Fyl!;d&BHW3gD*?yRaySRgTH|zXvm&chXBWQMQHvvCee7Raw-AU3q+H_jsGtdLRPuNMXW zd3Ld-lftHvBI-IE<=UAMjeVO-sBS)+!>&>hB}o{tp)}Jscs~ora&sR(?Dj}?DYbTw zL!cJN=d_7ZK4Il#^r4iSu}kX4AzlE7&6M5aMi3Hxr-Zvc@p>q^bCaQ99!>w4f?jgX z65$hOxyH}N%@Ip43s2M5GH-$7yTVu)o$GgVbzP~yTkKTYymS?HB*!yJ-0l!}FXw0v z{>Is%okZxXwreZ*Ge4GC>x@@2aA3F~$n`@x)HqUpLQ18Lz=*j>tDA>-QUZBBBAwJq zhYa?o#4oHHM-m!-P=hZSiCt!B)bgAwJ#wSJ7{FcF9p^IFDvAtO{&%zS{w}4gEct-V z#!b!UZpP6;>0L`tAtjG48Qmqi4X-YMTf6MgbbhnB^W=U&q?;=g}(v zg4WeZd29aJ>lZo6{I8Fp&3U;wW{SC``K;kY6!{zHLAfNZf(W<1V*L^gi|rz-DTZ7R zNe3$4^VR87%!ZLa%S0b*a6V^6tM5H!h;wHN)U4jbErh+Ei`jW{p2l@tUR^;PFHV?y z$=`Ta`qIV4J5w*Lcs`16bQvctV$z0gQfu4lV*A+}n|!5qudCLai}&}B$~`^ZP`8gp`MzKTK&+=?Fc3ufOG{~XTREl3~0qg5{9dW4KAC5fz^{ugkn zp=qp4W)4;N*}J=c#3VR|TRjt8S^=D7d@W<_ugT$@QN#=P(i!+B-d98y^CCH(F-t}^)&ej-DE(3aWwN8r#BaNY&FPYgVpnFJ&)ss9@+;($D*GUr zl?lacP;%}d+oZNHHgCnzV~h(UAL13?@2TMUL+f_6Pl4W7;Nc79&cyyv`D7ldS-S_L zB8@15&zvoNLsZwn1$xd`zR36Bl{uEa*VE@zyBUPCKQ^i!OULWYLvsxuk(I00S#W7E zeJGE$)M&Jt=r_&j3WfwNB?5Tq77EYv`@>~Y8 z9A{MZ$_}WeGiL-IAr6bRN7;3zWBvEk6*{-%BbVgs-1C$(ZZEOif-ZmIA&FY8kR&q{ z?uz;h_;(YZ|14cnvSY-pw$Nj}YQMcWkECEj9(0t#@kyOJB)9OZ zNIz>M{OY#z6!D7BkUFDTV*tl&K5)oh-$xF9B>)fjTBpKSi`pSWsXiU%?f@v%a)z4*IDMMU z&-+Dw?T*m20LgNReQ$VZiz)^vBokDlHVyvVy%6`aB(*hAUqEpdQ+!5L>W?E!66RuBNQtLd{s zCXsi%toE|y36}KQjC@4X(T^M)?OK7{0nnRUw#fdC-y_*kW@0_f3xarXZF1b3RbNJw zBX5%g@YLv~iY2;ED{rIVSI(ae6ixfJ( z1-y_LuS^A-2n&lU=>cKhy1mkNsF0)K-n|Gd=ur8_ubYS+3KQ-K9YZ2JV25R6IRm}lr_}|%3?$PkJ8_ELS9`LR zSK2-u&JaD&Nkt87mF}`d>Nt4^N;np0)gPCTn(}Pt4Xoc0kxpZJept62)H7Lsp{dac z*3x0i18Ed+DpMKGf~2$|BM*$aLzP1fcw~gnO#e64S9{K_m(?S}*p%LfOPTUh-zq(= zC6=^Hxt~^2tpGs$%obLAd12xldglzMVxz@tUqe&JWUXQllyCfI8D9@T3k zyxC^j1Z89p>Tydm*86GHLvd6)i@G(BiK5vbwQzK9(h4AqS<&=7MxC{k1_s*jhjq}F zQ*uL$RC;;wvdv0Yvuc`)`r;S3aB@$cZn%WSWBk2+l4Otr3>0s%ToqN^{BbXlqrJXi z%SvL+E7UPeJ8xLzv0~W<9~4@+ z4WX&@Hofx@`+F@0n{3z1JtL1U*|vIr%UUdF8j&sV^$>t;N3-YaZ@z3Yjg8mSB1x9Y zC#VwYt01^ttF~6IBO#*^gaGhJi@0;y*>*}_COY0bS-R9sX6%c(+faJ&z{+ z^S?HM>>&pzjQ~dkMNXnpH5WtqGlHn|9!h>*)FD&S0sD-tu&Jw>Kkk+QVizG1{t9=ahd=DB*PwujUB?;_j~8jT*3x=%1Hv zS2?nfW|Y5N|YU*#YvIJ>$I45jW(2ZXR@lKGRJ#h@ZUf{8|o zO!wScCB7qX=Ghrgnj}2)mrWc&uqj?|PUn|r2K<|~FEQ22UZV_~LQFX=s297)NDbC4 zbrzNnqrbZqX%JD!FDqEjlN)QCP^%mD_gozIH|dT@WG~7JO9WT#_zFQP705$dP{n^@ zOTZNCjRcIw5AJFN27=a$7uy-7=H~uYu|FeF>aENn`@Dvq$tQ4*$#_(r`1c&1u2zzKe%@V3gORuN)@zoX)khUW%WR5HLzLUB0XJDLiBXiyZsdPE|F^9W$rwSa z63W_d8Q`Xl1;;*-R13R3{TQubhoX^N&Y6=v>q2I&xf@PiID%pXOqe2BMt#y02RAMTqVey~YKPxaHu z-w{s=$~Y6`uMc>=k7Z0zDDUvPsBo3dQy*m2EWGZQ3y-VTciioXH39i*RhkJ&`fuFN zhd?G^Py3LQtGx%atuPFRY0RQcB`j#(=mOV#D}OVXy5pC-<+I*27Pi&7?{@R&q1iS~ zzcVt~eL5xE6^E0Q_HW!TrEkv5z_M)LyQpHci9fos>6T__eCik%`-jxv-nH+z?5Ob* zwl9@zlShs_#|I0qbx$TmMYS!-Lh(5(cXXagemJk~^X~biFnv|8{88ZLiN826nD$@$%|>_CVmE5q%l>xMP6{tv}^mnB94#PE7Y@S~B=yhzr-_TSx6#vS*p z97M58C=SgZ4);zcvv`_$r@EYO`8S#IOu-^M!OU+G8Ai~0drlM^ZU#Vgu{1(*lD&7C zM&b{{ewmRAP|;g$(6PP2mi{i_^%dY>y$Ic@Utlr%N(T!=NAT;n~J;|4e*}h+!8_(!VtotQ=OApWyE+iV;eM zq^&K?BCy7ic4WBw)tX86 zAj9odR_4|%V9z}sVU##4-Wv7@t7v^u7UV@oYgAOeHFR(I8nq02yv-*J;gA(U)&D5E zNcOeUqP*PDlBQYC!dcPcs+DgYD5^y=MWb{=b%5lWE7LS=0@U8r{V7w1DM9FwXB>Zn z;qv2|vGr@}7TigW4a*;lJhDY&!+fR%)mE(j$vakw3!7nYp=E;~4HRDEP48yG@U z{SYLREG2vMZ%j+I8X<9N#^_Kq1K<+Gy(y1TWA$YQKhIA=pU0J!mn948MB@m~uiF~L zDl)j*YT#7m@wPu;%cu$z%tXSMp{xfej&T+9g+2b4`H{+fl{$+CM#&`|F~k6ChV>03 z83|F;xdH|J=-pzDq>)+pH67#p2)v&cjT27k$NN3@c+kl!UkGD5to!j7h{d+5#;fl_ z{&jjHw)i&TMvsaFvgMuh8q?Z|loeuUloi&pJ z5RTT3iaIc2A=P=WC}wZ}4W9krDBOdB-A&nR2S4YK1h=97jd^sTGEAi_DwZFogm!p5aJoG6cYk|Avt#eC@IkWHn$%=`_6`DzhZ4&Q3%BH@bP@T1 zD#oQo6YUHUGS2BO5J6M@H;(tfvWzsVHt+6+hD4v^V3RL-?>qc0`gpQ9A;Ph6;od_V zjA%~)otS=-V~;bmX6>p{XsOZkbIOwDUoW++KQLb^sE$yelN87%J?8t%4)?GV77vyI zh6OIP3YkqcNuc$cnJ`;+m|hyfZ4i1jL2Up$KSEyIzScxT_lNAKY7yY?)Oj`BgMhuT zn=0(Zs-Ey+{uF8#^Q=y*!0O$65j)4Q(P8Kd23i}V8V1~CUFctFUdiZXIt0ArMC+g-J!F7@2!P50x z7eek_hpOjZ4oDWF5r^n@lB)~PNAT*sizVOg{+n!|usmPb2G-SEMCI(iTV&MHdBrMs zSB{@eQi9dze81|C+JIeFymIhYEI7j~t{^eDK_@@gi{XU+I8FOfc#b5@XUg+9KnOaQwZ Iyngq;0LTF-4gdfE literal 0 HcmV?d00001 diff --git a/design/FY2021/Space Examples-FullGeometry.png b/design/FY2021/Space Examples-FullGeometry.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3545ffa7f076bf7a52eba5485d17fed12ca784 GIT binary patch literal 16083 zcmeIZ2T)T{)Giu8L=i+(K)MJ>2kFv9dY2+qdhgOg4=746N{dL7-dm^w2`Ei^2|Y9^ zp@kYkFE`---}m2{H}l@RGk4ybH#aj($k}J_z4qE`f8Sc`tP}A@U4fX8iVy$*5GyIl zY5@TF*ne?{?%-j+j&r!IuwOVHS_-cLz_tbj1`X%-7eKm6bI-JUl%;-QC^& z&6_v3Z{P0j?goRwqN1WwQc{bHi$_OCbaZrWZEXbw1^)j2&d$zABoYdR8XFt;_4TQ# zsVOKZ@bmLqSXj)@&yS9dPE1ThM@P%b%64>gR8&-$o0}UN8gg-Q+1lDZdGcgsW#!MG zKPVJxXlRH>EAB1{H7*{0b#-+~Ny(QlUknTkY;0^G5J+8JU1MV-EiG+SRMf9uzvAQL z_xAQeLqk`saAD#=Rg_?T?X zszhz}HRf;17FHQMzSer%z*rdjD<(!Lb&AyEgLEPxq3+Kr!^^9dyg6+}Qpr&MbVh!` z?R%0&$$4KAGY_Km2vl6LQ~dw-vrDB7Ps{cgKU9N5Y0CpV>?utf@6Taw(O*of0*>>h z)gEQcmNOH6XJ~YNskAifA8=gb3{R^c+lY1zt+J0DUX8U5SZ{>ZpiQkPBtFJv2tp=4 zoPxRNf~8#UwyxGKODk6>;5<=lDYj^QXry(z?lkc>xcAr_@BOMrAQ!+oSD?7FWpfJ= z_qFBHR-Rz@Vf=mr2Rw5WBNA&SOR1 z;^wKd7nn?<))F}GEXd<~+VPCH- z)wIfKMEz*t1#U3Uc)o?p2(6Kn1B>9m4=)p%cd1MR->WbrF6bY)eXoC0C6FJEziOID zUmAv0g$71WF*!+E0GM%Rn-%tIi3+U0z3fPd5c7B!?J5H+nELum%hB}YQSM$c;hRwS z4iahY8I*LGUGzl*bspCM4l*{RUJMxUtZP@2@n)gFf0{{D*+&%2<6XlQF!!{K{j2jt z?7n{r3ooxX3xsl>_?3OF$nk>_{hFs=S?SY2wqXyQt2G{hVZ80{5<6c>f_qEb&32|4 zd>K0ogt`noR*o$)@KR{k$JZ5ab$~~biuq2|(Tb-&2fjo-o4z>TG@LFOmFtOUt8;^h zcEH3m#^k}GGk+~?00Dxtsu*MT^zvFbH4NIT`|=NvjdCFs8j!ieDpd@qrAkl@n<3OjR2re?Y;BHa3s ziiqj%bC1X9g^(^9BlZr*J~shdSKh?93adZXz}zEUiq2wwhPyV))dI|>a`061-R%7ShrBEuoYSk10{px= z0N6KO`Z_^JV@q0H-jn>Y`9m1VYCw~)FMc87jFVbk*yiq6J13W^DVWu$=n9k5Dg^F? zu5fzlm`lU$AjVe4WYFB&n6_jQu+&yCY(1170LInp)aWofNRs4hh}(YjRqiOII%DcL z$;g&v<^}0$y#0F- zK=$BX!Nb{I>4TLT%AtG6L9j&zvwh7mV`pk~>R<|ymo835Kla=)Q>U52Y^aZ5wP*Ky z(*8J(K7WYg*Z&T&2}~0&1R(mGqMt3P#4yHmlhbka`jj0`xG0I7G}4lYMsPnLcFEly z`M}5;@N||dnHTbRTPL`~O!NqStZZvbv*=l08^7gwN<-cMQ&%AlxvJ-=IvA%ob0Xd! zL`R9$)=w}`vcbsL^D=$F*(M3^V161Uz*MQaRq2-nb>`5fhJ{MpG*e&>G|{Q*ug&cZ z472<*hm=U7@(&g@Rd)Jy#{zd-dSvq=>_0O%s!7Uki~|y1tGL^+)eo#rBBJ&_6Rj7R z2W$(jCa-+aKv(cLlTy0fum1K2^5BryuzFkI?|$49SE{g+Gy{Ght(i`+EkE7@2bWU5 zbzFMwR@r5^vv4Fu%Tc!p&jNp4%69}}V^n3=6Udtx8m8V|fr7t8d8g+|1G~OiKRh&w zw6<{dYoh2@?9H;!Ws(vA1U?6gNYaWqERor9 zVaxPt>YVnHzmD)+(1MJ>Y(EHUnb z5?Mg@ZJhA8&j6YsfOdA$;6iDDMbe#DqfY@<%D0|6JP6ij#(f}o=T+%LoN%gJPjw^y z*LDlaG@cM32--?z^D8I5o^fG^e=9YAYG+Y9DIl?KioUK4x-E3}>$HsIrnLet-0zkM zb`B_i6YcIGaOc7cdLw*LDvT22>~MHkB`>0!2`#6%xtpij*>9(^%^Q&~A*eRt5C=@0 zeOI=Zz1r-N8Uyi%f5@e)nJ{;>Hsd(!O83eo*A2d2?5;PZQ0g5aL>TQ+pm0pTrlf}2 zk>plt+YEX(OpH2jR%l7!q~zd>t5v&w6Zm=ZfA2MAFv)hWHHXYwp}$J~$lkl34TH)? ziP3kINCrs&wGN$~Z1p4m1qF=XD;_7Ts;s?vE=@ z&uho*Xt)SFMt)O0xZa^lZge+77mvF~ungcYRy?6J?mL(l&!JFN%wytB6?17IdynJi zi!cAAA4Wg18Qq;00-nlzR0CQS*h4f4Bv&cUKV8Gu<3tZnElr3k@_nTa#%G1Q)?aL_lSo~NW!~aeVB3(PmRAUv*h&7+ zaqC5tHoQPFnW(b?urz{f;H=v_93yCan-!wDe>xOKbHHcUbShF?N%&9LNru>MiKT4G zcWl@8*=p*Prs1ihg2~#tUqSg#fV#A`LIG#Yr-+tvnwu*-m~&r54DE{G!|GBPHRp26}QLaOEAKWh$jsdTo;= zxVw|I`CG7!+YG%LBy^4R*L`nVj_`(DDE7&PRs9ws827!~*2MB7#uxyaOCZ4Zx%+f^ zHMGBK-MIk1$$hr9<}xp^WOXt6cguOG*Pi~Jm78!h(*AO3K;Y_XLj6&R3?RGn0&rl| zZJ-9+5Sl%9kzQ7qI}knu@|)kKht_0^s2z%Za-o(QXxwsn(jkB$vK)yg)(j|pQ1;>@`nj#9C7Ahig`J!dJeN4y{sNAFg zd5NiWM~xcOE}YWSY87Nz2SfCaa&a|}3?%9~M`^$)CE?ZmDQW;Ke!izE*|{p!4Jo znSbhKorp5;bJG(ZQdHJMx9z&3#*$s=3qPChqGmdsiU0pLq4XH zS=70**QOkz<4b4z*1ZOyFB&EKgWhE#TQ0!ZwbL;GuDG#VI78fua$$7qNN>pA$q@70aOV{q(xCfehv<$I}pj=8O(WlV>HQTmKcI!T6Ji0> ztseKBeV$bQ*24Vf|0}Tca5EICg7^B8oMW*S3$`grxI9f4SNZGm-L2;z0LNT6V8$Ql z(Z}9eW*q;Lh7Bi(@y6ae>O|5YfB;V;y>qLZuKdvMjc=dl8fGkNlhh@iuKBl>%|!*d zdKdfpi+N(Bp3R-zeCRE*@f3}5eu#bKC;quXPKK)sK z75%&tIbB!G{f05_yYfn{N@8c*zbX>;{xQR&GctGBz0$wQ4w4a4z6on^A8HIT1oY{> z18R;~nPO+|yJkTF5;h+xEfB!OiY1ogeXr|YsV&wH3;D<8h_M?A> zr+iL}u>)@rY%o9$PFtmaubCLm-ph$o(>~Jd>USSs9LWL9Owz1&0n#~pAFO0-A8kAq zaQu7-5!0r=DEPgWB^BuDrneXN8+<*S3E;55(AAAavW3@UChw#i=G!7Qnf~H*LBL3Y zu`0^wwh87b!1|+M%T_8#{9buX`;Hclatf*IQ?h<`4tO@zEQ!)=d4+d8spe)qpP?Gr%bx$BA3 z2UD{NVLnBx22OgaCB&+B;s;5V0RN0|KS>OnyI@@@CW3q|hZ>WH@4Uvs-4@_ohQ^d* z<#8L^)>v%#RDy5PN&@P8rviVF@9fQ>fma9ljex%1I^d{n4T3=_<@Bj0%h{pw;NC%# zI>)ONvi|O}fr4~c-QwWkptEeiH43_5A%1&|(#}G;T!`YkJ9GS zFP>XMe5elMt=IYqzVXU+0C=JM#e+y7Ig6c)Kz+S683G5Q6qQmyo!C&YE;Z^wt6xV9~ zA6G}|@B)f@qAAH0YWxW*?li=#?q;crvG{lDL?zIV`tg2YNuSxiSkIDtvChnv1}ptLkPOYiv* z>*5#lu+=W?p$q{K!Sn48xQ&ttMtC=70jm!vh17(VU(cyV#p$|JFpoa)ZdclwFh0Wv za%X69y40iJr?9J%xcKh{-au{JcHsmkL?$j!nTtATg4j@W;3n3_If?lqnjZ7 zIn*N}&nuUl?L@=8^KUS#?J8sa6e3FYDGNuDBhw z7QHPs>>+aoXQJVU8feM-CA@B74>Rjtrl_p>Q%326{zvz|UNG)e-*~L#+3X`MPq)CL zYId5-7)_nv_53k6XoTKt(9=CL85C91Z`bK=P_6Z6Vy$hyPVL?OVI;%ig<*o9ivH$b zD5HE?V7CgT)mnfe*_NW6z097CQ;O3Ii7+l#$$jm6RpMPcVK zDu_GC-WmfMQnsg@CK=)i%(6xAnB3yBpzaSj3!EG@ru8EV6%SxE5smz`wA&jOys~zAI z4b?T?3;6ra&Di}j$Z0$!qXl?X!8X#0HY?CDd571=u2kf3N2XTzbB0!ZW;r4 zcTn^aqWvp7>L}$f{Ck&Usg9@|z7IryH^T!T>_sV|O;ezs!^Ku&Rdc7dnsC=Ip$NAo zMZc%U_komxbG8Q6(PHUmZf(EVb)_r(LX$gN|3*~}4IB+pnN47c8n%jFvbH7rLGXi~ zMocOonI6cGUKt$LjYeiAKd0K6NabX2ZNBg<+|I^TT{3xhvD&-bKLys{Y6o8CT)epP zT)N*~+1Fa8gS2#NFQcXsR+7d(JKLUhv4t;lNJuZXG`=(d(wv{~<_hLyvW>H>V5qoN zz8!l7n;4(ip}~6~X!qh1vpJY|y_;HeB+$y-^O-i05w~`lPKHzI#^)hs*q@HfkJpaa zi)giKVaTjT%q96tiFECnksNqbkVN74rK0{LA) zv6!uR$#w%LAtsM)YlbMTQo&qO)}QJ2A#|7K9J4zn0oG(cY`PHAu<3#f(Ra4~;fK9< z&qzZrbgWdzQa<&s*on&CDubCiLka=t!@!!O`X%?EsQvx`CPqB#gW3PYXBibQR3(1Cbx$weQFSKoul&3cDSWhB%-G z_jA7+z0ac*Xk=9g&NDFli)ZZDkn~@p{ForYpeTK_b6V^|%p`uXS6SrT-n^?DK}Id8 zuTiO7I$8M3@8esG4te77N2L!rgd8d}%#!r0G(#}UutUKX_z<;|GaL~$9gUpkY0CWA zZ!2&G@#XeeGKJi_>B|SFUXEB)Fu%0>K~m|j;I%_a-3z@~F3au*HiN)P?m8)d_l_^W zW>ygwM6Sg9BuyP5p-r)K`X&1m?sLZqLE+vMH{3g0A!dbQZmrbbq0Ai$MUvF{%i}TssLpgGJUB_?jpLD@2eKETYJZ_$vmk692m>|R zt!1pH?xb3J;oDX3F&`zGUuz`6;M2eoF4s?Ap2rb@o$!Ll_Jm1px_7I|UNxcnKRj?AI&(vec4 zqr+6mkE>ov zm#r^XyCjw<(WiMj9f1yQZ3xqqOyZQ)RE4*h9XFyzP{?U2+j;|^{s>dhOVj5Xp7tuvnFyN!;+U)BqFn#N`(g*bL+v%_xf+X9X-(0ac`3567 zu_giJ^o9}qCvVuPBW z>%US>w6sQL@^t;vnyw08k*dHqtrcq$lyjLt&6Aq_H~I#TQdUe=!jD;}=lxiBqHo0r zBZe%QNR6$PfE+|UStGo!(qowUR-nf(+Qlh)LX%q~xubG*Fe?>874eoM*;4nHU&L*o zC|OkeMT4V@$ZAJxrgYFbL9knw@0Y>FN2VfvbSJwRh*Bz~P78_AvYe8Hxrt8`$>Q5p>{HZC@5^;n+jZ6qyK^g~6ywthqakZOvjC<5oAKPn?{=I0aRM2rE_@Gp`-1vv*SgcFp& z#GejgXO7B1%9BhPmjD7e{i*hTk)um>F+sfhmcfuhIHD?{{?{e^iNM^C0e_l~G^<57 z&gTEUX>gy-$U6@Z zoK2i7Ys+d2BCarOZyR@@RJO({Aoy3#Pyl(98H z9nWL!W28vwAw{=E_*(~KkM^Zy?fo%TpU@IX6fkOU6;r|o@G@9YTV)Fzoz_h4Nu8av z{%lYT`nN9)Sw`%<6)MTzQ$i9wP8{3MC32aW8c|0?M*WSF^UD|;yxuaiMVdc$Zw(wg zIQE7Sn0DKo0{8>nh#2%IxxJW3!WUZIAjPi(IX3jqo>nWPvl%keT}osozv;%Dgp-B{ zA%=BC@0A|Ke#!Etuy!)&>TY@5_*g61&-A28@PeDl)MP7+8Hia?sl4XUZg7;xQxM@n z)3X0D&)3+Ljczk3hV$xwZF*5{&MTVrQssj^Q1G{GL%74vN=ysj#=HW!E|MxxI9-VP zDJW@qA3S>?lw7axMzuWC>vATORk=3|zTDT>wD2{$s2!lh> z|9qCz5g}k16kZR{5ptff5Q=x#finK}+4tX&SpO>?-kn)&e^fke;LV(Jv3M9!LUI6dS!c+R|oys{)nHXI16jzTVp9o3H z&JdOa9G|GMsF5g>Z>$9{Zd0vF|cwIaF_|OC`N~NQ7 zvuIRGLv@yh2$_E@X_>}s;wXJ#BBfAHy9FKDdhC$KxW@DwYx1a*y2;w*3az<^SFwxo z@QQ!5RPBQsF1b+PtPV+?^mm3};@<#$B>JdMw6axq7Pt?@pfLgUqcOcW)w(;lg_hyo zLDX8%9O#9Omgp(66qUHB>B{&`A-~-t!)O>alQG*nw>@kM+O_W9>10l~j_+AjPhQCN zaJHPT>U}9=zAoTXFOVm;rkUDl`on3xY;$@3i?6-K>%#_%z=Rch4Ze}N>D^AtyG}iN zB!Qq?HzvfiXJ*!2D*aJj$Ytu~76Z)VB0p@KNm*V(!OcgEX6q|#L?d(z%kX1x9)c5r zPS4h*V>;K7y1)|RZp9D@BE223A-US+kGe}v^>S`GK$K-SwWGgRrR{0L`ZDh>YG}}1#Fd!#NRb3O zFuJ}2o?2&Yk_bxvb44QPhp7+0Yf#;p9z0xm#wj{$r7_NhDE2(7{vg2b*}f9|L(XoF z60bA0pv}%Zkv{jnDE+Mdy3bEB6Qu5?&dU_$vc2=NbFhkOy0?7 zdL!%z{4qff&e>Y-QH#&xAG)x;s9jFj*md?E^+gNqccQ!Yq5n=Jla@z}!ZovxNQ)y_ zp#n9JD4mx`aO&PgxpQXt!>qJ{oueAL$r|{3LX6_8<<)^Bmz*cBMRY`O7hY%~C;f|C z#k;;&Z)hZGuo|$}twDfo2-I^nsNT$0eK}C80+SfYZxBAkmx7ulaTT z>QOEF8-IUj59RL@z5&LR2?dbeoTa-b)y_F15x5=uS%q59qaZ$W6$G}xJG+VWxT7%M zA1z6~Ue=y&99QLf!9of4+x4exTOo)r{ctT!ocrk$wa@xvE^#8Carq}5N?c*$DmlZc zMo3$n>^;LlSL3}zr+BXwGCy)FO;^|1U`}@?Bt$;nP~6A2?B=$J!}IdbQLbxK5sN1> z1qH9~PlYzUv#iIIq%1|WULu`48^*na8rxM>FGp$#hg52^*El3)n-hBo--~++e*w>H zlSg@k&*zvGp7}Np#HR~JMCd%97D_`uYIyzZbr(-;np`T{H@-&i=gYLr2Lm(Z063?S z5CuKbr(5FXZM(>6p5Br|K%VNXfJ&9);s}jk5JRtoQi+Vm!K`&fHlt>BXa5u(hUJC> zly)UV!5cq(!0v3gy?&|?-`)ZpS+0(EUoKuXeOC*uejJXo#FZ4^m{q^;F4?FPqat#= z##u?{fIi-RlWgzM&qiNEeDz>&#I|b%nQ}MmgmZVmQFlv~(rXXv(UARsVyT=}Ey0q1 zgO84S9`8^pI8%MFx7Wn>Ck>kaKYS<_2JJxd9Y64`dG44nZqzEc(JnM)8cIu|tmtj>U$9C32aJ)cJ_+8yRXB}7gOshGCs^%yGMM61EZJnqi=Gi^+X zJcz3)lMjy3j^%#zKKa(v$zzqG73!50t?w#V405XcXAf*YRIfDI{jn{mw&!YL=*9{n z7}=6wQ<#s^5h(8wRcE)j@K-X}2wd42M+KG#&Skq99~_7LCkuca3K>WP{fbQDUUVBt&Ln{ao(wlgO^J-ptP|C+lQ#bOmM z(q}0IE`9&C<{emwD24eLCH=KhxEBR)k-BpO$o~;h|0faOaQN{=&<2@#(1#T;?3fyx zT-&Qa@)&3!sWTQTUj3JB>;LJ){J{|f&gE#P)RR={pu!zJJB)YB@cAxt3r;M-!yuQt zH#rNBUg!^(X`z1onX`>Y2l63{$3IQGi3^^w=ML{3OV0Of-nAt*X4zveTJ87uPS2{i z^k!@!!-U-=bZrjgeb4$Yh%t+|hcYXxjW)V(Nui%cOTQKyrlLgQ5m>v@<06L)#kF=QCrgq>tpVPP5H|zcH#b$$J7rb*P+z#v3 z2k|~J01K9Q-}gSQPz&@)==Q1LB~eXLG)c-AQDruC)8Ri`sCFKFO=wHZmL9cj99G3! z#=$cxydp_JBjPLWH z8~yj(Po}AR$B{;%tu)i=#P7)4Kh4N$d>mHSG}Bc-qEbKI432qWxcU^~MfJ*bHg}4Z z8X9A&z8A2;=S?LmdFTV|tK^))25=AQ4MR_-rWa*6+@8}bTgzPP^w$?9eQ?%y{8@PM z?Dkg3mD+h_zSOC^dB|#0s|j(>>-G1i!s)2H>T~iA@4%SmJcpa~m3a?d*6eY=rBkYe zpN+xr;$0?Q*4ayjo~mD6fBe_)6lMMF76({*k6AEeE@Fxtx4bWYJ@ZXvGZL4)rr$mD zZ}j~cY}CqagT~`Fgc7uT&}r2DLxo`n^~3a4&2)(e4)z)ZUwCVMlJk1@mbvCSjxb#S-xBn>>EaaZqo`?H|pjZBiFnX(_1AUPmC&5ZD%h@=RNk zqUqdQi?OZHs)#)#0FmG1?q9A@2NjD6;8|2mY(AccS=S4Wxo8rZtXng3;;Rb1S|s=_ zDz=@ZvDY)oc(VV@!L95)dXaMg@@H+o==ed=TXyVXdC=tq%-Uapm+Wnu7H84iQ})ey z=TClcE*$_-%g&Wo0=Hv?RtTOfaqcobibHc~{ClJ#hyUa(tPG}+A+f%Y463s4bQ9M% zheSDSLBKI)T{vn&ufmJDY4025`&e&$4VcK}dPnYJPoaO7_Y~sGCYd|RjwM9!twsZ! z=`8URGZyK6VD1!@vnf421@Se-&RQ~8=iqi;V`7V%z*>T03{gRxxMti<#ukN|c@@66 znyX1VWm#)Vv%QhLCAKwTd;W@o2<+KvMak(&{hJ9%%tK`L!>KcmSQr*l%vs@s2$ zAy4Fj71l~49U*DpB0YpHrEk8B)t$mj_7`oA)in*JDmWjmXKCvZF zZ9~4&b#VIAQ?ecqOu#x0s9@uq+_{J_XTxNJGp%<^u#byJz&Ni_ z!XZv({(6pA_A-v@nX-Ef8zqwSToR6Un?YZSVl+#uSqIB?g56|WQBj>yPmNt{1eRMJp!^)USHPLvB_(OkV=@8!K~)3zI*b7M(}$`}M_j$k}vHD9q+1@MuMN z5BCng;_QJa8yjPm#Yh@yE>T9O8=sals#V&m(dL6Zd@c53FnQ%rDk}v++z?=?b15RIuV9E@&a0Zz+RM!C!^bSuX6b6?`7{ zL#AGFqUD7F_pfblp>)jh!hdS(@!=U>iD|aZ{yg`w$b%_A%qD20Y!n6^;V3RDLp^Yq zcM4`2`*aCY#TwxS!0LPR7B$QItpm|e;I7P^6coWap3IX zA7pi8dcG1NrEF$Du$h)Y2DPST`B|aDU|n=nD>XWB|8cI;TFFIaJ9lEhO%>V#|M{mC zKiNu{dgB{S5+`}+soKr7aH)zK?GXti!2{$vmD()a)i$0cd4S z;RE+H9X{s2>Eu|eHZza!eG@c$x18wSV9Wnx(VMBc1Ip(1>GmTW1go;gT_9pFoQFK#mS~gMVAyrp;Ng z;C2KpnVB7UEa370By#=|iUk4F)_x4eDGTq+u3q(S6A~tD#zV$;}(guCfakJtC z&`&Y<0-OfNIpO}vGaR0&V$1^g)}%VUzpi+GwyC?Sg7}}Ku04r4E1$D*x_WccCV{u& z2$^d>9W79dEy7I{7vE@}yjVw*Jp2N|1L;;}ybV5`AVe>!bYY@d07d*5RPq^ew_3O77bNRt` z=b;rnj~l06_R)TGR21owZ_A#dhg72Qv|>p6>v5euClXC^mlNJsYDs)-_Q z%g&AdguL&K!|{94>A&|Y6Xu)m#7ZpXZIJ3Q2KMs_o=UBGX?S2P{>A&tBKMB>5Sx-_ zX_C3nn2x^R(y1R^o@p$0!UEj)BV$*GmY%t-FPno7>HQ==Ez6BNN)W!{F^u+}hO_Bz4!tL@^U~z**Hu8@d*X0T`bFj&rSEu&KP{dxK44Qu?h3chCUtb${MS#lP!#V?t|%woX9 z2Js*(6X164%X_8%1lSC99JbJNDFT3kawFzAaZLB0R8BrK9oG4)3E-X>a4u_1Z4QQu zP>Kc)4gMnhmVPvl!Qv~KeV&fecJ*Cob43=pCg*b}em0uM9|x%nvy_q1YdMfbhFVp4 zDa|u~*e~Yk_z`Cvbf%lBXhO3MXN|)1oodTsVl_%3VIzaG6>(dC>+S4#+Ht{mQGs=Z z<{_^}Xqp}>lzQpIXzR_EW(4$%;cqc5>Io#C2{@}XzD zDx@|Vm$1J;{3ra3a>>m%A+fPzAxfE;BtvIB9Wsi%Dr9N8_?RMR7@hYc>FZ%a4SV(9 zrryi9#TUt){T&P)JlGQDYiS2hGKFT(mYa$S%6BdcXz^U@`(LVQ1^)2{ZXAp{H|{~# zzJ`uvKyuFJOBrEaFv=LinMpm#q*86FlU1e|r^bMqE;{@l?O?J7?OV>SKc8nV3mP4; zW<#_|PE(C9zQ{-Kb8vsH{+st{RK%Gi{;rC4yn@hg6cC@)*>P*7rJYsMCy6=1;F4Ix zm6Z^#RH0eLEx|xTJYNcs=$Mrhq@y_hL&Rx%*sn=Z6~%biS@o1M~(CoYm2&9qK3s?&L>utXlzU_D&@bwg2mRt z`>iNb*B05uGH}qz(zBOm3YWP?wRvVu;ECgn<}NAENjrusp|$dI*Xb!8?&p)2N7XX{ zD09FmD6lanYLpA;jayc0B_ue1+U>Ww3TbDTPm~JjcM>I7#B*WR@H!t&yx_vRHG#jX zOHQ!~sQkj5JapkySRtS~@&KEH_p2Xca8fm5bv;(bU$gz7aF?@J)F3j?f!4F7p_w}R zackq__!t;yGJe}hL&|kL*0cF?=F%BUN;(8)z?rU1UXDNFA(vAA5)N;dQ%zYAe(l-^ zU&`A2CrgNn7ZF#K^wy4F-G6Ba*=V1bu0EQX8b>nQ=5^udhyT0+lxTZ(BNb2mrbJRE z6kB@4{$w&JPn%w2>jvQ6z*G5QbFtqU(g@_$n(ca7S38SDd#(hAMqyYcY=k#^oE7E; z+8$GZ`m(Rw^0Lb;O-ifHAZjI{FOOWTJPgID*o#N+{A4Q@yx?zc-jl)>FZ>%d|6Wtg zi(Mj!p4c-mZ8Exo+iz`i2EE9dk%>1v+vUW51?2s8RXI^m*T;hQqQzqQZb6RmGxvB} z7)i_(Z_|W^D$q*dqTBt5EavL&jT#n~_55otc1gq(N2hC@Go%k4YNy^I@~#JVJa9t0 zrmv=UE|@j7@+Ac|6W85KQyYq9^y@a*>IU=;j*r7lk;?Dd5w1dM2XGq0FN8%IG`j8+Ki2&+$E)X zXfnlAkE{SU%$Oqym{*4w)ztH+u&~`n>HILk6Qgga#@$gHJY0WsIVML!Kh7Oe7u7pb z&mDVsf)G#Qcr-duF!13)a1bTd-NTlf5@au)72RoVxrcRKdG59TTs+JA&tHVC_WoNi zPpP~AQH(5y(_nwOuCNK>{8z2kxfzRd`TqY-?e708???PkI;Q_0=@yFB>t9y`^}c_v zr=aV@%W#8Y^gBKvER1n Date: Tue, 11 May 2021 19:02:08 -0500 Subject: [PATCH 06/98] Space NFP Plan C - fix figures --- design/FY2021/NFP-Spaces.md | 6 +++--- ...s-FloorArea.png => Space-Examples-FloorArea.png} | Bin ...OfZone.png => Space-Examples-FractionOfZone.png} | Bin ...Geometry.png => Space-Examples-FullGeometry.png} | Bin 4 files changed, 3 insertions(+), 3 deletions(-) rename design/FY2021/{Space Examples-FloorArea.png => Space-Examples-FloorArea.png} (100%) rename design/FY2021/{Space Examples-FractionOfZone.png => Space-Examples-FractionOfZone.png} (100%) rename design/FY2021/{Space Examples-FullGeometry.png => Space-Examples-FullGeometry.png} (100%) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index 30af56646fc..d91d448122c 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -111,11 +111,11 @@ New Space object (and related objects) with minimal changes to current inputs. ... -![Figure 1 Spaces by Fraction of Zone Floor Area](Space Examples-FractionOfZone.png) +![Figure 1 Spaces by Fraction of Zone Floor Area](Space-Examples-FractionOfZone.png) -![Figure 2 Spaces by Floor Area](Space Examples-FloorArea.png) +![Figure 2 Spaces by Floor Area](Space-Examples-FloorArea.png) -![Figure 3 Spaces by Full Geometry](Space Examples-FullGeometry.png) +![Figure 3 Spaces by Full Geometry](Space-Examples-FullGeometry.png) ## Sizing Considerations ## diff --git a/design/FY2021/Space Examples-FloorArea.png b/design/FY2021/Space-Examples-FloorArea.png similarity index 100% rename from design/FY2021/Space Examples-FloorArea.png rename to design/FY2021/Space-Examples-FloorArea.png diff --git a/design/FY2021/Space Examples-FractionOfZone.png b/design/FY2021/Space-Examples-FractionOfZone.png similarity index 100% rename from design/FY2021/Space Examples-FractionOfZone.png rename to design/FY2021/Space-Examples-FractionOfZone.png diff --git a/design/FY2021/Space Examples-FullGeometry.png b/design/FY2021/Space-Examples-FullGeometry.png similarity index 100% rename from design/FY2021/Space Examples-FullGeometry.png rename to design/FY2021/Space-Examples-FullGeometry.png From 4793fbc64aecc9b02651e2776df4eba22742315e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 12 May 2021 08:47:25 -0500 Subject: [PATCH 07/98] Revert "Space NFP Plan C" This reverts commit 85db3f8c7859a0921149a588b5e20c03b1eb1778. --- design/FY2021/NFP-Spaces.md | 301 +++++++----------- design/FY2021/Space-Examples-FloorArea.png | Bin 15080 -> 0 bytes .../FY2021/Space-Examples-FractionOfZone.png | Bin 11903 -> 0 bytes design/FY2021/Space-Examples-FullGeometry.png | Bin 16083 -> 0 bytes 4 files changed, 113 insertions(+), 188 deletions(-) delete mode 100644 design/FY2021/Space-Examples-FloorArea.png delete mode 100644 design/FY2021/Space-Examples-FractionOfZone.png delete mode 100644 design/FY2021/Space-Examples-FullGeometry.png diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index d91d448122c..82d42c7627b 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -16,149 +16,24 @@ * Per comments, decide that load assignments like internal gains, infiltration and ventilation, should be at the Space level * Add language to clarify concerns raised in comments * Add daylighting and thermal comfort considerations - - Revised, May 11, 2021 - * Make Space optional for input - * Add three options to define Space: FractionOfZone, FloorArea, FullGeometry - * Make Space Type just a tag - * Add Compliance:Space for additional tags - ## Justification for New Feature ## -### More Straightforward Input Thermal zones (HVAC zones) are often composed of a variety of spaces grouped together to be served by -a single thermostat. Currently, the user (or interface) must blend these spaces together for surfaces, +a single thermostat. For example, an office building core zone may include private offices, conference rooms, restrooms +and corridors. Each of these spaces (rooms) has different internal gains and may or may not be fully enclosed by solid surfaces. +Currently, the smallest building element is a zone. This requires the user (or interface) to blend these spaces together for surfaces, internal gains, and other specifications. The option to specify each space explicitly would greatly simplify input in data managemenent, especially for space-based interfaces (such as OpenStudio) and for codes and standards modeling. -### Reporting by Space Type -For standards and other purposes, reporting by space type is essential. - -### Radiant and Solar Exchange -Other possible advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large +Other advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large HVAC zone could be modeled as a space so that it does not pass solar or radiant to other surfaces in the larger zone. There are also potential computing performance advantages to dividing zones into smaller enclosures for radiant exchange and solar distribution, especially for large HVAC zones with many surfaces. - -## Proposed Input Approach ## -New Space object (and related objects) with minimal changes to current inputs. - - * Zone object does not change - * *New optional Space object with Space Type tag.* - * *New Compliance:Space object* for standards-related tags. - * *Three space geometry options:* - * FractionOfZone: Specify fraction of zone floor area for the Space - * FloorArea: Area based on floor surface(s) attached to the Space - * FullGeometry: Define the Space with surfaces on all sides. - * *New SpaceList object* (equivalent to ZoneList, but for Spaces). - * Surfaces will reference a Zone *or Space*. - * Internal gains reference Zone or ZoneList, *Space or Spacelist*. - * ZoneInfiltration:* and ZoneVentilation:* reference Zone or ZoneList, *Space or Spacelist*. - * Daylighting controls will reference a Zone *or Space*. (Daylighting reference points see all windows in an enclosure). - * Thermostats remain as-is and continue to reference a Zone or ZoneList. - * ZoneHVAC remains as-is and continues to reference a single Zone. - * *New DesignSpecification:OutdoorAir:List object* to list OA requirements by Space. - * Sizing:Zone references a DesignSpecification:OutdoorAir *or DesignSpecification:OutdoorAir:List object.* - -### Proposed Input Changes: - - Space, !- Optional new object - Space Name, - Zone Name, - Geometry Method - FractionOfZone, FloorArea, or FullGeometry - Fraction of Zone Area - Space Type Tag - *Optional Fields for FullGeometry* - Origin, - ... - - Zone, !- No change - Name, - - Origin, - ... - - Lights/People/Equipment - Name, - Zone, ZoneList, Space or SpaceList Name, - Schedule Name, - ... - - Infiltration:* and Ventilation:* - Name, - Zone, ZoneList, Space or SpaceList Name, - ... - - Surface, - Name, - ... - Zone or Space Name, - ... - - Compliance:Space !- Optional new object - Space Name, - Tag 1, - Tag 2, - ... - - DesignSpecification:OutdoorAir:List !- Optional new object - List Name, - Space Name 1, - Design Specification Outdoor Air Object Name 1, - Space Name 2, - Design Specification Outdoor Air Object Name 2, - ... - - -![Figure 1 Spaces by Fraction of Zone Floor Area](Space-Examples-FractionOfZone.png) - -![Figure 2 Spaces by Floor Area](Space-Examples-FloorArea.png) - -![Figure 3 Spaces by Full Geometry](Space-Examples-FullGeometry.png) - -## Sizing Considerations ## - - * Zone sizing calculations and reports are all at the Zone level. - * Possible future work could add Space level sizing calculations and reports for FullGeometry Spaces. - -## Testing/Validation/Data Sources ## - -* For new example files with Spaces added, there should be no substantive diffs -compared to the equivalent file without Spaces. There will likely be some small diffs due to -changes in computational order or accumulating space-level values. -* For the regression tests with no Spaces, all numeric results -should stay exactly the same, but some table headings may change. - -## Input Output Reference Documentation ## - -* New docs for Space, SpaceList, Compliance:Space, and DesignSpecification:OutdoorAir:List. -* Add Space or SpaceList options to other objects where applicable. - -## Outputs Description ## - -* Zone-level output variables will remain the same. -* Some space-level output variables may be added. -* Table reports summarizing inputs at the zone level will remain the same. -* Table reports summarizing inputs at the Space Type level will be added. -* Table reports allocating energy at the Space Type level *may* be added. -* Space-level outputs would include: - * Internal gains attached directly to a Space. - * Internal gains attached to a Zone apportioned by Space floor area. - * Floor area for each Space. - * Walls and other surfaces would only be reported at the Space level for FullGeometry Spaces. - -## Engineering Reference ## - -The basic calculations will not change, so changes will be minimal to clarify Space, Zone, and Enclosure. - -## Example File and Transition Changes ## - -* No transition required. -* Take one or more example files and add Spaces (using all three space geometry options). - -## Relationship Assumptions -*(getting deep in the weeds here)* +## Overview ## +As proposed, Zones remain the same entity as before. Space is added as a new layer for assembling surfaces and gains into a Zone. +HVAC connections and controls remain at the Zone level. ### Current EnergyPlus model ### EnergyPlus input currently has the following (very flat) heierarchy: @@ -192,78 +67,54 @@ are also related to internal gains (which cast radiant and visible energy into t By default there is one Enclosure for each Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. Enclosures are assigned automatically based on the zones connected by an air boundary surface. -### Proposed model with new Space layer ### -* Keep the current definition of "Zone". +## New Space Object -* Add "Space" (<= Zone). +### Relationship assumptions ## -* Space objects will be optional in input, but required in the data model. -So if a Zone has no Space defined in input, a Space will be generated automatically. +If we keep the current definition of "Zone" and add the concept of +"Space" (<= Zone), then this would add a new layer to the data model: - Zone 1 - Space 1 - Surfaces - Internal Gains (People, Lights, etc.) - Zone 2 - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) - Space 3 - Surfaces - Internal Gains (People, Lights, etc.) - - Enclosure A (two spaces with at least one air boundary connecting them into a single enclosure) - Space 1 - Surfaces - Internal Gains (People, Lights, etc.) - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) - - Enclosure B (one space defining the entire enclosure) - Space 3 - Surfaces - Internal Gains (People, Lights, etc.) - - ZoneHVAC - Zone 1 - Thermostat - HVAC Equipment - Zone 2 - Thermostat - HVAC Equipment - Zone 3 - Thermostat - HVAC Equipment - + Zone + Thermostat + HVAC equipment + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + Space 3 + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure + Space 1 + Surfaces + Internal Gains (People, Lights, etc.) + Space 2 + Surfaces + Internal Gains (People, Lights, etc.) + ### Definitions * Surface - A geometric plane which is attached to a Space. * A Surface can be opaque, transparent, or an air boundary. - * Each Surface belongs to one Zone and one Space. + * Each Surface belongs to one Space. * Inter-Space Surfaces (adjacent to another Space) are modeled the same as current inter-Zone surfaces (two linked surfaces). * Inter-Space surfaces connecting spaces that are part of the same Zone will see the same air temperature but may be in different enclosures. If they connect spaces that are in different Zones, then they will see different air temperatures as well. - * Air boundary surfaces will combine one or more spaces and/or zones into an enclosure. + * Air boundary surfaces will combine one or more spaces into an enclosure. - * Space - A collection of one or more Surfaces and internal gains or a fraction of a Zone. + * Space - A collection of one or more Surfaces and internal gains. * Each Space belongs to one Zone (explicitly user-assigned). - * Spaces may be defined by FractionOfZone, FloorArea, or Full Geometry (surfaces) . + * The Spaces in a Zone are lumped together for the Zone heat balance. + * There is no heat balance at the Space level. * Each Space belongs to one Enclosure (implicitly assigned). - * There is no heat balance at the Space level. (This could be added in the future for Sizing only for FullGeometry Spaces). - - * Space Type - Just a tag on Space * Zone - An air mass connecting Surfaces, internal gains, and HVAC equipment for heat balance and HVAC control. * Each Zone is comprised of one or more Spaces. - * If no Spaces are defined for a zone, a Space will automatically be created. * All Surfaces and internal gains associated with the Spaces are included in the Zone. - * Surfaces and internal gains may also be attached directly to the Zone. - * The Zone heat balance does not change: it has an air temperature (or a Room Air Model) and includes all Surfaces and - internal gains from its Spaces. - * Every Zone with HVAC connected has its own air node and its own air temperature and humidity. + * The Zone heat balance does not change: it has an air node (or a Room Air Model) and includes all Surfaces and + internal gains from its Spaces plus any HVAC which is attached to the Zone. * Enclosure - A continuous volume connecting Surfaces for radiant, solar, and daylighting exchange. * Each Enclosure is comprised of one or more Spaces. @@ -274,13 +125,62 @@ So if a Zone has no Space defined in input, a Space will be generated automatica * There is no full heat balance at the Enclosure level. Each Enclosure only balances the radiant/solar flux on each Surface. These fluxes then become part of the Surface inside heat balance. +## Proposed Input Approach ## +Very minimal changes to current inputs. + + * Old Zone object becomes Space object plus some optional tags. + * New Zone object has a name and a list of Spaces (allow Zone and Space names to be the same, if desired, to + simplify backwards compatibility). + * Surfaces will reference a Space instead of a Zone. + * ZoneHVAC and Thermostats remain as-is and continue to reference a Zone or ZoneList. + * New SpaceList object (equivalent to ZoneList, but for Spaces). + * Internal gains reference Space or Spacelist (instead of Zone or ZoneList). + * ZoneInfiltration:* and ZoneVentilation:* are changed to Infiltration:* and Ventilation:* . + These will reference Space or SpaceList (instead of Zone or ZoneList). + * Daylighting controls will reference a Space. (Daylighting reference points see all windows in an enclosure). + +### Proposed objects: + + Space, !- Same fields as old Zone object plus new optional tags at the end + Name, + Origin, + Multiplier, + Ceiling Height, + Volume, + Floor Area, + Convection algorithms, + Part of Total Floor Area, + User-defined Tags for Space Types (for reporting purposes only at this point) + + Zone, !- Just a list of Spaces + Name, + Space Name 1, + Space Name 2, + ... + + Lighting/People/Equipment + Name, + Space or SpaceList Name, !- Replace current Zone or ZoneList Name + Schedule Name, + ... + + Infiltration:* and Ventilation:* + Name, + Space or SpaceList Name, !- Replace current Zone or ZoneList Name + ... + + Surface, + Name, + ... + Space Name, !- Replace current Zone Name + ## Data Structure Considerations ## * Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. * Proposed Surface ordering (same as current): - All shading surfaces are first - - All air boundary surfaces are next. + - All air boundary surfaces are next (once PR8370 merges). - Group by Zone - Group by surface type within each Zone @@ -320,7 +220,7 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. Space2-OpaqueSurface2 Space2-Window1 -## OLD: Questions for Discussion +## Options/Questions for Discussion * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? *Move to Space level and rename to Ventilation:* and Infiltration:*. @@ -331,5 +231,30 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. * Zone-based or Enclosure-based surface grouping? *This is a design question, somewhat premature at this point.* - +## Testing/Validation/Data Sources ## + +There should be no substantive diffs (possibly some small diffs due to change in computational order). +For the regression tests which are one-to-one Space-To-Zone, all numeric results +should stay exactly the same, but output variable names and table headings may change. + +## Input Output Reference Documentation ## + +The I/O Reference section for Zone becomes Space with some explanatory text at the top. +The new Zone becomes a list of Spaces. + +## Outputs Description ## + +Output variables which are zone-based will remain the same. +Some space-level output variables may be added. +Table reports summarizing inputs at the space level will be added. +Table reports allocating energy at the space level *may* be added. + +## Engineering Reference ## + +Calulations won't change, so doc changes will be minimal to clarify when Space, Zone, and Enclosure. + +## Example File and Transition Changes ## + +* Convert Zone objects to Space objects (one-to-one, just change the object class name). +* Insert new Zone objects (one for each original Zone, no name change). diff --git a/design/FY2021/Space-Examples-FloorArea.png b/design/FY2021/Space-Examples-FloorArea.png deleted file mode 100644 index 45884a1661686bdaa34917c6b4dc87037a197e61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15080 zcmeHtWl)=2yJ&!xmKG~*aoM!EmI48S1d4lcD^lEoySKCjHdfr-U4vV3iWA(66Wkqc z0{c7XeCN-(bLalLb2F34n`EtLJ?n7`_$Vii^^Eu#006*}ln_w_03IVAQHP$QAwJGC zm<FJS`mCeb? zSz1~;J3AvMCvR(Ob9Z-#Kp^bw?AqGeeSLl5;o*&qjpE|s`uh3{3kzT{cyx4hVqzjF zD5#^OqoShX^XJdZ%*-VvC2MPIF)=YFCMJZ0gsZEo-QC@+ilGGb;spf-KY#wz(9ke8 zHrCYCEH5vws;a81t0N;L3k(eW_3PKc!NHFoKV)QNl$DiXFc=5~8X6k%_4T#3wzjaa z*xufrnVGS-w-*r+adL7>NJvmnP(a)_ogE58d?-06$|)g;@PGLQFb?q2K!C@vkALNs)$Q-t?BD(gD||0X%P1o?sg80Y zRuGuvssH$js6uJdu^n3q)!`)Wu*?iRl^SwTy7c=sYe+Re7`7^bm!}|oi!oxW%igk` zVss$pG$%FOSSW>cuJn8VE%lG=ohg+Kw1kdo)O}3suuap%k42Aw7t0Ihyuo&OG}$L2 zx0NO6g7nboD{@8k$iFBR=DBbBzJBdUb+DTvc9)Sf+g?%Q(Usah&11y-Nu}Fc%*|-! z+7MeT$Ra*|!iQI}B&-43D_LQmi@mF0nl~+{DB zdrxpt53z7>p!_3prxQxydrjH9P$rIg!B;}J@Ec&{JiIBO8B3+ESpKTif|E1ckyU-9 z^mB!7V*2nFQ3$=pND^OkH#y8JzEqNu*w!PV;rG(<-$vCP2U2G;G3?!SmhoCIR|yA~ zEx{KtKe3L$y_+OiC_^k7&&t>(^p1A|3x2Z3H35Bc!r=K~EtrR1LmpDM?HNQe0>j++ zfi{e2*Bj7m3nOzonk%=S0Rv%?ca#<|`f2l*TC&?zFJy}8ihntWGM);qme_VEBr@x> zf^~Y5k5;?alDy)^!P3Lh3s;<-f11vgf_E8s&xOk0l&JoVE;f^_`~Bz*3g7b{Eslh8 z!QAIJ%gJ>4!#LD>zqa^j350A1awLPaIMc@Ls%@ zz1jo@Fuee*MjWXz)iZ~vnaK)FnvYIz2)!U>cBAjvFa%FAxNkb$nP@Z|DCJ4~1u1yk zx~a?2ov>|z=7JaBsg9eUMQp+ty(;qar+imoMe5$>A?8Q4R;rn}Nl1Jw2MyjeR= zcF%%+R0_)4!R1MXKUclNLS3uic?%PaI;7SfcMdh%by0(gEm6x#?_&qJk&HgilcD+< zE(@n$k)Ap2=rGnLX{q?h#Bh7MIyiP)!;BDawHs+Dm5EzJTtuvMBi4{4Qw1RRyIE}E z35O^CKts^0tkzPPCH>!__vhshEqZiZSX~@+o`rG@%o{~1^9Yc^#WO7`_v&2?aumzM zH_Gq`Ay=C!nI%|@lHIz7QZ8>&!ogZo;p7JxcUFSuLXcg;ia5m=0 zrWL~&$Y8Pl0ThMr$py(tlN~+*5bCIQWb=Mi>GDaj=Ng>tZn-fGWxPL!bm=1U6^-|; zLOH3L)&SKO-s;M7-OLvKG`HxSgj7DS`2K!Ur6!ZO;gxm|fS`VJOumb;G11CjyjJ!1 zC$tbopi*t1cl1SYic~i^o%uw$+-N#kSM(Nf^5fvga_@-)AAPt=Ij8WJG9IC=liZ{z zuO~!B=W4ZW8r=9N;S8XqHG4Q(_l{61dMZDSW;{GE*5b+yfak6#}56Mq}(iYF*|=N!|H7jU~5o?~LQx zPhwO*=L=)20=F5CgGexTZC?Q9+aszyMBB&#*MNS2!3jo^XEzqWTWnM=C2~|Rg$Mk2 zfBJHpehW5i!s1wn41NCdH9w`>BGti+{poZ<_bxXdPI0C)dwKl?|3K|a^^0n58;x1U zGiu7sU2-Fu6F%qB~;SqdC1&sYim5sU(=H z0f;{xe19<@mVdQ+r%sLfm(&mzdVvT6q~9#MS8A3-2C zQ2r+lb9(!*r#^H-T!e*qh%0QMA9+YfcJ>>ZEbR?s6eU?iY2@xv>~VU z(>m4t#-)%gVSorm-LHnkvV82MhV3QKFCCO!QfO(-#RLzK%sca8qPmc6NWdzk!D*ci z0-8&==Lf*GW4-zDYm25Cm6NjkX-%%tBxQTfuE1cWRUoh7RT{6PfN4qFz(|WGysM}v z6HnFWfk+74dVgdGv=}>1TCrDos*$aD>Oxa)vZv)qz@E(!!f@@elg8%X=occ`+s-8P z`YfLx-`^~Dq8zH1!vr8_s^v8$wSdai7p*Leb5(_%CXp{`q%@OjN?s8cU`pfh#FU~w z+}L7D7Gs)Dp`@6p7N!ztsu&kVI>-g2-)6=+C>+$azzRwahiYSqWnq&!$Rq5b`Lz8zG)a zY$0i_d85!J=G|BDs~}(CETbrNEN#L0^1O}WP7dcwj33jX@QgUl_2}Rl-Z+x*4!*9O z;sI_&X9p2=d!ty>Zrs*xCAeD_aCEwI#0f)Zq?IIRr3 zMICi6{tde5L*WAK5~6>WtUV$7ewifj?qDM7?Y+S2Oq`|60LS$vl@rDs&g%UU2QM_q zXInv=|J485c(LAYfmqibeASLFFNK5K-@*26J%xPMp^<+V@!vEqLZ8H5pAYR`&1IYV z{Jh9{!lli+YcddUuYOxNLY6f@LkZt){;;m>)-4LT9pX9AK@iWDA7ItU3z?a=k=Ewa z%!0Y=j>czf8uI$hSLG#HjzdW@p6O!wfE@wOJ*LOrBeBpRBJ2Y$Rd0M@8;Jh|)k4$zB`IxoR{CjPn!KgbK7=)#IzbBSx1EJu4%bJUR* zRVn@CPbE#AYPGABDtG=q6uu#!RN+q*anZJtVHll25=Wi<62Z!1^cH_X2DjOZbPLNz zvV$$1Qq@L-R@U|S0B?9AwL*D}4_8-xTHbVVZ}p-hl1b)(L>kN^ni{jRlIw$Qbu#CK z@%N<=&fTo9nn1)cfOCI)8bA2Y@AXM1-Q?I@Ai^bjq^;B>Nxh?KYX{iDTJ71%WX>zB zEE7h_9rLuqtwR_*s0sO(5(5k)#ldk0X=?}Z4{DJ~MREmuHZWDCh>~*DxIA0&(fiB$ zyJ^GHs$c#!o?0sXIoT6R1-yR`EHYRT&myjyd`S@f%y+>b@`-2owjcrM*OxuH*exTe}78=f&)Q>|BU z6k8PG|GO) zgur+mWxCcp(?)QVeJ7##^xClTV#iw~5g@3GMTIb4y>*CBel#wfIQIP2M}aE+AD$DN z?>H}KxmVpXM%`4PL>x+$OfN!_z!83jYk=o`FXRX)SPe6`hFjDiLa0#TZ&vXp1S5vS zrp38=1~LpWaPveM=6ZU3J9hPam9Y;gOG%PIMT*E z{np;~4RW5Ad$RKrgmDS@<=k8wWK5;qC}&ECitj%~;Gaq&6R=J2+XV~pd@crZ6Lv+a@1Vpcxehu~#;Z{VprHP*z$eN9r>7g;vlb`M6I1fXJ)Az zW5BW1I~O7Zpc=On_2xSmK^K7*fBZb(GWbsw|^^4rWapMvo#U6+Ij48xn=gs*iZ*)5z z!kYn}lCuU%Kob%20tovb(nYS(@YcW4{Fc)ZGtAs<;p~>AO!9L7Yv8X9t^rpIY%bLM zsHuJRipt2qmtU(0LZjn72FfduO^B8wS(nqkK8_jG=pq%3(dMJQ52#`aT6p*Vo=^i` zCxHVdr|M3711$^X7@t@FXsss<@;XWMgleq$x;P`LK8=+PayZrc6viLAFXv_8xB)(4 z*Pe0)rZ#Mz-KcxQOI-+%^qc0P)|>VqJ==Z!cAbAG@cbowbL!j`Dlh9tiWDHMAE|9Z z(1Rz*H#8a5`y8e*hF2f!sdCI(p{M3Jbj7#*I%c6)S@v$Bn_KHld8k`I)$rYt|G~yEcBQ?kqh6qI;cd3olS};Po3fa=JctbDvv7oNbIXA(ycN+^ zq7}(B;_f)i$;}tbQa`wvBhFb>FeVS4go|Z929UKeZmvqrFzss?jcv#iH zMij!S9O@)9^&2R%n6}|#*V+!->KYOou>I5Ez-o;@x=8agPXn0m1K|+k;v>Dowp2xK zH{b~(FaGNCsmJ-$sm@ipa0+dbO{HO-cS8FxfjYm*T=vtj>XC0@8X9*Jp{?bIh7MOZAz(p&LB9eIBhA1a}Nb0h`2H z8+7XgY?x^y0-sY&6}}z-KY5l2eKP+>r>n?^{^}s|v?(>WZ)KBr(&#Q#g|EsrArZaL zLo(KKTFNNNK*1$s2uyp=Hq>1XN(fLf?gQKv3^YAm2*>*HI zWU4>ExYi^`(+O`V#VoteQk();FUr#?7Khx>xd}+O)ZVv5sPf*hY#tU#?$s0AfgU1* z6=U~VoElrX9eF&tQ_I!R1@W9PLECT?^STXwA8>UIkTFfxwjej$d&@2Aie% zlumJ;v(7is-vG)49DFsp(NeK{QYRXy(&`-U=h;_bm;2;BEFF{R(;9Gqmn*37!PC9%Lsp$rc{VOZ71P zjvTRvY$k#Ji#C#ELs)BbnI3kl56nPhFM@fZw*P!vc_IH&cN1eR^bOi0nxOylboQ6& zzopBFER|1{3{B&PhHTU*2H!ikkFMA&Pob0sVLehw`sPOQg@zxq$y5@ zoLRf!SEe)TdITMEs~QE%GI1IghMV! zUBt)qm-v!DXDQ$G;0>uY(Q!WudNh$+EMPNJ_CLJ7SRp^W%jw<*PGlWom;= zN-T#?=8b{G`goa1WZYa&HJ|pY8FZ<;bU-Ttf_~g?{b7*xa@Hi%t$LFUY^kB@Kkz7X zc{^dVsnP$|)*$22Sx@7(L$+j3Jjc5%F+O+vKY5=^65uZC5L@Pvvgze%(uB25FQa9L zjmqxd%4JoUkoDv*xknJ6ItX@Lxs3h#6bXjU=~|D?11QrD)tuB($KF%RyxPP@O_{%^ zOS>9e(Di4~d#d<0G9w4h;fF;2QPE3LR#8Fh;7<}4Zu2E9CO-6r(~{U13ACOPt---~ zv$W3Pm+-vE6w#x2^q5!1+ZrFN)3!H0ccPi#w}iO9OtlIo^DGNeGr=YZWAt(aqE#lr z#`cc2^L=L$Xp;=SJ#fX)bS=8PXx-c_FD_cVa9il$ID1T-(*1dm)$K|5fYt(bQwD28 zANTmU+yfXEv}4_`iT!}H%QZ=F`hVeJqMe7u9F3>^=FlY>3N`tQUiMnCZ8qz)ar$M; zBpbfYTB22QLF&Nkm6tK>Ee`%2YYsQ3KQM7wgRWNO4htELK9+ct6hgV>*(FKQYY!|E59_tj&IzSN2Q7zBM{#FMj@7|10L8hpnEl(I>g zmE_oq8~uSVO-B7oiD9R_IuE;O%`SX_Of0}=d|j?;z*eT7uKLnKZ*P_~=~DksZ3@|_ zd0vj+Ui|?IZTE z%E&>*p|I|eQ(*(wsir*5;CJr9jv3+-YFiP(r|fUwJ?ywRX7w~=_I56AboyZ4p5&ZF zkMt2GJyr#8c}23N#Hobii-y-F0iLYQX)DQmK34|EjWtg#5A)?;faLR85(}*Q-Yb z?f-SFYvJW!kY1|6)7=sMbES+o>b58PKSyJJJ&09C+igHc?Bk>T(*?t21!&3(xRc6Q z@Rj;3gZ+M4;ebfbpBipumKt6UIbWwn{C{jsQ3!CF^T@@0$w6Z6yIa}T*B_;_?7?$f zvJ~lo1xC-v>_3Lwf!GqU*<+swrbO>bc3stfe-J?$tSQnA@Pd==VU1aUQL^JeTa``4H4*1OL+#j z;cblYQCac4ISzavu)E|-v@KfE z=~V84@PbSqt^V239M&JNN{??kr383pC&TPQm<*-l;?{pE6h^Mk6t2F*s*7qo*t07u zzoq-f+OV;eiX;oYXU4F`%eBN?=w9$hgW;LkOnGnDi{%_gwb(`0SjlFlEYIjjnN(OSrn#OlgoT>MK%(nfPechLmk7qSGDh4+XQmP`VXEHB?%)2l798 zpfSNE; zq;bCU4+O`qQb<=G2s_k6J~k1*;5e<$?v&sXC2g{t>y7B1wJT}BdM6uX)!UIkDSLSF z=^tPo<2?#Ww1WuKR@O%RgxRXYS6_ZJ9Wqpf6%KJ78pcwJUn_vMx2Q%{jqtfDd7XO+ zdcS)+1J#(x+^yH*@PE;NSfb1>5mYgUc1*XUP)#*hGZp)RwL>DO0iyy z3}7D4-#J{TbcTCG8F9Q@I}Lqi`g)!x@0SBAij&BTgPpuCOQhZl@;Dv*hkeSy&HG9W zF;k2P8tqkL%-fan2@oft*fH~%$^y0^44mm|VC6_}BCMa)?<@!B8+-K(0H;pIn(1Q% z%F=gRgk7o}ii;HLP;4C-75}Kn8Q@LaG@=yRiB})g&c8#Naiu{+V5Y^?(DyX>D(~!% zNb7nccCyoN7MEv*3ayVH8cA*kGlg#pdCmwwk@NKd?v7d@qP=K?;6hr z#UB?LWVRej)J4yri)#`PN>`c%LsEQh ziD6d6waxjYBpnMkM6B6dzyrFRu|~ET(vib~lVn$ABpNIO9y-l8r8} zhFxV2h7+l+y6dtmeC5#_DncRA^XJEXG`x%Ij^&`^K(baBKQ?y1p)Z!L#8VbFP}~_lDUpALv=Oc=zhJ`qv~P#g;s#S zA};|Fzdv> zdy{$rH!*+F7qYw;yrRLm%etps_Ot5^K}q}kF?E<+y|3meK}~#}31HaMLyGpBFd? zjkCA&Dv%2e;^Xod0geEJTctjX0E4$af7+qE7^N*?;F|s$7;QKdC&`0_q7Tc0Hi1v0 zvVVM-XNFQl)r3>~#sy@cIdN$Rs{dZVeSO2+p58Zo8Af%|QW1MnHWBJ56MOL)zM0)U?i6g@?dwv&ecQ`xbKE7bXt+8^K1Kf7zYzs;Lb<~~d1i#Woe+<%VDO@U`UZ3Qil2hM~$ zOYTc1v$QzgPwkYP_gUP}Um{i@>dht!TxK2w*T^c=|Io0lu9eS4ZAR988~Qz4g?}Pz zrx-M%t^eNKU3efDB8SRcStXSnuD6SuU)VA$SS|I|Q9*mIvu|jQFNyoQ$_vb^KbxJUY zktrb~t<(wq7aZP7YIe!}&rc~InvlEg>omVrIoEnf64LwE@M6?yP^3)o!%u)Tth%J! zlkmj|wa!+H@}wxvW6emhS~~NKtik@hEuvJaI5&_k(|k8Qq_rjnK|Mq%VOA2n?x3X= z9L*mr%tltqKkMIr^sRa7OB3;+p#Eq3W>J(@lNf0V7HumunWL-e_x*bo*6{o?E>^$$ zzDDiK!M>o9D&ktczVq4D#xX6=iuSTsfM(Jf4|IL|rYr!yRz|K8BCCoOf`!T{y>M43 zxr~fOY_+yeQLl7KwJeqllrvlU6wE)}t1-3Ky_j8N@0M!m-@O^87$}J%Gm)L%gw$*g zSpHJpZ-_OyK=WP+vb!}iOB-s{wU@n7QK1SgqP2;JLscdm-7Ss-``JWmIH-N%ngA zsQ`Y{-KakIr$99X=G+AF!&4RVOZaMeMaXk&XA)boep^+u za@;&rBX{3(Qkio&z+kHgI3DsiyzTVmT$L#LV~AM@`#El`? zB*}f(Q`)(->vdU+5wf5y_u6H&^PoA2PqWX^lgn!^ZSJhTKOJj3)TJB{3oc?-;{r-Z zGub>w9NTn&YgkD!>%Gka)Cr!-=+#{%n}Qo34c^{{x|Rd{DUfl(At3gKW-LXToYQYg z1#}yZJ+|vO@kdy^qJo^H-rNH0-3`1}+GZr-D$myFJI*^APJ*xPl}~s?cVIw&w*7UH zeHO}iYzXl=|BOJ64%_E$_Id~04i{gjOu6YKhTkqM+*!=rfrB+qis6^H8FvYuRWbgP zK!~#p?-u&pL{8~Ofht4Y-5bWccmYQNrSFc5KRu7%PSNWIe+ZGi+B;Qxyhw_$IIpTv ztP1YPEGQ`Mj+(c&noZfqo7I)gIe8+3IAM*wOE!!1(S4 z>zk6QGC4-}P-}ejiV6>&v=k!&wJ#A8fyl`W5m#`Fg7=d{XGk)yYQoJxw$pJ}^DVs0 zq7eJ03HIdm?Qqv0L*GVt=O7%sngX&Am#Lk1h=#p%TRLxcDDi_AG(2Ap&8r}fT^|iT zD-!vERE2Z;Sp~mOm(E%dU=I@JylP?#j#&+>)3lp-F3-!2Ui5|PTX2*-nt&(#jqY)W zLo_?>sG9ZDYbA8DRC)DBPSYK{G$i1H;{4rI-F3e?;&5{|w?z%RtUvX4gOj~%tVG(# zFm-)5qWe5~tiSoXYTBPIkTX~w=*8A`gxh zepzdmsU9%yHD1^ugyg^vU1Z1E?0p9!JfydACpNOW9odcPI!<`~xJB#8t}o)LE{>04 z#+^=dQxP_({VfV^fyyoJN`Cg`RfJlk6?zLRksj9sfq?*YTJz}^oKB_f6gKiU02|8r zT5M%Xy2TXI-L6v*D&Ue{B-b%`Wr3DEnPYStCt+lUPFFuU`Qi=ZxiITe?E4lvv4ZWY z!JeNQj#6ve!p+@D9w?Btz|YjjL9mu{xpJ{PrmJ=|#)&tL@ zyBP}XR=xP`*~r@r|CIHb7Q(VDAzPtBt;;!($Xsp-+~Zj07m96Avc>pO^o_Rj226xG zct@`&$J=BmsaG-;Wvmc}a=EOE!A(!qH#{=4xu*I{z2ZrYA3L-CaB+-)=C++?G*xol ze#QFZuJ-05rA0a#G7teJRm+UuVUj~0ino7kPLj4EWr`_J*;9m5=tl(gWgl&4Y{PEV z!MKth(L{RY%rXZ?lg>$@H=OHk8LDF6$tiiFjGX?hskWr|%46uOLCh#RH$=j3mrsy5 zZ~oFqTq*~}rU2#R5vcY9kLXH^KDMiHuaaKjB*KexQGBi0;j=A{Sdr*TEyInRMmE_1 zgv=&&w#l2q_Tm}hrZjQnpP5eY!cmf$8AWGRwRR4_F6Um*+gM8Y8T-0euRfho=Ng`v zSyMS2l?U^0&`N?T{z7Yye;tZ`1b>F6$G6wNA-_Lh;-m98no53zcY)gkauh#Y=lEZ{ zYx5fp8o1(F!9({Qw}d+DD~8h1TxY*f0FE6=3Rnz*>nX z`=hg*#@e#?y�*xNz$O$)aTn(8U3?fbP;%IC+*ahNSi7wHAWZJNB`sQ8I%^0&}Lk zt~7)YpJ){G*OMhQ;^_XI86-0M6dn=`k@|u=&8StXd_BH~_L&k&=o_}3$gbP;fPJnG zqU{FE@+AwI25|GU^_-{HG1@ve^v@9h^AMW6bfrncsHhMA@&!~T(V5L=HXH?)cvgpoM$0bp}=wW{kyYiRN$80&(WjP*wLb|LR$uejj zaRdTb7BzDBNL{TQ;0QVVs0{~jhw{XVd9$P$oK4|+SG)d!mHya5Ov_@3Au>_2A|5ed zq#1*G%y2jK>&;W-V;rIg| z?xV&6Bw6$0if+bi49TjbTXIf8VQ@zePg^{xnbS7fJoXo620D5P6piD%#hw&>B@^OI9!emd`&M~D`s{2ks z7dG+EavZ0}nMZN4$8AO5`jo|VTuMxm*I#MiAZ!-`sgP)*#j5g6kE@-oMI2tH??;k8 zM^v)<$t zUe*nGi*xMwJhW-ZazOLi0cJQ_>wW| z(Gnv{6!O!gOmxyWQ+QR< zok71SV0PulhiGB_i)s)b`vmQIx9Yx|ZO+zgBOik?&M2cV6-l(t=9j6(z{W_B@{!leK9hi-$1t)@5Qvqk@doR4GsOfXcPX1|42=KCLOC3O50`i>GqrpCnH=1 zsCg5$GGfv4MEWqq3B?s{IoH*Ub zl=7&fPfFj?^3M1M+7eacLww@#;hz;7p&2JTLLtx^^MnSQB8AX-Z5!=>v;a|y*pw8< zw{*e_(=32a@38@=@nYA#=+P>1qmxlB+*7uhF_O-ll9`Tb>dM61W;jGzbq1gZsnw>& zqZIxw7hC@nvXcK$cJE0?nR*g#<9xFve_%}3v5JXw|7quI)lYZGP#hs@PzlkhE$qvR zKVHKGxU~1m9Xs)!v{p@>jwnu^f>-CSpILT ze*&HsDk2Byy>FIFnr{_UqL^+WMS~F b=jV5uN)oZJ?S1Kxe@cqVi4=d(`})5COm;mE diff --git a/design/FY2021/Space-Examples-FractionOfZone.png b/design/FY2021/Space-Examples-FractionOfZone.png deleted file mode 100644 index d2fdf2b825f0a593f01b515aa5e21d2b01d896db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11903 zcmeHtcTkgGw{F0~PwXIqfMB6l=^aF+_ufHz2k8U|pr}Zf(4+*UcaVVerU(e32ZAB= zp3p-=2@o#e_s2amXXf5H-~H>{lbOt$w`A|Vp7reYthJH|O?8Ev(9S{|%%jMEdwUuh8aN!jw6w&l9cN@@ zWM^lmtE>C*<3}hI>hA9D?CkvG#}8FiRdI3g_4W0kp&?^qV-yOtv$NCK*ccTR<>loy zH#Y|cgTunYN=r-6Op_bIKM*S?oI-_u3mpBQF5pR>%39q}#pd z40*0TrB|}L{^lD~FgJ`cJaq0i_SdDv>)SW36{rTMX0t}upI#@djcy7T3SM&#$=;P7 zF{eRI32SLJ1+|}$oDKTl_9f$qX;f3?A()NFFs{(4R4ncB`|K4P6rloo_G#Nsjb*&& zdU&hs;@x7=62j2lg9q-x>q9;%AbjIOhosLG-?HRq6m0ZF!x>cK+IOJbiC9rO?K?_n z+ijV~v@IjsBtxltu5CBG%9raixc00ucx?Yjej;+dwBjmkgOR13nGci%SgAmv*Tzl8 zPw##iCg85_ikxBr=4!3c8V~OUB-1dkJTH!3ES1urYAEiFsbNkpDu?q>%%0>uP1=xV zVN5vn8!cxGL@MowY%S@XT9vj0@A2NA9m{)FWmPayE8*77%kkXEJPX31IOm;O8$0Oo zq%Op;TFGrD#KU2Wi6mBt6LZQHBy||I>I-WLCY*h@6PK5$mVs+W3{EH|39dP|injQG zdEG_u#IBnbx}n;rysZWw7OC~}u;5CCkOc0kSWr|ai;IlamHh6{S;g;65D5>QC{sij z)^|!;${WO#qzamzE`8B|jb;7xN>?|OzagohFg>u$2cl?_a_C3&hgvb2r?w0RmOBx# z#-bJH<}0=a?SV!mvunN$^Om;3xl)o7A826PJ1(<*Q1{zbVsCh2p{N{vW40V0$jd}V zmHtU6d4x?L+tRnz>69h@SjFb4-=6=NIalDLrl;`6hwN~xY}Ndq>a4c;yU^fvb8sLv3Z|oEdlwqz>#}8PaVF z1lI5AT`AI29p#%yRaG1u`C&O)nw@#y8xHL`0e-(G(ID)ea~YZ>NqG=_7|^IIKKw*y zd1}hq$aTydo#yC=1U?fIQtidV zCc@`?^u^hVx#x9C6NNpznfGvikD+p+^v}aV5WfjUjLS%hQEEXR4ZP=f>bz$hp8jiV z#j?fe&Xcv`FMTTjcjD4k@R|9nopCADS|jN3p<6eF%oH~)nT^<-T7g{C+#-X;&9RU+ z>{gBMvQ!8zp&wzi7bCL7f_o!2CCF;Uyk%pgu_8CWo#+u5XZu|*FsZ=i2SQoI^&ZT7 zMDc|wd1dg(%ek79Kh{e2#iY1H!tx#?FBW1ySu<{Nx@4Q(cdhnG=s1*8M?9W`wo-H6 znN1~buk+^4l7a1&B8w@xs@Qx=iPrDR9QgGz@yMUfE!QM0S4H~Gn9}e8@ygAH*pSM7 z|FP*`X(CdIC z;F}Ohb8^tbg`-q;46-yRT*%(&u1?U}bqmNPZ!m1+nsljsz==YM#F|Ch%yf4r%W~NL zh+$A!qVc`8C34Niwx({|z=Q&uw}RscFmS{^ey_Ng+Ol>U&)_`f%o*VBNE~C-@EehC zE-yaGzkIM{F--wHv?tj%#`>sSiKBi+$WIWnmCB!SJL;`Sq?!f!MyiR!wR@rA$GLE* z8Cu3K==-&v48E5tg24DGlkaz`x-R6U$ zCKw%@LOuE=@`;)=$Id%vJ>PQuU1CnlXQ31R=&hC-HtFzY&dp1smwnyiT=(Py;gTGB z84bh*#{!?^Q>)4?;?nNQr*%iGagt`u0UP7JKYAu@M2;Da6Jwa?5e6yN5M+z+{Me9w zwyPwRBy&%KUQoW%*Cd*dpJ29_VMd4fMohsZRW3h+?`xS}MRd0)c17IptWdO83xy^? z7l{m&C{)_6tZ(;jJo9hC1{?0AM#4~%`+AjMI->Ekd-rzDamLHE9&^~w?NJMc_NIs} zocj{<1HkchFreigAt|p$#r^~^J2qc~;AIZaYxCa%G&dxe2_EDV>ea6P2k{MUBHnh; zeJ}dP;urZ)#y=jjt)HmAirt-W2mQL1_Ud)+RgZTpcmEX0W_(q;EbMfL)q&z|4DElX zTayCOUaBowFa16h%S5%y$LuXEPWsF!k%e#4>u8{x%v7fke%7idIvsp0L@tU)PR(W+ z8NT45J(NGIFo75h#e{E)y3Y4g`cBo6w+A0QA-Q$LOW0W2tuNdsFvSF|sK>rFpu233p4}--ms7H}EtN8sz~i2ecHQ=ImjbK&n$~3jDtQ{3LsUu8Z)( zm1=uy#n7T1I}guQd0r227<0*?|NbMt-ImM#Pu({g;TU{DB}coMLFnzH!_R^Tld;Z+ ztn-7rw%JJW^Q9VP+(2K?TyIsTgzr<##$d}TNSiC@4O%Mz5c)qdK-#U*hxz{WPqw7i zk9i-RtuU~&XODx^1zR=UQz?VGLglrd$F4%U~dn0WC=%N=qt57mTjN-h^bs*D~)#a-L#18tw>My3T?<*gQsb;_0rF9nk^r3 zY}j+}S~2=Wfp=ZR7y#-+GQG0gJ`8+ zJYdQ;rPU|3oR<$(aYMs=q|=k?B(GEut#?yPwpRge&>~$ZKis5Fst`Sf` zg{63Egs7i_=GZQh@W2t{CPMO>mgr|k*p}e)+vc~6TwhRRmvbjg>2Iwfgm6QspmZ5Qcvya11jo)5gO_y4$KXc)(I80ug+$1%thnv zQqGhH6#+d>1e_EZc4j>GOr9CaU2I3J^z77BazAv%zjPvuCnPm8ahd4rhF(9XwaJxL zJ?)D6pKJnW{PLypHzQF`Mg`fq1;s1il|32*)m*iD#?GAysYry-ohc-hd{^ zPTJBS(^mktG3ZgklLiz@8Zl~~-t^QXSw_NeK3Bfz8*e%!zDhw<^=i&_I4e5@+Y}-H^Hx#kPOHrt;zHItrFdLo3PW8nMZn= z;fcCi;BM4Eh1d{^kPCV0dD!hOyurOA`J9wa=u?73>mmJ*8Ow(2*sUkuw8BIi?E6^P zrUy*yx5gixpUWov<1+e4eTeD&X-dI}cKMt0m(?yF{XgGo&C#$I!<}M~|FjS%nF8w2 zDZ2xwNV0?Si!pinb`IcqTaD<021)bn2hy)cUV_b-*A4}0f*KKSKsO?F^X}5l>yRtw zs@gNrTt~)ZPpqDBUyLI{3r$A6a)eskb~|#~?0g(mWtJfcfVXs?5~x7Ry96Z;;w$vZ zZnuxdK4@W%yJ^$Vgv5AdhQo5^!NpjSc@a?x*#ye`tU<{0kf)O1In*u?mgdsLk5~S21t5o3*#0XlCtCM3``}IKIHoZf@2ETI9;D! zFda8b|C)!8ciE(+Ar-KtA1Zb!Y02o&T{pDF;xc>VUDi}q97YwRxR;$W^;vs3UBlNy z{GriGNN4lT@E;R}^YqUXT|zqg0=5SAp6K6{HE)R^b>7$!d!EoM(64TOvq06BYPKT% zW4$Fyl!;d&BHW3gD*?yRaySRgTH|zXvm&chXBWQMQHvvCee7Raw-AU3q+H_jsGtdLRPuNMXW zd3Ld-lftHvBI-IE<=UAMjeVO-sBS)+!>&>hB}o{tp)}Jscs~ora&sR(?Dj}?DYbTw zL!cJN=d_7ZK4Il#^r4iSu}kX4AzlE7&6M5aMi3Hxr-Zvc@p>q^bCaQ99!>w4f?jgX z65$hOxyH}N%@Ip43s2M5GH-$7yTVu)o$GgVbzP~yTkKTYymS?HB*!yJ-0l!}FXw0v z{>Is%okZxXwreZ*Ge4GC>x@@2aA3F~$n`@x)HqUpLQ18Lz=*j>tDA>-QUZBBBAwJq zhYa?o#4oHHM-m!-P=hZSiCt!B)bgAwJ#wSJ7{FcF9p^IFDvAtO{&%zS{w}4gEct-V z#!b!UZpP6;>0L`tAtjG48Qmqi4X-YMTf6MgbbhnB^W=U&q?;=g}(v zg4WeZd29aJ>lZo6{I8Fp&3U;wW{SC``K;kY6!{zHLAfNZf(W<1V*L^gi|rz-DTZ7R zNe3$4^VR87%!ZLa%S0b*a6V^6tM5H!h;wHN)U4jbErh+Ei`jW{p2l@tUR^;PFHV?y z$=`Ta`qIV4J5w*Lcs`16bQvctV$z0gQfu4lV*A+}n|!5qudCLai}&}B$~`^ZP`8gp`MzKTK&+=?Fc3ufOG{~XTREl3~0qg5{9dW4KAC5fz^{ugkn zp=qp4W)4;N*}J=c#3VR|TRjt8S^=D7d@W<_ugT$@QN#=P(i!+B-d98y^CCH(F-t}^)&ej-DE(3aWwN8r#BaNY&FPYgVpnFJ&)ss9@+;($D*GUr zl?lacP;%}d+oZNHHgCnzV~h(UAL13?@2TMUL+f_6Pl4W7;Nc79&cyyv`D7ldS-S_L zB8@15&zvoNLsZwn1$xd`zR36Bl{uEa*VE@zyBUPCKQ^i!OULWYLvsxuk(I00S#W7E zeJGE$)M&Jt=r_&j3WfwNB?5Tq77EYv`@>~Y8 z9A{MZ$_}WeGiL-IAr6bRN7;3zWBvEk6*{-%BbVgs-1C$(ZZEOif-ZmIA&FY8kR&q{ z?uz;h_;(YZ|14cnvSY-pw$Nj}YQMcWkECEj9(0t#@kyOJB)9OZ zNIz>M{OY#z6!D7BkUFDTV*tl&K5)oh-$xF9B>)fjTBpKSi`pSWsXiU%?f@v%a)z4*IDMMU z&-+Dw?T*m20LgNReQ$VZiz)^vBokDlHVyvVy%6`aB(*hAUqEpdQ+!5L>W?E!66RuBNQtLd{s zCXsi%toE|y36}KQjC@4X(T^M)?OK7{0nnRUw#fdC-y_*kW@0_f3xarXZF1b3RbNJw zBX5%g@YLv~iY2;ED{rIVSI(ae6ixfJ( z1-y_LuS^A-2n&lU=>cKhy1mkNsF0)K-n|Gd=ur8_ubYS+3KQ-K9YZ2JV25R6IRm}lr_}|%3?$PkJ8_ELS9`LR zSK2-u&JaD&Nkt87mF}`d>Nt4^N;np0)gPCTn(}Pt4Xoc0kxpZJept62)H7Lsp{dac z*3x0i18Ed+DpMKGf~2$|BM*$aLzP1fcw~gnO#e64S9{K_m(?S}*p%LfOPTUh-zq(= zC6=^Hxt~^2tpGs$%obLAd12xldglzMVxz@tUqe&JWUXQllyCfI8D9@T3k zyxC^j1Z89p>Tydm*86GHLvd6)i@G(BiK5vbwQzK9(h4AqS<&=7MxC{k1_s*jhjq}F zQ*uL$RC;;wvdv0Yvuc`)`r;S3aB@$cZn%WSWBk2+l4Otr3>0s%ToqN^{BbXlqrJXi z%SvL+E7UPeJ8xLzv0~W<9~4@+ z4WX&@Hofx@`+F@0n{3z1JtL1U*|vIr%UUdF8j&sV^$>t;N3-YaZ@z3Yjg8mSB1x9Y zC#VwYt01^ttF~6IBO#*^gaGhJi@0;y*>*}_COY0bS-R9sX6%c(+faJ&z{+ z^S?HM>>&pzjQ~dkMNXnpH5WtqGlHn|9!h>*)FD&S0sD-tu&Jw>Kkk+QVizG1{t9=ahd=DB*PwujUB?;_j~8jT*3x=%1Hv zS2?nfW|Y5N|YU*#YvIJ>$I45jW(2ZXR@lKGRJ#h@ZUf{8|o zO!wScCB7qX=Ghrgnj}2)mrWc&uqj?|PUn|r2K<|~FEQ22UZV_~LQFX=s297)NDbC4 zbrzNnqrbZqX%JD!FDqEjlN)QCP^%mD_gozIH|dT@WG~7JO9WT#_zFQP705$dP{n^@ zOTZNCjRcIw5AJFN27=a$7uy-7=H~uYu|FeF>aENn`@Dvq$tQ4*$#_(r`1c&1u2zzKe%@V3gORuN)@zoX)khUW%WR5HLzLUB0XJDLiBXiyZsdPE|F^9W$rwSa z63W_d8Q`Xl1;;*-R13R3{TQubhoX^N&Y6=v>q2I&xf@PiID%pXOqe2BMt#y02RAMTqVey~YKPxaHu z-w{s=$~Y6`uMc>=k7Z0zDDUvPsBo3dQy*m2EWGZQ3y-VTciioXH39i*RhkJ&`fuFN zhd?G^Py3LQtGx%atuPFRY0RQcB`j#(=mOV#D}OVXy5pC-<+I*27Pi&7?{@R&q1iS~ zzcVt~eL5xE6^E0Q_HW!TrEkv5z_M)LyQpHci9fos>6T__eCik%`-jxv-nH+z?5Ob* zwl9@zlShs_#|I0qbx$TmMYS!-Lh(5(cXXagemJk~^X~biFnv|8{88ZLiN826nD$@$%|>_CVmE5q%l>xMP6{tv}^mnB94#PE7Y@S~B=yhzr-_TSx6#vS*p z97M58C=SgZ4);zcvv`_$r@EYO`8S#IOu-^M!OU+G8Ai~0drlM^ZU#Vgu{1(*lD&7C zM&b{{ewmRAP|;g$(6PP2mi{i_^%dY>y$Ic@Utlr%N(T!=NAT;n~J;|4e*}h+!8_(!VtotQ=OApWyE+iV;eM zq^&K?BCy7ic4WBw)tX86 zAj9odR_4|%V9z}sVU##4-Wv7@t7v^u7UV@oYgAOeHFR(I8nq02yv-*J;gA(U)&D5E zNcOeUqP*PDlBQYC!dcPcs+DgYD5^y=MWb{=b%5lWE7LS=0@U8r{V7w1DM9FwXB>Zn z;qv2|vGr@}7TigW4a*;lJhDY&!+fR%)mE(j$vakw3!7nYp=E;~4HRDEP48yG@U z{SYLREG2vMZ%j+I8X<9N#^_Kq1K<+Gy(y1TWA$YQKhIA=pU0J!mn948MB@m~uiF~L zDl)j*YT#7m@wPu;%cu$z%tXSMp{xfej&T+9g+2b4`H{+fl{$+CM#&`|F~k6ChV>03 z83|F;xdH|J=-pzDq>)+pH67#p2)v&cjT27k$NN3@c+kl!UkGD5to!j7h{d+5#;fl_ z{&jjHw)i&TMvsaFvgMuh8q?Z|loeuUloi&pJ z5RTT3iaIc2A=P=WC}wZ}4W9krDBOdB-A&nR2S4YK1h=97jd^sTGEAi_DwZFogm!p5aJoG6cYk|Avt#eC@IkWHn$%=`_6`DzhZ4&Q3%BH@bP@T1 zD#oQo6YUHUGS2BO5J6M@H;(tfvWzsVHt+6+hD4v^V3RL-?>qc0`gpQ9A;Ph6;od_V zjA%~)otS=-V~;bmX6>p{XsOZkbIOwDUoW++KQLb^sE$yelN87%J?8t%4)?GV77vyI zh6OIP3YkqcNuc$cnJ`;+m|hyfZ4i1jL2Up$KSEyIzScxT_lNAKY7yY?)Oj`BgMhuT zn=0(Zs-Ey+{uF8#^Q=y*!0O$65j)4Q(P8Kd23i}V8V1~CUFctFUdiZXIt0ArMC+g-J!F7@2!P50x z7eek_hpOjZ4oDWF5r^n@lB)~PNAT*sizVOg{+n!|usmPb2G-SEMCI(iTV&MHdBrMs zSB{@eQi9dze81|C+JIeFymIhYEI7j~t{^eDK_@@gi{XU+I8FOfc#b5@XUg+9KnOaQwZ Iyngq;0LTF-4gdfE diff --git a/design/FY2021/Space-Examples-FullGeometry.png b/design/FY2021/Space-Examples-FullGeometry.png deleted file mode 100644 index 0b3545ffa7f076bf7a52eba5485d17fed12ca784..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16083 zcmeIZ2T)T{)Giu8L=i+(K)MJ>2kFv9dY2+qdhgOg4=746N{dL7-dm^w2`Ei^2|Y9^ zp@kYkFE`---}m2{H}l@RGk4ybH#aj($k}J_z4qE`f8Sc`tP}A@U4fX8iVy$*5GyIl zY5@TF*ne?{?%-j+j&r!IuwOVHS_-cLz_tbj1`X%-7eKm6bI-JUl%;-QC^& z&6_v3Z{P0j?goRwqN1WwQc{bHi$_OCbaZrWZEXbw1^)j2&d$zABoYdR8XFt;_4TQ# zsVOKZ@bmLqSXj)@&yS9dPE1ThM@P%b%64>gR8&-$o0}UN8gg-Q+1lDZdGcgsW#!MG zKPVJxXlRH>EAB1{H7*{0b#-+~Ny(QlUknTkY;0^G5J+8JU1MV-EiG+SRMf9uzvAQL z_xAQeLqk`saAD#=Rg_?T?X zszhz}HRf;17FHQMzSer%z*rdjD<(!Lb&AyEgLEPxq3+Kr!^^9dyg6+}Qpr&MbVh!` z?R%0&$$4KAGY_Km2vl6LQ~dw-vrDB7Ps{cgKU9N5Y0CpV>?utf@6Taw(O*of0*>>h z)gEQcmNOH6XJ~YNskAifA8=gb3{R^c+lY1zt+J0DUX8U5SZ{>ZpiQkPBtFJv2tp=4 zoPxRNf~8#UwyxGKODk6>;5<=lDYj^QXry(z?lkc>xcAr_@BOMrAQ!+oSD?7FWpfJ= z_qFBHR-Rz@Vf=mr2Rw5WBNA&SOR1 z;^wKd7nn?<))F}GEXd<~+VPCH- z)wIfKMEz*t1#U3Uc)o?p2(6Kn1B>9m4=)p%cd1MR->WbrF6bY)eXoC0C6FJEziOID zUmAv0g$71WF*!+E0GM%Rn-%tIi3+U0z3fPd5c7B!?J5H+nELum%hB}YQSM$c;hRwS z4iahY8I*LGUGzl*bspCM4l*{RUJMxUtZP@2@n)gFf0{{D*+&%2<6XlQF!!{K{j2jt z?7n{r3ooxX3xsl>_?3OF$nk>_{hFs=S?SY2wqXyQt2G{hVZ80{5<6c>f_qEb&32|4 zd>K0ogt`noR*o$)@KR{k$JZ5ab$~~biuq2|(Tb-&2fjo-o4z>TG@LFOmFtOUt8;^h zcEH3m#^k}GGk+~?00Dxtsu*MT^zvFbH4NIT`|=NvjdCFs8j!ieDpd@qrAkl@n<3OjR2re?Y;BHa3s ziiqj%bC1X9g^(^9BlZr*J~shdSKh?93adZXz}zEUiq2wwhPyV))dI|>a`061-R%7ShrBEuoYSk10{px= z0N6KO`Z_^JV@q0H-jn>Y`9m1VYCw~)FMc87jFVbk*yiq6J13W^DVWu$=n9k5Dg^F? zu5fzlm`lU$AjVe4WYFB&n6_jQu+&yCY(1170LInp)aWofNRs4hh}(YjRqiOII%DcL z$;g&v<^}0$y#0F- zK=$BX!Nb{I>4TLT%AtG6L9j&zvwh7mV`pk~>R<|ymo835Kla=)Q>U52Y^aZ5wP*Ky z(*8J(K7WYg*Z&T&2}~0&1R(mGqMt3P#4yHmlhbka`jj0`xG0I7G}4lYMsPnLcFEly z`M}5;@N||dnHTbRTPL`~O!NqStZZvbv*=l08^7gwN<-cMQ&%AlxvJ-=IvA%ob0Xd! zL`R9$)=w}`vcbsL^D=$F*(M3^V161Uz*MQaRq2-nb>`5fhJ{MpG*e&>G|{Q*ug&cZ z472<*hm=U7@(&g@Rd)Jy#{zd-dSvq=>_0O%s!7Uki~|y1tGL^+)eo#rBBJ&_6Rj7R z2W$(jCa-+aKv(cLlTy0fum1K2^5BryuzFkI?|$49SE{g+Gy{Ght(i`+EkE7@2bWU5 zbzFMwR@r5^vv4Fu%Tc!p&jNp4%69}}V^n3=6Udtx8m8V|fr7t8d8g+|1G~OiKRh&w zw6<{dYoh2@?9H;!Ws(vA1U?6gNYaWqERor9 zVaxPt>YVnHzmD)+(1MJ>Y(EHUnb z5?Mg@ZJhA8&j6YsfOdA$;6iDDMbe#DqfY@<%D0|6JP6ij#(f}o=T+%LoN%gJPjw^y z*LDlaG@cM32--?z^D8I5o^fG^e=9YAYG+Y9DIl?KioUK4x-E3}>$HsIrnLet-0zkM zb`B_i6YcIGaOc7cdLw*LDvT22>~MHkB`>0!2`#6%xtpij*>9(^%^Q&~A*eRt5C=@0 zeOI=Zz1r-N8Uyi%f5@e)nJ{;>Hsd(!O83eo*A2d2?5;PZQ0g5aL>TQ+pm0pTrlf}2 zk>plt+YEX(OpH2jR%l7!q~zd>t5v&w6Zm=ZfA2MAFv)hWHHXYwp}$J~$lkl34TH)? ziP3kINCrs&wGN$~Z1p4m1qF=XD;_7Ts;s?vE=@ z&uho*Xt)SFMt)O0xZa^lZge+77mvF~ungcYRy?6J?mL(l&!JFN%wytB6?17IdynJi zi!cAAA4Wg18Qq;00-nlzR0CQS*h4f4Bv&cUKV8Gu<3tZnElr3k@_nTa#%G1Q)?aL_lSo~NW!~aeVB3(PmRAUv*h&7+ zaqC5tHoQPFnW(b?urz{f;H=v_93yCan-!wDe>xOKbHHcUbShF?N%&9LNru>MiKT4G zcWl@8*=p*Prs1ihg2~#tUqSg#fV#A`LIG#Yr-+tvnwu*-m~&r54DE{G!|GBPHRp26}QLaOEAKWh$jsdTo;= zxVw|I`CG7!+YG%LBy^4R*L`nVj_`(DDE7&PRs9ws827!~*2MB7#uxyaOCZ4Zx%+f^ zHMGBK-MIk1$$hr9<}xp^WOXt6cguOG*Pi~Jm78!h(*AO3K;Y_XLj6&R3?RGn0&rl| zZJ-9+5Sl%9kzQ7qI}knu@|)kKht_0^s2z%Za-o(QXxwsn(jkB$vK)yg)(j|pQ1;>@`nj#9C7Ahig`J!dJeN4y{sNAFg zd5NiWM~xcOE}YWSY87Nz2SfCaa&a|}3?%9~M`^$)CE?ZmDQW;Ke!izE*|{p!4Jo znSbhKorp5;bJG(ZQdHJMx9z&3#*$s=3qPChqGmdsiU0pLq4XH zS=70**QOkz<4b4z*1ZOyFB&EKgWhE#TQ0!ZwbL;GuDG#VI78fua$$7qNN>pA$q@70aOV{q(xCfehv<$I}pj=8O(WlV>HQTmKcI!T6Ji0> ztseKBeV$bQ*24Vf|0}Tca5EICg7^B8oMW*S3$`grxI9f4SNZGm-L2;z0LNT6V8$Ql z(Z}9eW*q;Lh7Bi(@y6ae>O|5YfB;V;y>qLZuKdvMjc=dl8fGkNlhh@iuKBl>%|!*d zdKdfpi+N(Bp3R-zeCRE*@f3}5eu#bKC;quXPKK)sK z75%&tIbB!G{f05_yYfn{N@8c*zbX>;{xQR&GctGBz0$wQ4w4a4z6on^A8HIT1oY{> z18R;~nPO+|yJkTF5;h+xEfB!OiY1ogeXr|YsV&wH3;D<8h_M?A> zr+iL}u>)@rY%o9$PFtmaubCLm-ph$o(>~Jd>USSs9LWL9Owz1&0n#~pAFO0-A8kAq zaQu7-5!0r=DEPgWB^BuDrneXN8+<*S3E;55(AAAavW3@UChw#i=G!7Qnf~H*LBL3Y zu`0^wwh87b!1|+M%T_8#{9buX`;Hclatf*IQ?h<`4tO@zEQ!)=d4+d8spe)qpP?Gr%bx$BA3 z2UD{NVLnBx22OgaCB&+B;s;5V0RN0|KS>OnyI@@@CW3q|hZ>WH@4Uvs-4@_ohQ^d* z<#8L^)>v%#RDy5PN&@P8rviVF@9fQ>fma9ljex%1I^d{n4T3=_<@Bj0%h{pw;NC%# zI>)ONvi|O}fr4~c-QwWkptEeiH43_5A%1&|(#}G;T!`YkJ9GS zFP>XMe5elMt=IYqzVXU+0C=JM#e+y7Ig6c)Kz+S683G5Q6qQmyo!C&YE;Z^wt6xV9~ zA6G}|@B)f@qAAH0YWxW*?li=#?q;crvG{lDL?zIV`tg2YNuSxiSkIDtvChnv1}ptLkPOYiv* z>*5#lu+=W?p$q{K!Sn48xQ&ttMtC=70jm!vh17(VU(cyV#p$|JFpoa)ZdclwFh0Wv za%X69y40iJr?9J%xcKh{-au{JcHsmkL?$j!nTtATg4j@W;3n3_If?lqnjZ7 zIn*N}&nuUl?L@=8^KUS#?J8sa6e3FYDGNuDBhw z7QHPs>>+aoXQJVU8feM-CA@B74>Rjtrl_p>Q%326{zvz|UNG)e-*~L#+3X`MPq)CL zYId5-7)_nv_53k6XoTKt(9=CL85C91Z`bK=P_6Z6Vy$hyPVL?OVI;%ig<*o9ivH$b zD5HE?V7CgT)mnfe*_NW6z097CQ;O3Ii7+l#$$jm6RpMPcVK zDu_GC-WmfMQnsg@CK=)i%(6xAnB3yBpzaSj3!EG@ru8EV6%SxE5smz`wA&jOys~zAI z4b?T?3;6ra&Di}j$Z0$!qXl?X!8X#0HY?CDd571=u2kf3N2XTzbB0!ZW;r4 zcTn^aqWvp7>L}$f{Ck&Usg9@|z7IryH^T!T>_sV|O;ezs!^Ku&Rdc7dnsC=Ip$NAo zMZc%U_komxbG8Q6(PHUmZf(EVb)_r(LX$gN|3*~}4IB+pnN47c8n%jFvbH7rLGXi~ zMocOonI6cGUKt$LjYeiAKd0K6NabX2ZNBg<+|I^TT{3xhvD&-bKLys{Y6o8CT)epP zT)N*~+1Fa8gS2#NFQcXsR+7d(JKLUhv4t;lNJuZXG`=(d(wv{~<_hLyvW>H>V5qoN zz8!l7n;4(ip}~6~X!qh1vpJY|y_;HeB+$y-^O-i05w~`lPKHzI#^)hs*q@HfkJpaa zi)giKVaTjT%q96tiFECnksNqbkVN74rK0{LA) zv6!uR$#w%LAtsM)YlbMTQo&qO)}QJ2A#|7K9J4zn0oG(cY`PHAu<3#f(Ra4~;fK9< z&qzZrbgWdzQa<&s*on&CDubCiLka=t!@!!O`X%?EsQvx`CPqB#gW3PYXBibQR3(1Cbx$weQFSKoul&3cDSWhB%-G z_jA7+z0ac*Xk=9g&NDFli)ZZDkn~@p{ForYpeTK_b6V^|%p`uXS6SrT-n^?DK}Id8 zuTiO7I$8M3@8esG4te77N2L!rgd8d}%#!r0G(#}UutUKX_z<;|GaL~$9gUpkY0CWA zZ!2&G@#XeeGKJi_>B|SFUXEB)Fu%0>K~m|j;I%_a-3z@~F3au*HiN)P?m8)d_l_^W zW>ygwM6Sg9BuyP5p-r)K`X&1m?sLZqLE+vMH{3g0A!dbQZmrbbq0Ai$MUvF{%i}TssLpgGJUB_?jpLD@2eKETYJZ_$vmk692m>|R zt!1pH?xb3J;oDX3F&`zGUuz`6;M2eoF4s?Ap2rb@o$!Ll_Jm1px_7I|UNxcnKRj?AI&(vec4 zqr+6mkE>ov zm#r^XyCjw<(WiMj9f1yQZ3xqqOyZQ)RE4*h9XFyzP{?U2+j;|^{s>dhOVj5Xp7tuvnFyN!;+U)BqFn#N`(g*bL+v%_xf+X9X-(0ac`3567 zu_giJ^o9}qCvVuPBW z>%US>w6sQL@^t;vnyw08k*dHqtrcq$lyjLt&6Aq_H~I#TQdUe=!jD;}=lxiBqHo0r zBZe%QNR6$PfE+|UStGo!(qowUR-nf(+Qlh)LX%q~xubG*Fe?>874eoM*;4nHU&L*o zC|OkeMT4V@$ZAJxrgYFbL9knw@0Y>FN2VfvbSJwRh*Bz~P78_AvYe8Hxrt8`$>Q5p>{HZC@5^;n+jZ6qyK^g~6ywthqakZOvjC<5oAKPn?{=I0aRM2rE_@Gp`-1vv*SgcFp& z#GejgXO7B1%9BhPmjD7e{i*hTk)um>F+sfhmcfuhIHD?{{?{e^iNM^C0e_l~G^<57 z&gTEUX>gy-$U6@Z zoK2i7Ys+d2BCarOZyR@@RJO({Aoy3#Pyl(98H z9nWL!W28vwAw{=E_*(~KkM^Zy?fo%TpU@IX6fkOU6;r|o@G@9YTV)Fzoz_h4Nu8av z{%lYT`nN9)Sw`%<6)MTzQ$i9wP8{3MC32aW8c|0?M*WSF^UD|;yxuaiMVdc$Zw(wg zIQE7Sn0DKo0{8>nh#2%IxxJW3!WUZIAjPi(IX3jqo>nWPvl%keT}osozv;%Dgp-B{ zA%=BC@0A|Ke#!Etuy!)&>TY@5_*g61&-A28@PeDl)MP7+8Hia?sl4XUZg7;xQxM@n z)3X0D&)3+Ljczk3hV$xwZF*5{&MTVrQssj^Q1G{GL%74vN=ysj#=HW!E|MxxI9-VP zDJW@qA3S>?lw7axMzuWC>vATORk=3|zTDT>wD2{$s2!lh> z|9qCz5g}k16kZR{5ptff5Q=x#finK}+4tX&SpO>?-kn)&e^fke;LV(Jv3M9!LUI6dS!c+R|oys{)nHXI16jzTVp9o3H z&JdOa9G|GMsF5g>Z>$9{Zd0vF|cwIaF_|OC`N~NQ7 zvuIRGLv@yh2$_E@X_>}s;wXJ#BBfAHy9FKDdhC$KxW@DwYx1a*y2;w*3az<^SFwxo z@QQ!5RPBQsF1b+PtPV+?^mm3};@<#$B>JdMw6axq7Pt?@pfLgUqcOcW)w(;lg_hyo zLDX8%9O#9Omgp(66qUHB>B{&`A-~-t!)O>alQG*nw>@kM+O_W9>10l~j_+AjPhQCN zaJHPT>U}9=zAoTXFOVm;rkUDl`on3xY;$@3i?6-K>%#_%z=Rch4Ze}N>D^AtyG}iN zB!Qq?HzvfiXJ*!2D*aJj$Ytu~76Z)VB0p@KNm*V(!OcgEX6q|#L?d(z%kX1x9)c5r zPS4h*V>;K7y1)|RZp9D@BE223A-US+kGe}v^>S`GK$K-SwWGgRrR{0L`ZDh>YG}}1#Fd!#NRb3O zFuJ}2o?2&Yk_bxvb44QPhp7+0Yf#;p9z0xm#wj{$r7_NhDE2(7{vg2b*}f9|L(XoF z60bA0pv}%Zkv{jnDE+Mdy3bEB6Qu5?&dU_$vc2=NbFhkOy0?7 zdL!%z{4qff&e>Y-QH#&xAG)x;s9jFj*md?E^+gNqccQ!Yq5n=Jla@z}!ZovxNQ)y_ zp#n9JD4mx`aO&PgxpQXt!>qJ{oueAL$r|{3LX6_8<<)^Bmz*cBMRY`O7hY%~C;f|C z#k;;&Z)hZGuo|$}twDfo2-I^nsNT$0eK}C80+SfYZxBAkmx7ulaTT z>QOEF8-IUj59RL@z5&LR2?dbeoTa-b)y_F15x5=uS%q59qaZ$W6$G}xJG+VWxT7%M zA1z6~Ue=y&99QLf!9of4+x4exTOo)r{ctT!ocrk$wa@xvE^#8Carq}5N?c*$DmlZc zMo3$n>^;LlSL3}zr+BXwGCy)FO;^|1U`}@?Bt$;nP~6A2?B=$J!}IdbQLbxK5sN1> z1qH9~PlYzUv#iIIq%1|WULu`48^*na8rxM>FGp$#hg52^*El3)n-hBo--~++e*w>H zlSg@k&*zvGp7}Np#HR~JMCd%97D_`uYIyzZbr(-;np`T{H@-&i=gYLr2Lm(Z063?S z5CuKbr(5FXZM(>6p5Br|K%VNXfJ&9);s}jk5JRtoQi+Vm!K`&fHlt>BXa5u(hUJC> zly)UV!5cq(!0v3gy?&|?-`)ZpS+0(EUoKuXeOC*uejJXo#FZ4^m{q^;F4?FPqat#= z##u?{fIi-RlWgzM&qiNEeDz>&#I|b%nQ}MmgmZVmQFlv~(rXXv(UARsVyT=}Ey0q1 zgO84S9`8^pI8%MFx7Wn>Ck>kaKYS<_2JJxd9Y64`dG44nZqzEc(JnM)8cIu|tmtj>U$9C32aJ)cJ_+8yRXB}7gOshGCs^%yGMM61EZJnqi=Gi^+X zJcz3)lMjy3j^%#zKKa(v$zzqG73!50t?w#V405XcXAf*YRIfDI{jn{mw&!YL=*9{n z7}=6wQ<#s^5h(8wRcE)j@K-X}2wd42M+KG#&Skq99~_7LCkuca3K>WP{fbQDUUVBt&Ln{ao(wlgO^J-ptP|C+lQ#bOmM z(q}0IE`9&C<{emwD24eLCH=KhxEBR)k-BpO$o~;h|0faOaQN{=&<2@#(1#T;?3fyx zT-&Qa@)&3!sWTQTUj3JB>;LJ){J{|f&gE#P)RR={pu!zJJB)YB@cAxt3r;M-!yuQt zH#rNBUg!^(X`z1onX`>Y2l63{$3IQGi3^^w=ML{3OV0Of-nAt*X4zveTJ87uPS2{i z^k!@!!-U-=bZrjgeb4$Yh%t+|hcYXxjW)V(Nui%cOTQKyrlLgQ5m>v@<06L)#kF=QCrgq>tpVPP5H|zcH#b$$J7rb*P+z#v3 z2k|~J01K9Q-}gSQPz&@)==Q1LB~eXLG)c-AQDruC)8Ri`sCFKFO=wHZmL9cj99G3! z#=$cxydp_JBjPLWH z8~yj(Po}AR$B{;%tu)i=#P7)4Kh4N$d>mHSG}Bc-qEbKI432qWxcU^~MfJ*bHg}4Z z8X9A&z8A2;=S?LmdFTV|tK^))25=AQ4MR_-rWa*6+@8}bTgzPP^w$?9eQ?%y{8@PM z?Dkg3mD+h_zSOC^dB|#0s|j(>>-G1i!s)2H>T~iA@4%SmJcpa~m3a?d*6eY=rBkYe zpN+xr;$0?Q*4ayjo~mD6fBe_)6lMMF76({*k6AEeE@Fxtx4bWYJ@ZXvGZL4)rr$mD zZ}j~cY}CqagT~`Fgc7uT&}r2DLxo`n^~3a4&2)(e4)z)ZUwCVMlJk1@mbvCSjxb#S-xBn>>EaaZqo`?H|pjZBiFnX(_1AUPmC&5ZD%h@=RNk zqUqdQi?OZHs)#)#0FmG1?q9A@2NjD6;8|2mY(AccS=S4Wxo8rZtXng3;;Rb1S|s=_ zDz=@ZvDY)oc(VV@!L95)dXaMg@@H+o==ed=TXyVXdC=tq%-Uapm+Wnu7H84iQ})ey z=TClcE*$_-%g&Wo0=Hv?RtTOfaqcobibHc~{ClJ#hyUa(tPG}+A+f%Y463s4bQ9M% zheSDSLBKI)T{vn&ufmJDY4025`&e&$4VcK}dPnYJPoaO7_Y~sGCYd|RjwM9!twsZ! z=`8URGZyK6VD1!@vnf421@Se-&RQ~8=iqi;V`7V%z*>T03{gRxxMti<#ukN|c@@66 znyX1VWm#)Vv%QhLCAKwTd;W@o2<+KvMak(&{hJ9%%tK`L!>KcmSQr*l%vs@s2$ zAy4Fj71l~49U*DpB0YpHrEk8B)t$mj_7`oA)in*JDmWjmXKCvZF zZ9~4&b#VIAQ?ecqOu#x0s9@uq+_{J_XTxNJGp%<^u#byJz&Ni_ z!XZv({(6pA_A-v@nX-Ef8zqwSToR6Un?YZSVl+#uSqIB?g56|WQBj>yPmNt{1eRMJp!^)USHPLvB_(OkV=@8!K~)3zI*b7M(}$`}M_j$k}vHD9q+1@MuMN z5BCng;_QJa8yjPm#Yh@yE>T9O8=sals#V&m(dL6Zd@c53FnQ%rDk}v++z?=?b15RIuV9E@&a0Zz+RM!C!^bSuX6b6?`7{ zL#AGFqUD7F_pfblp>)jh!hdS(@!=U>iD|aZ{yg`w$b%_A%qD20Y!n6^;V3RDLp^Yq zcM4`2`*aCY#TwxS!0LPR7B$QItpm|e;I7P^6coWap3IX zA7pi8dcG1NrEF$Du$h)Y2DPST`B|aDU|n=nD>XWB|8cI;TFFIaJ9lEhO%>V#|M{mC zKiNu{dgB{S5+`}+soKr7aH)zK?GXti!2{$vmD()a)i$0cd4S z;RE+H9X{s2>Eu|eHZza!eG@c$x18wSV9Wnx(VMBc1Ip(1>GmTW1go;gT_9pFoQFK#mS~gMVAyrp;Ng z;C2KpnVB7UEa370By#=|iUk4F)_x4eDGTq+u3q(S6A~tD#zV$;}(guCfakJtC z&`&Y<0-OfNIpO}vGaR0&V$1^g)}%VUzpi+GwyC?Sg7}}Ku04r4E1$D*x_WccCV{u& z2$^d>9W79dEy7I{7vE@}yjVw*Jp2N|1L;;}ybV5`AVe>!bYY@d07d*5RPq^ew_3O77bNRt` z=b;rnj~l06_R)TGR21owZ_A#dhg72Qv|>p6>v5euClXC^mlNJsYDs)-_Q z%g&AdguL&K!|{94>A&|Y6Xu)m#7ZpXZIJ3Q2KMs_o=UBGX?S2P{>A&tBKMB>5Sx-_ zX_C3nn2x^R(y1R^o@p$0!UEj)BV$*GmY%t-FPno7>HQ==Ez6BNN)W!{F^u+}hO_Bz4!tL@^U~z**Hu8@d*X0T`bFj&rSEu&KP{dxK44Qu?h3chCUtb${MS#lP!#V?t|%woX9 z2Js*(6X164%X_8%1lSC99JbJNDFT3kawFzAaZLB0R8BrK9oG4)3E-X>a4u_1Z4QQu zP>Kc)4gMnhmVPvl!Qv~KeV&fecJ*Cob43=pCg*b}em0uM9|x%nvy_q1YdMfbhFVp4 zDa|u~*e~Yk_z`Cvbf%lBXhO3MXN|)1oodTsVl_%3VIzaG6>(dC>+S4#+Ht{mQGs=Z z<{_^}Xqp}>lzQpIXzR_EW(4$%;cqc5>Io#C2{@}XzD zDx@|Vm$1J;{3ra3a>>m%A+fPzAxfE;BtvIB9Wsi%Dr9N8_?RMR7@hYc>FZ%a4SV(9 zrryi9#TUt){T&P)JlGQDYiS2hGKFT(mYa$S%6BdcXz^U@`(LVQ1^)2{ZXAp{H|{~# zzJ`uvKyuFJOBrEaFv=LinMpm#q*86FlU1e|r^bMqE;{@l?O?J7?OV>SKc8nV3mP4; zW<#_|PE(C9zQ{-Kb8vsH{+st{RK%Gi{;rC4yn@hg6cC@)*>P*7rJYsMCy6=1;F4Ix zm6Z^#RH0eLEx|xTJYNcs=$Mrhq@y_hL&Rx%*sn=Z6~%biS@o1M~(CoYm2&9qK3s?&L>utXlzU_D&@bwg2mRt z`>iNb*B05uGH}qz(zBOm3YWP?wRvVu;ECgn<}NAENjrusp|$dI*Xb!8?&p)2N7XX{ zD09FmD6lanYLpA;jayc0B_ue1+U>Ww3TbDTPm~JjcM>I7#B*WR@H!t&yx_vRHG#jX zOHQ!~sQkj5JapkySRtS~@&KEH_p2Xca8fm5bv;(bU$gz7aF?@J)F3j?f!4F7p_w}R zackq__!t;yGJe}hL&|kL*0cF?=F%BUN;(8)z?rU1UXDNFA(vAA5)N;dQ%zYAe(l-^ zU&`A2CrgNn7ZF#K^wy4F-G6Ba*=V1bu0EQX8b>nQ=5^udhyT0+lxTZ(BNb2mrbJRE z6kB@4{$w&JPn%w2>jvQ6z*G5QbFtqU(g@_$n(ca7S38SDd#(hAMqyYcY=k#^oE7E; z+8$GZ`m(Rw^0Lb;O-ifHAZjI{FOOWTJPgID*o#N+{A4Q@yx?zc-jl)>FZ>%d|6Wtg zi(Mj!p4c-mZ8Exo+iz`i2EE9dk%>1v+vUW51?2s8RXI^m*T;hQqQzqQZb6RmGxvB} z7)i_(Z_|W^D$q*dqTBt5EavL&jT#n~_55otc1gq(N2hC@Go%k4YNy^I@~#JVJa9t0 zrmv=UE|@j7@+Ac|6W85KQyYq9^y@a*>IU=;j*r7lk;?Dd5w1dM2XGq0FN8%IG`j8+Ki2&+$E)X zXfnlAkE{SU%$Oqym{*4w)ztH+u&~`n>HILk6Qgga#@$gHJY0WsIVML!Kh7Oe7u7pb z&mDVsf)G#Qcr-duF!13)a1bTd-NTlf5@au)72RoVxrcRKdG59TTs+JA&tHVC_WoNi zPpP~AQH(5y(_nwOuCNK>{8z2kxfzRd`TqY-?e708???PkI;Q_0=@yFB>t9y`^}c_v zr=aV@%W#8Y^gBKvER1n Date: Wed, 19 May 2021 07:52:30 -0500 Subject: [PATCH 08/98] Space NFP Plan D --- design/FY2021/NFP-Spaces.md | 314 +++++++++++------- design/FY2021/Space-Examples-FloorArea.png | Bin 0 -> 15185 bytes design/FY2021/Space-Examples-FullGeometry.png | Bin 0 -> 16106 bytes 3 files changed, 194 insertions(+), 120 deletions(-) create mode 100644 design/FY2021/Space-Examples-FloorArea.png create mode 100644 design/FY2021/Space-Examples-FullGeometry.png diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index 82d42c7627b..a11d1160e59 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -16,24 +16,149 @@ * Per comments, decide that load assignments like internal gains, infiltration and ventilation, should be at the Space level * Add language to clarify concerns raised in comments * Add daylighting and thermal comfort considerations + - Revised, May 18, 2021 + * Make Space optional for input + * Make Space Type just a tag + * All optional Space Name field to surfaces + * Add Space to be assigned to floor surface(s) only or full geometry + ## Justification for New Feature ## +### More Straightforward Input Thermal zones (HVAC zones) are often composed of a variety of spaces grouped together to be served by -a single thermostat. For example, an office building core zone may include private offices, conference rooms, restrooms -and corridors. Each of these spaces (rooms) has different internal gains and may or may not be fully enclosed by solid surfaces. -Currently, the smallest building element is a zone. This requires the user (or interface) to blend these spaces together for surfaces, +a single thermostat. Currently, the user (or interface) must blend these spaces together for surfaces, internal gains, and other specifications. The option to specify each space explicitly would greatly simplify input in data managemenent, especially for space-based interfaces (such as OpenStudio) and for codes and standards modeling. -Other advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large +### Reporting by Space Type +For standards and other purposes, reporting by space type is essential. There are also additional tags related to standards which +may be used for reporting. + +### Radiant and Solar Exchange +Other possible advantages include better surface groupings for radiant and solar exchange. For example, a private office which is part of a large HVAC zone could be modeled as a space so that it does not pass solar or radiant to other surfaces in the larger zone. There are also potential computing performance advantages to dividing zones into smaller enclosures for radiant exchange and solar distribution, especially for large HVAC zones with many surfaces. -## Overview ## -As proposed, Zones remain the same entity as before. Space is added as a new layer for assembling surfaces and gains into a Zone. -HVAC connections and controls remain at the Zone level. + +## Proposed Input Approach ## +New Space object (and related objects) with minimal changes to current inputs. + +### Zones, Spaces, and Surfaces ### + * Zone object does not change + + * *New optional Space object with Space Type tag and other tags.* + * Surfaces will always reference a Zone Name (no change). + * *Surfaces may reference a Space Name (optional)* + * *Two space geometry options:* + * Floor surface(s): Area based on floor surface(s) attached to the Space + * FullGeometry: Define the Space with surfaces on all sides. + * *New SpaceList object* (equivalent to ZoneList, but for Spaces). + +### Iternal Gains and HVAC + * Internal gains reference Zone or ZoneList, *Space or Spacelist*. + * Gains specified at the Zone level will be applied proportionally by floor area to all Spaces in the Zone + * Gains specified at the Space level will be applied to the Space in addition to any gains specified at the Zone level + * ZoneInfiltration:* and ZoneVentilation:* reference Zone or ZoneList, *Space or Spacelist*. + * Daylighting controls will reference a Zone *or Space*. (Daylighting reference points see all windows in an enclosure). + + * Thermostats remain as-is and continue to reference a Zone or ZoneList. + * ZoneHVAC remains as-is and continues to reference a single Zone. + + * *New DesignSpecification:OutdoorAir:List object* to list OA requirements by Space. + * Sizing:Zone references a DesignSpecification:OutdoorAir *or DesignSpecification:OutdoorAir:List object.* + +### Proposed Input Changes: + + Space, !- Optional new object + Space Name, + Zone Name, + Space Type, + *Optional Tags for Reporting* + Tag 1, + Tag 2, + ... + + Zone, !- No change + Name, + Origin, + ... + + Lights/People/Equipment + Name, + Zone, ZoneList, Space or SpaceList Name, + Schedule Name, + ... + + Infiltration:* and Ventilation:* + Name, + Zone, ZoneList, Space or SpaceList Name, + ... + + Surface, + Name, + ... + Zone Name, !- Required + Space Name, !- Optional + ... + + DesignSpecification:OutdoorAir:List !- Optional new object + List Name, + Space Name 1, + Design Specification Outdoor Air Object Name 1, + Space Name 2, + Design Specification Outdoor Air Object Name 2, + ... + + +![Figure 1 Spaces by Floor Area](Space-Examples-FloorArea.png) + +![Figure 2 Spaces by Full Geometry](Space-Examples-FullGeometry.png) + +## Sizing Considerations ## + + * Zone sizing calculations and reports are all at the Zone level. + * Possible future work could add Space level sizing calculations and reports for FullGeometry Spaces. + * New DesignSpecification:OutdoorAir:List allows space-level OA specifications to be combined + +## Testing/Validation/Data Sources ## + +* For new example files with Spaces added, there should be no substantive diffs +compared to the equivalent file without Spaces. There will likely be some small diffs due to +changes in computational order or accumulating space-level values. +* For the regression tests with no Spaces, all numeric results +should stay exactly the same, but some table headings may change. + +## Input Output Reference Documentation ## + +* New docs for Space, SpaceList, Compliance:Space, and DesignSpecification:OutdoorAir:List. +* Add Space or SpaceList options to other objects where applicable. + +## Outputs Description ## + +* Zone-level output variables will remain the same. +* Some space-level output variables may be added. +* Table reports summarizing inputs at the zone level will remain the same. +* Table reports summarizing inputs at the Space Type level will be added. +* Table reports allocating energy at the Space Type level *may* be added. +* Space-level outputs would include: + * Internal gains attached directly to a Space. + * Internal gains attached to a Zone apportioned by Space floor area. + * Floor area for each Space. + * Walls and other surfaces would only be reported at the Space level for FullGeometry Spaces. + +## Engineering Reference ## + +The basic calculations will not change, so changes will be minimal to clarify Space, Zone, and Enclosure. + +## Example File and Transition Changes ## + +* Transition required to add a blank Space Name field to all surfaces. +* Take one or more example files and add Spaces (using a mix of floor only and full surfaces). + +## Relationship Assumptions +*(getting deep in the weeds here)* ### Current EnergyPlus model ### EnergyPlus input currently has the following (very flat) heierarchy: @@ -67,120 +192,94 @@ are also related to internal gains (which cast radiant and visible energy into t By default there is one Enclosure for each Zone. By using Construction:AirBoundary, multiple zones may be grouped into a single larger Enclosure. Enclosures are assigned automatically based on the zones connected by an air boundary surface. - -## New Space Object - -### Relationship assumptions ## - -If we keep the current definition of "Zone" and add the concept of -"Space" (<= Zone), then this would add a new layer to the data model: - - Zone - Thermostat - HVAC equipment - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) - Space 3 - Surfaces - Internal Gains (People, Lights, etc.) - - Enclosure - Space 1 - Surfaces - Internal Gains (People, Lights, etc.) - Space 2 - Surfaces - Internal Gains (People, Lights, etc.) +### Proposed model with new Space layer ### + +* Keep the current definition of "Zone". + +* Add "Space" (<= Zone). + +* Space will be optional in input, but required in the data model. +So if any or all surfaces in Zone have no Space defined in input, a Space will be generated automatically. + + Zone 1 !- No surfaces with Space assigned + *Space Zone 1-All* + Surfaces + Internal Gains (People, Lights, etc.) + Zone 2 !- Some surfaces with Space assigned + Space 2A + Surfaces (Floor, Walls, Ceiling) + Internal Gains (People, Lights, etc.) + Space 2B + Surfaces (Floor(s) only) + Internal Gains (People, Lights, etc.) + *Space Zone 2-Remainder* + Surfaces + Internal Gains (People, Lights, etc.) + Enclosure A !- All of Zone 1 + *Space Zone 1-All* + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure B !- Space 2A is a separate enclosure + Space 2A + Surfaces + Internal Gains (People, Lights, etc.) + + Enclosure C !- Space 2B plus remainder of Zone 2 + Space 2B + Floor Surface + Internal Gains (People, Lights, etc.) + *Space Zone 2-Remainder* + Surfaces + Internal Gains (People, Lights, etc.) ### Definitions - * Surface - A geometric plane which is attached to a Space. + * Surface - A geometric plane which is attached to a Zone and a Space. * A Surface can be opaque, transparent, or an air boundary. - * Each Surface belongs to one Space. + * Each Surface belongs to one Zone and one Space. * Inter-Space Surfaces (adjacent to another Space) are modeled the same as current inter-Zone surfaces (two linked surfaces). * Inter-Space surfaces connecting spaces that are part of the same Zone will see the same air temperature but may be in different enclosures. If they connect spaces that are in different Zones, then they will see different air temperatures as well. - * Air boundary surfaces will combine one or more spaces into an enclosure. + * Air boundary surfaces will combine one or more spaces and/or zones into an enclosure. - * Space - A collection of one or more Surfaces and internal gains. - * Each Space belongs to one Zone (explicitly user-assigned). - * The Spaces in a Zone are lumped together for the Zone heat balance. - * There is no heat balance at the Space level. + * Space - A collection of one or more Surfaces and internal gains or a fraction of a Zone. + * Think of Space as an overlay on Zone. + * Each Space belongs to one Zone (user specified or generated by default). + * A Space may have only floor surface(s) or may be fully enclosed (floors, walls, ceilings, etc). * Each Space belongs to one Enclosure (implicitly assigned). + * There is no heat balance at the Space level. (This could be added in the future). + + * Space Type - Just a tag on Space * Zone - An air mass connecting Surfaces, internal gains, and HVAC equipment for heat balance and HVAC control. * Each Zone is comprised of one or more Spaces. + * If no Spaces are specified for a zone, a Space will automatically be created. * All Surfaces and internal gains associated with the Spaces are included in the Zone. - * The Zone heat balance does not change: it has an air node (or a Room Air Model) and includes all Surfaces and - internal gains from its Spaces plus any HVAC which is attached to the Zone. + * Surfaces and internal gains may also be attached directly to the Zone. + * The Zone heat balance does not change: it has an air temperature (or a Room Air Model) and includes all Surfaces and + internal gains from its Spaces. + * Every Zone with HVAC connected has its own air node and its own air temperature and humidity. * Enclosure - A continuous volume connecting Surfaces for radiant, solar, and daylighting exchange. * Each Enclosure is comprised of one or more Spaces. - * There is one Enclosure for each Space unless there are air boundary surfaces - which group multiple Spaces into a single Enclosure. + * If a Space has a floor surface(s) plus any other surfaces, then it is its own enclosure + * If a Space has only a floor surface(s), then it is part of the zone enclosure + * Any surfaces with a blank Space are part of the zone enclosure + * Air boundaries can be used at the Space and/or Zone level to combine enclosures * All Surfaces and internal radiant gains associated with the Spaces are included in the Enclosure. * Enclosures only distribute radiant (thermal), solar, and visible energy to and from the Surfaces. * There is no full heat balance at the Enclosure level. Each Enclosure only balances the radiant/solar flux on each Surface. These fluxes then become part of the Surface inside heat balance. -## Proposed Input Approach ## -Very minimal changes to current inputs. - - * Old Zone object becomes Space object plus some optional tags. - * New Zone object has a name and a list of Spaces (allow Zone and Space names to be the same, if desired, to - simplify backwards compatibility). - * Surfaces will reference a Space instead of a Zone. - * ZoneHVAC and Thermostats remain as-is and continue to reference a Zone or ZoneList. - * New SpaceList object (equivalent to ZoneList, but for Spaces). - * Internal gains reference Space or Spacelist (instead of Zone or ZoneList). - * ZoneInfiltration:* and ZoneVentilation:* are changed to Infiltration:* and Ventilation:* . - These will reference Space or SpaceList (instead of Zone or ZoneList). - * Daylighting controls will reference a Space. (Daylighting reference points see all windows in an enclosure). - -### Proposed objects: - - Space, !- Same fields as old Zone object plus new optional tags at the end - Name, - Origin, - Multiplier, - Ceiling Height, - Volume, - Floor Area, - Convection algorithms, - Part of Total Floor Area, - User-defined Tags for Space Types (for reporting purposes only at this point) - - Zone, !- Just a list of Spaces - Name, - Space Name 1, - Space Name 2, - ... - - Lighting/People/Equipment - Name, - Space or SpaceList Name, !- Replace current Zone or ZoneList Name - Schedule Name, - ... - - Infiltration:* and Ventilation:* - Name, - Space or SpaceList Name, !- Replace current Zone or ZoneList Name - ... - - Surface, - Name, - ... - Space Name, !- Replace current Zone Name - ## Data Structure Considerations ## * Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. * Proposed Surface ordering (same as current): - All shading surfaces are first - - All air boundary surfaces are next (once PR8370 merges). + - All air boundary surfaces are next. - Group by Zone - Group by surface type within each Zone @@ -220,7 +319,7 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. Space2-OpaqueSurface2 Space2-Window1 -## Options/Questions for Discussion +## OLD: Questions for Discussion * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? *Move to Space level and rename to Ventilation:* and Infiltration:*. @@ -231,30 +330,5 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. * Zone-based or Enclosure-based surface grouping? *This is a design question, somewhat premature at this point.* + -## Testing/Validation/Data Sources ## - -There should be no substantive diffs (possibly some small diffs due to change in computational order). -For the regression tests which are one-to-one Space-To-Zone, all numeric results -should stay exactly the same, but output variable names and table headings may change. - -## Input Output Reference Documentation ## - -The I/O Reference section for Zone becomes Space with some explanatory text at the top. -The new Zone becomes a list of Spaces. - -## Outputs Description ## - -Output variables which are zone-based will remain the same. -Some space-level output variables may be added. -Table reports summarizing inputs at the space level will be added. -Table reports allocating energy at the space level *may* be added. - -## Engineering Reference ## - -Calulations won't change, so doc changes will be minimal to clarify when Space, Zone, and Enclosure. - -## Example File and Transition Changes ## - -* Convert Zone objects to Space objects (one-to-one, just change the object class name). -* Insert new Zone objects (one for each original Zone, no name change). diff --git a/design/FY2021/Space-Examples-FloorArea.png b/design/FY2021/Space-Examples-FloorArea.png new file mode 100644 index 0000000000000000000000000000000000000000..a906fd60d2db72392cbf2710ea2212f219399185 GIT binary patch literal 15185 zcmeHtbx>Px_h*0>O0fbh4k_+hT#LIqMOxe`1%d`>DORkw1S?uxf;%lz+$DH%r?|r= z^!xtad4IFBJF~NY?QCY4+)JK&p7R{}++(3?DzaElNuB}#04#YqDGdPNG5ivF_z4R9 z>mr-g9R7vmq9H2*C> zzkbcd#dUgmnw6D>i;Ihafw8^4eSLlH>FLS9zz`A=l9rbC;ll?tH8oUJ)SjN6<>lq` z^K%Lcil0A!=I7^odwV-LI2aij_4oHHD=RlQH_OV(zIye_)YNowaZyZ6Yopo_>k&==Efj|%lL|t7SeqJ-Gm^t{DrmKdECR_;rmp=f@P+xsGdGz;k z`Yr$f_D{qgQn%B0xK;!{$xDfAc^L1_zX{vvt(iWQd4jhG)h9or+w8#!k~GHaM;@?v zW*_*-RD%Dl-@Q|;GjqY}S*{nTmi_1+tuMx+fJSxPEP^S%XaT;%|FfSZQcP{PkO}qX zvcfY5@8#I2ycG+F9lOLd!Ii{|HDr%xZkmBZcLj>B-y8JAR$d0y9vrUs@oKvn>XZ;J zxPrC!O#2>>9ae(wW+U&ZiZrd7HfPQw`Xbx``wmb2GcdH$R=K8--#))Jk{=H(r!B}Z z2I-^nllyT3N^c6O0lw?YWxk7bhJYyPJ5U%?U}&D-R19%X9}R))t^4gj#;@+x=S6zW zj)Hem^7xmwJ9^D^i)d4=2l;G-Z4qRJw!k6_oe9SY;~v1;vD2-KSoDTGiGlBzt&1?? zY;*se3uB99ix0QgzS|#==48@h>cyFB7QWEJRP#NJxl6H*HjGZITb&2uG1V%2Pc|F_ z<3Ui~C#;Lj8yte)3Yh=R?`)(d4iXm`{Q$ATje~$#XNis4QB%#-0{-}Is zczU329T&^NSxSEt?9B;KD43W$|N0~A5jrmJlN)P{#{_JnJr;JmoOHPru_kM-j1{wu zrE-s=eOMcpi|Z~AO`DMG$@Hg=97nHyIXZGVbvc*1}1CCi4s#eQq`i z1;9@Iy$?npheQMeM3*kmR9TJqnwoCXBda36fZ$q{JJ&TQ%>_A{uS3UTJ$A&IyKG+b zvKXB=hkTTEdN zpr%ogu{GC9Hb~yOfB;<|p!w@o#@a>1s2=@|(N#->dd*U}+<# z0g}Vfu)7M*zl^&Hm3@`uljS#6@nnjttybKwK_`#Ss^?cih1B- zZN&vy`!8y5&W*L>k1Qm2(=sIN>SOR};p!Nv%Ww?)^E)H;@3|H1j@o-|zk8{DF^?{{ z!RAd@ue}yi^s(_<$?r8^bWcF)GG?5~^#cg3okTIv2I1TT0KQ-77|!_g6g&HLSkyyb zQfBN!2S2ss_q}?J^(5OKh(TZA#TUQ3uoqV|JHl9;Ru)0SuxB3Fe;yXs3)NP=6*WHG z^;o&i|7kH5?~||`L6#9C&a948>y+c&cYcDirzSKpcLA>Ezcd_twf7=X=nh5iw{zts zA>cu$Duwv?+zWMd; zqIK^c-PZMXLDPiuOdrbI86o{V9o=`0adCA7#3#{JSGrAZ?#>wd0iAC3Rxdj&D)E^~!TM>aEy)GQazl*rsh< zm@gq$8_dz`bmdTiJ^x@?y)=HA7;?zWYn;{8B^H)p-dxFd6q>;_K5+u3UGHfvOx49n zKKs&l>Ib+CPNX^!T$}DgC_ShPncgp$0R1zl^(zi{htyS!=!mky-S?j`qVKng;WsZ- zt)l07*oatJo+gN0xIQf+OmXE>{w+1TDx2dLfxD2$*QamQ=;`U)^i|}R@v}*DP|=q6 zuf}X&{{n`c_?XsE&3e}fkaSC8s(Pv24D)FBGTi8h+Hg{+lJi8)p1U~psNEd)Z4mGj z%iEH-dWIyu8$@lZeaG(CT_TOexN9`DNya)#0=&={T175L(vt8Z~#;s%+Up49IO<0@dO&0F-M^DY~Wwu-r!6rj|wHoya zLt~F&GR<>*BIgEKsSa$HXn;Q*R07^w(aA_{IK!A6I>6zc;5on_ku1mqJ2*G2= z2lNPMt-R0<%1+++>+`83293aUGTIOYhIWe=4kOZt8GENNp z7vrr?ntR~RlmlLE@b|)+Nh~+^3B!Ry(-pn?0c`!|EtMFY8N1pF?(&2yXFKMC&yQdJ zl~+UiO--o{Rk=QSjmg36w=&R?@AsMWcSa7~5eF@cBb29k+rjN776Cp~XxNbI=bZ87 zfCrKFyXfneYZ3t56Xy1~BdZPajkJ%Pc1UOCt|M^{i-%0yOLD*w+Cj9TsS0|4ze1?D z?|S6Gu3lEkQa`30X04GNPd3EI%eXu6@PHjwM0217oc^PK=o14MCP|j4jK(nEJC%5q zbO>Svxv-Ax)*eq)p@_4KB0}rmA zWwvv4q(8L|Ohpyg@oT>6b36pyRMD{!vbQ(u!K;_w_VLjsJ<%0k!ws@=j{aPZCn08` z>MA?3`YuT~Kv%oj>Aa?;4D_>RsvCHB;qLQ9Sj;>DI3wz{)ac9mU+04g$c@`IM`etI zyB&uoe|m~|1nQY+^1Y5GkJ$)rvC5y%EID^!dWZX0?esMflg&dHUx94T{~Acg)uFg- zMI6w;&7)6B|Rs5D%Fm20W79FATs}Q`B+~}~Qgd5cwpzdhD%E9g@>*>S-Q`*9H)+CuS z{VWWtM%lp}T53eBePIf?`R0;96Q_p_w+usUf6=&95eMNaow4?FO_b~1womwRXENytV)->ojpxY66B6kjk<9~M0- zsy8NuZ^6;fEl|M^KXRQ<#%|GGxlOf-!F31T)LTw*8ao}UQ^7)7TV2@~Ekxn_ z&MGX}h+{3#3(m-C?^RFP)96Kq$eZS6KbtjtUcu^XUWPVZ*O6%0JAqh>a8ov&k5EeK zCM-6BfkCk&6RPPPyt|^$Khy)+A7^I>{v#&QN6C3(@*?{_6?U|HqvHG}p`{ZJ=`k-N znS2TauQWGUsCvxrI4)l%uU#ovhIS)BE)0o->gyK@_m)jkQt`1@<>1`eN~_u_qo@92 zZi6ul0&;DTWuqxAhsBLIe}v(>cjg2{;s<%+&(%%q+=A!<}>|dVa6em7_xv4u2iFysz(-gF=y3y8<^X1(W`G&rkCfh-_;#(wLBI zUq~PXh~LA2Ea9QRE60A_Opj59p@Rk?d z!>zWTJ&o9}JLD;8@1tlGHQ;atA~e_M|NZ=lzb@=&T+>q)Cz=f?cd28sWy>gVsksC+ zvtenc98*+Sz3N0OpY>Rnc}b{?y<-aDzei3V{eFoQw&~i?Lp%XKq*YPXjv<=~d>CG4 zYjK=i(KVha)u5nHEiySfU%_bAEFjwzOeqvj*lrQZw8l%~S2 z9}sp10OSCaR*ktVmKC}AjepCFr(yT?qax1C2}KKYNPn(Eyi{d*B7az&E^s0KaAxq4 zKav_=vsBTKH7&kn4i}c=Z-uQ&EJm+geUXc@T!oZE^Q^)WJ{7ddRsxydb*Ae1YlqxE! zDX2Qg@GT_2169u3c2=@pAt|J}?}?G`ljt93Fs~T@MV4e?haGG|?r#&|M$0MXA)cB_ zu!tyOG@od2{_Txf3GCagR*q_v?0XzI|Cyvpp}T~=9@y~f3n_qMwLvR%iv4c{$OW6+X;~rzG3^kKW^W2AF{E9un;{%sOQhK9QkUQl24P6LLjPNJXVYimbQ@n zqy`UJ${AR1h~!qMTP#0G$b|g%hX9Y4u`shSI{W~GXl>dGT}@bnuQ>cBJcYKqnDVM0 zu^NR6`238|_?U*}Zz7O?XL~Nu3}O270HT)w{>K$WjH=mT%?4%skYrtbpO`|MCLUdi zH>nS+$v!Y{rw<8MNWq!nUqt0c<@9^B4XuV14Ri|)F4WZWHh>6x*u+o-fZ;742Kz*u zp7^r|!3Do@5L>ZQAxm)Z#I!8MFM?b$$3PG>;9kZ)PE>fsp5y9=K-s`=8GsKfg05di zj(suIs;GLPW2el3{cYFzLQW3Jr5UFdN#*$Z;NRno0# z#$s>^+AA+xaMNpo4(iJK9i-xMIEY5RIsX)WOmQxKgMNBpe^WJ+pC^f+l87of{5x~z z0%gcImQ&ATyGpSV{M{&KjQh8NcQx8`!h1{hs_xrKf#&X$HJ1dfk8Z!1F`5VIUk~w; zMSHooHi{36#G7wqxerTEwe&3`Ktlu2f2k_OcHfq*_ZuY?lHo!tPSv+bl19HO5qXXk zuyA0u{IyDWYeo$d4?v9~Y|>wSP>FcIFp%NSz}0%&Pzmt3c2O7*6q@alN!&WK8oGx+ zmEXOvvT~qV8X=Qp$=agUKk?5)4XQyAD)*aZi{EI7=6|QgjI43)8FZ&?79G<{BXJBU z_^6~Kr8BN?yX%v|9sc<|y@p@m>1iWHbwXA5{9URMG`+LRcf0?U$FZpcK5$~m3=zi0z%Z(Pqnk#1vVK+3Ws@g(t(O~bU&fQpat$Mdpl45#ztsd{N zHHZWuk%k?DR|5|F%onBEOvK{b7@ZW@jaAEAk2tO>;7Z6kq5M_LWQWqkX=elB*|GUh zbvnF!2@!KFp}pB^oc7%0kv)~Ep|tEN&gGu%1|{n%9p83GnR=G8%q~HWKhg5{6skz% zL!_9xuGM>glo~59N_R)b2YwdCa>}UlfV{Y~L1@|nd1<29B_HV>0bmhzpp-l83uZY~ zOOYz1JKo32DIZePks{JIKY*MW25LSTu}@s7%z}hzjpQ>|eZnzjJjKy^9*dp!@yH4BV%vJO*;Aa}hrNM_v zF&A{-cB6EmsK&=Pv`@p1Kba-ssD2##2GK7v@=0{P#1+X8OIGpNTF!V3hmNO>?LK9) znEvULYYzU7McSR&n8PdT3USM@0LN4rnsJ}LP23c4t}GGsR?OU=zE6R&Xo9!CX^G#~ z>nR!O=(m-Nnf4aN2A`&TWcQn7Phji{Pz^)|d&*Aj)!qVN+Y-AwzW2jMV`Lh7k#242s)m~>!OL}6n zs7dZSymv-T+;%7|O&3lV1AQeAQHJ)C_oFs0ScdOjYie~+d8rMJTF1&_oJ8j!#jsc3 z=%_U>a{;%vPF^;_{+bw!Qep5MSle~vs=t-^auPL(aCgYTuAp!xuOjJ?@%>D?U!q6e zE|9>u39NaAWa_zz`YIOfHF<)#5RzR;Iok(q?^LAi!AUC>5H!Nuk9u}3#H|&IR))uy z>zGzq<omb38RZ8!r-yYLuBi430-K`cjvb_6YZKlLK<5z1~P6a6L z#h>J`#Yl%!7E)d&=C*w*39yo zg0W}#Yft7a=1e4%zmzu!>rb+v^kba;Tris^i~j-zSLWBk+@t%Z)SZ^=yXe_k#2nRq ztl_|uN!njTj6ZDw&wSyjtg&)0Js|=aAJSO&ID_Z^y4yeGK1@!3d&j`_`fZ2xzjD(5 zRa*O>i8MR~7DFTo;r~5t?gvkBew`rP%4CC7UF30P*IgCJw3EP92+w@^G!^-A8-;~W zTS<-VV`|TySt$QR?_GZ1+<(=-ly@xYhCFchRpzTN7yKX>r&H|Yk}7v(j`ekCm#Qqw z7>iM=LR?sj#cYuky4O<8^sa)2iw3d>&?nP85v*Wm@LY?#fEUU6`<$_^we~@@AHZNS zA2v9pCDHoiq@2p?Z%K+BhOYEgqUknM7Zl9E#g_zAa;ZCDh8uwapcU;!$dsy}?@K;j zh4&eA{R?#4U&~FM%iHP;LK?tdG?~*jK46v{+xQR7)Shxj&E?p6$!i?H-Jmv(MKW!# zQ+1?UpPztDZ*RZ!oL+zyMdW|h_F_#xlgO0DJ^gr)cIG-42VB3;JP4M6(w`OZfDVq(qcB>n^6us zM$XfxP7WXSAc_g*iCQ;W|Me=su=cTZXs}Q-7c-q7HLC^ zhcQj|64)dT!k9^2!R5&j4M~q|%+OS@J`qS9PfT+X7(4GdP-Qz_c+@GxE|TkZZ(nv|6!jr%|@e=4oj&3cPL%j!jXP!-i z35=gYkgbwSyLdoyw!rG;wkv6-BSa#PWo*v#Oa?i#*^}cRQU(bZvf>Cb=DunX^g}hx&GpEAL%Y(CL#WY`ex7|y{Pt-wD8}e+T^tzm z-Yomkc~3-6ix<<29-`|+Yn)I(sg#MIX{Q^wu z2RLlFo|1wSx0lY=#W#q4cgdjd$C7TP6y(~k)f*Vt=B?o}d#eez*qo~Wnnccq_=;2> zPS&O!Y+|s#ima~A{!6A8aGUs&{#9E^i|4S(mw)(J)z`I^49k5KA0nJ?RkBMgr+_au z&cRmzE<1a~0SXUH6v&0-Gkw>5eEI7VlY`u}LcplCnG&S~e?_!DT6jl+Sc^q>LX;`K z=H1t)MNNuB4*BM6t`Ya?dS}pv_q#+GsuNV)y?wzyJN3j{&YtTD;drIZ1XQMKx(vb~ zXlYhSq@=WP>!nFKS3HuSfGhqn*kbVGig7p$~E>mwPa? zPtwZ>qWCO$4?giW`ad2$*Y+EFf+`raM9122K=PvfOOaJTjwsdxy?SEuGu8esmZYHC zdm7THLU5E?Z9$=LYeZ)?mk_XTTPkiB8!EZ>>3aT}-+IdBuOUJ7x2&_luOe#cBZJM; z3#=Lkt)IN%TbTy0oKQB@>E#V`qODy-;s4y?2=D})*lba_Hnqa@OT^hMN52kmULCtx z(L3$XeA#}Rf{ux2exbaIOZ#B*no48ZK zvt_^ldo1$}jP#z(ih1Y!$AcPb@$gX;SGQ=!V*b#5?4>)5xEUZ6WQ|5m+?%a&a#b)v zXF)4~^g=j4@8u^88=#vttd#mi1;*KA%-qNjFh=3oP$0gaP9DsnyDEtV@y&l)w+ZK2l<)p&7O^2W!8esCQt5vL7Q?9jooNl z92YwTt*&N#_(x`L@DGX&nf{|F+L;T=hIw8FlZYoI*Kah5HP)mbIev}zs=AfsFkIsn6nDAs&Z}I)_pOo* za~vxEa8YwRb}s}|qi1Leddx94E-{wNto;`k^5UwwH!KNwBUHJgY~DMCP9o)6jm=VZ zC1>@qC7NVoY`s@@3*URXa9&gW@JgOkcPh!HAZG(|+hvnl-U1d+Dcxqz&6N6Iy>8}a z9ch)m3&MP+8h*VBPp5l3Za#Kb#rX_KCQB!PzTcL7X1gxwlrfuMpw1an$H@Ek*2^zv zcj&c7GAVkY-R;Q1$nV4Jn9WAM9ke8hM2~?ttMKsJ+du^fGduf->eilcW7uP|2dfos z^u&LO{P(i<=b-O6!GD3;7LGIRpH5`_|6>^YPXz4AhUsvguVz`tt#i$oz1u3pHuIixK-8aOdRvJM7|z`}mdh$@~H;lgOSm@^Kk4 zTIk)6#HnyskTTRc3rGmhbBxzT1=96b)@klZyA4FyGXz)rd_V&FH@?Y6V~SMCXpNWr zBRGg|N9!F8V4Y0!WN%I6D%-6+<|z{`6kFOdH5 zo?YIM3L^lC zPg)jJ1fUd zffCL2sGIlAPLGa{{YQFHk&1$70FiupNHzY1w)bibX#Cas4&(gsoD;=%%$S2e1(Tad z0(5JE7BB;8M3mjjTH(=yDMU6p&P>19nw6)RbRdaWN418YGA&1AC7+&GUrq^^Au^o& zld`l=`Il0bCgf5yC9B2$r(sZ^_o66DvE;MPjW+}Hz?g?Dd_Pvx4_3>)qZor6%tj47 z)}QzJU{X*+63Wf^=DMy2J1OtY5a@}KoqWksr!V>SvBa51j@wmr zBkn2DkxpF#Q3nq_L6?lVYswJ5kw6b&=F<+9BjzxXH*YRhTO20NZzr>~e7sC!JBu0Q z%!NLehR&&?==gTwTSfh<1%~ydJp^ow#e-b0uj$Q{H=wwbLSoWGdPEq7{QQ7Wfq`Qv;Tv1+Oal|HvJg+K;UUigS0S)O7wpSi!s zQ`dm{_({^0?OT~x+K3kcogH$iEUaNxb(+R}dD=ieSVGs+!Zq4iN~vm)MU>g`E3f;_ zOW0ntL+ag(=G&bxYb4#Q1`5$>MoTBb8NeatCaMcF-uprjD?1*D7hadPFhU99OS{y3 z;)j|AJn*_S6ip(TjO6vKw1$*qyVOXA6c5@qTpfCJRh6Euxq>isov-x8+RlBgjIg@> zT7LmoO)eJ(sI@GWJRZ`JP+Ix6|?k5-&J4n@G7B#yD4<15P1 zB@QHuDSKaYQil`A;D-kLpql2Zs)j3j)tPP;9oZgSC_ZDgB~*@rK^pIMk{N^jKth>^M<9KI-yD5lq|?%zFIE%eEW$(EP8jLp-6rRQ6{<&x)8if(^mb)OO zoeSfDAU=kzYY69nvx1}c*s(~byLTsLNJl6NJG^3Fj1Lr^7bZ(Bw6SuI`ym8CRwg2#XSmX8$X=?RxXyER8GS77r@P;+6CX zTDA%$S$N=-xi@nWX%$1n2leqA#f+52saLP%xlUbMlA5D6 zXFfZt20z$Hee}EDEu9(?R&SDEQ^B|1b-0jxbU!Exm?!;X$B%X2FyzleY>A?&LW}SK z=)BqjPG@0U+sr8)Ay&9kP^Tvon>g@%@Ju?a??Wr9y|N57V+8o}zrVxmSocvxVyTf) z?;f=B=M2aLrsYwcWu>1oa{kpwg|)LR%rKT9ZM37F#JegHS~(Ei9^t%k@f!9ldW<@k zAQm~PG(sATfUwIv?M}`3*@Zc<@8Y8LKL$J>xfnHKWmaO#th&T9VOP|0P&>Iv2r>Ke zf#=rOY^B|K1F4s=#V-X}Z>lRxls^M$Fs20t$={=cx0BFi0_vkfj7c+}FE1iU3tL!_@yRgssJU6rfH7&Grn!?fN=McR*1BkrFh96=fw{h- zjTliGn!GljNZR_8aH>d-V}6~*S4=x$yFIbFQHt@SJiga8q7!Vw_pmTn?L zk%BuIrX_e6gFUhDHnp!T3x!gULToL>{C@G?yxCoEnqw`#0)A5kt>OtDel)hGn?O ztFPp%NM!ILZAX{vnOPlbU!U#_#`MaZU(^OwVOzn0GwVWBzV+FQX0hGjbZfU$zLFq= zpY!4?vC`rNi>0gC7tudPQ0Ms+eu-f%nCJp&^Px9TNQN3l!F?XCGylEtI<@H<0;r`9 z!7-<^)~rZXpY648#q^Ic9rIhsPXUv6c1k-SS<+oMA49yxsEP^Sq-QH@%2qb_M7m?> zry=*kMx$=Rk310_Dh3KH%cuTZ8{Z6SPi@OuZEbb=cHR*cvu8RL7iD8z3Es6Z&CXxq z&f~ zVY#m!0d?Jcp5(ZwIqoROMEX;WI6glBJ3bKNwRk&EVK*KT^t`NZW+(5;se$K1;{P@srK8ygEzG&+35La4Jn|e;?4|r`fs|mPd?1y#~%sWJ0cnUJp6uMe5 z@jIQaewY|RdvP~1yKf!Pyxn!a-MX3~XeX;wzu=Lug739_(dt^(NK)8@u@Y4PrAW#j zk2o)pLiF@9E*R&;gAK0|OL~AU5eeLS5j-UOEPUQ$z5_dy;FEU&2XF2dd-IWiVs6pw zSEj;!q4?WHe2;t+RnRu^2|lKQ4kLTIR11p=7q_M^-%SPOq(o47#2DIK?B2hs`OvQ^ zqYF1tpG7bp@nUwvRpO$KUB!^8@=9z(#=v1y`;p>VJlcJgFk=MFU4>7D(!DfEFzeb1 zCG*ahUPd0wi}1agYxDjKit*~;mq4qrKd@dQpy5eevEAx{!q6l;Hg;@vb~?9(ziwAj zG{;2&^CXk+S~Fh;0@+(^UXQun@0M`XAM91(!T?sv1v;vZvg9HkB*Y70- z98^O($TD`4bl3*qlXiRuHx}O+6Vlh6ysXDVQcQ}kUc)-OBA@BEJ9*&-$05mZ8d%hV zBZK-2HMy*SSJIBF7}l>$Fqywuk)d_D$M9TP!Nj^>A^K)~kK4N4o3YCGu0@?B-YCE5 zO3MC;=$i3NG>}}mRUdfIJCs35Vc+mtLCpgrmQZ{i-m{2t8uwdKk%ECUpn0&-;#7rU z8e@^&Oc$M6<$zAP6d$V!Xk?FbM3#x|EE>mhAhFRJX`HC&V3slhKxhvOcS$7AsW9rtJYoG(${2~ za^Pq9SX4K`;m?3)JD$FUcIjN16;qd45{od1IKr(VuEgPXQr^R-HUjU35c($yD6NET zT@8vMJfjB_W#q#{ICMJcUYqVj7IZT1#!(g~uGfBZOi1*BpBW9jgyzSYi0sY)?(SI@ zY%`~$vQVSQzL*Y8LSK0QC+Wf+-k|Etk<6$1{K(^4ttFO?XUQG+xC$D^vWm}2PwMTxVO(D_Zjmoyy|Xzsbs}SR@;1L|sRrg`=f2 zF}np+@Dn{gs9Kt)twxH3cfd$-zRDEV`of||Z2*Qgfbk}kQZ*G^f$}5?OmW z=RFg_FCBT5Q+H?tMmeon9>GUrqGTBXGJVO8sg_s6b0hE`n|$8Cdu+J16FQCm?ywRuuP;&Q@Zo&7z6y2#%rh!}72w(o|}Z;C;I@u-)k{ zoTBJ00sj~I>)kFe?bvaXD&LGsI=T#LriH)3K=HM+}2VQg2TR$~n z(RhlmXs2)aWL`YZTUI(vnaVvnCMtyGF9^a*5m1F zML;;_@Tc@!Ql)_7e&nU@u8+Zpcmba2q!-==u_NYG;Z_}pBVLXeDDg;U;`sYs`S-Z! z|Fks+PaVEJy)l5N2Zvne=s4mJQ+P!GyXjO4Tq!Wr_+tn%kv*Hd%+%>2^2EZR7kR;>B_RZ`Z_RMd}^Y==5 zP#+@vhsUii$V&udc$@c+w_v3ymVo+Cn9rWT)7|LOEm}q92mzaCo2C$3h-#v1G@%OW zlVPlNOWTssL9@YO9c}MnOHtC?g-H!BOHQVA9kOj>PRRh@4bEPFBhYjDgD#vwct(RoZsCvD3j$|*LbRgX1`O`0M8-rkiRO3& z&!d&kMlLZGwZ(?cye{9Tx~p)Xo#dP+C!PF^|J<)7V|!CB_Kh`n8awp^mR28 z#AHTOKltd${98DUxQfn{z=~f0YMc`{jHs4j`$2;n*D>odm-BU`VWw8e3A;7-q#yg; zKh9Tt+A$s`$>4qX-?eSWnC}%@&NQ&J1?|eZX)~VkmlY{c<)6ZS76ACCa}xAPGs)Pc z9g5=V{BVgHOVWSyql^=OBqT;gf5;U1xcdN&I%B-CbTm_B2U4ik(M)-d&zSx+Ezj`i zXe^*wd+$!omu{O+i1BEC#MMO;@N8^*CI?p_JkuYp$K-GtRdn#bECNngqY~kW3)2K? zPuSkoC8%}@4Af41bHq+zy84Y4_5nyrB<=pa@UX7)uirXaFQD>Q!`4dNkLQMrsqGC= z>&mY3Dp}rF9?OZ1rr>xL*(*EngbR@^B9@VU61x@~0sv_t~ zzln%L7;oETI$7iGO?Rs&QG9Xb$aWb`qA|*XevErL#xGK$a}vT0SvC}SM1UxO9NapV zxlJ&>n2)*zTq_io9l^=W4Vj48gA$OiWA1wf&z4NZqTWDxUn^srauh7gj9h`}yA2Gh zm5u8rzn?D{z1RQiM?LdJZCmoP1opgm(FR4;GY6cLGk8fGzKkeU&l1v+?YuK~S<%zZ zK@c z71rijdS5@*F>L*3uG=t&YW7^{7WRi@2P1^~uO+)|VNV*=(Ox$Gof>FI3{?FK4B+Nf z`IU*|DPk_dVm~%e_>njz-0C<;{*J7>2K>irIlveQUs(c(wp?&2^}K67exW-5SsMfdxsD}Y0{-hlb|5I zLkI*&cme>qb=Fkj~d+}4;cEO$-$*MRCVx-HDb9otu`uK<9$ID#t+%%fO$->PWKUSD6g zwzgvK1_uYjU@&QEX?}kG)6>)Z{CpA;5&{B(?d|Q$%S&HhUp6+jh=_=+tSmP-x3_QK z;^E;94i2WKrizM+N=ZqrtgM`!oiQ*l^z`(Ul$7}U`#U>3udlB|p->YOlaY}TRaI4a zd3gZ=0ZU8E<>lq+>FL?o+34u#H*enb_4U=%)L2+p7#bRKb939;+CF;pXl-rn`}gm= zySqPr{NUA$yGKlmjf30J&`?oP5g#9KU|?WlV^d#W-`w2X-ri16PahQ(_4Vu5#Kgp- zqoc5}FclS*si`S#ZSBy|P!I^@=;(-pdk+f>>*2$Pi;Iiy?(WZ@Klk$T%E-vj(9pmv z{~6x45avtYLsLx)Ba{CXAAnEBx4W1z?!8kma0dX0dT#!(20*14O-bM@zImnXW4gDb z9JMpjUcB?Bw9drwwWdxhQ)%qim>8jqc@p>cuafTH*KMmaL|=Cm!L$@eB*O%l|h&x{(t*9ystHtneYA+p*jVnuMTjxr#5RRf}P%BL@lTQ&WjdQ z$+DNKS?;GlX$OfYt}gipoHsg8Wwy+0M}xxZ>|-Z3Vu1l$?a;;(Gixe|4{@rQoBmMs+?Ya^ire-M>ncz?Kq)c zqsb?z4_irWDb(s7pi?a)vQ5$3300bvBpmwF*Y%xqqKISvPpQ_?(EHDa@f}qR=ZtXn zOub{}FZ*c_>^9(9WCT{y9gmaj$Qoafs_tI)F_m9mRxJZ)k0nN9$rB7OhjJdrv}lL$ zX9fui^A_;N*cFsbt!as0EAOx6r2PyN$&ttscAfmYG#DO=X2s!hzw?`uzM%56^Td79 zd8a)qeIN{bu&VVpTx)#kbXY?y5;S~Hqm@8=(Y@vDpyGhw&@PS}tVVr!Iqsdrs1srsqj}_cVYIp3xcZLj#OzE#+>ZWUZ0kObZ z%YY)8;(6*qBR_6=GGOK+saogL&E-haTQrgO{L+Y$l zu+id+>8gn+@~ze5blw`k-iHorYB}P-tqpS8pT|aG7d&~5pnDd_igr3IvKFK`NV?G; z`>wk**XtK_!{&YG9G-(zVxw8mSn{@%`+PBs)cb0|bYi3?sT-g}T}F zW8GskL1x3Ok)*yaEeV<&gb1=IJ4w8HxuHK}oZZ0Klds1|F~pz- zrh=W4ITjuMAR3*{Hcc!!reU6@Q%Ca8phHKcoy!Q}iaCh)g-#fkm20j|v z>3Q`lX0%PQXWFg=p&HaUe9)ZIkKqs8dqkdl^r7nstK-lniX?i ztndpmfQ!`8E{FJiqziHUyXrsb_R_fr|C1dcj;=bffA>^Yn zBb>JmT%Xg5CPj0sK)n4_{DnDTM{Tp2Mkz9qqf#S>a@KFg`KTq(TrQ@hJ5;KM-syfw zj22>g0uYtd5TfTC-3>3X4`oxBr|JjB77)6Ay*9L-QOgMH8mdF;#n+>IqaNEVKBAB` zbsGO!c4TtkaoLu47Vayrfixf~LLd@o3G#zb4Jr)hS?V&23IYP3rM{G8tfX5Gqig10 z^2p2c;JM7Gw;RT%)j%i|S%8F562Hth8XyzOGglz%V8w%24a-hV9AvkoKmVWU#(f-K z0j%G8Q7gM8kuqLV-^Vdl$yh{T?tzxpQ+ErlSmELeS>{Hl1+&d3pe@|bPB01$SM^F? z4WD%9arU?-lmf;659Iy(;FQ~ANnVgi^Wb%`3GdD1yO)bWa)BA?(7;NK z*h$-(9ogHyhMh8CV!MY+&Gzc5Q%ws6^gv-f$BxaH2fu6zc3~cm%kcL+=M1UmhS09I z^kttY9^WkX$|P*`*@sbt#X#V)s+D`vxYiU@{c`>JS-{z!F**B|Q4v)%hs0l6YS)GR zqR&PDt(6z0*AVuhUEh+1d*xK%f{DA51cdE!O#Y~R+$=6DDUf!NI_0UGy#?;A?1NMH zjB`&D{hY1(vb+rQ2gfR>ePHfj%Nn}A3dvyS7c}xwuj?9X@oqKLH5_oV;fk}C+NocN~1L&*GZ_Hgkq>K7f&FBWD< z(Hyf^rxr64WctgQYal-!oNYUcOfL9)nny&&)a*;(DE&{?9v20%P;{DJPlY{<80vX8 z>M9!TchRGMJ;wTeSR?Y{N7w|(@+qX~zxL~_mgtvdw#s_hc>?_5_30$&nBFo_H5Dt; zDXBve{sbRNxKJIW#$AbhJ6T?@hywrd)>2}<$Q%1Sq@vv*qo2_Xw1f0G%H2*NiknrG zL)A#aVx@*t{`MDtiC~zQ6+WTxXwZw)%O#9O_fKJonCV{L8xNcCRw3)6#dJ-KeQ4bk zJ9H55al-IzSe=-mol#D5^qM|rdRCq6#wPni0peca_K=$PSKp7PLc{mNZ`$78K>->U zKXvpy05kZkL|iRBzlgQB^u(yQl`%xDE3s|t4-Jwzr5qhg>-D*E5#d8_Qy zz$l`;#s0Vk7YMB!pQ=QU!HdygyPRv(p<4f)-^-r>Z(=U7Ha%xGdP>eN@9(IUEXj=x zy?4W-SfS~o;B!tPOwfCV^qJ0rPicVTN(NSlrsjG1KInIA(C=57tVTv((L5r(PZkedyM`h_xDGNWLCEz_{ z>D(}VgcQ6iw?|x0AMET~s{qg@H^QI|ag}`C2P^J!j@67F)I%%Z@h^Ro32`pp=Lq19 z&i+#D*>a5@A6Fy0+2j370Aq#{GXIRNTyxt`X?qz;&c&z>W=COnza@9xXczSp#@P}i z=z0yacKN&AT?7~vdgDBYEGihgZh%(%_j9)>^q0?(cL}7W9FM+3pI_80KUb|JzJ2U) z^IqW!o*UZBZg;RDQKn?Cv%ywzHy!~h^@->$*`Joqsnh~O5?RF>%)?!R+PWhRnW>RyhxvG;d%&O{|# z0LG=C6jIbTO@FI^>P2nxgn3%@or|=H?_R*(Rh+FXFJ?KwU_>TU9tRg<9rnD?s$sE; zp!{gw*EbtNWa@G+r=BSYvKFlXdFhf~@Fw^APTST%r~U4LcjBi3*8&`uCgl$rr0*uj zI{goKtOIVDp}RNeQ|1A-V{1{m`ieS?`9csT2Sw&GKFOqkc=t>XZ6b_-j=3NPSoTA+ zXpGQUvEQ+Z`QrySv3dm<2LjMv?H8(wqW}RJaGNQb_s-(!5@K8;b20Z){}c@G>)8=& zd~Lz7%xVz85W9DRhuxKE@u#VG0={q)vaV4XW45t55)z|X4EYf6={*g=!d`KdRY-aA zmxLvlM_f9Xk&=#R)u+)^nd7W}wxaQ2l8Jc*=~3W6!y^rrmskK^zW0mZf=a%Nf8L&| zd-iS9YHB)g+O;9GsTIx!5EdFh@=3D}^S@~;xrB=1jvD4ccgLpXuFIbLZK^Yx{L;C~ zI|SZzM->t%ux<3~^EhaP&fC7T0t7oC_F|2e6dBbWSJ+)id9NpNSNcotPtavC^)adzT^PbN5geiWoO2R&a;TI;c zjxDG63!ZyM+A6}ohzjD=rW!NESWOx4pgGSoBvfw&UBb8Yn} z2i!_s3~N&zo3fo?!6m~r{YuAA;fIQ;AAj1Von9^{tvGBht4#84 zcYL4zP8W7_s9zPM8N7Yk5jt_<1l`Q^az~bpmo$X?!K4Tyc`?x1zX$kLWI6IpLCAAy z7p0T4IN{7U`75ypoo|l4Vv82NEU?+6aT^v|E7(jF?G<%RE`OWQj??(*_vYxx`)}s`}8=C0z_I?QckA=Bt|FJ7X1Iy=*^V@oSUHMpPy6 zL~@DqyG!`QKyjIrgw|O#6sZkZnZ+Q^sv4j(Yxhoxw{6#88do+RlzF~$S}WThBAi46 zpDt@{8TY{$sh}#VP*Oy-@*xI1&aj``Qs{RC83J!Xj1&W6+IYEo=I9GwPYXE4Sv16G zM}s0{O7|dnrKaXBncOm;Y9&6Vr4CkW-LkY3Lykk0_W$u~(*VG1TkKl|;Oa)L|INMZ znuq#7Li;RUdZUnPw|)$7eoF*WnnwI$V&uWzk|V?ErN?qa&8d4Zlj;pVrOioHPCl?{ z&I%A&@3N^2&s!$q^k*AHnMs=gTTp(m0!G%7fw`qK^Di7DEeA+f%%*${=xMa4fexpv zz4wUr6YhTbCQNlICNW-kYNa6gm+ZY4z4We=m!7jh@3W#x$fFkb#EpyZPlYa;1~A@2 zZLQe$sZe6TF=d=}WVks;FyY0!jyACWkwUzvp4-XXx%$=QrA{12w?!EM)O_;pi-WdK z`tti5M6P{4=iGF)l?sBaF+7jk7kVW8JYXUDnCrCN3`??AVpJ0g=CbjJf2LI|b@|q% zu6+#oRR2o;SeB@~@=@m1RjAa5YG<{*&Mg>l*?z_T zrH@DH^ym2pEjL@x3P0>mdS6>#D_n8iYWh=YB>bMjWsw@0A-QiLIfZ$iuR*}x(+2@-uo-VxB~8{yOSvk*r5)6eH1Lc`JQSQC$0lu=VwjMQ-9 zZ3nf{Gg_5#i{Xs8tLfKV<42bkx5{@XC5BBnkQ5~dHP9=>bYobvfU!~2Fbsj?p`5c> z4?`tNSsphV)6I$zNPEMq{iI7r-@wqD<8rYFI*nk2&J?5`I2lKh$G>|8TzgHfdob%*_JcsDb++GcM6~&d68sv`oMU@n5~soHDS0bopS_Bx8J;lwjq~N0uVQ4vG`(8 zzJcpyzt0xR0c_u%HP*}5#LH+Izbo2p#~Nd_-_XzhV8WOqWQXd*{fAvNSgr9_CmGw9 zxKB0VBkU{9?NN_jsB4Fm0V1*OlM?CmpCY!5Tw5EYtv0iu$v4KJxl4)`}hzfGUt9c2~Q0b0x4?B7gmehBH}B z11p=0vSY*eE6_x4oP2=&r=9W;2Q~NWy-Ms3m~}b8`B@6TGehsVM#d(%A1dOQH=LAh zFp17pNFYvD^H0Z8{oiUQx#qR;)8 zr_ZA9KL<(CmqSVcQ>|2b*GPU}cf^_&L0#6hofP4%)5AX-Y`CXil0&Xjb&UaiU!bSO z;yl{*{!^rqdi;3}k6H>nzLb=>{phA`=PjB!j>pOW*$}l-=GAnI`-xH6|ylzJ&w~-5>)zof`)0tL57p|K626+{H6TV_b zT)yt(BwA6o4t{LPvDM@zkJ6|^Y_Elyy)JQ%J9dkwSKiu&?rWK5Qxpt_*QF+`p!~oj z9idcy%9lbBD!CcFFESUw2XO^lp<$^*srH?fhg+Xo*%E{A-@-{QRUb9C2j2WTa9G_S zFTA5NJa|s&3_@jQfLl6$yX5!u@4B5y`8H1HB9` zj_!^?#y!+tYvxzAJ>H4j*@CROsnH^!Foso3IG&#iq1RWP~{Sx6=!x%Tlwmtz1| zrUM>nM@FNp4LN-%z!8KbWO*m_j3l5gPB(Yfn{A$~U#AgzdZ(f{GKQv- zRi8!IY1&+(ttN2vKoE{+vhWAU%PpC(`oU#dE=c!y+w{1t@c)t1P8fj8A zn>f2LjV1ryem9VmZ-re0ea$kkh)&1GN4zumudP#0nPnTZDG&kmJ*X}a{#kzYDN`6d z!ML*2cROf<$yCg0D|#BeJ$g4$_>6I_{YdrfGOx$c{ZuPF~R2d7_4rV2R0CgJ(Zw2smoA*L(43C z3d?sbK?<6$kxef^VVTHdAuU5GO73%2{hXQ{9-8(I1&kC>aI@as*ycfER=J}4)ab_AC%hg~Btw(|4*vt3Nl95clCk1ihu zox6NItF3i1lge5Wvu|b*@!_%~S-0_=>zX8pWo{Z>Nb{n`j4&_zuY~Xp2MO6^aLtod( zSH;OYKDkqt+_xX_ROSkI2tGNG#5JA>zBfO6bjRnCHFt(~yTsRs=8WBFmh(Roa@wu4 zO*9C-6XW!YRGY@5bEdeZa|=HBy8aVmzp6m&g*D-P?&;hgIt$cssY2j~U%H)Qu?M0Z z9f}!nCd=Ry9^XIBVC3ci-;8=1>;&LR<`w3N?2sXr^zEf4pLVtomc9$y;UIfZtnE9G z<8Q?IfE%w$oLu+k8yn;-=~Kx_L<_@^7}KlOQ6cyv#W#8eiA(oG-AX+O-`ZMzR`KPP zB;*_aRG-IEn?L-NT_+G(FVV4Xs0;)mmnl$tf5g9(~`)paWwlbG{N?W*~L<^-7epZt_nbFit$8s`3+~>(# z*4*)~3A^#3VuHQccprXTssK<%8HT8*E%(6Fobg6)f6C#ll#?Zg zPMCM4fg!(x^G1->CX|* zPTw3|eO3EJSHA#k>v!34M%Z%&o(Kt_JSgXtqtf6syo?tDYWPIAEEGr{p zip6v9FOzBKkob;elOMm8*+{$~B(;Dexkv z=N5{dND(A>{aMjZ*;SP5`&*Q_TRCV$vmpp;e~R5JM33VH1!RuD*9U>z%i1stNAfj( z^TjRwlrpPsPY%I*8CaXE1~mF($Zp_OL^5U3zNUlob{$=6JB0f1#lSedV4cHf&I8;i zDk#5ff>;rjx=0=UgM88#_Ybn-tHm|Sh$6ieqmVSO*iD(Q1v@7V;)>D;68-&Lqls)k z852Ib=jcq7<-A$-_jRLj+D`3B&Yk6IfcI8!O<0wRFY@7OvR;+q{9EmEuxY_cnIyMt z`hzctLj#j<&IF$1Idw#6Alp+dCE*&-c&4Ban&N3`AQxv06pfXKn*ZR3r%^c= zK^tpm2VRm%*gj3()s*~F$}Nk2vRx7MlIN`27IG5ySD6|{soDQ4P9E~%xlZ6hfGPeE zza3)lZ_QI2Mo$`p)p9~<6J6gaUnRySuj%4r8(}X4i>sU!z_U4Xy2_}zW??9QXHAkp}2Dby2;?kdu3;w>Vyxq6vWu_dw#_8XEgmCt%$!XsejPq-ClL~mXnlte4cDeKJ zSjbT`M~`A09Sq!a+&9nlmYy$ep=zQYZR&%n znhmZCqzBK7Q*|8i8ercJ^reZEbtMh7y(-_L8rUt{py=JZAT&D1xUvT?Ri$l7iz%ej zIZzPEzRLDf_Y)zuJT7rqfR=mxG*PtaYL)oyypfe56>WPyDqZaW#jf( z7$4-A>KhV;$%fo6+~$NkgL9ZlF~W#_5(y;^iyUg4PMRn4{H6cauNBaDZ@wo{xMnY=- z5eLRyTX|xi6E(&)=wL+h{)IJgumy(UjZfjjuOwsm=nq9Y2QnI+mmOsIC(Vg_W-g0T zWWiFURZ_~S;w@emck_;zPn`4Ed`pQ{k8O^Lt9XVx1MCKTaoJ?(0x6wFV(3Fgrr14q z_?02)m826FptJ|r^<1#r5-)U2`g1&5A$ixu;b46C<;bG8q zFy045Ltxw8C^g}Eu;*|y#}eA<@hBm^>&wS>BgS|I$i{~;S+_U*~Q5)I3^GR8J zr(|VoTCX}r?~b?aIOQ}-DR;glN{+>H=t_Et$mV!HUbkL(p|wV)loH9^URfTEaV(}V z1mA`1*&mAyB|_XO6$fxHvzEOEzOOH%99{Uh@^H7}p8%fDv-)w$R4z1lj}rMe{fdNI z5LeA1s+J$m=q_xo`lKF@`7$oRDw|lITEg9^TDy({zAsXkm*-TrX{Y!uQpVd3-G9g4 z8GA$SjC0@_c}AzFXpX2{^#dqPNM~>kJx-EqVVQHo)CzBkpU5V8V_64wl8IHt1GA5} zd+9aWX|dEJU%D=UtvqQkpDX)p=j#`GZ1J^lKof{?69hChp*Hz7)U`vAJ8GSNSrw#o z`5WUsKIk7?W$`l2e|To+oKX(zK2K}Ad^7l} zJux0I9~rpIqY4{NTE%t|Nle09RF7>;^mi>Beq7GWk{s7GasO=`ckHEQSfK$l<=5EQ zh#nt9x)$W+U^+#Ez);g*ZL4beH2HJ$ zgN>^@)$tKOj-r@sC)NY9nfG*fh&EV13bb%`3l67@_JzMRbt8_&O3z0OA7g4X*tLX5 zHFwin1?5N0zPqVUZvUVQ^q#NSRG6-Gb#InO-Mi%g(tx|j5!a44&q-Wq>hD~1d-Op6SqO^wcgfVras8|T&%hPo zKOYLI_+2}v4+3NP+A>^c?@?1Tbzfl{f?;!8y)ngQ7NSO?NwX6<#`x#etYr|_OaVR)X?2!)e{m&&PI6?p$h!^5-g^EMq-I#lrzAcg?@!T_ za^B$NxyiMhLNxgOUa#!W)}b8*v)8`Lsgzp-1<{V59iSZsO9lHGTsl(W|Ex~;bDx)F z*RZ#JxY}`EMp%q&_-=)l;Rv1J&P4zibZY$ijN!AN7f~;ha|Ma{YEr@QolKTjUXp#9 z4oErQwxspRU&hQV^$6dsms~LC}Jw=W5JR7*QS~& zer8C>3;!I)oEAG{Dhc%O|H{H+XIGPp!k;frJSR2YNO&9`_nU>>&acyuu7#6$8Rd!^ zMsWA=@XSm&9IVB30dB+HfT|-qTh^7mMU@-w{vNxk5o~*g8xzd%?=Cx3Uv2UUOcy9J zKk;n^en9-~7LflFQU4Ddjy}!tlbtg&M;7s-Z;penDv-)Q!N@SybI$)h+xmZYnE$&0 z?iC_+x&F7Y1{V%W@5WpalP~%B#W}RP4iJhHDE#R!7|WREI8}# zZi*lO*KzT?R`EZ^+=mZ1a$J_qKAwbCpZLr9pFmjm&Dz0T&TCz?TdzFSd0)leo@)s? zUAe$RrD#stk1c3&l3YkpUlzCQWerEPd^4u~s2(hxc${bg7#wlp?>`JC#1h$=>WSVT zWTZc~cV$Jc+Abt9b1)ui{9?Pl_n&7|b)^oNx{ToAx0Mdhw6qA_HsP3Kji%8udRhny zs;#JmxP;qTlt6|q_Fx|hHj9|f>9;&Hq0Sd40E>vFEg!;P{C$pEj4*3{nBxeJ*0V&t zB6}jO&$@IoBa-J%iw*G@fhcX{`_Ec9sq735H^4=&1A8B5ZF50|F0T}y9C<)|K6Xe! zwFZ<=ng#c@nyWW%_4F)IBmA^}CZ=A!(x7BKn9g4U(Ue@h$|hFH3Z>nYBc|N99;lnJ zEZSUSvNNAs4d)WD3MnFV*!%OEl#mi1` zq1eWR)CFI!M&~bQ>*j(Oc;UmWk5>)MCz<%3|IYn>xEx>73`{)VVKwT6p_UjnD8Do{ z)$H+{9aX_6tAq}KOwm7Ie)r14`=KXnFEk_vT20jw&uJgY!b^yg$fg(IB51(`aJ}Iv zc|pz1=RcG(2g5bzolJGjpV7-3$1@Enu%6r z_5T2FNuZepN`T5}ZqtTo$I^DfK_`zEZQ`;GbQ^uJ6$zDEf+O6V4*8BvMPEDEx$qNr z&zUsoe=qR~+%~*439eOu*$h#}#bM~zG~m&?e1q*!*yN#mYSWk3>ftIiLXc3DMq@fS zaKl&ImiVLL!W5RZ3U@ZJtiEi$DW|JgUQjCL#zvp_9qdu3FyS^UeIwt zgwV{Um-(AOCawYKG1dniVOC;TK%{WVK3V5G2)4>8I7TlZg2}0%?pXqvtAH~yNdg*&R0xV6rkSc+?KCAQbYFVY!i)! z%3zWTRKWyv zYDm^(a7a7wQti?+73%b{C~^qz zuB-HcIf<~khNSTqzc=xzp&KrGA$-l`2FIoW3S~O2Ki|&lq}T#+?LHl7jE7v}3N(oP zEaMuTsoi>Jud{Hp1g!Bpu?c*=eid(tsc^zn4L$cTjo*WZcLsf`&*4>_FIY-2$SA5i z_tIB_Zm!uMnF5E7*4myZ-JyWK-_{VSa(<<H~n@!)I%)xaYi95}^3E(p^;R(z4y#fvdQPbt8cXQ0b|MbTG( zUZj8L?6%{`k{^|P)8pEzVIuff;6Tcxj<1R)>Ucz8h~~4R?@Ao0e)@@MiLETiU_fzy zM^nLIJ8+M&imQ%*CFiyZ?VM1`qK$#1vIfkfJ&lv0Q4>UVt3KAGf$zGx z<3rHYw0y&<8}gOHl)+$*=F-vevu7c*mS-1h3G@c@xG=#bJwY_#Z6iZxvNP|m^tVCt z5~!2n23!6oi{5_grO`mXyzgpayh7E+EK#;>`md~$@*p33j2Zh>pe#cxIZ zTcFy@m1g^X^h3~5M9cl7fRP_Va|34{da1UAC6OZuKFMvTmu)`YG2Z^Bu4|ZR8Pa~` z`j2BTDNIyJ#$;jKeQ`7`LA#A5Hs5!dpuGUi)zZ-By3`_)qm4wl(hTCp8Hc zJ!0YIU4=~r|AXmzy1QT{my+b+GWrd%?#)+{ke6=rMuQO(Kqe*JVi?L<0XIGfkx@9J zI&bxr%$}Dx#SW-&4~S2F<{DbI8#*@DIcJ+1Hs&}k!>ZMYlO$B^xwdBDcgk||d9Er= zHrtdhRJr~#u)avXL-88H%v6L)S_g}5CdJJM1o7RjxX^4r_Ln_iKmANq01?!!-0UE6 z&VtoEHIPjaSGJi-H$_5xjB*W#6Q+iBHVruI_wuMxj3XZ2@aZXgqE$J7g*Z->*DLtq zD)dg_Zb*(!r7cCSq<2q=oz+lwC*l5s4fWI7;zkpQbMWluDtE>Nzu5fdHgE?N=cmML#Tf8S7(dTRbP<3%cz4lP;Gba>MCow;uOgEgo2^BwBvF!DMfy5_& z5wFDvO+K!Rf1xA3D3kQbD2VWFq)LnhuVxf+Rg%$hp0*JA`xj02W0h+Pth|%?i;_;O zIvd>Ci-J=poP9FE&QgJMb4=2^d5^&oZoP{NZRItAYoEcXHx&X!SgqhaCjag6xMMbe zx3bA9t89VfRAa;dmQnSa1Ca?%9=T}xKDHh%nS87SVb5x=U&mG<3}Hv60f!}^Y<60u zo^g|(>&B-=3=HOoXWX%rfmFnQ=?hzjFX=s$G|3%-X{s+MQedr}+45Vd7$jdU17v!f zcA*~8vp**~$U%jh5q0+J#_}tP%eui*>Hc1NUhhL z=uufy&4QR<6`$7@M-jVztkM>0v{vVZcsI;SRO&_W0s2^;L1D0`&}sd z+r0Fr+bW=9%)ILfGP70BY%xZBqykX7+9F|I?5I&Bj=4&*@=j~M%>U^7Ssp9RWYHpg zcydrVhIllP1qvL{Z9!Kqykz7x+3Xgc@+A4O&3EAAN1uQJMdtSy}wq zG0)Ec>!O0NMtPGxNVlbLFjnNRt;b+&mITi@KX{b#(tJ=DU~7~$@<*ftx`h7HB+IJRKc%V{Hq^TQ0^ z?Tn%_0^pw%ulG&Mns7zOzVIZ&Px(*g9Ze>^6>~ebmH9TU=9fEXSQDwjF9nBIq)id; z*zOJKuFELNf|SaYsn_dW`4n8cRIV#9uCNAU$b5CSl+3UDInDx^=%v^XNGVj$VwZh* zc5adc)1_;w$=g2?leLpt1Rt*T#3ozD)YFM*mxeD|d^v)4?Xz>~tIlQ};=JD%R3@k{ z?}%_tR+1`Z)JC8>D(55$twQ)Lry~;nNM31voCkM-T1~L}M-&oR4sJu@SsD(AW=|+< zvS$fb6H;n>(51`VCV|q5-40lYVy+r;I^VAkPIl-ja&>oAI3oDZY~9f%s%Mf&m+i70 z$hG}I_oB0a8d#h0I4et3!ZX7qfY-0kqN!we6D_M;YjQv5i>se$g( zvfH#ZKB$9L9aoso0W{~F5uu2|ZEbvWQym{ytAT*n(O`v*>q$>z4oTlVxLCz1Is+7@ z90#0Zi?bFp?({5KHzCGypq$r}Os<>?@|r+HnwMOL0Bt)OfT3MwRSwUxy#|L~#ahLs zvSE)Op*i(3rS6s)NH<-*?=8rPAh-%_w}2QlyKHdZM%CVK^RY`sD#CL$4aFi3aDIew z3ySmHwQfAo`7YdpRRfvhB0^9&J#Yl&(-N!G^A z1v19opNAL?YSBx*00s}Qh)SCs?v{6A5>V{hc3a{Oh$kG~l~18|-%DW5o_A@dD2He} zHL)%XersS4*Q=#imKowN@$wwtG2zzoe6lX6VQelGTbvrtXkwzTk!lIPDe;}bN~1qJ z@*BC&Kc0I%ZW?Dufn1**Y-Ttjm$2SBWI#BCmY*Yn`{m~i3ylxKG4tB!S>zq><|f}k zgDqD8rRBa<_qMi4{maBoQ!lmk7n3!|M8~!fiHI9)Ef58y3Pfml%*EE){%A%@T^RW7 z@Es`<^VzFQ3~0cAM~I| zl-fNl<31S#jMO~x{kCP78j)!oeju|NJhFdEhN=G62(JGXD7zYbQ$#(3C4!t`aF)92 zAtG(^a?Y@ghZ;Hy&3bL!bW9_$cxAMKEanrLH6~nP8ym{ z;i+w;R7Z%62dol?n=LiSo0kYmiMm?~vX?JQ7_!9%!|G0>EW|2CcV`+ZK(SL6)9}L@ z9>2K?M8K>i2>BEF^=s+rdReCW4}yUWqA3aLkXvRfCGKtk?^5pVsjMqT;)qd{&UTOC z?^kyFPc;OJCIx#=^n^DJ=kBf4!>ghS0?|V1YeRQVPs`jN-}!A8c3WBXF zf93s%|4GO6|0~U&VB~skltR|<@AZ@`Zp(^pGbUZv-_81ZAv2$K=>CT{TmJXO|CYdi fFM(QJ5a^m}B>V|;4BPLMn>&iKYHzAvn}7H(@^TMy literal 0 HcmV?d00001 From dff79468154dd450bfa1f57952d40f1c82daefdf Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 19 May 2021 08:02:04 -0500 Subject: [PATCH 09/98] Space NFP Plan D - fix typos --- design/FY2021/NFP-Spaces.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index a11d1160e59..682fe20bf56 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -19,8 +19,8 @@ - Revised, May 18, 2021 * Make Space optional for input * Make Space Type just a tag - * All optional Space Name field to surfaces - * Add Space to be assigned to floor surface(s) only or full geometry + * Add optional Space Name field to surfaces + * Allow Space to be assigned to floor surface(s) only or full set of surfaces ## Justification for New Feature ## @@ -53,7 +53,7 @@ New Space object (and related objects) with minimal changes to current inputs. * *Surfaces may reference a Space Name (optional)* * *Two space geometry options:* * Floor surface(s): Area based on floor surface(s) attached to the Space - * FullGeometry: Define the Space with surfaces on all sides. + * Full geometry: Define the Space with surfaces on all sides. * *New SpaceList object* (equivalent to ZoneList, but for Spaces). ### Iternal Gains and HVAC @@ -75,7 +75,7 @@ New Space object (and related objects) with minimal changes to current inputs. Space Name, Zone Name, Space Type, - *Optional Tags for Reporting* + *Optional Tags for Reporting* Tag 1, Tag 2, ... @@ -119,7 +119,7 @@ New Space object (and related objects) with minimal changes to current inputs. ## Sizing Considerations ## * Zone sizing calculations and reports are all at the Zone level. - * Possible future work could add Space level sizing calculations and reports for FullGeometry Spaces. + * Possible future work could add Space level sizing calculations and reports for Spaces. * New DesignSpecification:OutdoorAir:List allows space-level OA specifications to be combined ## Testing/Validation/Data Sources ## @@ -146,7 +146,7 @@ should stay exactly the same, but some table headings may change. * Internal gains attached directly to a Space. * Internal gains attached to a Zone apportioned by Space floor area. * Floor area for each Space. - * Walls and other surfaces would only be reported at the Space level for FullGeometry Spaces. + * Walls and other surfaces would only be reported at the Space level for full geometry Spaces. ## Engineering Reference ## From 14c7c3bed989bed47443599617ed1db0454bceb2 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 25 May 2021 15:10:48 -0500 Subject: [PATCH 10/98] Space NFP Plan D - conf call notes --- design/FY2021/NFP-Spaces.md | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index 682fe20bf56..d5ce1bff5ce 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -21,7 +21,8 @@ * Make Space Type just a tag * Add optional Space Name field to surfaces * Allow Space to be assigned to floor surface(s) only or full set of surfaces - + - Revised, May 25, 2021 + * Add clarifications from May 19 conference call ## Justification for New Feature ## @@ -100,7 +101,7 @@ New Space object (and related objects) with minimal changes to current inputs. Name, ... Zone Name, !- Required - Space Name, !- Optional + Space Name, !- Optional new field ... DesignSpecification:OutdoorAir:List !- Optional new object @@ -142,11 +143,12 @@ should stay exactly the same, but some table headings may change. * Table reports summarizing inputs at the zone level will remain the same. * Table reports summarizing inputs at the Space Type level will be added. * Table reports allocating energy at the Space Type level *may* be added. -* Space-level outputs would include: +* Space-level outputs will include: * Internal gains attached directly to a Space. * Internal gains attached to a Zone apportioned by Space floor area. * Floor area for each Space. - * Walls and other surfaces would only be reported at the Space level for full geometry Spaces. + * Walls and other surfaces will only be reported at the Space level for full geometry Spaces. +* Enclosures will be reported with a list of Spaces for each enclosure. ## Engineering Reference ## @@ -157,6 +159,23 @@ The basic calculations will not change, so changes will be minimal to clarify Sp * Transition required to add a blank Space Name field to all surfaces. * Take one or more example files and add Spaces (using a mix of floor only and full surfaces). +## Q&A from May 19 Conference Call +1. Room air models will remain at the Zone level. +2. AirflowNetwork (AFN) will remain at the Zone level. +3. HVAC will remain at the Zone level - one air node and one thermostat per zone. Future work may extend this to the Space level. +4. The current unitary system control-zone concept with subzones remains at the zone level. Future work may extend this to the Space level. +5. Surfaces between spaces will be treated the same as between zones (Outside Boundary Condition = Adiabatic or Surface). Existing warnings +about interzone surfaces in the same zone will be modified to warn if in the same space. +6. For a zone which has Spaces with walls, throw a warning that the spaces will be lumped together with a single air node. +7. Thermal comfort will be calculated using all surfaces within the same Enclosure (or as specified in ComfortViewFactorAngles). +8. ComfortViewFactorAngles Zone name will be optional (if it is not already). +9. Need to temper expectations about the heat balance (zones, not spaces). +10. Space Types are user-defined (no standard list). +11. Space is the atom that allows us to create a flexible relationship between zone and enclosure. +12. Non-convex enclosures will be handled as they are currently (should generate a severe error when using FullInterior solar distribution with PolygonClipping). +13. The Pixel-counting method should be unaffected by this (works with surfaces and enclosures). + + ## Relationship Assumptions *(getting deep in the weeds here)* From e9639502650b1aa7ea63bf0c0b071713476ac3a5 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 28 May 2021 08:23:53 -0500 Subject: [PATCH 11/98] Space NFP Plan D - fix figure --- design/FY2021/Space-Examples-FloorArea.png | Bin 15185 -> 16101 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/design/FY2021/Space-Examples-FloorArea.png b/design/FY2021/Space-Examples-FloorArea.png index a906fd60d2db72392cbf2710ea2212f219399185..0e43b412a52ba28bb036832a17c608ec0dba3a20 100644 GIT binary patch literal 16101 zcmeIZ2T)Vd_bwVhL8(#{=_(){qzFhy=~a5~y-N$dC<;jL9U{H=P6(hh>C&471nHfG zk^tca{Qd8{cjnE!d3WZ{+<9{|lQ}urXScQ1{=T*LUgzt36L+?7!TenX-ePR+_bc` zpi6^-f}l{SgoFeS56|i8X zu?GeQQd3ifgoMP!#aCBX&(F_kX=%H=yNip9{rvo#oSZf`HXsm)k&)5x@UXJ7vaGBu zFE6jTx%u+)^3>GS?Cfk*RFssIRBvx@b#=9wnVG)6J_iSfjg8IIr%%_{*MI)}xwp6X z>(?(X_1K3*RG3)z>+9>w%gf{9;`H?NtgWr<>gt-Bn%dghXlQ66BO||m|DKSLaD03m z8XBskq%=7>si~N1_s8XM~@a47v0_6U%h$-1OhWNGu718(9?g3 zy~B^b=z6HDXrN{Czv2V%&iwHJ-N(ZZa(eCn0Acs-7o*>$1g$AiOnE6uO>g7Z5Kt3!xfv#A2bm+4Q`x5Aehc zQVQdeK=3FX97Pv&7yrNg9N}tAX63ohoGDL2XsZ0(?I=vz2%)F<=&l!(02hS|%A`3< zRgAb9&)ZxC<=2+{{4W}uCbOESccNTEYwcpjH)E{)x7#2MFcV91(ND2~{G^Kz!ud`| z3XCgxMSxf{F_F5jC~lW6QtR<#@?64%stvdb)3C3TDp(k_>wv*b|2TiA6Qe3tjPCgj zo*1uC@K{2HuYK_^f$NbaKvJ7ho%vG}En4}rECI$u!N^kKl;i4#hB)a(S)1>&gR;ra zm#>trnXry_?qOU}6x%qY8M*)VBx037bckiM8kWKe@GC(*JgB7zHP)`{#`Tl1%!pQbFURYW>?DDZ86VdVP6>hzeKX=MBO$o2hHxB|^ydt)_Km$_ zWH0+D&seMzYY^cWN%uTpIT6)9f|Xr8ETc-l)7Q-XsZK;kV#wn4F9$)-qMJ2?d9nfp z1i13KqHXg_C)YJZZWIsJL1{Cgf*{ds0oRGYO9NpcC?+g+_j@aBH2D=@oyKuV<{kF| zovA(~r0!lX435y#*Uk(fdLAu}NAmUL`?eR5dA#X@&vl#X-LSMB{$KajVFmoNDjJg4 z>RDFqS+8|sxHjIz&Br@u#}uggvlx{=OFZO@D2SB>^_$|S;zmZ4Ty)Ru`!_(vng9b;ZebXvjs(eg*zuNKmh zcqi)kYW81lGcG}ElFYhM@0ETKMi3NhV(v)LQn+Ide9)(rr_Ydtsv58F`^Q+-nEMyL zE1IV$F!1G&CAG@Bd~C{>=hs!|nA4BC7Lg`UyHP}vtB>rgobdl#oZl<72tJXgNePYg zzkkH2&O(1bqGOj|$X2va_(R~ZV#hdjWb;u8rhleKW;1`IV4@ksYLocU!BgnNl^B7Ba%Tf`J{j1^hMLJtK3s%noa^aC|NDNtP3NCjv9mRpledg|qcE3)yh_mAKn}h|R(vRhnkA=CK z7|5G2K3VSP025g}qQ$tzf?C4zG;_sN7r*5I_l|+gcFZZ|fE0rK#oEtu5z$k1exP%d z&zf4EIs=54{D3@T8z1?jnnJY93?Z!+ltCNgCua}$=}`n@`&G=CSfZj5`h zdfYyLHI7R>dp%&PkB>n=dpM~#y*XZ;75|Jh(pC(+PG<1WC|j3R4D9>KaWs)jJ$?Re z@f@QTPavgMN2@x94E+#i<0%_TW?R+$EHz5N;J|7n68C-o&&>y2I`PpQk44l}2WGbW zJM&EA>nu5eZbY#dl)~Q_Nyk@ZNM-Tr)^+D5YQog4-#mPTHLy4EwD$vdKP@*U)yelw zLAr{kCIfMlula>h{5G-Cpen4WC!*W_q4}u^7y*=EHmadQ<$$q` z+fJQEstxO-{gxN5?~ACQyCqP2AyJ*~aM^HNj`P?Q?31cy>CfU)z&+oRZ$(i(jauMf zVKQl6lVlq2Wmt%wG7|b=`I)Ey+{+`w|2rGE=Bd(VAg#&vUevp+gC^~|Yh{o{KJo0% zmLiOsIGDCmZ6FawX#r6tXVQld|A|+yv2`rT55px z-k$wyTH%Bc$ijuIkDR9f6nfk`n`MylPHaSc_(;Z5YK)sg6vggrOtMR^tnZcKi$H53 zy4(M(f&xtVinXi$4d#(_3d3Yw|LDS*wr`I$m1pGgnPoNk5yj%$k^K>m9Y${$(Mc`WWx9Mg*cwBM%%EdBB{xC+(yh9xe(Iw``^Jl8z0E>$k zV?`%&b+0($9Z>w|7}_f73Ll$#pd@ru-Ga(j*|~$4InGpqnCIhBX71-Ov_iv_ff;LI z6YiW&9yj>nE;0WDd9NIva+wyIKgMysoDJd+3cHD_#0-ko?ftljn(kRRVY=p+>}ihB zqHaKXoPEzZeTun3l&cL* z>6gdPZYO(X6gu+q)5w`wf55V`g?rMN#w0}ba^uyx|M{O$8N22YL1h%H=wB)d*M)<^ zuZ91u7Vrsh5c9~kcS+5?VlrUC$X!7c%zQa2dt5eV5}TbAK($Db^1{u|?EanXgHrbm zznv!dI$88)1NHL;Mk}Vgq3((1)zrP^VnI%?DP<$y);82&-)X3G$p55iIyllznXL;N zv*VfI33V_1JE&H%6FHkLlOObC{D%T3KEuD!!$m?VUbiz+I3P%@Xa<^W4i2sS^WZjfd!t>m|A<~Jswa+7Rs!dXwY4reGaJPfZ-2fsvn1ooB z4MfdWtJ!4l{_ztHf&wjY@C8N!U#DI!p)I;^5<}2L`|{yf=(v{>X(tuBX(G%c%g&g= z!#EEZ?T;ZNd%rCzByz2Vu8$?@F!#4U1pe zdkGS0y;sApmR=!a?94sU>TRJ57VgYy+I4hscl2G{hPMp`3b!o^j0oz9dwTm(!QB>c z$n|~`^urCaTNz#YrAPDX16H|bQnBB#0y+ULza|uf5>uG+Nva8 z6Xq`V#nwB6sbsj7MZ5K0j|AC*Zmy41`tGePe*s8EUt(-|&Z>16pI_qcsuVBDj1InC zRHfOQCM`Rt`r+06v)GO)@Mey$RtRlWzlkJR){D*|2Z>EoigCb62We(ec>ldpiKzhX zF^zuJ; z)A%WZ@3PG9>}Kk4_rOvKfHJxj234@D*xO!cQKwUkdendpO7WgwiBuNYsqBE&pDQXS zy~wlq1~oROLVCN#`<4KPw8f-;ncLq?ZN8-KXDT=qUAHqh2)O$$xpPH1tHS7JixDn2 z>*%@5KIrPiL#xmW>lJuW&d_z!Wv%bv+xBDKMLji5~2I>>u74LV{+sN-_pq@=H*X~sPIR9ZAC^tXPcLU_+O)PS zRx4s8QO)J$71X)H;zS_69lB@)D4tjki#<=kMf5X@=!z^u;J-8bb zs}qf_l=n=n6S{_+Z#wPT)OcP6Jp%;d-GQ0XGIc%f2ZvM!LRp2bw4T@;9jRA>@j%3s3fxV{o)c_0oMUfW4Wy$IB zOHhy4j6}L8)P!r^4aSPB=XJB?4UdwHOv_1*1O6EvNsz4Qg4N|m-*9$_*oU}RZK>Ml zKej9;rvj#2>$4hL;LHF4{(c0v1k(_YRBQ1iMCksAelBEhbV}x?^p)?HDxJ}9t*hK4 ztJ~(tg9CVX41Rwda~Y=gvg;^!fgTb8nWDr5N3_S}_Eu9q>WDs&NdGqDa#=(-_Q`?% z7_1qr{!$^HY2B#pwI?Ogktjg$b*u%I$*pAxW3-$ayt-`K*BTo)#tBl2KcLl5rx$MD zcKo>Dxo@DUB=DOsKUQV3Ayb&inC{*;F?-RhI=Vk#SNspIEq-Kx zJE;p}Y^h>CX~SD^&UDSV((;x2rKBw2bWValS>y*g>)klOnR0HUkpZO@h0bM{iaqFx z>($-u#B2)jt)w%7w@o=f#*vPYtt_BBqI9gdKFk*?jvv8=hSt7)!0$ry;U9ARo=bbz zTA;;oXUC9Kaj^AjqfIiXnJ7}zo zrmg`G+Y00*uF%RF;#lC|qH}K*d<%ENfYeQmGfH;U2L-=Idh;_&V=Dv$xafF%*u>cD zwo&C}aY!jA09IE?b4sxflv6JflbagofK0fHTvtuvzPFZkcPoe46<1eY)L*+(5#OQU zB8DKy@3i|G)xhu9xOqIP>H?bt84-)YQfHU&^T(86-#KlJ0MM2C5R=bnMch6<1GhYW zP@_}Xxgi&~G+{S^Ws>eOx{{J<2LEa&*5--vZ)vZ&-WPOiII!QBZ%36~7C>L0vu4v} z37^+s`uk?=cSov-Q3P+#F$6wDFX96ltOi~}4GVF{Q(j_&-I?8!yqESGvSx3Ryp~2@ zA-DLLz2CrJS>o@zoMQ$ym6aW)j zV*BYFHr`)UDlV#VUIjsD0#;|yh_j{w=*Zr?SL|ieIgrMlgAHMr@0ila@dFDaQNpK6 zTbjqb(MHOrd|e84-GLYh8pJfQzv-BwkUpMfaI~|ikJgUb zi48F%iPKpIOv*M7%jES5{|SW`%2CK``^ZXfXR;Vk8r@%ty=$^d)YY; z@q3E$UcB_WMyTBRFJm`$F^Sn2P)7md;JnS%;es5w7S(`3%tAU`GiVN?HHt z5#=k;^+qaGc``a7PGE91Kl!)x!`D4Dt`nD@vw=Tg@^ z1AnQLls%CqEUS2$b#)aY{;A4IWxrz^YPGC~f5tbA;3UwPN9IVPwV-M^VE1DwKe7X9PxBzLghHgFPS5eJ(OU(ccqu? zki7?oZMpi+2hvTWq){<{U-umNIU24?m15Rx>%ai$f)p|=^)Izo@^i6zmPZ? zq1K(}88F{!M#=rMgY~?%ypg+Nzti-Wk_h-ixywQoQhhR?0J6uXZFZi9F009LbaEnd zkHCFZN14Dn6DK{hkR))_FS|@85W_QYWCn184+Y=YY^VieJMR%cDGoP+OT|e{;%R>>gRR_IJ z5H~+*GNhgr#*^@ZTKY2 zIXl~Y?lh^KKl%$3?HoUzMy-b_=UT_N7;e#&AIazM78 z{Y{_u_O*SYU0e2O4|gLMoq61zP?s%Jw824r9}mH}A#3n1`6t{*os<|YaaXX+oy+?# z)ZxP{t4(c@PhYEQ2A2XNFzu2O6l}*v{QCnd>!V_FwRA*GysKVL+NLnFxKCV8zdU6K zuY1eo67*0aKx3RKnreu@-bx|z&-TUe+xHl&I`jbY0M?j2&6=&%fFjYnjblo-WEC}x z9QG&en}*-5jAX{h`dMad6$e=8{&&Efk7CVxUhn=E#uiThC=qBqY-!jZ;ok5#->0PTYv1MR z%ShZ;F5)z0;1a-O3%Sk>g2%`GY+VDdHv7g_9RJSg;h7E6-`6b$k!e-lph4fq%F}Fd z9_5Pr0->N9cTvr$l0t(cE-qp>vSkx-D(?dc9U^%dNb^lcM{MEBs@=q;P7ph-`Ebd} zkTgG!M(=6%PqOZmAu^_9CaQAZ=N@0V+>VRyA{Ts%$-QXDbB+AY`zorNWR>tO_^Js} z*@m~HP(UghlHjMrrLE>9BqGTVNM9by@Qi)Le9@z66Rzs?K zxnb=UVL@{W=U{RZz56Be$H2Jiv(jS1*?HQ$YquYPpUuP{Q)qa;G;@EGK}alFeyEel z&f3);K(~Lr-;(uRWgjsnP{o<~mS4G`Pd*?9xhAHdut8y0L(*IHO|?vuyLgR4aS91Z)Nvx~hZU>H|@W5>W|WqL^;jSb6IBbztKUa4{0rKr|J@Dp86H|fUT2zf>6cz0)v|h(A$%FNi<+tJ}G+QIb2wDWtPJ)U38X4(ETAjiF0 zn*_a(d(n=+Ni-=vI;M-7JGS8iZ|lC$^(phlAT9Cdzn#wgp*FidDUl2K^jo__IOb5O zy{g}Y$rKY*Nig!y>eXNVFwY;;fLYkoRVrYR5}hUw|2j-vt#Dec{ZYzG zJ3-}QOdHMrQBr-y-y`|#`M%_Odff+fL}8Z#FUcnd^@eG$Dv2cxhOX+RYh2ql&WAsfeJz{@Ul92BD1lHnh`cm)a%Jr z+SLA`5wqcue7v3TST9a&DzDW$Md(=_Rhb92`m`5n=Svp*rx*|53)?y?!xWXi@uH>? zmHw}&ZZqmwek?VNh4QQWmHht1cMu@IsxO+H1EivApLy94FOzH@hMj*eVfX`#ACxU~ zrf6?25d_P#Ve#UWA-4)hY1M8)C>6Cf)9k>%mvIsOME5+DSKK=O4misyK{u2m<6qM& zQm%Dv5_R?T8~Y9%xcAqo=7tYDTA&0*E6dH4?ww`ggK^jKL!ar#n=E-bwLc1*GhUs& zJe4}W`mXYYx^BU$waCBEj0LCu>BPipNAy;EFX2olsyWbS3IL?&+gziPJqV&6W z#u%Ir|I!>v`RUc}OdV!;&Jziq(w~QssO#e5UfPPDID)(3 zhtK_zFDbLCc4T1eHvu)@RICjC=(Fen3yCMq+SawO-fy5vYzD7CrRy1HxGE8~Qo;x?`A7t%B#SY_4PVEEUTk3+UV@*mYZRf) z7eoA~4;`Ecvz@jo|GsT7Oxvx2f$l9=0lc<*szWQ4d=QULlXWWP=ih6VB^u|imWpvm zXAq<(4E9e*o%24=b!-n;L%3OhJFfc_O-%&35@CJ&TMo$LP1qgaF%0L@s|P$eOt7sr z+F|s&wB8fZ&9LBl==E!Nw&0KiM<2%%DC+9pa4x6oGRfIoPbNYaAQU4DG5y5@Pb0TC zfHYK7^}it%wRw@er!JOW!Xb@%zEd9fhV#721`G@Rt4INTqTcsARu=r}l~%xlzcJ1r zkL}t1-|81wbe@!YYi0NnM%q4;J_>Y=z^S4WYXP91SxVV|^y0jgqA}QnXvUzG_Us2QuH~#+D|C!=ta2vhZ8M9}W~fp5NN$`>bWYCSs=MpPz>r zrCCR(UH~hZ4}0*lVxrylr%mzV&LjRJEekR8o^K;SzT{ENT?oD9){-=Z!Hnw(*B8z& zNrg}yl(TYYWM8VzrP)`b00hY$hn}pjQip>uuQ?I4D8&McB43_4)dx51|H`IUKN$E- z?Z@ucyB#tXmCQ6O`1!1Hb={eliDJ+?n_t)QnG>)Y)V9YL>)YZc?k~9p>i<_<=Cn5& zeB8v^Eg$;?dF>eZ>~2MTXT1ZWhuU8sQ~iG=^8ZvF2-tTxF#YBwF<;b7-bgXh*b7lM z8Q9>>2$~lmZ$IYJ!@TP#y^(}zHO*ybO}1G%pi8=5-m7PUe`Jnsbst`$Ox2tgT|ljM zC?}Y6mE)`GD@bI1Qf$8fDFes!hlXI0 zo0DNv@x*DrJs-!O>yxW}=gha(k}k!*^FX!$SjmyWaKAD##})d^GtkSnll0rNVOtE8 z8+=0k196Ss4Y`}RHH;&ZZHQbx+<;{Q0U-*FCL(VB!AchxI4M8*PQAxDHDerEYx{hO z7&(s|pe&==Mqt9`=0fD{(H?JRZO-u3cNY@2Mz3=bzn2G&TN*08ITlj88Ul=`IILEo zBh0mFveIqz@Wj(Ze$Dh=^9~Lm2ckTwxu-L~WgPBsr-A|Y96%n?gR{b$J}(zQsoy@T>TR z9~yRU=L&yKP#aUDh7!v96;#6$&Cm>QcnTkq6pQAjITGyX&unm7wtvSnVM^3JeOZ_y zohV*XDXy3*(hNjC$USC&Ips3@ln^POSf3D8at?L)+xGk1XMRT=@WgRAnkIO7lErhE zM-iM+K{Adc%eQ8?@lWD{*?hW~Oq9J@+etkcdk0$hNtK!%n7)a87ftlf6ee=wgIK!(i_;>?-%uln9QyMZVE1)f8d=Qh` znk@cU#aiA$B#2E+P9wEcUB!8`cfTR=V`>iFgo|H60UYr1| zDQW4thGhH5gR$0KM^J;fV#j;JtdjS%`Z{*Hi{ z5mnBeRW3i9)?V0J^G-b(^`TpURx~ocFo(O5w{#x+|6F`*S_Z0U)lBhOd=h6fi2H%1 zBj%Re>E;rrW$7GWpjacnsUAWogFAviG+0Tl1*J~)ldD`QzJgn14W;dvNk$gs1SX&F z*3w&)<6?s-$pDmE-M2S zE?3T;KgrY741TxiSt;k99~7J?H)LEGFcx%8&yJTD>e0hxKuMFg+)9I7R zUFC`PfVoK%J3T5f;UtyJ$Os~0uEIJ@L&Cr7VepeOF2>~8#&O*Du^cg%=Ai|8kd)t} zqr*Dfv>6)UHv{d|{wgY{v=UpOo#7VZn@_vyUBHtVH!D^8>8sa3yc}(Hy`_z^`HSSQ zO$3`)_p0K;e;r5C+l+7c=P>MRaT0DaedcXu>*52kbd`oVs!qvS=_WI!+2ax#3jur|rLkkTfy6R{X9ib;I zkJS{p$t}fyRaqzgVZU$Q<*is);Jj7Yo)ycfwWdxeCWKcJwjd%Vl4O;k?>>m*)GaR6 z4xe{z^|Ah8CWhAz%g_?mkTGf>6mht3%a!XWqA>Y)E~+i6zwbQwnrNkX5_VEItH;@Y zh5yfoLdgHr1oeWUjNhAwYVAC#t0!^gcED&hx6v7uUuGn1Ae=CP$*^9WzStg#l%pC@ zKXUY-@v8RSS2M)9sA4JwyJqonvr4Ek&ijcd@OF?P!UR8Tg7-J_o+H#lo4+J+TXD?@ z!OFOTlIJGYK?SJ9kNZ8+GcAL=awczm6jPsU_vc4Be6@$P>n-IUWU_0ChyAlU?XSH+ zvCbhcyD*iL+|1Bu>9D2TJC+GCI{o#6aC*UsJ^{+g(wP9M_UsSr~?w>JhYC$&V_oIVo|CO>pbX6vvL$$30 z=f{7n!Vigl+yU}`BI^Hv!%?RoU+Fm$Q$!&b>h?JJsvMy>lZXgqx?ub7cU%9T4)a&) z;lN<=(@mm2>tA#`myh+Ymt6S7{Rdov*FN@u3^4EZEPlIjm1H(4^FBH6K;DCle-jKm z&~fW74ac?f5a}3eKJopb_ik3cU17%u1~szTD!*C!=^}k?cDKz(0a1enx(B_3v|zxQ z_V!YIdA^T{Jg|uSHR?We$O>{^I{yp{t%CW<_`$$T2PSQaolfhWRNImss$7yWcjsFC zj#tj`5OGRa+ld(^D9M@RI(>25PFjCh!zXjfmz-b;<^fX&&^lnn;XVq&#}M3|?2bAZ zprbjlb7exT*(@Y6u+kl={bs&-_@8G}wZ#wVI}PArcbN_^H8k+uw&3VvjmD8u8Y=KL zL{nbj>=JHkRtz3Q?n6K2ZxzyC&}@5VL7b2fu5+0X@&Mci18Pmsj%7k3GQNpWDSD z8vTl}CcXoWrmD?5J-rN23p=fwj;>R!&?_DbqV^L#YfP?MV-~Jpf>3SA5Is4t?5`a+ zFWg$Ew>6zx3uEWC2rk68-~aQL1pf)vJlRlbr-8+_HswjN16iyB2|B8#VvO$RPPRoy z)fDrw_8W8z&jgfF3{0Nd7=!q`hClHaZ^LSDAqg7_tEHKwCI?v_VL$y3yquAx@Q=)> zN5Y%q;z;fuwT|CTmQDH5@PbF#pRei}U|Bex|IYn>IiFlo_K&~XWisf1UN6yZK1pwE ztlsB5KdyvNRPrBM(MQd^`3cO%{-q;e$3H0JvX-hL0%{x1#*U8_&7t9C$7@Cha6Mru zxq(eh7rzv;2Ex?miP1X#;q;D$b-9HXJ5~ak+e%4| z%O_-m*C@*3>qx>`aHid4HJ?m%vHp9ZN7Y}JpcM5=q`QbsS2VGv_m)& zJhyu))Z6Sb@1)#lKo+9oJO4ltBatBP;$zKdjNiIOJI|?HM|-%wA=~eE!N_`co;H70 zF)91x+sO{K?@A767G!r09<|Mh=C*eJHc?!$ccZp_W1u#|&3$BJH%jJbmz<75$v6L?XeXyfVeG?i3c|bYF($ zQyaY0F9r+uX98Km9gQQ1SQ>HBgvj{OSvwfWtSUAqAJSE|)A^L}0{#m4Hs?UzHfvEa-5y!C=J zrR*cqHQO)kv=)w+tg3xs)&XxfuHwwm8BXY|p;sQpar^MFj=(Qtpx8c z%Qp68TU^VHhcu0zx3|;6EL`LDPEOUlw*N+It{TBl+%bU|M#YOR{1V}giP$K(82x)-fNcs7hd`<&UOJCh!R zc>L*FBVyNVgI&O&unJc#>~AQmzsj5P;tL?zK0`{l&Qg918!PB8(Mr(a6itdi;V;*y zuANlomo00y?1-3Dw`+@<5#L|lLvf>8?n=tYlVRRL%CGW1tFa`y88D$@8)+B4e))r4 zbveDAfPJFIdaV0)BuIO4_F6nf&|MbV1-`ghD=l$Fbt0$c6jr8Mbs*`T`k0dXe`
^n}lCL;A4F-KQmw}3#JrABWKS!>|)9B6Lhw?4y@S*VUD(O3so_l?#xeJQ@;dlK;?o}0M z5cOUCzQEqX=3rlbj4_$0%zMa1#J-}-_-4*#>$;bMiol}Zj}J4yJi&V`olv9PSrcR* z%@ys?;qH0=9RZGpM&HaeFNw5HzNFv5;@BWwE8-qo5|$b2HUI2kF=?|~92t7>brDnh zr2lMib!KVfnKSvt6oYZ-9Xrnyb2NI3$bIqlI21Ae{ot_m@{jzlYg&Vt+kWG*&w_={+#cl`dK5Owz{2WUpTF-DcyaWbE&G3a7wWmG&Lb3WeaDS5iZNpGU4AYL@YBLiB%gExy#iC@f|L_JZ@*nqKyLtUp z!TK=U?vhb^&h&6VyV9#Q5wN&zF&5FU30I8S4#z>DZbMppm*s^ues=TJq6izm@b(Xj z(MYlZZmnQ6vu2YE-^8K!tCMJs>LX4oFsC-1FUXvf<|k9XL;hTq(%$lF^Zp@aK)V&M zzBSGzcuNlUqqsW@h_7}y$0hyY-+uKr7tC>N>XP>#yepW<~`m}7mt#u!U zVljN5_W2!u2X*)qIWiN7d+BAmPpA5N2hV3V29mwuGj!X&F`SOqm@ z!QTYIBdD5UX(aKc`?IsuI{SfcrFG?Oun|VlMNLs8k?ZG5P5uT;RW5L@f{j>g$JSY` z2+lQzMrux>%x%2KrRVQJ&bzXXy*XR+{NFgtY8O4f~B zX25^_RDE-s(#NHcmg-FwJiqP>Y+=uCpSt)pVl3}6Upu|SR1O@KRSLomf_;878kAm9 ziZ_cZKqo$(*>q#*f3zp0!QVhuZnvsmVyqpEV(s1~@r^L4UYrP4NZp&8Upu*q_nB`^ zTxG90py@#*i+@5(o(Z$&yv@R`s@6}1v&9% zp_XDkA;hn{7d!33a=s;r(qFo!8omD`I#DyBf%oY~M|h%nR5b(X(-)LkoM+(5FDa~l zSUpX9h-qMFli4xrs$HPRn8a^JeCeZC>nGO_u;?ivrtc28D11=Q6ts+XfuhpmUnoK& ziQL=&R=w5)7KY-evhJ$r*~5aS5|;wM4}ZCOYpXXbub(`Bgl1+>js0dm=TSnIKo&Gi z?_j<18@*}RhB7THi+To}i|;@620QiHCG5QGsMjbicAktrl#b=AI7^~gy0NA?u7r)) zPEmGuoRnH-Py7^Tva_6A&lf#o1~7J1bY;J=^&5JPV5pwYlO;~h_WiZIw-d%^o@CGZG}Xc{AZ@ z$SUTu4;L<9LuI-!E5=&QF~?d88+LdWZx|6_*gu)q5lgO^3weE)tcUvpa>i;E_(~d!zw;;Hl!sYcjfni{PglkIfm#41oXHM+z%`uV5h{py_cs zo#=3;uJ8Pe^NqkF^<;q0!#M)IZa6NRR{}&F0`N)uVUeB=%(C1nzHmnPFC@>g##4j1Fbkv+ay;Fe1q0V8P==I*+s5+@7;A1RLg@= zRJ{1MwiCg$X52+2;%iIQ{K$cj~BrP0~$2qudRZHR)r)?j`qqr(3?*zJGR>*_Giyo zyDDBlY=0I*oje~QKi(>aD0@Du(E%npf$sG1LS-PzRu$2U8@{OtGzA^txS7 zc;Xo8e%XvB0X3T7p|8Uw{T0t(_{f{R(~{(mE`iyO48*GA@0th?&8qoJB3y3JdytjV zgZDeN1v3Y4gg`5!P5fMM*hC4t-VR^m=w_EG^2<)l4yh`(OChy#Pz!w09N=)7;W zpt|1y(rZDt>C@8~f{5C~COVWE&R2bK(+KZR<4XQa2QYkEnkXPT#|c#l^PhZ5?MSX$ zbQ0VA9r&^S;ex9a*PC)tieSY2f-iE&@N1;^p+{3nW@FlL? z&`nICn~(=ao&j->7<#{}#rAH$u7Q0NW;=qy9YKWaCPwfhvwa?0a0`3D?y4=Qb3~(+ zM=~H_hx!4=Me1$l+gE`9Gu94J#J|L|<2pbVTL;~L-Q@wYnr06a&(SG8LF8x)HYN+s z+yDhO9Q3~c+;F11Z$EgtLL~byN%?<=mm&Tqz0m(XtH}XSG^mvI9(HZlm8PKAL6LK; zN3-GR*HSoU9-DfiUtjqjUTXP2H~&Wh|Gfk%rWY4)?zhm=A}0tQN!*smORGp#y*2&x Fe*yIn9Z3KH literal 15185 zcmeHtbx>Px_h*0>O0fbh4k_+hT#LIqMOxe`1%d`>DORkw1S?uxf;%lz+$DH%r?|r= z^!xtad4IFBJF~NY?QCY4+)JK&p7R{}++(3?DzaElNuB}#04#YqDGdPNG5ivF_z4R9 z>mr-g9R7vmq9H2*C> zzkbcd#dUgmnw6D>i;Ihafw8^4eSLlH>FLS9zz`A=l9rbC;ll?tH8oUJ)SjN6<>lq` z^K%Lcil0A!=I7^odwV-LI2aij_4oHHD=RlQH_OV(zIye_)YNowaZyZ6Yopo_>k&==Efj|%lL|t7SeqJ-Gm^t{DrmKdECR_;rmp=f@P+xsGdGz;k z`Yr$f_D{qgQn%B0xK;!{$xDfAc^L1_zX{vvt(iWQd4jhG)h9or+w8#!k~GHaM;@?v zW*_*-RD%Dl-@Q|;GjqY}S*{nTmi_1+tuMx+fJSxPEP^S%XaT;%|FfSZQcP{PkO}qX zvcfY5@8#I2ycG+F9lOLd!Ii{|HDr%xZkmBZcLj>B-y8JAR$d0y9vrUs@oKvn>XZ;J zxPrC!O#2>>9ae(wW+U&ZiZrd7HfPQw`Xbx``wmb2GcdH$R=K8--#))Jk{=H(r!B}Z z2I-^nllyT3N^c6O0lw?YWxk7bhJYyPJ5U%?U}&D-R19%X9}R))t^4gj#;@+x=S6zW zj)Hem^7xmwJ9^D^i)d4=2l;G-Z4qRJw!k6_oe9SY;~v1;vD2-KSoDTGiGlBzt&1?? zY;*se3uB99ix0QgzS|#==48@h>cyFB7QWEJRP#NJxl6H*HjGZITb&2uG1V%2Pc|F_ z<3Ui~C#;Lj8yte)3Yh=R?`)(d4iXm`{Q$ATje~$#XNis4QB%#-0{-}Is zczU329T&^NSxSEt?9B;KD43W$|N0~A5jrmJlN)P{#{_JnJr;JmoOHPru_kM-j1{wu zrE-s=eOMcpi|Z~AO`DMG$@Hg=97nHyIXZGVbvc*1}1CCi4s#eQq`i z1;9@Iy$?npheQMeM3*kmR9TJqnwoCXBda36fZ$q{JJ&TQ%>_A{uS3UTJ$A&IyKG+b zvKXB=hkTTEdN zpr%ogu{GC9Hb~yOfB;<|p!w@o#@a>1s2=@|(N#->dd*U}+<# z0g}Vfu)7M*zl^&Hm3@`uljS#6@nnjttybKwK_`#Ss^?cih1B- zZN&vy`!8y5&W*L>k1Qm2(=sIN>SOR};p!Nv%Ww?)^E)H;@3|H1j@o-|zk8{DF^?{{ z!RAd@ue}yi^s(_<$?r8^bWcF)GG?5~^#cg3okTIv2I1TT0KQ-77|!_g6g&HLSkyyb zQfBN!2S2ss_q}?J^(5OKh(TZA#TUQ3uoqV|JHl9;Ru)0SuxB3Fe;yXs3)NP=6*WHG z^;o&i|7kH5?~||`L6#9C&a948>y+c&cYcDirzSKpcLA>Ezcd_twf7=X=nh5iw{zts zA>cu$Duwv?+zWMd; zqIK^c-PZMXLDPiuOdrbI86o{V9o=`0adCA7#3#{JSGrAZ?#>wd0iAC3Rxdj&D)E^~!TM>aEy)GQazl*rsh< zm@gq$8_dz`bmdTiJ^x@?y)=HA7;?zWYn;{8B^H)p-dxFd6q>;_K5+u3UGHfvOx49n zKKs&l>Ib+CPNX^!T$}DgC_ShPncgp$0R1zl^(zi{htyS!=!mky-S?j`qVKng;WsZ- zt)l07*oatJo+gN0xIQf+OmXE>{w+1TDx2dLfxD2$*QamQ=;`U)^i|}R@v}*DP|=q6 zuf}X&{{n`c_?XsE&3e}fkaSC8s(Pv24D)FBGTi8h+Hg{+lJi8)p1U~psNEd)Z4mGj z%iEH-dWIyu8$@lZeaG(CT_TOexN9`DNya)#0=&={T175L(vt8Z~#;s%+Up49IO<0@dO&0F-M^DY~Wwu-r!6rj|wHoya zLt~F&GR<>*BIgEKsSa$HXn;Q*R07^w(aA_{IK!A6I>6zc;5on_ku1mqJ2*G2= z2lNPMt-R0<%1+++>+`83293aUGTIOYhIWe=4kOZt8GENNp z7vrr?ntR~RlmlLE@b|)+Nh~+^3B!Ry(-pn?0c`!|EtMFY8N1pF?(&2yXFKMC&yQdJ zl~+UiO--o{Rk=QSjmg36w=&R?@AsMWcSa7~5eF@cBb29k+rjN776Cp~XxNbI=bZ87 zfCrKFyXfneYZ3t56Xy1~BdZPajkJ%Pc1UOCt|M^{i-%0yOLD*w+Cj9TsS0|4ze1?D z?|S6Gu3lEkQa`30X04GNPd3EI%eXu6@PHjwM0217oc^PK=o14MCP|j4jK(nEJC%5q zbO>Svxv-Ax)*eq)p@_4KB0}rmA zWwvv4q(8L|Ohpyg@oT>6b36pyRMD{!vbQ(u!K;_w_VLjsJ<%0k!ws@=j{aPZCn08` z>MA?3`YuT~Kv%oj>Aa?;4D_>RsvCHB;qLQ9Sj;>DI3wz{)ac9mU+04g$c@`IM`etI zyB&uoe|m~|1nQY+^1Y5GkJ$)rvC5y%EID^!dWZX0?esMflg&dHUx94T{~Acg)uFg- zMI6w;&7)6B|Rs5D%Fm20W79FATs}Q`B+~}~Qgd5cwpzdhD%E9g@>*>S-Q`*9H)+CuS z{VWWtM%lp}T53eBePIf?`R0;96Q_p_w+usUf6=&95eMNaow4?FO_b~1womwRXENytV)->ojpxY66B6kjk<9~M0- zsy8NuZ^6;fEl|M^KXRQ<#%|GGxlOf-!F31T)LTw*8ao}UQ^7)7TV2@~Ekxn_ z&MGX}h+{3#3(m-C?^RFP)96Kq$eZS6KbtjtUcu^XUWPVZ*O6%0JAqh>a8ov&k5EeK zCM-6BfkCk&6RPPPyt|^$Khy)+A7^I>{v#&QN6C3(@*?{_6?U|HqvHG}p`{ZJ=`k-N znS2TauQWGUsCvxrI4)l%uU#ovhIS)BE)0o->gyK@_m)jkQt`1@<>1`eN~_u_qo@92 zZi6ul0&;DTWuqxAhsBLIe}v(>cjg2{;s<%+&(%%q+=A!<}>|dVa6em7_xv4u2iFysz(-gF=y3y8<^X1(W`G&rkCfh-_;#(wLBI zUq~PXh~LA2Ea9QRE60A_Opj59p@Rk?d z!>zWTJ&o9}JLD;8@1tlGHQ;atA~e_M|NZ=lzb@=&T+>q)Cz=f?cd28sWy>gVsksC+ zvtenc98*+Sz3N0OpY>Rnc}b{?y<-aDzei3V{eFoQw&~i?Lp%XKq*YPXjv<=~d>CG4 zYjK=i(KVha)u5nHEiySfU%_bAEFjwzOeqvj*lrQZw8l%~S2 z9}sp10OSCaR*ktVmKC}AjepCFr(yT?qax1C2}KKYNPn(Eyi{d*B7az&E^s0KaAxq4 zKav_=vsBTKH7&kn4i}c=Z-uQ&EJm+geUXc@T!oZE^Q^)WJ{7ddRsxydb*Ae1YlqxE! zDX2Qg@GT_2169u3c2=@pAt|J}?}?G`ljt93Fs~T@MV4e?haGG|?r#&|M$0MXA)cB_ zu!tyOG@od2{_Txf3GCagR*q_v?0XzI|Cyvpp}T~=9@y~f3n_qMwLvR%iv4c{$OW6+X;~rzG3^kKW^W2AF{E9un;{%sOQhK9QkUQl24P6LLjPNJXVYimbQ@n zqy`UJ${AR1h~!qMTP#0G$b|g%hX9Y4u`shSI{W~GXl>dGT}@bnuQ>cBJcYKqnDVM0 zu^NR6`238|_?U*}Zz7O?XL~Nu3}O270HT)w{>K$WjH=mT%?4%skYrtbpO`|MCLUdi zH>nS+$v!Y{rw<8MNWq!nUqt0c<@9^B4XuV14Ri|)F4WZWHh>6x*u+o-fZ;742Kz*u zp7^r|!3Do@5L>ZQAxm)Z#I!8MFM?b$$3PG>;9kZ)PE>fsp5y9=K-s`=8GsKfg05di zj(suIs;GLPW2el3{cYFzLQW3Jr5UFdN#*$Z;NRno0# z#$s>^+AA+xaMNpo4(iJK9i-xMIEY5RIsX)WOmQxKgMNBpe^WJ+pC^f+l87of{5x~z z0%gcImQ&ATyGpSV{M{&KjQh8NcQx8`!h1{hs_xrKf#&X$HJ1dfk8Z!1F`5VIUk~w; zMSHooHi{36#G7wqxerTEwe&3`Ktlu2f2k_OcHfq*_ZuY?lHo!tPSv+bl19HO5qXXk zuyA0u{IyDWYeo$d4?v9~Y|>wSP>FcIFp%NSz}0%&Pzmt3c2O7*6q@alN!&WK8oGx+ zmEXOvvT~qV8X=Qp$=agUKk?5)4XQyAD)*aZi{EI7=6|QgjI43)8FZ&?79G<{BXJBU z_^6~Kr8BN?yX%v|9sc<|y@p@m>1iWHbwXA5{9URMG`+LRcf0?U$FZpcK5$~m3=zi0z%Z(Pqnk#1vVK+3Ws@g(t(O~bU&fQpat$Mdpl45#ztsd{N zHHZWuk%k?DR|5|F%onBEOvK{b7@ZW@jaAEAk2tO>;7Z6kq5M_LWQWqkX=elB*|GUh zbvnF!2@!KFp}pB^oc7%0kv)~Ep|tEN&gGu%1|{n%9p83GnR=G8%q~HWKhg5{6skz% zL!_9xuGM>glo~59N_R)b2YwdCa>}UlfV{Y~L1@|nd1<29B_HV>0bmhzpp-l83uZY~ zOOYz1JKo32DIZePks{JIKY*MW25LSTu}@s7%z}hzjpQ>|eZnzjJjKy^9*dp!@yH4BV%vJO*;Aa}hrNM_v zF&A{-cB6EmsK&=Pv`@p1Kba-ssD2##2GK7v@=0{P#1+X8OIGpNTF!V3hmNO>?LK9) znEvULYYzU7McSR&n8PdT3USM@0LN4rnsJ}LP23c4t}GGsR?OU=zE6R&Xo9!CX^G#~ z>nR!O=(m-Nnf4aN2A`&TWcQn7Phji{Pz^)|d&*Aj)!qVN+Y-AwzW2jMV`Lh7k#242s)m~>!OL}6n zs7dZSymv-T+;%7|O&3lV1AQeAQHJ)C_oFs0ScdOjYie~+d8rMJTF1&_oJ8j!#jsc3 z=%_U>a{;%vPF^;_{+bw!Qep5MSle~vs=t-^auPL(aCgYTuAp!xuOjJ?@%>D?U!q6e zE|9>u39NaAWa_zz`YIOfHF<)#5RzR;Iok(q?^LAi!AUC>5H!Nuk9u}3#H|&IR))uy z>zGzq<omb38RZ8!r-yYLuBi430-K`cjvb_6YZKlLK<5z1~P6a6L z#h>J`#Yl%!7E)d&=C*w*39yo zg0W}#Yft7a=1e4%zmzu!>rb+v^kba;Tris^i~j-zSLWBk+@t%Z)SZ^=yXe_k#2nRq ztl_|uN!njTj6ZDw&wSyjtg&)0Js|=aAJSO&ID_Z^y4yeGK1@!3d&j`_`fZ2xzjD(5 zRa*O>i8MR~7DFTo;r~5t?gvkBew`rP%4CC7UF30P*IgCJw3EP92+w@^G!^-A8-;~W zTS<-VV`|TySt$QR?_GZ1+<(=-ly@xYhCFchRpzTN7yKX>r&H|Yk}7v(j`ekCm#Qqw z7>iM=LR?sj#cYuky4O<8^sa)2iw3d>&?nP85v*Wm@LY?#fEUU6`<$_^we~@@AHZNS zA2v9pCDHoiq@2p?Z%K+BhOYEgqUknM7Zl9E#g_zAa;ZCDh8uwapcU;!$dsy}?@K;j zh4&eA{R?#4U&~FM%iHP;LK?tdG?~*jK46v{+xQR7)Shxj&E?p6$!i?H-Jmv(MKW!# zQ+1?UpPztDZ*RZ!oL+zyMdW|h_F_#xlgO0DJ^gr)cIG-42VB3;JP4M6(w`OZfDVq(qcB>n^6us zM$XfxP7WXSAc_g*iCQ;W|Me=su=cTZXs}Q-7c-q7HLC^ zhcQj|64)dT!k9^2!R5&j4M~q|%+OS@J`qS9PfT+X7(4GdP-Qz_c+@GxE|TkZZ(nv|6!jr%|@e=4oj&3cPL%j!jXP!-i z35=gYkgbwSyLdoyw!rG;wkv6-BSa#PWo*v#Oa?i#*^}cRQU(bZvf>Cb=DunX^g}hx&GpEAL%Y(CL#WY`ex7|y{Pt-wD8}e+T^tzm z-Yomkc~3-6ix<<29-`|+Yn)I(sg#MIX{Q^wu z2RLlFo|1wSx0lY=#W#q4cgdjd$C7TP6y(~k)f*Vt=B?o}d#eez*qo~Wnnccq_=;2> zPS&O!Y+|s#ima~A{!6A8aGUs&{#9E^i|4S(mw)(J)z`I^49k5KA0nJ?RkBMgr+_au z&cRmzE<1a~0SXUH6v&0-Gkw>5eEI7VlY`u}LcplCnG&S~e?_!DT6jl+Sc^q>LX;`K z=H1t)MNNuB4*BM6t`Ya?dS}pv_q#+GsuNV)y?wzyJN3j{&YtTD;drIZ1XQMKx(vb~ zXlYhSq@=WP>!nFKS3HuSfGhqn*kbVGig7p$~E>mwPa? zPtwZ>qWCO$4?giW`ad2$*Y+EFf+`raM9122K=PvfOOaJTjwsdxy?SEuGu8esmZYHC zdm7THLU5E?Z9$=LYeZ)?mk_XTTPkiB8!EZ>>3aT}-+IdBuOUJ7x2&_luOe#cBZJM; z3#=Lkt)IN%TbTy0oKQB@>E#V`qODy-;s4y?2=D})*lba_Hnqa@OT^hMN52kmULCtx z(L3$XeA#}Rf{ux2exbaIOZ#B*no48ZK zvt_^ldo1$}jP#z(ih1Y!$AcPb@$gX;SGQ=!V*b#5?4>)5xEUZ6WQ|5m+?%a&a#b)v zXF)4~^g=j4@8u^88=#vttd#mi1;*KA%-qNjFh=3oP$0gaP9DsnyDEtV@y&l)w+ZK2l<)p&7O^2W!8esCQt5vL7Q?9jooNl z92YwTt*&N#_(x`L@DGX&nf{|F+L;T=hIw8FlZYoI*Kah5HP)mbIev}zs=AfsFkIsn6nDAs&Z}I)_pOo* za~vxEa8YwRb}s}|qi1Leddx94E-{wNto;`k^5UwwH!KNwBUHJgY~DMCP9o)6jm=VZ zC1>@qC7NVoY`s@@3*URXa9&gW@JgOkcPh!HAZG(|+hvnl-U1d+Dcxqz&6N6Iy>8}a z9ch)m3&MP+8h*VBPp5l3Za#Kb#rX_KCQB!PzTcL7X1gxwlrfuMpw1an$H@Ek*2^zv zcj&c7GAVkY-R;Q1$nV4Jn9WAM9ke8hM2~?ttMKsJ+du^fGduf->eilcW7uP|2dfos z^u&LO{P(i<=b-O6!GD3;7LGIRpH5`_|6>^YPXz4AhUsvguVz`tt#i$oz1u3pHuIixK-8aOdRvJM7|z`}mdh$@~H;lgOSm@^Kk4 zTIk)6#HnyskTTRc3rGmhbBxzT1=96b)@klZyA4FyGXz)rd_V&FH@?Y6V~SMCXpNWr zBRGg|N9!F8V4Y0!WN%I6D%-6+<|z{`6kFOdH5 zo?YIM3L^lC zPg)jJ1fUd zffCL2sGIlAPLGa{{YQFHk&1$70FiupNHzY1w)bibX#Cas4&(gsoD;=%%$S2e1(Tad z0(5JE7BB;8M3mjjTH(=yDMU6p&P>19nw6)RbRdaWN418YGA&1AC7+&GUrq^^Au^o& zld`l=`Il0bCgf5yC9B2$r(sZ^_o66DvE;MPjW+}Hz?g?Dd_Pvx4_3>)qZor6%tj47 z)}QzJU{X*+63Wf^=DMy2J1OtY5a@}KoqWksr!V>SvBa51j@wmr zBkn2DkxpF#Q3nq_L6?lVYswJ5kw6b&=F<+9BjzxXH*YRhTO20NZzr>~e7sC!JBu0Q z%!NLehR&&?==gTwTSfh<1%~ydJp^ow#e-b0uj$Q{H=wwbLSoWGdPEq7{QQ7Wfq`Qv;Tv1+Oal|HvJg+K;UUigS0S)O7wpSi!s zQ`dm{_({^0?OT~x+K3kcogH$iEUaNxb(+R}dD=ieSVGs+!Zq4iN~vm)MU>g`E3f;_ zOW0ntL+ag(=G&bxYb4#Q1`5$>MoTBb8NeatCaMcF-uprjD?1*D7hadPFhU99OS{y3 z;)j|AJn*_S6ip(TjO6vKw1$*qyVOXA6c5@qTpfCJRh6Euxq>isov-x8+RlBgjIg@> zT7LmoO)eJ(sI@GWJRZ`JP+Ix6|?k5-&J4n@G7B#yD4<15P1 zB@QHuDSKaYQil`A;D-kLpql2Zs)j3j)tPP;9oZgSC_ZDgB~*@rK^pIMk{N^jKth>^M<9KI-yD5lq|?%zFIE%eEW$(EP8jLp-6rRQ6{<&x)8if(^mb)OO zoeSfDAU=kzYY69nvx1}c*s(~byLTsLNJl6NJG^3Fj1Lr^7bZ(Bw6SuI`ym8CRwg2#XSmX8$X=?RxXyER8GS77r@P;+6CX zTDA%$S$N=-xi@nWX%$1n2leqA#f+52saLP%xlUbMlA5D6 zXFfZt20z$Hee}EDEu9(?R&SDEQ^B|1b-0jxbU!Exm?!;X$B%X2FyzleY>A?&LW}SK z=)BqjPG@0U+sr8)Ay&9kP^Tvon>g@%@Ju?a??Wr9y|N57V+8o}zrVxmSocvxVyTf) z?;f=B=M2aLrsYwcWu>1oa{kpwg|)LR%rKT9ZM37F#JegHS~(Ei9^t%k@f!9ldW<@k zAQm~PG(sATfUwIv?M}`3*@Zc<@8Y8LKL$J>xfnHKWmaO#th&T9VOP|0P&>Iv2r>Ke zf#=rOY^B|K1F4s=#V-X}Z>lRxls^M$Fs20t$={=cx0BFi0_vkfj7c+}FE1iU3tL!_@yRgssJU6rfH7&Grn!?fN=McR*1BkrFh96=fw{h- zjTliGn!GljNZR_8aH>d-V}6~*S4=x$yFIbFQHt@SJiga8q7!Vw_pmTn?L zk%BuIrX_e6gFUhDHnp!T3x!gULToL>{C@G?yxCoEnqw`#0)A5kt>OtDel)hGn?O ztFPp%NM!ILZAX{vnOPlbU!U#_#`MaZU(^OwVOzn0GwVWBzV+FQX0hGjbZfU$zLFq= zpY!4?vC`rNi>0gC7tudPQ0Ms+eu-f%nCJp&^Px9TNQN3l!F?XCGylEtI<@H<0;r`9 z!7-<^)~rZXpY648#q^Ic9rIhsPXUv6c1k-SS<+oMA49yxsEP^Sq-QH@%2qb_M7m?> zry=*kMx$=Rk310_Dh3KH%cuTZ8{Z6SPi@OuZEbb=cHR*cvu8RL7iD8z3Es6Z&CXxq z&f~ zVY#m!0d?Jcp5(ZwIqoROMEX;WI6glBJ3bKNwRk&EVK*KT^t`NZW+(5;se$K1;{P@srK8ygEzG&+35La4Jn|e;?4|r`fs|mPd?1y#~%sWJ0cnUJp6uMe5 z@jIQaewY|RdvP~1yKf!Pyxn!a-MX3~XeX;wzu=Lug739_(dt^(NK)8@u@Y4PrAW#j zk2o)pLiF@9E*R&;gAK0|OL~AU5eeLS5j-UOEPUQ$z5_dy;FEU&2XF2dd-IWiVs6pw zSEj;!q4?WHe2;t+RnRu^2|lKQ4kLTIR11p=7q_M^-%SPOq(o47#2DIK?B2hs`OvQ^ zqYF1tpG7bp@nUwvRpO$KUB!^8@=9z(#=v1y`;p>VJlcJgFk=MFU4>7D(!DfEFzeb1 zCG*ahUPd0wi}1agYxDjKit*~;mq4qrKd@dQpy5eevEAx{!q6l;Hg;@vb~?9(ziwAj zG{;2&^CXk+S~Fh;0@+(^UXQun@0M`XAM91(!T?sv1v;vZvg9HkB*Y70- z98^O($TD`4bl3*qlXiRuHx}O+6Vlh6ysXDVQcQ}kUc)-OBA@BEJ9*&-$05mZ8d%hV zBZK-2HMy*SSJIBF7}l>$Fqywuk)d_D$M9TP!Nj^>A^K)~kK4N4o3YCGu0@?B-YCE5 zO3MC;=$i3NG>}}mRUdfIJCs35Vc+mtLCpgrmQZ{i-m{2t8uwdKk%ECUpn0&-;#7rU z8e@^&Oc$M6<$zAP6d$V!Xk?FbM3#x|EE>mhAhFRJX`HC&V3slhKxhvOcS$7AsW9rtJYoG(${2~ za^Pq9SX4K`;m?3)JD$FUcIjN16;qd45{od1IKr(VuEgPXQr^R-HUjU35c($yD6NET zT@8vMJfjB_W#q#{ICMJcUYqVj7IZT1#!(g~uGfBZOi1*BpBW9jgyzSYi0sY)?(SI@ zY%`~$vQVSQzL*Y8LSK0QC+Wf+-k|Etk<6$1{K(^4ttFO?XUQG+xC$D^vWm}2PwMTxVO(D_Zjmoyy|Xzsbs}SR@;1L|sRrg`=f2 zF}np+@Dn{gs9Kt)twxH3cfd$-zRDEV`of||Z2*Qgfbk}kQZ*G^f$}5?OmW z=RFg_FCBT5Q+H?tMmeon9>GUrqGTBXGJVO8sg_s6b0hE`n|$8Cdu+J16FQCm?ywRuuP;&Q@Zo&7z6y2#%rh!}72w(o|}Z;C;I@u-)k{ zoTBJ00sj~I>)kFe?bvaXD&LGsI=T#LriH)3K=HM+}2VQg2TR$~n z(RhlmXs2)aWL`YZTUI(vnaVvnCMtyGF9^a*5m1F zML;;_@Tc@!Ql)_7e&nU@u8+Zpcmba2q!-==u_NYG;Z_}pBVLXeDDg;U;`sYs`S-Z! z|Fks+PaVEJy)l5N2Zvne=s4mJQ+P!GyXjO4Tq!Wr_+tn%kv*Hd%+%>2^2EZR7kR;>B_RZ`Z_RMd}^Y==5 zP#+@vhsUii$V&udc$@c+w_v3ymVo+Cn9rWT)7|LOEm}q92mzaCo2C$3h-#v1G@%OW zlVPlNOWTssL9@YO9c}MnOHtC?g-H!BOHQVA9kOj>PRRh@4bEPFBhYjDgD#vwct(RoZsCvD3j$|*LbRgX1`O`0M8-rkiRO3& z&!d&kMlLZGwZ(?cye{9Tx~p)Xo#dP+C!PF^|J<)7V|!CB_Kh`n8awp^mR28 z#AHTOKltd${98DUxQfn{z=~f0YMc`{jHs4j`$2;n*D>odm-BU`VWw8e3A;7-q#yg; zKh9Tt+A$s`$>4qX-?eSWnC}%@&NQ&J1?|eZX)~VkmlY{c<)6ZS76ACCa}xAPGs)Pc z9g5=V{BVgHOVWSyql^=OBqT;gf5;U1xcdN&I%B-CbTm_B2U4ik(M)-d&zSx+Ezj`i zXe^*wd+$!omu{O+i1BEC#MMO;@N8^*CI?p_JkuYp$K-GtRdn#bECNngqY~kW3)2K? zPuSkoC8%}@4Af41bHq+zy84Y4_5nyrB<=pa@UX7)uirXaFQD>Q!`4dNkLQMrsqGC= z>&mY3Dp}rF9?OZ1rr>xL*(*EngbR@^B9@VU61x@~0sv_t~ zzln%L7;oETI$7iGO?Rs&QG9Xb$aWb`qA|*XevErL#xGK$a}vT0SvC}SM1UxO9NapV zxlJ&>n2)*zTq_io9l^=W4Vj48gA$OiWA1wf&z4NZqTWDxUn^srauh7gj9h`}yA2Gh zm5u8rzn?D{z1RQiM?LdJZCmoP1opgm(FR4;GY6cLGk8fGzKkeU&l1v+?YuK~S<%zZ zK@c z71rijdS5@*F>L*3uG=t&YW7^{7WRi@2P1^~uO+)|VNV*=(Ox$Gof>FI3{?FK4B+Nf z`IU*|DPk_dVm~%e_>njz-0C<;{*J7>2K>irIlv Date: Mon, 7 Jun 2021 19:52:41 -0500 Subject: [PATCH 12/98] Space NFP Plan D - Design doc --- design/FY2021/NFP-Spaces.md | 192 +++++++++++++++++++++++++++++++----- 1 file changed, 170 insertions(+), 22 deletions(-) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index d5ce1bff5ce..2ea0dde5e0b 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -23,6 +23,34 @@ * Allow Space to be assigned to floor surface(s) only or full set of surfaces - Revised, May 25, 2021 * Add clarifications from May 19 conference call + - Revised, June 7, 2021 + * Add design section + +## Table of Contents ## + +[Justification for New Feature](#justification-for-new-feature) + +[Proposed Input Approach](#proposed-input-approach) +[Sizing Considerations](#sizing-considerations) + +[Testing/Validation/Data Sources](#testingvalidationdata-sources) + +[Input Output Reference Documentation](#input-output-reference-documentation) + +[Outputs Description](#outputs-description) + +[Engineering Reference](#engineering-reference) + +[Example File and Transition Changes](#example-file-and-transition-changes) + +[Q&A from May 19 Conference Call](#Q&A-from-may-19-conference-call) + +[Relationship Assumptions](#relationship-assumptions) + +[Data Structure Considerations](#data-structure-considerations) + +[Design](#design) + ## Justification for New Feature ## @@ -57,7 +85,7 @@ New Space object (and related objects) with minimal changes to current inputs. * Full geometry: Define the Space with surfaces on all sides. * *New SpaceList object* (equivalent to ZoneList, but for Spaces). -### Iternal Gains and HVAC +### Internal Gains and HVAC * Internal gains reference Zone or ZoneList, *Space or Spacelist*. * Gains specified at the Zone level will be applied proportionally by floor area to all Spaces in the Zone * Gains specified at the Space level will be applied to the Space in addition to any gains specified at the Zone level @@ -292,31 +320,54 @@ So if any or all surfaces in Zone have no Space defined in input, a Space will b * There is no full heat balance at the Enclosure level. Each Enclosure only balances the radiant/solar flux on each Surface. These fluxes then become part of the Surface inside heat balance. -## Data Structure Considerations ## +## Design +The development process will roughly follow the order shown below. At each stage, the regression suite should +show no diffs except the following: + * eio: enclosure names and space names will change + * rdd: new space-level output variables + * mtd: new space-level output variables and space-type meters + * tables: existing tables should remain the same (except the Initialization Summary which echoes the eio outputs) + * tables: some new space and space-type tables will be added + +### Spaces and Zones ### + * Create `DataHeatBalance::SpaceData::Space` based on existing `ZoneData::Zone` + * Add vectors for `SpaceNames` and `SpaceNums` to `ZoneData::Zone` + * Add a new function `HeatBalanceManager::GetSpaceData` based on `GetZoneData` + +### Surfaces ### - * Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. +`DataSurfaces::SurfaceData` + - Add fields to `Surface` to track the Space name and index along with the existing Zone and Enclosure fields. * Proposed Surface ordering (same as current): - All shading surfaces are first - - All air boundary surfaces are next. - Group by Zone - Group by surface type within each Zone + - Zone air boundary surfaces are first + - Base surfaces (wall, floor, roof/ceiling) + - Internal mass + - Opaque subsurfaces (door) + - Exterior windows (window, glass door) + - Interior windows (window, glass door) + - TDD diffusers + - TDD domes -e.g., Zone1 contains Space1 and Space3, Zone2 contains Space2. + e.g., Zone1 contains Space1 and Space3, Zone2 contains Space2. Shading Surfaces - Air Boundary Surfaces - Space1-OpaqueSurface1 (begin surfaces in Zone1) + Space1-AirBoundarySurface1 (begin surfaces in Zone1) + Space1-OpaqueSurface1 Space1-OpaqueSurface2 Space3-OpaqueSurface1 Space3-OpaqueSurface2 Space1-Window1 Space1-Window2 - Space2-OpaqueSurface1 (begin surfaces in Zone2) + Space2-AirBoundarySurface1 (begin surfaces in Zone2) + Space2-OpaqueSurface1 Space2-OpaqueSurface2 Space2-Window1 - * Alternate Surface ordering: + * Alternate Surface ordering (consider for a later phase of work): - All shading surfaces are first - All air boundary surfaces are next - Group by Enclosure (because enclosure radiant exchange is more computationally intensive than zone heat balance?) @@ -338,16 +389,113 @@ e.g., Enclosure1 contains Space1 and Space3, Enclosure2 contains Space2. Space2-OpaqueSurface2 Space2-Window1 -## OLD: Questions for Discussion - * Keep ZoneVentilation and ZoneInfiltration at the Zone level or move to the Space level (and rename)? - - *Move to Space level and rename to Ventilation:* and Infiltration:*. - - * Allow Zone Names to be the same as Space Names or force all names to be unique across Spaces and Zones? - - *Allowing the same names would simplify backward compatibility.* - * Zone-based or Enclosure-based surface grouping? - - *This is a design question, somewhat premature at this point.* - - +`SurfaceGeometry.::GetSurfaceData` + * Surface input functions (`GetHTSurfaceData, GetRectSurfaces, GetHTSubSurfaceData, GetRectSubSurfaces, GetIntMassSurfaceData`) + - Store space name and index for each surface + - Generate automatic Space objects and assign them where needed + * Surface sorting (lines 1608ff) + - no change initially - continue to group surfaces by zone + * Interzone surface checking (lines 1865ff) + - change warnings to reference inter"space" surfaces instead of interzone + - change test to warn when two inter"space" surfaces are in the same Space + * Setup Zone `*SurfaceFirst/Last` indexes (lines 2286ff) + - no change intially - continue to set by zone + * Set up floor areas for zones (lines 2359ff) + - compute Space floor areas + - set zone floor areas as sum of Space areas + * Check for zones with not enough surfaces (lines 2503ff) + - no change - continue to test this at the zone level + * Set flag for exterior obstruction, and set associated surfaces for Kiva foundations (lines 2564ff) + - no change for now + * Check for IRT surfaces in invalid places (lines 2623ff) + - no change + + +### Enclosures ### + +`DataViewFactorInformation.hh/cc` + * Change `ZoneNames` and `ZoneNums` to `SpaceNames` and `SpaceNums` + +`SurfaceGeometry::SetupEnclosuresAndAirBoundaries` + * Change enclosure groupings to be by Space instead of Zone + * Add logic to recognize if a Space was defined by only a floor surface or more surfaces + +Other functions impacted by the change from zone to space: + +`HeatBalanceIntRadExchange::InitInteriorRadExchange` + +`HeatBalanceIntRadExchange::InitSolarViewFactors` + +`HeatBalanceIntRadExchange::FixViewFactors` + +`HeatBalanceIntRadExchange::AlingInputViewFactors` + +Believe it or not, no changes needed in `HeatBalanceIntRadExchange::CalcInteriorRadExchange` + +`DaylightingManager.cc` Many functions, replace Zone with Space + +`InternalHeatGains::InitInternalHeatGains` + +`HeatBalanceSurfaceManager::InitIntSolarDistribution` + +### Internal Gains and Simple Airflow ### + +`DataHeatBalance::PeopleData, LightsData, ZoneEquipData, ITEquipData, BBHeatData, InfiltrationData, VentilationData` + * Add SpacePtr (and keep ZonePtr) + +`DataHeatBalance::ZoneMassConservationData` + * Change to Space basis?? + +`InternalHeatGains::GetInternalHeatGainsInput` +`HeatBalanceAirManager::GetSimpleAirModelInputs` + * Allow Space Name and SpaceList Name as well as Zone Name + * Use Space area or Zone area when calculating /area design levels + * Allocate Zone-level objects across the zone's space(s) + * Set enclosure index based on Space + * Do not allow Space names for ZoneMixing and ZoneCrossMixing - keep at the zone level + * All internal gains and simple airflow calculations remain at the zone level + +### Daylighting ### + +`DataDaylighting::ZoneDaylightingCalc` + * Add Space pointer + +`DaylightingManager::GetDaylightingControls` + * Allow Space Name and SpaceList Name as well as Zone Name + * Set enclosure index based on Space + +`DaylightingManager::*` + * Change all zone-level daylighting calculations to be for Space??? + +### Zone HVAC Sizing ### + +`SizingManager::GetOARequirements` + * Add input processing for new object DesignSpecification:OutdoorAir:List + * Figure out how this will flow into the Sizing:Zone calculations + - Require some traits of the DSOA objects in the list to be uniform? + - Store a sigle blended DSOA object? + - Same for Controller:MechanicalVentilation? `MixedAir.cc` + - Same for other places that reference OA requirements? `DataSizing, DataZoneEquipment, DualDuct, HybridEvapCoolingModel, + PurchasedAirManager, SingleDuct, SimAirServingZones, ZoneEquipmentManager` + +### Output Reports ### + +`OutputProcessor.cc` + * Add a new layer of meters for SpaceType, similar to the existing Zone meters. + + +``` + Meters for 81,SPACE2-1 LIGHTS 1:Lights Electricity Energy [J] + OnMeter=Electricity:Facility [J] + OnMeter=Electricity:Building [J] + OnMeter=Electricity:Zone:SPACE2-1 [J] + OnMeter=InteriorLights:Electricity [J] + OnMeter=InteriorLights:Electricity:Zone:SPACE2-1 [J] + OnMeter=GeneralLights:InteriorLights:Electricity [J] +``` + + * Add SpaceType as a parameter in calls to `SetupOutputVariable` for internal gains + +`OutputReportTabular.cc` + * Add a new Space subtable to "Input Verification and Results Summary" table report + * Add a new Space Type subtable to "Input Verification and Results Summary" From 5c27cd02236252b30b7d3e81f3633f5455da9163 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 15 Jun 2021 23:49:31 -0500 Subject: [PATCH 13/98] Space and SpaceList inputs --- idd/Energy+.idd.in | 203 +++++++++++++++++- .../generate_epJSON_schema/modify_schema.py | 2 + src/EnergyPlus/DataHeatBalance.hh | 20 ++ src/EnergyPlus/HeatBalanceManager.cc | 94 ++++++++ 4 files changed, 317 insertions(+), 2 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 508054a1839..26d8ed09359 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -9224,9 +9224,208 @@ GeometryTransform, \minimum> 0 \note Aspect ratio to transform to during run +Space, + \memo Defines a space in the building. All spaces are part of a Zone. + \memo Every Zone contains one or more spaces. Space is an optional input. + \memo If not used, spaces will be created automatically. + \min-fields 3 + \extensible:1 + A1, \field Name + \required-field + \type alpha + \reference SpaceNames + \reference SpaceAndSpaceListNames + A2, \field Zone Name + \required-field + \type object-list + \object-list ZoneNames + A3, \field Space Type + \note Space type is used to tag spaces by activity type, such as office, classroom, storage, etc. + \type alpha + \default General + A4, \field Tag 1 + \note Optional reporting tag + \type alpha + \begin-extensible + A5, \field Tag 2 + \note Optional reporting tag + \type alpha + A6; \field Tag 3 + \note Optional reporting tag + \type alpha + +SpaceList, + \memo Defines a list of thermal Spaces which can be referenced as a group. The SpaceList name + \memo may be used elsewhere in the input to apply a parameter to all Spaces in the list. + \memo SpaceLists can be used effectively with the following objects: People, Lights, + \memo ElectricEquipment, GasEquipment, HotWaterEquipment, ZoneInfiltration:DesignFlowRate, + \memo ZoneVentilation:DesignFlowRate, and others. + \min-fields 2 + \extensible:1 + A1 , \field Name + \note Name of the Space List + \required-field + \type alpha + \reference SpaceListNames + \reference SpaceAndSpaceListNames + A2 , \field Space 1 Name + \begin-extensible + \required-field + \type object-list + \object-list SpaceNames + A3 , \field Space 2 Name + \type object-list + \object-list SpaceNames + A4 , \field Space 3 Name + \type object-list + \object-list SpaceNames + A5 , \field Space 4 Name + \type object-list + \object-list SpaceNames + A6 , \field Space 5 Name + \type object-list + \object-list SpaceNames + A7 , \field Space 6 Name + \type object-list + \object-list SpaceNames + A8 , \field Space 7 Name + \type object-list + \object-list SpaceNames + A9 , \field Space 8 Name + \type object-list + \object-list SpaceNames + A10, \field Space 9 Name + \type object-list + \object-list SpaceNames + A11, \field Space 10 Name + \type object-list + \object-list SpaceNames + A12, \field Space 11 Name + \type object-list + \object-list SpaceNames + A13, \field Space 12 Name + \type object-list + \object-list SpaceNames + A14, \field Space 13 Name + \type object-list + \object-list SpaceNames + A15, \field Space 14 Name + \type object-list + \object-list SpaceNames + A16, \field Space 15 Name + \type object-list + \object-list SpaceNames + A17, \field Space 16 Name + \type object-list + \object-list SpaceNames + A18, \field Space 17 Name + \type object-list + \object-list SpaceNames + A19, \field Space 18 Name + \type object-list + \object-list SpaceNames + A20, \field Space 19 Name + \type object-list + \object-list SpaceNames + A21, \field Space 20 Name + \type object-list + \object-list SpaceNames + A22, \field Space 21 Name + \type object-list + \object-list SpaceNames + A23, \field Space 22 Name + \type object-list + \object-list SpaceNames + A24, \field Space 23 Name + \type object-list + \object-list SpaceNames + A25, \field Space 24 Name + \type object-list + \object-list SpaceNames + A26, \field Space 25 Name + \type object-list + \object-list SpaceNames + A27, \field Space 26 Name + \type object-list + \object-list SpaceNames + A28, \field Space 27 Name + \type object-list + \object-list SpaceNames + A29, \field Space 28 Name + \type object-list + \object-list SpaceNames + A30, \field Space 29 Name + \type object-list + \object-list SpaceNames + A31, \field Space 30 Name + \type object-list + \object-list SpaceNames + A32, \field Space 31 Name + \type object-list + \object-list SpaceNames + A33, \field Space 32 Name + \type object-list + \object-list SpaceNames + A34, \field Space 33 Name + \type object-list + \object-list SpaceNames + A35, \field Space 34 Name + \type object-list + \object-list SpaceNames + A36, \field Space 35 Name + \type object-list + \object-list SpaceNames + A37, \field Space 36 Name + \type object-list + \object-list SpaceNames + A38, \field Space 37 Name + \type object-list + \object-list SpaceNames + A39, \field Space 38 Name + \type object-list + \object-list SpaceNames + A40, \field Space 39 Name + \type object-list + \object-list SpaceNames + A41, \field Space 40 Name + \type object-list + \object-list SpaceNames + A42, \field Space 41 Name + \type object-list + \object-list SpaceNames + A43, \field Space 42 Name + \type object-list + \object-list SpaceNames + A44, \field Space 43 Name + \type object-list + \object-list SpaceNames + A45, \field Space 44 Name + \type object-list + \object-list SpaceNames + A46, \field Space 45 Name + \type object-list + \object-list SpaceNames + A47, \field Space 46 Name + \type object-list + \object-list SpaceNames + A48, \field Space 47 Name + \type object-list + \object-list SpaceNames + A49, \field Space 48 Name + \type object-list + \object-list SpaceNames + A50, \field Space 49 Name + \type object-list + \object-list SpaceNames + A51; \field Space 50 Name + \type object-list + \object-list SpaceNames + Zone, - \memo Defines a thermal zone of the building. - \format vertices + \memo Defines a thermal zone of the building. Every zone contains one or more Spaces. + \memo If no spaces are assigned to a zone, then a space named -All will be generated.. + \memo If a portion of a zone is not assigned to a space, then a space namde -Remainder will be generated. + \format vertices A1 , \field Name \required-field \type alpha diff --git a/scripts/dev/generate_epJSON_schema/modify_schema.py b/scripts/dev/generate_epJSON_schema/modify_schema.py index a3f8bd287a6..0dca424119a 100644 --- a/scripts/dev/generate_epJSON_schema/modify_schema.py +++ b/scripts/dev/generate_epJSON_schema/modify_schema.py @@ -124,6 +124,8 @@ def isInt(s): 'RoofCeiling:Detailed': 'vertices', 'Shading:Site:Detailed': 'vertices', 'Wall:Detailed': 'vertices', + 'Space': 'tags', + 'SpaceList': 'spaces', 'ZoneList': 'zones', 'Floor:Detailed': 'vertices', 'Shading:Building:Detailed': 'vertices', diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 8d77f2ab16f..4fa710879d6 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -333,6 +333,22 @@ namespace DataHeatBalance { } }; + struct SpaceData + { + std::string Name; // Space name + std::string ZoneName; // Name of Zone which contains this space + int ZoneNum; // Pointer to Zone wich contains this space + std::string SpaceType; // Space type tag + EPVector Tags; // Optional tags for reporting + }; + + struct SpaceListData + { + std::string Name; // Space List name + std::string::size_type MaxSpaceNameLength; // Max Name length of Spaces in the list + EPVector Spaces; // Pointers to Spaces in the list + }; + struct ZoneData { // Members @@ -2207,6 +2223,8 @@ struct HeatBalanceData : BaseGlobalStruct EPVector SupportPillar; EPVector DeflectionState; EPVector SpectralData; + EPVector Space; + EPVector SpaceList; EPVector Zone; EPVector ZoneList; EPVector ZoneGroup; @@ -2490,6 +2508,8 @@ struct HeatBalanceData : BaseGlobalStruct this->SupportPillar.deallocate(); this->DeflectionState.deallocate(); this->SpectralData.deallocate(); + this->Space.deallocate(); + this->SpaceList.deallocate(); this->Zone.deallocate(); this->ZoneList.deallocate(); this->ZoneGroup.deallocate(); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 957f993d6da..e1916ffbbee 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5453,6 +5453,100 @@ namespace HeatBalanceManager { state.dataHeatBal->Zone(ZoneLoop).Name); } + void GetSpaceData(EnergyPlusData &state, bool &ErrorsFound) // If errors found in input + { + constexpr const char *RoutineName("GetSpaceData: "); + std::string cCurrentModuleObject = "Space"; + auto &ip = state.dataInputProcessing->inputProcessor; + auto const instances = ip->epJSON.find(cCurrentModuleObject); + if (instances != ip->epJSON.end()) { + auto const &objectSchemaProps = ip->getObjectSchemaProps(state, cCurrentModuleObject); + auto &instancesValue = instances.value(); + int numSpaces = instancesValue.size(); + int spaceNum = 0; + state.dataHeatBal->Space.allocate(numSpaces); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + ++spaceNum; + auto const &objectFields = instance.value(); + auto &thisSpace = state.dataHeatBal->Space(spaceNum); + thisSpace.Name = UtilityRoutines::MakeUPPERCase(instance.key()); + ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); + thisSpace.ZoneName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_name"); + int zoneNum = UtilityRoutines::FindItemInList(thisSpace.ZoneName, state.dataHeatBal->Zone); + if (zoneNum > 0) { + thisSpace.ZoneNum = zoneNum; + } else { + ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); + ShowContinueError(state, "Zone Name =" + thisSpace.ZoneName + "not found."); + ErrorsFound = true; + } + thisSpace.SpaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); + auto extensibles = objectFields.find("tags"); + auto const &extensionSchemaProps = objectSchemaProps["tags"]["items"]["properties"]; + if (extensibles != objectFields.end()) { + auto extensiblesArray = extensibles.value(); + int numExtensibles = extensiblesArray.size(); + for (auto extensibleInstance : extensiblesArray) { + thisSpace.Tags.emplace_back(ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "tag")); + } + } + } + } + + cCurrentModuleObject = "SpaceList"; + auto const instances2 = ip->epJSON.find(cCurrentModuleObject); + if (instances2 != ip->epJSON.end()) { + auto const &objectSchemaProps = ip->getObjectSchemaProps(state, cCurrentModuleObject); + auto &instancesValue = instances2.value(); + int numSpaceLists = instancesValue.size(); + int spaceListNum = 0; + state.dataHeatBal->SpaceList.allocate(numSpaceLists); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + ++spaceListNum; + auto const &objectFields = instance.value(); + auto &thisSpaceList = state.dataHeatBal->SpaceList(spaceListNum); + thisSpaceList.Name = UtilityRoutines::MakeUPPERCase(instance.key()); + ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); + + if (UtilityRoutines::FindItemInList(thisSpaceList.Name, state.dataHeatBal->Zone) > 0) { + ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": is a duplicate of a zone name."); + ErrorsFound = true; + } + if (UtilityRoutines::FindItemInList(thisSpaceList.Name, state.dataHeatBal->Space) > 0) { + ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": is a duplicate of a space name."); + ErrorsFound = true; + } + + // List of spaces + auto extensibles = objectFields.find("spaces"); + auto const &extensionSchemaProps = objectSchemaProps["spaces"]["items"]["properties"]; + if (extensibles != objectFields.end()) { + auto extensiblesArray = extensibles.value(); + int numExtensibles = extensiblesArray.size(); + for (auto extensibleInstance : extensiblesArray) { + std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space"); + int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->Space); + if (thisSpaceNum > 0) { + thisSpaceList.Spaces.emplace_back(thisSpaceNum); + } else { + ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpaceList.Name); + ShowContinueError(state, "Space Name =" + thisSpaceName + "not found."); + ErrorsFound = true; + } + // Check for duplicate spaces + for (int loop = 1; loop <= thisSpaceList.Spaces.size() - 1; ++loop) { + if (thisSpaceNum == thisSpaceList.Spaces(loop)) { + ShowSevereError(state, + RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": Space Name " + thisSpaceName + + " appears more than once in list."); + ErrorsFound = true; + } + } + } + } + } + } + } // End of Get Input subroutines for the HB Module //****************************************************************************** From 578e769bb6c872a14d9ca1c980c7578cbc7b7470 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 16 Jun 2021 13:01:16 -0500 Subject: [PATCH 14/98] Space - fix build warnings --- src/EnergyPlus/HeatBalanceManager.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index e1916ffbbee..1d26ef3d481 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5485,7 +5485,6 @@ namespace HeatBalanceManager { auto const &extensionSchemaProps = objectSchemaProps["tags"]["items"]["properties"]; if (extensibles != objectFields.end()) { auto extensiblesArray = extensibles.value(); - int numExtensibles = extensiblesArray.size(); for (auto extensibleInstance : extensiblesArray) { thisSpace.Tags.emplace_back(ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "tag")); } @@ -5522,7 +5521,6 @@ namespace HeatBalanceManager { auto const &extensionSchemaProps = objectSchemaProps["spaces"]["items"]["properties"]; if (extensibles != objectFields.end()) { auto extensiblesArray = extensibles.value(); - int numExtensibles = extensiblesArray.size(); for (auto extensibleInstance : extensiblesArray) { std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space"); int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->Space); @@ -5534,7 +5532,7 @@ namespace HeatBalanceManager { ErrorsFound = true; } // Check for duplicate spaces - for (int loop = 1; loop <= thisSpaceList.Spaces.size() - 1; ++loop) { + for (int loop = 1; loop <= int(thisSpaceList.Spaces.size()) - 1; ++loop) { if (thisSpaceNum == thisSpaceList.Spaces(loop)) { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": Space Name " + thisSpaceName + From f29eeba65d36f02a594b78ce136c585eb927a1eb Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 16 Jun 2021 21:23:43 -0500 Subject: [PATCH 15/98] Space - drop zone name string --- src/EnergyPlus/DataHeatBalance.hh | 13 ++++++------- src/EnergyPlus/HeatBalanceManager.cc | 7 ++++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 4fa710879d6..ea307023b51 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -335,18 +335,17 @@ namespace DataHeatBalance { struct SpaceData { - std::string Name; // Space name - std::string ZoneName; // Name of Zone which contains this space - int ZoneNum; // Pointer to Zone wich contains this space - std::string SpaceType; // Space type tag + std::string Name = ""; // Space name + int ZoneNum = 0; // Pointer to Zone wich contains this space + std::string SpaceType = ""; // Space type tag EPVector Tags; // Optional tags for reporting }; struct SpaceListData { - std::string Name; // Space List name - std::string::size_type MaxSpaceNameLength; // Max Name length of Spaces in the list - EPVector Spaces; // Pointers to Spaces in the list + std::string Name = ""; // Space List name + std::string::size_type MaxSpaceNameLength = 0u; // Max Name length of Spaces in the list + EPVector Spaces; // Pointers to Spaces in the list }; struct ZoneData diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 1d26ef3d481..4740343bcc2 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5471,13 +5471,13 @@ namespace HeatBalanceManager { auto &thisSpace = state.dataHeatBal->Space(spaceNum); thisSpace.Name = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); - thisSpace.ZoneName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_name"); - int zoneNum = UtilityRoutines::FindItemInList(thisSpace.ZoneName, state.dataHeatBal->Zone); + std::string zoneName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_name"); + int zoneNum = UtilityRoutines::FindItemInList(zoneName, state.dataHeatBal->Zone); if (zoneNum > 0) { thisSpace.ZoneNum = zoneNum; } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); - ShowContinueError(state, "Zone Name =" + thisSpace.ZoneName + "not found."); + ShowContinueError(state, "Zone Name =" + zoneName + "not found."); ErrorsFound = true; } thisSpace.SpaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); @@ -5531,6 +5531,7 @@ namespace HeatBalanceManager { ShowContinueError(state, "Space Name =" + thisSpaceName + "not found."); ErrorsFound = true; } + thisSpaceList.MaxSpaceNameLength = max(thisSpaceList.MaxSpaceNameLength, len(thisSpaceName)); // Check for duplicate spaces for (int loop = 1; loop <= int(thisSpaceList.Spaces.size()) - 1; ++loop) { if (thisSpaceNum == thisSpaceList.Spaces(loop)) { From c8178c4df2bdb0e86930ada3a290c96b1a42cacb Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 16 Jun 2021 21:25:20 -0500 Subject: [PATCH 16/98] Space - add field to surfaces --- idd/Energy+.idd.in | 106 +++++++++++++++++++++++------- src/EnergyPlus/DataSurfaces.hh | 23 ++++--- src/EnergyPlus/SurfaceGeometry.cc | 72 ++++++++++++++++++-- 3 files changed, 163 insertions(+), 38 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 26d8ed09359..16ec40b2502 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -9900,7 +9900,7 @@ BuildingSurface:Detailed, \memo Allows for detailed entry of building heat transfer surfaces. Does not include subsurfaces such as windows or doors. \extensible:3 -- duplicate last set of x,y,z coordinates (last 3 fields), remembering to remove ; from "inner" fields. \format vertices - \min-fields 19 + \min-fields 20 A1 , \field Name \required-field \type alpha @@ -9929,7 +9929,11 @@ BuildingSurface:Detailed, \note Zone the surface is a part of \type object-list \object-list ZoneNames - A5 , \field Outside Boundary Condition + A5 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A6 , \field Outside Boundary Condition \required-field \type choice \key Adiabatic @@ -9948,7 +9952,7 @@ BuildingSurface:Detailed, \key GroundBasementPreprocessorAverageFloor \key GroundBasementPreprocessorUpperWall \key GroundBasementPreprocessorLowerWall - A6, \field Outside Boundary Condition Object + A7, \field Outside Boundary Condition Object \type object-list \object-list OutFaceEnvNames \note Non-blank only if the field Outside Boundary Condition is Surface, @@ -9961,12 +9965,12 @@ BuildingSurface:Detailed, \note the program will calculate the heat transfer appropriately \note If OtherSideCoefficients, specify name of SurfaceProperty:OtherSideCoefficients \note If OtherSideConditionsModel, specify name of SurfaceProperty:OtherSideConditionsModel - A7 , \field Sun Exposure + A8 , \field Sun Exposure \type choice \key SunExposed \key NoSun \default SunExposed - A8, \field Wind Exposure + A9, \field Wind Exposure \type choice \key WindExposed \key NoWind @@ -11088,7 +11092,7 @@ Wall:Detailed, \memo Allows for detailed entry of wall heat transfer surfaces. \extensible:3 -- duplicate last set of x,y,z coordinates (last 3 fields), remembering to remove ; from "inner" fields. \format vertices - \min-fields 18 + \min-fields 19 A1 , \field Name \required-field \type alpha @@ -11109,7 +11113,11 @@ Wall:Detailed, \note Zone the surface is a part of \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition \required-field \type choice \key Adiabatic @@ -11128,7 +11136,7 @@ Wall:Detailed, \key GroundBasementPreprocessorAverageFloor \key GroundBasementPreprocessorUpperWall \key GroundBasementPreprocessorLowerWall - A5, \field Outside Boundary Condition Object + A6, \field Outside Boundary Condition Object \type object-list \object-list OutFaceEnvNames \note Non-blank only if the field Outside Boundary Condition is Surface, @@ -11140,12 +11148,12 @@ Wall:Detailed, \note If Foundation, specify the name of the corresponding Foundation object and \note If OtherSideCoefficients, specify name of SurfaceProperty:OtherSideCoefficients \note If OtherSideConditionsModel, specify name of SurfaceProperty:OtherSideConditionsModel - A6 , \field Sun Exposure + A7 , \field Sun Exposure \type choice \key SunExposed \key NoSun \default SunExposed - A7, \field Wind Exposure + A8, \field Wind Exposure \type choice \key WindExposed \key NoWind @@ -11275,7 +11283,7 @@ RoofCeiling:Detailed, \memo Allows for detailed entry of roof/ceiling heat transfer surfaces. \extensible:3 -- duplicate last set of x,y,z coordinates (last 3 fields), remembering to remove ; from "inner" fields. \format vertices - \min-fields 18 + \min-fields 19 A1 , \field Name \required-field \type alpha @@ -11296,7 +11304,11 @@ RoofCeiling:Detailed, \note Zone the surface is a part of \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition \required-field \type choice \key Adiabatic @@ -11313,7 +11325,7 @@ RoofCeiling:Detailed, \key GroundBasementPreprocessorAverageFloor \key GroundBasementPreprocessorUpperWall \key GroundBasementPreprocessorLowerWall - A5, \field Outside Boundary Condition Object + A6, \field Outside Boundary Condition Object \type object-list \object-list OutFaceEnvNames \note Non-blank only if the field Outside Boundary Condition is Surface, @@ -11324,12 +11336,12 @@ RoofCeiling:Detailed, \note the program will generate the corresponding interzone surface \note If OtherSideCoefficients, specify name of SurfaceProperty:OtherSideCoefficients \note If OtherSideConditionsModel, specify name of SurfaceProperty:OtherSideConditionsModel - A6 , \field Sun Exposure + A7 , \field Sun Exposure \type choice \key SunExposed \key NoSun \default SunExposed - A7, \field Wind Exposure + A8, \field Wind Exposure \type choice \key WindExposed \key NoWind @@ -11459,7 +11471,7 @@ Floor:Detailed, \memo Allows for detailed entry of floor heat transfer surfaces. \extensible:3 -- duplicate last set of x,y,z coordinates (last 3 fields), remembering to remove ; from "inner" fields. \format vertices - \min-fields 18 + \min-fields 19 A1 , \field Name \required-field \type alpha @@ -11481,7 +11493,11 @@ Floor:Detailed, \note Zone the surface is a part of \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition \required-field \type choice \key Adiabatic @@ -11500,7 +11516,7 @@ Floor:Detailed, \key GroundBasementPreprocessorAverageFloor \key GroundBasementPreprocessorUpperWall \key GroundBasementPreprocessorLowerWall - A5, \field Outside Boundary Condition Object + A6, \field Outside Boundary Condition Object \type object-list \object-list OutFaceEnvNames \note Non-blank only if the field Outside Boundary Condition is Surface, @@ -11512,12 +11528,12 @@ Floor:Detailed, \note If Foundation, specify the name of the corresponding Foundation object and \note If OtherSideCoefficients, specify name of SurfaceProperty:OtherSideCoefficients \note If OtherSideConditionsModel, specify name of SurfaceProperty:OtherSideConditionsModel - A6 , \field Sun Exposure + A7, \field Sun Exposure \type choice \key SunExposed \key NoSun \default SunExposed - A7, \field Wind Exposure + A8, \field Wind Exposure \type choice \key WindExposed \key NoWind @@ -11665,6 +11681,10 @@ Wall:Exterior, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \note Facing direction of outside of wall (S=180,N=0,E=90,W=270) \minimum 0 @@ -11709,6 +11729,10 @@ Wall:Adiabatic, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \note Facing direction of outside of wall (S=180,N=0,E=90,W=270) \minimum 0 @@ -11755,6 +11779,10 @@ Wall:Underground, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \note Facing direction of outside of wall (S=180,N=0,E=90,W=270) \minimum 0 @@ -11800,7 +11828,11 @@ Wall:Interzone, \note Zone for the inside of the surface \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition Object + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition Object \required-field \note Specify a surface name in an adjacent zone for known interior walls. \note Specify a zone name of an adjacent zone to automatically generate @@ -11852,6 +11884,10 @@ Roof, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \note Facing direction of outside of Roof \minimum 0 @@ -11898,6 +11934,10 @@ Ceiling:Adiabatic, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \note Facing direction of outside of Ceiling \minimum 0 @@ -11946,7 +11986,11 @@ Ceiling:Interzone, \note Zone for the inside of the surface \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition Object + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition Object \required-field \note Specify a surface name in an adjacent zone for known interior floors \note Specify a zone name of an adjacent zone to automatically generate @@ -12003,6 +12047,10 @@ Floor:GroundContact, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \units deg \minimum 0 @@ -12051,6 +12099,10 @@ Floor:Adiabatic, \note Zone the surface is a part of \type object-list \object-list ZoneNames + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames N1, \field Azimuth Angle \units deg \minimum 0 @@ -12099,7 +12151,11 @@ Floor:Interzone, \note Zone for the inside of the surface \type object-list \object-list ZoneNames - A4 , \field Outside Boundary Condition Object + A4 , \field Space Name + \note Space the surface is a part of + \type object-list + \object-list SpaceNames + A5 , \field Outside Boundary Condition Object \required-field \note Specify a surface name in an adjacent zone for known interior ceilings. \note Specify a zone name of an adjacent zone to automatically generate @@ -13025,6 +13081,10 @@ InternalMass, \object-list ZoneAndZoneListNames \note Zone the surface is a part of \note used to be Interior Environment + A4 , \field Space or SpaceList Name + \type object-list + \object-list SpaceAndSpaceListNames + \note Space the surface is a part of N1 ; \field Surface Area \required-field \units m2 diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 9ee37e3f3a7..9f1d51ef83d 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -614,6 +614,7 @@ namespace DataSurfaces { int Zone; // Interior environment or zone the surface is a part of // Note that though attached shading surfaces are part of a zone, this // value is 0 there to facilitate using them as detached surfaces (more accurate shading. + int Space; // Space the surface is part of std::string ExtBoundCondName; // Name for the Outside Environment Object int ExtBoundCond; // For an "interzone" surface, this is the adjacent surface number. // for an internal/adiabatic surface this is the current surface number. @@ -666,7 +667,7 @@ namespace DataSurfaces { CosAzim(0.0), SinTilt(0.0), CosTilt(0.0), IsConvex(true), IsDegenerate(false), VerticesProcessed(false), XShift(0.0), YShift(0.0), HeatTransSurf(false), OutsideHeatSourceTermSchedule(0), InsideHeatSourceTermSchedule(0), - HeatTransferAlgorithm(iHeatTransferModel::NotSet), BaseSurf(0), NumSubSurfaces(0), Zone(0), ExtBoundCond(0), ExtSolar(false), + HeatTransferAlgorithm(iHeatTransferModel::NotSet), BaseSurf(0), NumSubSurfaces(0), Zone(0), Space(0), ExtBoundCond(0), ExtSolar(false), ExtWind(false), ViewFactorGround(0.0), ViewFactorSky(0.0), ViewFactorGroundIR(0.0), ViewFactorSkyIR(0.0), OSCPtr(0), OSCMPtr(0), MirroredSurf(false), IsShadowing(false), IsShadowPossibleObstruction(false), SchedShadowSurfIndex(0), IsTransparent(false), SchedMinValue(0.0), activeWindowShadingControl(0), HasShadeControl(false), activeShadedConstruction(0), activeShadedConstructionPrev(0), @@ -1133,15 +1134,21 @@ namespace DataSurfaces { { // Members std::string Name; - std::string ZoneOrZoneListName; // zone or zone list name - int ZoneOrZoneListPtr; // pointer to a zone list - int NumOfZones; // number of zones in a zone list - int Construction; // pointer to contruction object - Real64 GrossArea; // internal surface area, [m2] - bool ZoneListActive; // flag to a list + std::string ZoneOrZoneListName; // zone or zone list name + int ZoneOrZoneListPtr; // pointer to a zone list + int NumOfZones; // number of zones in a zone list + int Construction; // pointer to contruction object + Real64 GrossArea; // internal surface area, [m2] + bool ZoneListActive; // flag to a list + std::string SpaceOrSpaceListName; // Space or Space list name + int SpaceOrSpaceListPtr; // pointer to a Space list + int NumOfSpaces; // number of Spaces in a Space list + bool SpaceListActive; // flag to a list // Default Constructor - IntMassObject() : ZoneOrZoneListPtr(0), NumOfZones(0), Construction(0), GrossArea(0.0), ZoneListActive(false) + IntMassObject() + : ZoneOrZoneListPtr(0), NumOfZones(0), Construction(0), GrossArea(0.0), ZoneListActive(false), SpaceOrSpaceListPtr(0), NumOfSpaces(0), + SpaceListActive(false) { } }; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index c193ad81389..5a003fab9e2 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -3586,17 +3586,17 @@ namespace SurfaceGeometry { state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, cCurrentModuleObject, Loop, SurfaceNumAlpha, SurfaceNumProp); if (Item == 1) { - if (SurfaceNumAlpha != 8) { + if (SurfaceNumAlpha != 9) { ShowSevereError( state, - format("{}: Object Definition indicates not = 8 Alpha Objects, Number Indicated={}", cCurrentModuleObject, SurfaceNumAlpha)); + format("{}: Object Definition indicates not = 9 Alpha Objects, Number Indicated={}", cCurrentModuleObject, SurfaceNumAlpha)); ErrorsFound = true; } } else { - if (SurfaceNumAlpha != 7) { + if (SurfaceNumAlpha != 8) { ShowSevereError( state, - format("{}: Object Definition indicates not = 7 Alpha Objects, Number Indicated={}", cCurrentModuleObject, SurfaceNumAlpha)); + format("{}: Object Definition indicates not = 8 Alpha Objects, Number Indicated={}", cCurrentModuleObject, SurfaceNumAlpha)); ErrorsFound = true; } } @@ -3689,6 +3689,22 @@ namespace SurfaceGeometry { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).ZoneName = "Unknown Zone"; ErrorsFound = true; } + + ++ArgPointer; + if (!state.dataIPShortCut->lAlphaFieldBlanks(ArgPointer)) { + int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(ArgPointer), state.dataHeatBal->Space); + + if (spaceNum != 0) { + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; + } else { + ShowSevereError(state, + cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(ArgPointer) + "=\"" + + state.dataIPShortCut->cAlphaArgs(ArgPointer) + "\"."); + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class = SurfaceClass::INVALID; + ErrorsFound = true; + } + } // Get the ExteriorBoundaryCondition flag from input There are 4 conditions that // can take place. The conditions are set with a 0, -1, or -2, or all of the // zone names have to be looked at and generate the interzone array number @@ -4146,7 +4162,7 @@ namespace SurfaceGeometry { } else if (Item == 3) { ItemsToGet = TotRectIZWalls; GettingIZSurfaces = true; - OtherSurfaceField = 4; + OtherSurfaceField = 5; ExtBoundCondition = state.dataSurfaceGeometry->UnreconciledZoneSurface; ClassItem = 1; } else if (Item == 4) { @@ -4170,7 +4186,7 @@ namespace SurfaceGeometry { } else if (Item == 7) { ItemsToGet = TotRectIZCeilings; GettingIZSurfaces = false; - OtherSurfaceField = 4; + OtherSurfaceField = 5; ExtBoundCondition = state.dataSurfaceGeometry->UnreconciledZoneSurface; ClassItem = 3; } else if (Item == 8) { @@ -4188,7 +4204,7 @@ namespace SurfaceGeometry { } else { // IF (Item == 10) THEN ItemsToGet = TotRectIZFloors; GettingIZSurfaces = true; - OtherSurfaceField = 4; + OtherSurfaceField = 5; ExtBoundCondition = state.dataSurfaceGeometry->UnreconciledZoneSurface; ClassItem = 2; } @@ -4268,6 +4284,20 @@ namespace SurfaceGeometry { ErrorsFound = true; } + if (!state.dataIPShortCut->lAlphaFieldBlanks(4)) { + int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->Space); + + if (spaceNum != 0) { + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; + } else { + ShowSevereError(state, + cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(4) + "=\"" + state.dataIPShortCut->cAlphaArgs(4) + "\"."); + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class = SurfaceClass::INVALID; + ErrorsFound = true; + } + } + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).ExtBoundCond = ExtBoundCondition; if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Construction > 0) { if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class == SurfaceClass::Wall && @@ -6855,6 +6885,34 @@ namespace SurfaceGeometry { errFlag = true; } + if (!state.dataIPShortCut->lAlphaFieldBlanks(4)) { + state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListName = state.dataIPShortCut->cAlphaArgs(4); + int Item1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->Space); + int SLItem = 0; + if (Item1 == 0 && int(state.dataHeatBal->SpaceList.size()) > 0) + SLItem = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->SpaceList); + if (Item1 > 0) { + ++NumIntMassSurfaces; + state.dataSurface->IntMassObjects(Item).NumOfSpaces = 1; + state.dataSurface->IntMassObjects(Item).SpaceListActive = false; + state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListPtr = Item1; + } else if (SLItem > 0) { + int numOfSpaces = int(state.dataHeatBal->SpaceList(SLItem).Spaces.size()); + NumIntMassSurfaces += numOfSpaces; + state.dataSurface->IntMassObjects(Item).NumOfSpaces = numOfSpaces; + state.dataSurface->IntMassObjects(Item).SpaceListActive = true; + state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListPtr = SLItem; + } else { + ShowSevereError(state, + cCurrentModuleObject + "=\"" + state.dataIPShortCut->cAlphaArgs(1) + "\" invalid " + + state.dataIPShortCut->cAlphaFieldNames(3) + "=\"" + state.dataIPShortCut->cAlphaArgs(3) + "\" not found."); + ++SurfNum; + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class = SurfaceClass::INVALID; + ErrorsFound = true; + errFlag = true; + } + } + if (errFlag) { ShowSevereError(state, RoutineName + "Errors with invalid names in " + cCurrentModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); From 77a1a6024652ad6a3349d131163973bbc99cb991 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 16 Jun 2021 21:26:12 -0500 Subject: [PATCH 17/98] Space - transition for surfaces --- .../CreateNewIDFUsingRulesV9_6_0.f90 | 112 +++++++++++++++++- src/Transition/VCompareGlobalRoutines.f90 | 40 +++---- 2 files changed, 131 insertions(+), 21 deletions(-) diff --git a/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 b/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 index 1aff3644c46..c5602e5d9db 100644 --- a/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 +++ b/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 @@ -385,19 +385,75 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ! If your original object starts with A, insert the rules here + ! If your original object starts with B, insert the rules here + CASE('BUILDINGSURFACE:DETAILED') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:4)=InArgs(1:4) + OutArgs(5) = '' + OutArgs(6:CurArgs+1)=InArgs(5:CurArgs) + CurArgs = CurArgs + 1 + ! If your original object starts with C, insert the rules here - + CASE('CEILING:INTERZONE') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + ! If your original object starts with D, insert the rules here ! If your original object starts with E, insert the rules here ! If your original object starts with F, insert the rules here + CASE('FLOOR:DETAILED') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('FLOOR:GROUNDCONTACT') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('FLOOR:ADIABATIC') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('FLOOR:INTERZONE') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + ! If your original object starts with D, insert the rules here ! If your original object starts with G, insert the rules here ! If your original object starts with H, insert the rules here ! If your original object starts with I, insert the rules here + CASE('INTERNALMASS') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 ! If your original object starts with L, insert the rules here @@ -410,6 +466,21 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ! If your original object starts with P, insert the rules here ! If your original object starts with R, insert the rules here + CASE('ROOFCEILING:DETAILED') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('ROOF') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 ! If your original object starts with S, insert the rules here @@ -420,6 +491,45 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ! If your original object starts with V, insert the rules here ! If your original object starts with W, insert the rules here + CASE('WALL:DETAILED') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('WALL:EXTERIOR') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('WALL:ADIABATIC') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('WALL:UNDERGROUND') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + + CASE('WALL:INTERZONE') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 ! If your original object starts with Z, insert the rules here diff --git a/src/Transition/VCompareGlobalRoutines.f90 b/src/Transition/VCompareGlobalRoutines.f90 index 07de5f6c783..9dbabe2b349 100644 --- a/src/Transition/VCompareGlobalRoutines.f90 +++ b/src/Transition/VCompareGlobalRoutines.f90 @@ -799,31 +799,31 @@ SUBROUTINE CheckSpecialObjects(DifUnit,ObjectName,CurArgs,OutArgs,FieldNames,Fie CALL WriteOutIDFLinesAsSingleLine(DifUnit,ObjectName,CurArgs,OutArgs,FieldNames,FieldUnits) CASE('BUILDINGSURFACE:DETAILED') - IF (MakeUPPERCase(OutArgs(10)) == 'AUTOCALCULATE') THEN - NVert=(CurArgs-10)/3 - ELSEIF (OutArgs(10) == '') THEN - NVert=(CurArgs-10)/3 + IF (MakeUPPERCase(OutArgs(11)) == 'AUTOCALCULATE') THEN + NVert=(CurArgs-11)/3 + ELSEIF (OutArgs(11) == '') THEN + NVert=(CurArgs-11)/3 ELSE ! Try to read the number of vertices as an integer - NVert = ProcessNumber(OutArgs(10),ErrFlag) + NVert = ProcessNumber(OutArgs(11),ErrFlag) IF (ErrFlag) THEN ! If failed, default to autocalculate instead - NVert=(CurArgs-10)/3 + NVert=(CurArgs-11)/3 ! Replace in existing with Autocalculate - OutArgs(10) = 'Autocalculate' + OutArgs(11) = 'Autocalculate' CALL ShowWarningError('For ' // TRIM(ObjectName) // ' named ''' // TRIM(OutArgs(1)) // & ''', Number of vertices is not a number, defaulting to Autocalculate (N='// & TRIM(TrimSigDigits(NVert)) //')',Auditf) ELSE ! Silently trim any float to an integer - OutArgs(10) = TrimSigDigits(NVert) + OutArgs(11) = TrimSigDigits(NVert) ENDIF ENDIF ! Now we write the first few fields - CALL WriteOutPartialIDFLines(DifUnit,ObjectName,10,OutArgs,FieldNames,FieldUnits) + CALL WriteOutPartialIDFLines(DifUnit,ObjectName,11,OutArgs,FieldNames,FieldUnits) - VArg=11 + VArg=12 DO Arg=1,NVert IF (Arg /= NVert) THEN LString=', !- ' @@ -935,31 +935,31 @@ SUBROUTINE CheckSpecialObjects(DifUnit,ObjectName,CurArgs,OutArgs,FieldNames,Fie ENDIF CASE('WALL:DETAILED','ROOFCEILING:DETAILED','FLOOR:DETAILED') - IF (MakeUPPERCase(OutArgs(9)) == 'AUTOCALCULATE') THEN - NVert=(CurArgs-9)/3 - ELSEIF (OutArgs(9) == '') THEN - NVert=(CurArgs-9)/3 + IF (MakeUPPERCase(OutArgs(10)) == 'AUTOCALCULATE') THEN + NVert=(CurArgs-10)/3 + ELSEIF (OutArgs(10) == '') THEN + NVert=(CurArgs-10)/3 ELSE ! Try to read the number of vertices as an integer - NVert = ProcessNumber(OutArgs(9),ErrFlag) + NVert = ProcessNumber(OutArgs(10),ErrFlag) IF (ErrFlag) THEN ! If failed, default to autocalculate instead - NVert=(CurArgs-9)/3 + NVert=(CurArgs-10)/3 ! Replace in existing with Autocalculate - OutArgs(9) = 'Autocalculate' + OutArgs(10) = 'Autocalculate' CALL ShowWarningError('For ' // TRIM(ObjectName) // ' named ''' // TRIM(OutArgs(1)) // & ''', Number of vertices is not a number, defaulting to Autocalculate (N='// & TRIM(TrimSigDigits(NVert)) //')',Auditf) ELSE ! Silently trim any float to an integer - OutArgs(9) = TrimSigDigits(NVert) + OutArgs(10) = TrimSigDigits(NVert) ENDIF ENDIF ! Now we write the first few fields - CALL WriteOutPartialIDFLines(DifUnit,ObjectName,9,OutArgs,FieldNames,FieldUnits) + CALL WriteOutPartialIDFLines(DifUnit,ObjectName,10,OutArgs,FieldNames,FieldUnits) - VArg=10 + VArg=11 DO Arg=1,NVert IF (Arg /= NVert) THEN LString=', !- ' From 8de8956f01935942d30c13e79cbb1ebb4d4dcf22 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 16 Jun 2021 21:26:48 -0500 Subject: [PATCH 18/98] Space - transition testfiles --- performance_tests/15zonePSZ.idf | 270 +- performance_tests/15zonePTAC.idf | 270 +- performance_tests/15zonePVAV.idf | 270 +- performance_tests/15zonevav.idf | 270 +- performance_tests/15zonevav_no_reports.idf | 252 +- performance_tests/30zonePSZ.idf | 514 +- performance_tests/30zonePTAC.idf | 514 +- performance_tests/30zonePVAV.idf | 514 +- performance_tests/30zonevav.idf | 514 +- performance_tests/45zonePSZ.idf | 758 +- performance_tests/45zonePTAC.idf | 758 +- performance_tests/45zonePVAV.idf | 758 +- performance_tests/45zonevav.idf | 758 +- ...chmarkHospitalNew_USA_CA_SAN_FRANCISCO.idf | 971 +- ...A_CA_SAN_FRANCISCO_10_windows_per_zone.idf | 279 +- ...icenew_usa_ca_san_francisco_no_reports.idf | 263 +- .../PipingSystem_Underground_FHX.idf | 197 +- .../1ZoneDataCenterCRAC_wApproachTemp.idf | 6 + ...oneDataCenterCRAC_wPumpedDXCoolingCoil.idf | 6 + testfiles/1ZoneEvapCooler.idf | 6 + testfiles/1ZoneParameterAspect.idf | 6 + testfiles/1ZoneUncontrolled.idf | 6 + testfiles/1ZoneUncontrolled3SurfaceZone.idf | 3 + testfiles/1ZoneUncontrolledAnnualOutputs.idf | 6 + ...neUncontrolledCondFDWithVariableKat24C.idf | 6 + testfiles/1ZoneUncontrolledFourAlgorithms.idf | 6 + testfiles/1ZoneUncontrolledResLayers.idf | 6 + testfiles/1ZoneUncontrolledUTF8.idf | 6 + .../1ZoneUncontrolledWithHysteresisPCM.idf | 6 + testfiles/1ZoneUncontrolled_DD2009.idf | 6 + testfiles/1ZoneUncontrolled_DDChanges.idf | 6 + ...1ZoneUncontrolled_FCfactor_Slab_UGWall.idf | 6 + ...oneUncontrolled_OtherEquipmentWithFuel.idf | 6 + ...Uncontrolled_Win_ASH55_Thermal_Comfort.idf | 48 +- ...ZoneUncontrolled_Win_ResilienceReports.idf | 48 +- testfiles/1ZoneUncontrolled_win_1.idf | 6 + testfiles/1ZoneUncontrolled_win_2.idf | 6 + .../1ZoneWith14ControlledHeat-CoolPanels.idf | 6 + testfiles/2ZoneDataCenterHVAC_wEconomizer.idf | 24 + testfiles/4ZoneWithShading_Simple_1.idf | 24 + testfiles/4ZoneWithShading_Simple_2.idf | 41 +- testfiles/5ZoneAirCooled.idf | 40 + testfiles/5ZoneAirCooledConvCoef.idf | 40 + testfiles/5ZoneAirCooledDemandLimiting.idf | 40 + ...ledDemandLimiting_FixedRateVentilation.idf | 40 + ...mandLimiting_ReductionRatioVentilation.idf | 40 + .../5ZoneAirCooledWithCoupledInGradeSlab.idf | 40 + testfiles/5ZoneAirCooledWithDOASAirLoop.idf | 40 + testfiles/5ZoneAirCooledWithSlab.idf | 40 + testfiles/5ZoneAirCooled_AirBoundaries.idf | 40 + ...oneAirCooled_AirBoundaries_Daylighting.idf | 40 + testfiles/5ZoneAirCooled_UniformLoading.idf | 40 + ...ZoneAirCooled_VAVBoxMinAirFlowTurnDown.idf | 40 + testfiles/5ZoneAirCooled_VRPSizing.idf | 40 + testfiles/5ZoneAirCooled_VRPSizing_MaxZd.idf | 40 + .../5ZoneAirCooled_ZoneAirMassFlowBalance.idf | 40 + ...led_ZoneAirMassFlowBalance_Pressurized.idf | 40 + testfiles/5ZoneAutoDXVAV.idf | 40 + testfiles/5ZoneBoilerOutsideAirReset.idf | 40 + testfiles/5ZoneBranchSupplyPumps.idf | 40 + testfiles/5ZoneCAV_MaxTemp.idf | 40 + testfiles/5ZoneCAV_MaxTemp_JSON_Outputs.idf | 40 + testfiles/5ZoneCAVtoVAVWarmestTempFlow.idf | 40 + testfiles/5ZoneCoolBeam.idf | 40 + testfiles/5ZoneCoolingPanelBaseboard.idf | 114 +- testfiles/5ZoneCoolingPanelBaseboardAuto.idf | 115 +- .../5ZoneCoolingPanelBaseboardTotalLoad.idf | 115 +- .../5ZoneCoolingPanelBaseboardVarOff.idf | 115 +- testfiles/5ZoneCostEst.idf | 75 +- testfiles/5ZoneDDCycOnAny.idf | 40 + testfiles/5ZoneDDCycOnOne.idf | 40 + testfiles/5ZoneDesignInputCoolingCoil.idf | 40 + testfiles/5ZoneDetailedIceStorage.idf | 40 + testfiles/5ZoneDetailedIceStorage2.idf | 40 + .../5ZoneDetailedIceStorageCubicLinear.idf | 40 + .../5ZoneDetailedIceStorageSimpleCtrl.idf | 40 + .../5ZoneEconomicsTariffAndLifeCycleCosts.idf | 40 + testfiles/5ZoneElectricBaseboard.idf | 40 + testfiles/5ZoneEndUses.idf | 40 + testfiles/5ZoneEngChill.idf | 40 + testfiles/5ZoneFPIU.idf | 40 + testfiles/5ZoneFanCoilDOASCool.idf | 40 + ...ZoneFanCoilDOAS_ERVOnAirLoopMainBranch.idf | 40 + .../5ZoneFanCoilDOAS_HumidifierOnOASystem.idf | 40 + testfiles/5ZoneGeometryTransform.idf | 40 + testfiles/5ZoneIceStorage.idf | 40 + testfiles/5ZoneNightVent1.idf | 40 + testfiles/5ZoneNightVent2.idf | 40 + testfiles/5ZoneNightVent3.idf | 40 + testfiles/5ZoneReturnFan.idf | 40 + testfiles/5ZoneSteamBaseboard.idf | 115 +- testfiles/5ZoneSupRetPlenRAB.idf | 50 + testfiles/5ZoneSupRetPlenVSATU.idf | 50 + testfiles/5ZoneSwimmingPool.idf | 40 + .../5ZoneSwimmingPoolZoneMultipliers.idf | 40 + testfiles/5ZoneTDV.idf | 40 + .../5ZoneVAV-ChilledWaterStorage-Mixed.idf | 45 +- ...AV-ChilledWaterStorage-Mixed_DCV_MaxZd.idf | 45 +- ...hilledWaterStorage-Mixed_DCV_MultiPath.idf | 45 +- ...ZoneVAV-ChilledWaterStorage-Stratified.idf | 45 +- testfiles/5ZoneVAV-Pri-SecLoop.idf | 40 + testfiles/5ZoneWLHPPlantLoopTower.idf | 40 + testfiles/5ZoneWarmest.idf | 40 + testfiles/5ZoneWarmestMultDDSizBypass.idf | 40 + testfiles/5ZoneWarmestMultDDSizOnOff.idf | 40 + testfiles/5ZoneWarmestMultDDSizVAV.idf | 40 + testfiles/5ZoneWarmestMultDDSizVT.idf | 40 + testfiles/5ZoneWarmestVFD.idf | 40 + testfiles/5ZoneWarmestVFD_FCMAuto.idf | 40 + testfiles/5ZoneWaterCooled_Baseboard.idf | 114 +- ...oneWaterCooled_BaseboardScalableSizing.idf | 114 +- ...oneWaterCooled_GasFiredSteamHumidifier.idf | 40 + testfiles/5ZoneWaterCooled_HighRHControl.idf | 40 + ...eWaterCooled_MultizoneAverageRHControl.idf | 40 + ...neWaterCooled_MultizoneMinMaxRHControl.idf | 40 + testfiles/5ZoneWaterLoopHeatPump.idf | 40 + testfiles/5ZoneWaterSystems.idf | 40 + ...Zone_IdealLoadsAirSystems_ReturnPlenum.idf | 40 + testfiles/5Zone_Transformer.idf | 40 + testfiles/5Zone_Unitary_HXAssistedCoil.idf | 40 + ...5Zone_Unitary_VSDesuperheatWaterHeater.idf | 40 + testfiles/5Zone_Unitary_VSDesuperheater.idf | 40 + ...ASHRAE9012016_ApartmentHighRise_Denver.idf | 866 +- .../ASHRAE9012016_ApartmentMidRise_Denver.idf | 210 +- testfiles/ASHRAE9012016_Hospital_Denver.idf | 567 +- testfiles/ASHRAE9012016_HotelLarge_Denver.idf | 243 +- testfiles/ASHRAE9012016_HotelSmall_Denver.idf | 485 + .../ASHRAE9012016_OfficeLarge_Denver.idf | 366 +- .../ASHRAE9012016_OfficeMedium_Denver.idf | 125 +- .../ASHRAE9012016_OfficeSmall_Denver.idf | 59 +- ...RAE9012016_OutPatientHealthCare_Denver.idf | 1514 +- ...SHRAE9012016_RestaurantFastFood_Denver.idf | 25 +- ...ASHRAE9012016_RestaurantSitDown_Denver.idf | 25 +- .../ASHRAE9012016_RetailStandalone_Denver.idf | 52 +- .../ASHRAE9012016_RetailStripmall_Denver.idf | 91 +- .../ASHRAE9012016_SchoolPrimary_Denver.idf | 247 +- .../ASHRAE9012016_SchoolSecondary_Denver.idf | 462 +- testfiles/ASHRAE9012016_Warehouse_Denver.idf | 23 +- testfiles/ASIHPMixedTank.idf | 20 + testfiles/AbsorptionChiller.idf | 20 + testfiles/ActiveTrombeWall.idf | 12 + .../AdaptiveThermostatASH55_5Zone_Miami.idf | 40 + testfiles/AdvancedOutput/ExerciseOutput1.idf | 6 + .../ExerciseOutput1A-Solution.idf | 6 + testfiles/AirCooledElectricChiller.idf | 20 + ...ults_RefBldgLargeOfficeNew2004_Chicago.idf | 178 +- .../AirEconomizerWithMaxMinOAFractions.idf | 40 + testfiles/AirflowNetwork3zVent.idf | 19 + testfiles/AirflowNetwork3zVentAutoWPC.idf | 19 + .../AirflowNetworkAdvanced_SingleSided_NV.idf | 26 + ...rflowNetworkOccupantVentilationControl.idf | 19 + testfiles/AirflowNetwork_Attic_Duct.idf | 16 +- testfiles/AirflowNetwork_MultiAirLoops.idf | 38 + testfiles/AirflowNetwork_MultiZone_House.idf | 25 + ...irflowNetwork_MultiZone_House_FanModel.idf | 25 + ...etwork_MultiZone_House_OvercoolDehumid.idf | 28 +- ...irflowNetwork_MultiZone_House_TwoSpeed.idf | 25 + .../AirflowNetwork_MultiZone_LocalNode.idf | 25 + .../AirflowNetwork_MultiZone_SmallOffice.idf | 34 + ...MultiZone_SmallOffice_CoilHXAssistedDX.idf | 34 + ...rk_MultiZone_SmallOffice_GenericContam.idf | 34 + ...MultiZone_SmallOffice_HeatRecoveryHXSL.idf | 34 + ...rflowNetwork_MultiZone_SmallOffice_VAV.idf | 34 + ...lowNetwork_Multizone_HorizontalOpening.idf | 35 + testfiles/AirflowNetwork_PressureControl.idf | 34 + testfiles/AirflowNetwork_Simple_House.idf | 25 + .../AirflowNetwork_Simple_SmallOffice.idf | 34 + .../AirflowWindowsAndBetweenGlassBlinds.idf | 20 + .../AirflowWindowsAndBetweenGlassShades.idf | 20 + testfiles/AtticRoof_RadiantBarriers.idf | 27055 ++++++++-------- testfiles/BaseBoardElectric.idf | 20 + .../BasicsFiles/AdultEducationCenter.idf | 22 +- testfiles/BasicsFiles/Exercise1A.idf | 6 + testfiles/BasicsFiles/Exercise1B-Solution.idf | 6 + testfiles/BasicsFiles/Exercise1C-Solution.idf | 6 + testfiles/BasicsFiles/Exercise1D-Solution.idf | 6 + testfiles/BasicsFiles/Exercise2.idf | 40 + testfiles/BasicsFiles/Exercise2A-Solution.idf | 40 + testfiles/BasicsFiles/Exercise2B-Solution.idf | 40 + testfiles/BasicsFiles/Exercise2C-Solution.idf | 40 + testfiles/CVRhMinHum.idf | 20 + ...lMRT-RefBldgLargeOfficeNew2004_Chicago.idf | 178 +- ...ralChillerHeaterSystem_Cooling_Heating.idf | 40 + ...terSystem_Simultaneous_Cooling_Heating.idf | 40 + testfiles/ChangeoverBypassVAV.idf | 20 + testfiles/ChangeoverBypassVAV_AirToAir.idf | 20 + .../ChangeoverBypassVAV_AirToAirHeatPump.idf | 20 + testfiles/ChangeoverBypassVAV_MaxTemp.idf | 20 + ...urve_RefBldgLargeOfficeNew2004_Chicago.idf | 178 +- .../CmplxGlz_Daylighting_SouthVB45deg.idf | 9 +- ...lxGlz_Daylighting_SouthVerticalVB45deg.idf | 9 +- testfiles/CmplxGlz_InShadeGasMix.idf | 6 + .../CmplxGlz_MeasuredDeflectionAndShading.idf | 6 + testfiles/CmplxGlz_SchedSurfGains.idf | 6 + testfiles/CmplxGlz_SingleZone_Deflection.idf | 6 + .../CmplxGlz_SingleZone_DoubleClearAir.idf | 6 + testfiles/CmplxGlz_SingleZone_Vacuum.idf | 6 + testfiles/CmplxGlz_SmOff_IntExtShading.idf | 41 +- testfiles/CoilWaterDesuperheating.idf | 20 + testfiles/CommonPipe_Pri-Sec.idf | 40 + testfiles/CompSetPtControl.idf | 20 + .../CondFD1ZonePurchAirAutoSizeWithPCM.idf | 6 + testfiles/Convection.idf | 20 + testfiles/ConvectionAdaptiveSmallOffice.idf | 58 +- testfiles/CoolingCoilFreezingPrevention.idf | 20 + testfiles/CoolingTower.idf | 20 + testfiles/CoolingTowerDryBulbRangeOp.idf | 40 + testfiles/CoolingTowerNomCap.idf | 20 + testfiles/CoolingTowerRHRangeOp.idf | 40 + testfiles/CoolingTowerWetBulbRangeOp.idf | 40 + testfiles/CoolingTowerWithDBDeltaTempOp.idf | 40 + testfiles/CoolingTowerWithWBDeltaTempOp.idf | 20 + testfiles/CoolingTower_FluidBypass.idf | 178 +- .../CoolingTower_MerkelVariableSpeed.idf | 178 +- .../CoolingTower_SingleSpeed_MultiCell.idf | 178 +- testfiles/CoolingTower_TwoSpeed.idf | 20 + ...CoolingTower_TwoSpeed_CondEntTempReset.idf | 20 + testfiles/CoolingTower_TwoSpeed_MultiCell.idf | 178 +- testfiles/CoolingTower_VariableSpeed.idf | 40 + ...ngTower_VariableSpeed_CondEntTempReset.idf | 40 + ...eSpeed_CondEntTempReset_MultipleTowers.idf | 40 + ...VariableSpeed_IdealCondEntTempSetpoint.idf | 40 + ...dealCondEntTempSetpoint_MultipleTowers.idf | 40 + .../CoolingTower_VariableSpeed_MultiCell.idf | 178 +- testfiles/CooltowerSimpleTest.idf | 54 + .../CooltowerSimpleTestwithVentilation.idf | 54 + testfiles/CrossVent_1Zone_AirflowNetwork.idf | 6 + ...Zone_AirflowNetwork_with2CrossflowJets.idf | 6 + ...trum_RefBldgSmallOfficeNew2004_Chicago.idf | 58 +- testfiles/DDAutoSize.idf | 20 + testfiles/DElight-Detailed-Comparison.idf | 12 + testfiles/DElightCFSLightShelf.idf | 12 + testfiles/DElightCFSWindow.idf | 12 + testfiles/DOASDXCOIL_wADPBFMethod.idf | 40 + .../DOASDXCOIL_wADPBFMethod_NoReturnPath.idf | 40 + testfiles/DOASDualDuctSchool.idf | 108 +- .../DOAS_wNeutralSupplyAir_wFanCoilUnits.idf | 40 + testfiles/DOAToFanCoilInlet.idf | 40 + testfiles/DOAToFanCoilSupply.idf | 40 + testfiles/DOAToPTAC.idf | 40 + testfiles/DOAToPTHP.idf | 40 + testfiles/DOAToUnitVentilator.idf | 40 + testfiles/DOAToUnitarySystem.idf | 40 + testfiles/DOAToVRF.idf | 40 + testfiles/DOAToWaterToAirHPInlet.idf | 206 +- testfiles/DOAToWaterToAirHPSupply.idf | 206 +- testfiles/DXCoilSystemAuto.idf | 20 + testfiles/DaylightingDeviceShelf.idf | 13 + testfiles/DaylightingDeviceTubular.idf | 24 + testfiles/DesiccantCVRh.idf | 20 + testfiles/DesiccantCVRhZoneRHCtrl.idf | 20 + .../DesiccantCVRhZoneRHCtrl_AddedAutosize.idf | 20 + .../DesiccantDehumidifierWithAirToAirCoil.idf | 40 + ...DesiccantDehumidifierWithCompanionCoil.idf | 40 + testfiles/DirectIndirectEvapCoolers.idf | 47 +- testfiles/DirectIndirectEvapCoolersVSAS.idf | 47 +- testfiles/DisplacementVent_1ZoneOffice.idf | 21 +- .../DisplacementVent_Nat_AirflowNetwork.idf | 6 + ...ent_Nat_AirflowNetwork_AdaptiveComfort.idf | 6 + testfiles/DisplacementVent_VAV.idf | 6 + testfiles/DualDuctConstVolDamper.idf | 20 + testfiles/DualDuctConstVolGasHC.idf | 20 + testfiles/DualDuctVarVolDamper.idf | 20 + testfiles/DualDuctWaterCoils.idf | 20 + testfiles/DynamicClothing.idf | 20 + .../EMPD5ZoneWaterCooled_HighRHControl.idf | 40 + ...AirflowNetworkOpeningControlByHumidity.idf | 34 + testfiles/EMSConstantVolumePurchasedAir.idf | 32 +- ...CurveOverride_PackagedTerminalHeatPump.idf | 30 +- testfiles/EMSCustomOutputVariable.idf | 58 +- testfiles/EMSCustomSchedule.idf | 58 +- testfiles/EMSDemandManager_LargeOffice.idf | 179 +- testfiles/EMSDiscreteAirSystemSizes.idf | 90 +- testfiles/EMSPlantLoopOverrideControl.idf | 90 +- testfiles/EMSPlantOperation_largeOff.idf | 178 +- ...ReplaceTraditionalManagers_LargeOffice.idf | 178 +- testfiles/EMSTestMathAndKill.idf | 58 +- testfiles/EMSThermochromicWindow.idf | 58 +- testfiles/EMSUserDefined5ZoneAirCooled.idf | 40 + testfiles/EMSUserDefinedWindACAuto.idf | 20 + testfiles/EMSWindowShadeControl.idf | 20 + testfiles/EarthTubeSimpleTest.idf | 54 + testfiles/EcoroofOrlando.idf | 90 +- testfiles/ElectricChiller.idf | 40 + testfiles/ElectricEIRChiller.idf | 20 + .../ElectricEIRChillerHeatRecoveryAuto.idf | 20 + ...ElectricEIRChiller_EvapCooledCondenser.idf | 1328 +- testfiles/EngineChiller.idf | 20 + testfiles/EquivalentLayerWindow.idf | 9 +- testfiles/EvaporativeFluidCooler.idf | 20 + testfiles/EvaporativeFluidCooler_TwoSpeed.idf | 20 + testfiles/ExhFiredAbsorptionChiller.idf | 20 + testfiles/ExteriorLightsAndEq.idf | 40 +- testfiles/FanCoilAutoSize.idf | 20 + testfiles/FanCoilAutoSizeScalableSizing.idf | 20 + .../FanCoilAutoSize_ASHRAE90VariableFan.idf | 890 +- testfiles/FanCoilAutoSize_MultiSpeedFan.idf | 20 + testfiles/FanCoil_HybridVent_VentSch.idf | 20 + ...SensorOffset_RefBldgLargeOfficeNew2004.idf | 178 +- testfiles/Fault_CoilSATSensorOffset.idf | 40 + testfiles/Fault_CondenserSWTSensorOffset.idf | 20 + ...ngAirFilter_RefBldgMediumOfficeNew2004.idf | 173 +- ...hillerBoiler_RefBldgLargeOfficeNew2004.idf | 178 +- testfiles/Fault_FoulingCoil.idf | 40 + testfiles/Fault_FoulingCoolingTower.idf | 20 + ...lingEvapCooler_StripMallZoneEvapCooler.idf | 90 +- .../Fault_HumidistatOffset_Supermarket.idf | 24 +- ...tatOffset_ThermostatOffset_Supermarket.idf | 24 +- ...ostatOffset_RefBldgMediumOfficeNew2004.idf | 173 +- testfiles/Flr_Rf_8Sides.idf | 10 + testfiles/FluidCooler.idf | 20 + testfiles/FluidCoolerTwoSpeed.idf | 20 + testfiles/FourPipeBeamLargeOffice.idf | 178 +- testfiles/FreeCoolingChiller.idf | 20 + testfiles/Furnace.idf | 20 + testfiles/FurnaceFuelOil.idf | 20 + testfiles/FurnacePLRHeatingCoil.idf | 20 + testfiles/FurnaceWithDXSystem.idf | 20 + .../FurnaceWithDXSystemComfortControl.idf | 20 + testfiles/FurnaceWithDXSystemRHcontrol.idf | 20 + ...urnaceWithDXSystemRHcontrol_cyclingfan.idf | 20 + .../FurnaceWithDXSystem_CoolingHXAssisted.idf | 20 + testfiles/GSHP-GLHE-CalcGFunctions.idf | 174 +- testfiles/GSHP-GLHE.idf | 40 + testfiles/GSHP-Slinky.idf | 40 + testfiles/GSHPSimple-GLHE.idf | 68 +- testfiles/GasTurbChiller.idf | 20 + testfiles/GasTurbChillerHeatRecoveryAuto.idf | 20 + testfiles/Generator_PVWatts.idf | 6 + testfiles/Generators.idf | 20 + testfiles/Generators_Transformer.idf | 20 + testfiles/GeneratorswithPV.idf | 12 +- testfiles/GeneratorwithWindTurbine.idf | 6 + testfiles/GeometryTest.idf | 40 +- testfiles/GroundTempOSCCompactSched.idf | 9 +- testfiles/HAMT_DailyProfileReport.idf | 6 + testfiles/HAMT_HourlyProfileReport.idf | 6 + .../HPAirToAir_wSolarCollectorHWCoil.idf | 26 + testfiles/HP_wICSSolarCollector.idf | 37 + testfiles/HVACStandAloneERV_Economizer.idf | 20 + testfiles/HVACTemplate-5ZoneBaseboardHeat.idf | 40 + ...plate-5ZoneConstantVolumeChillerBoiler.idf | 40 + testfiles/HVACTemplate-5ZoneDualDuct.idf | 40 + testfiles/HVACTemplate-5ZoneFanCoil-DOAS.idf | 40 + testfiles/HVACTemplate-5ZoneFanCoil.idf | 40 + testfiles/HVACTemplate-5ZoneFurnaceDX.idf | 40 + testfiles/HVACTemplate-5ZonePTAC-DOAS.idf | 40 + testfiles/HVACTemplate-5ZonePTAC.idf | 40 + testfiles/HVACTemplate-5ZonePTHP.idf | 40 + testfiles/HVACTemplate-5ZonePackagedVAV.idf | 40 + testfiles/HVACTemplate-5ZonePurchAir.idf | 41 + .../HVACTemplate-5ZoneUnitaryHeatPump.idf | 40 + testfiles/HVACTemplate-5ZoneUnitarySystem.idf | 40 + testfiles/HVACTemplate-5ZoneVAVFanPowered.idf | 40 + ...te-5ZoneVAVWaterCooled-ObjectReference.idf | 40 + .../HVACTemplate-5ZoneVAVWaterCooled.idf | 40 + testfiles/HVACTemplate-5ZoneVRF.idf | 40 + ...ate-5ZoneWaterToAirHeatPumpTowerBoiler.idf | 40 + testfiles/HeaderedPumpsConSpeed.idf | 40 + testfiles/HeaderedPumpsVarSpeed.idf | 40 + testfiles/HeatPump.idf | 20 + testfiles/HeatPumpAirToAirWithRHcontrol.idf | 20 + testfiles/HeatPumpAuto.idf | 20 + testfiles/HeatPumpCycFanWithEcono.idf | 20 + testfiles/HeatPumpIAQP_DCV.idf | 20 + .../HeatPumpIAQP_GenericContamControl.idf | 20 + testfiles/HeatPumpProportionalControl_DCV.idf | 20 + ...tPumpProportionalControl_DCVDesignRate.idf | 20 + testfiles/HeatPumpSecondaryCoil.idf | 19 + testfiles/HeatPumpSimpleDCV.idf | 20 + testfiles/HeatPumpVRP_DCV.idf | 20 + testfiles/HeatPumpVSAS.idf | 20 + testfiles/HeatPumpWaterHeater.idf | 40 + testfiles/HeatPumpWaterHeaterStratified.idf | 40 + testfiles/HeatPumpWaterToAir.idf | 40 + testfiles/HeatPumpWaterToAirEquationFit.idf | 208 +- ...terHeatingDesuperheater_StratifiedTank.idf | 208 +- ...WaterToAirWithAntifreezeAndLatentModel.idf | 20 + ...aterToAirWithAntifreezeAndLatentModel2.idf | 20 + testfiles/HeatPumpWaterToAirWithRHControl.idf | 208 +- testfiles/HeatPumpwithBiquadraticCurves.idf | 20 + testfiles/HeatRecoveryElectricChiller.idf | 20 + testfiles/HeatRecoveryPlantLoop.idf | 20 + testfiles/HeatRecoveryPlantLoopAuto.idf | 20 + testfiles/HeatRecoverywithStorageTank.idf | 20 + testfiles/HospitalBaseline.idf | 1185 +- testfiles/HospitalBaselineReheatReportEMS.idf | 1185 +- testfiles/HospitalLowEnergy.idf | 1352 +- testfiles/House-2FurnaceAC-SequentialLoad.idf | 25 + ...use-2FurnaceAC-SequentialLoadFractions.idf | 25 + .../House-2FurnaceAC-SequentialUniformPLR.idf | 25 + testfiles/House-2FurnaceAC-UniformLoad.idf | 25 + testfiles/House-2FurnaceAC-UniformPLR.idf | 25 + ...4Zone_Solve_Infiltration_free_floating.idf | 24 + ...odel_4Zone_Solve_PeopleCount_with_HVAC.idf | 24 + testfiles/HybridVentilationControl.idf | 34 + .../HybridVentilationControlGlobalSimple.idf | 34 + testfiles/HybridZoneModel.idf | 24 + testfiles/IceStorage-Parallel.idf | 40 + .../IceStorage-Series-ChillerDownstream.idf | 40 + .../IceStorage-Series-ChillerUpstream.idf | 40 + testfiles/IndEvapCoolerRTUoffice.idf | 120 + testfiles/IndirectAbsorptionChiller.idf | 20 + testfiles/InternalMass_wZoneList.idf | 23 +- testfiles/LBuilding-G000.idf | 90 +- testfiles/LBuilding-G090.idf | 90 +- testfiles/LBuilding-G180.idf | 90 +- testfiles/LBuilding-G270.idf | 90 +- testfiles/LBuildingAppGRotPar.idf | 90 +- testfiles/LgOffVAV.idf | 145 +- testfiles/LgOffVAVusingBasement.idf | 145 +- testfiles/LookupTables.idf | 20 + .../LrgOff_GridStorageDemandLeveling.idf | 178 +- testfiles/LrgOff_GridStorageEMSSmoothing.idf | 178 +- testfiles/LrgOff_GridStorageScheduled.idf | 178 +- testfiles/MicroCogeneration.idf | 45 +- testfiles/MovableExtInsulationSimple.idf | 6 + testfiles/MovableIntInsulationLights.idf | 6 + testfiles/MovableIntInsulationLightsLowE.idf | 6 + testfiles/MovableIntInsulationSimple.idf | 6 + testfiles/MultiSpeedACFurnace.idf | 20 + testfiles/MultiSpeedHP_StagedThermostat.idf | 20 + testfiles/MultiSpeedHeatPump.idf | 20 + .../MultiSpeedHeatPump_DirectSolution.idf | 20 + testfiles/MultiSpeedHeatPump_MultiSolvers.idf | 20 + testfiles/MultiStory.idf | 54 + testfiles/Mundt_System_Always_On.idf | 56 + testfiles/Mundt_System_On_During_the_Day.idf | 56 + ...tart_RefBldgLargeOfficeNew2004_Chicago.idf | 178 +- testfiles/OutdoorAirUnit.idf | 40 + testfiles/OutdoorAirUnitwithAirloopHVAC.idf | 40 + testfiles/PIUAuto.idf | 20 + testfiles/PackagedTerminalAirConditioner.idf | 20 + .../PackagedTerminalAirConditionerVSAS.idf | 20 + testfiles/PackagedTerminalHeatPump.idf | 20 + testfiles/PackagedTerminalHeatPumpVSAS.idf | 20 + .../ParametricInsulation-5ZoneAirCooled.idf | 40 + testfiles/PassiveTrombeWall.idf | 18 + testfiles/PipeHeatTransfer_Outair.idf | 40 + testfiles/PipeHeatTransfer_Schedule.idf | 40 + testfiles/PipeHeatTransfer_Underground.idf | 40 + testfiles/PipeHeatTransfer_Zone.idf | 40 + testfiles/PipingSystem_Underground_FHX.idf | 177 +- testfiles/PlantApplicationsGuide_Example2.idf | 45 +- testfiles/PlantApplicationsGuide_Example3.idf | 20 + testfiles/PlateHeatExchanger.idf | 20 + testfiles/Plenum.idf | 31 + testfiles/PlenumwithRetAirHeatGain.idf | 12 + testfiles/PondGroundHeatExchanger.idf | 40 + testfiles/PurchAirTables.idf | 20 + testfiles/PurchAirTables_SQL.idf | 20 + testfiles/PurchAirTables_wAnnual.idf | 28 +- testfiles/PurchAirWindowBlind.idf | 25 +- .../PurchAirWindowBlind_BlockBeamSolar.idf | 20 + testfiles/PurchAirWithDaylighting.idf | 20 + ...PurchAirWithDaylightingAndShadeControl.idf | 20 + testfiles/PurchAirWithDaylightingAngleFac.idf | 20 + .../PurchAirWithDoubleFacadeDaylighting.idf | 26 + .../PythonPlugin1ZoneUncontrolledCondFD.idf | 19 + ...AirflowNetworkOpeningControlByHumidity.idf | 34 + ...PythonPluginConstantVolumePurchasedAir.idf | 33 +- ...CurveOverride_PackagedTerminalHeatPump.idf | 20 + .../PythonPluginCustomOutputVariable.idf | 58 +- testfiles/PythonPluginCustomSchedule.idf | 58 +- testfiles/PythonPluginCustomTrendVariable.idf | 58 +- .../PythonPluginDemandManager_LargeOffice.idf | 178 +- .../PythonPluginDiscreteAirSystemSizes.idf | 90 +- ...ythonPluginLrgOff_GridStorageSmoothing.idf | 178 +- .../PythonPluginPlantLoopOverrideControl.idf | 90 +- .../PythonPluginPlantOperation_largeOff.idf | 202 +- ...ReplaceTraditionalManagers_LargeOffice.idf | 208 +- testfiles/PythonPluginTestMathAndKill.idf | 58 +- testfiles/PythonPluginThermochromicWindow.idf | 58 +- .../PythonPluginUserDefined5ZoneAirCooled.idf | 40 + .../PythonPluginUserDefinedWindACAuto.idf | 242 +- testfiles/PythonPluginWindowShadeControl.idf | 20 + testfiles/QTFtest.idf | 6 + testfiles/RadHiTempElecTermReheat.idf | 22 +- testfiles/RadHiTempGasCtrlOpt.idf | 22 +- testfiles/RadHiTempGasTermReheat.idf | 22 +- testfiles/RadLoHydrHeatCoolAuto.idf | 230 +- testfiles/RadLoHydrHeatCoolAutoCondFD.idf | 152 +- testfiles/RadLoTempCFloChangeoverDelay.idf | 246 +- testfiles/RadLoTempCFloCtrlOpt2.idf | 419 +- testfiles/RadLoTempCFloCtrlOpt3.idf | 421 +- testfiles/RadLoTempCFloHeatCool.idf | 229 +- testfiles/RadLoTempCFloHeatCoolCondFD.idf | 229 +- testfiles/RadLoTempCFloHeatCoolRMT.idf | 237 +- .../RadLoTempCFloHeatCool_AddedAutosizing.idf | 185 +- testfiles/RadLoTempCFloISOPipeHT.idf | 234 +- testfiles/RadLoTempCFloTermReheat.idf | 185 +- testfiles/RadLoTempElecCtrlOpt2.idf | 50 +- testfiles/RadLoTempElecTermReheat.idf | 23 +- testfiles/RadLoTempElecTermReheatCondFD.idf | 23 +- testfiles/RadLoTempHydrChangeoverDelay.idf | 251 +- testfiles/RadLoTempHydrCoolTower.idf | 152 +- testfiles/RadLoTempHydrCoolTowerCondFD.idf | 152 +- testfiles/RadLoTempHydrCtrlOpt.idf | 229 +- testfiles/RadLoTempHydrCtrlOpt2.idf | 228 +- testfiles/RadLoTempHydrCtrlOpt3.idf | 342 +- testfiles/RadLoTempHydrHeatCool.idf | 229 +- testfiles/RadLoTempHydrHeatCool2D.idf | 153 +- testfiles/RadLoTempHydrHeatCoolDry.idf | 152 +- testfiles/RadLoTempHydrHeatCoolDryCondFD.idf | 152 +- testfiles/RadLoTempHydrHeatCoolMultiZone.idf | 139 +- testfiles/RadLoTempHydrISOPipeHT.idf | 234 +- testfiles/RadLoTempHydrInterMulti.idf | 124 +- testfiles/RadLoTempHydrMulti10.idf | 94 +- testfiles/RadLoTempHydrTermReheat.idf | 152 +- ...dgFullServiceRestaurantNew2004_Chicago.idf | 24 +- testfiles/RefBldgHospitalNew2004_Chicago.idf | 567 +- .../RefBldgLargeHotelNew2004_Chicago.idf | 243 +- ...LargeOfficeNew2004_Chicago-ReturnReset.idf | 178 +- .../RefBldgLargeOfficeNew2004_Chicago.idf | 178 +- .../RefBldgMediumOfficeNew2004_Chicago.idf | 173 +- ...diumOfficeNew2004_Chicago_JSON_Outputs.idf | 173 +- ...iumOfficeNew2004_Chicago_OutputControl.idf | 250 +- ...RefBldgMidriseApartmentNew2004_Chicago.idf | 261 +- .../RefBldgOutPatientNew2004_Chicago.idf | 1125 +- .../RefBldgPrimarySchoolNew2004_Chicago.idf | 246 +- ...gQuickServiceRestaurantNew2004_Chicago.idf | 24 +- .../RefBldgSecondarySchoolNew2004_Chicago.idf | 462 +- .../RefBldgSmallHotelNew2004_Chicago.idf | 677 +- .../RefBldgSmallOfficeNew2004_Chicago.idf | 58 +- ...efBldgStand-aloneRetailNew2004_Chicago.idf | 51 +- testfiles/RefBldgStripMallNew2004_Chicago.idf | 90 +- .../RefBldgSuperMarketNew2004_Chicago.idf | 56 +- testfiles/RefBldgWarehouseNew2004_Chicago.idf | 29 +- testfiles/RefMedOffVAVAllDefVRP.idf | 174 +- testfiles/ReflectiveAdjacentBuilding.idf | 20 + testfiles/RefrigeratedWarehouse.idf | 122 +- testfiles/ReliefIndEvapCoolerRTUoffice.idf | 120 + testfiles/ReportDaylightFactors.idf | 173 +- .../ReportHeatEmission_RefFSRestaurant.idf | 24 +- testfiles/RetailPackagedTESCoil.idf | 51 +- testfiles/RoomAirflowNetwork.idf | 34 + testfiles/SeriesActiveBranch.idf | 40 + testfiles/ShopWithPVandBattery.idf | 45 +- testfiles/ShopWithPVandLiIonBattery.idf | 53 +- testfiles/ShopWithPVandStorage.idf | 45 +- testfiles/ShopWithSimplePVT.idf | 45 +- testfiles/SingleFamilyHouse_HP_Slab.idf | 1489 +- ...leFamilyHouse_HP_Slab_Dehumidification.idf | 1498 +- ...FamilyHouse_TwoSpeed_CutoutTemperature.idf | 25 + ...gleFamilyHouse_TwoSpeed_ZoneAirBalance.idf | 25 + testfiles/SmOffPSZ-MultiModeDX.idf | 41 +- testfiles/SmOffPSZ.idf | 41 +- testfiles/SmOffPSZ_OnOffStagedControl.idf | 41 +- testfiles/SmallOffice_CentralDOAS.idf | 58 +- testfiles/SolarShadingTest.idf | 83 +- testfiles/SolarShadingTestGPU.idf | 70 + .../SolarShadingTest_DisableSelfShading.idf | 70 + ...larShadingTest_DisableSelfShadingGroup.idf | 70 + .../SolarShadingTest_ExternalFraction.idf | 70 + .../SolarShadingTest_ImportedShading.idf | 70 + testfiles/SolarShadingTest_SQL.idf | 70 + ...tralAngularOpticalProperties_TableData.idf | 34 + .../StackedZonesWithInterzoneIRTLayers.idf | 36 +- testfiles/SteamSystemAutoSize.idf | 44 + testfiles/StormWindow.idf | 20 + testfiles/StripMallZoneEvapCooler.idf | 90 +- .../StripMallZoneEvapCoolerAutosized.idf | 90 +- ...SuperMarketDetailed_DesuperHeatingCoil.idf | 24 +- testfiles/SuperMarket_DesuperHeatingCoil.idf | 24 +- .../SuperMarket_DetailedEvapCondenser.idf | 24 +- .../SuperMarket_DetailedWaterCondenser.idf | 24 +- testfiles/SuperMarket_EvapCondenser.idf | 24 +- testfiles/SuperMarket_SharedEvapCondenser.idf | 24 +- testfiles/SuperMarket_WaterCondenser.idf | 24 +- testfiles/Supermarket.idf | 24 +- testfiles/SupermarketSecondary.idf | 24 +- .../SupermarketSubCoolersVariableSuction.idf | 24 +- testfiles/SupermarketTranscriticalCO2.idf | 24 +- .../SupermarketTwoStageFlashIntercooler.idf | 24 +- ...upermarketTwoStageShellCoilIntercooler.idf | 24 +- testfiles/Supermarket_CascadeCond.idf | 24 +- testfiles/Supermarket_Detailed.idf | 24 +- testfiles/Supermarket_SharedAirCondenser.idf | 24 +- testfiles/SupplyPlenumVAV.idf | 31 + testfiles/SurfaceGroundHeatExchanger.idf | 42 +- ...atSourceTerm_RefBldgSmallOfficeNew2004.idf | 58 +- testfiles/SurfacePropTest_SurfLWR.idf | 59 +- testfiles/SurfaceTest.idf | 59 +- testfiles/SurfaceZonePropTest_LocalEnv.idf | 59 +- testfiles/TRHConstFlowChillerOneBranch.idf | 20 + testfiles/TRHEvapCoolerOAStaged.idf | 20 + testfiles/TRHEvapCoolerOAStagedWetCoil.idf | 20 + testfiles/TermRHDXSystem.idf | 20 + testfiles/TermRHGasElecCoils.idf | 20 + testfiles/TermReheat.idf | 20 + testfiles/TermReheatPri-SecLoop.idf | 20 + testfiles/TermReheatScheduledPump.idf | 20 + testfiles/TermReheatSurfTC.idf | 20 + testfiles/TermReheatZoneExh.idf | 20 + testfiles/TermRhDualSetpointWithDB.idf | 20 + testfiles/TermRhGenericOAHeatRecMinExh.idf | 20 + testfiles/TermRhGenericOAHeatRecPreheat.idf | 20 + testfiles/TermRhSingleHeatCoolNoDB.idf | 20 + testfiles/ThermalChimneyTest.idf | 26 + testfiles/ThermochromicWindow.idf | 58 +- testfiles/TransparentInsulationSimple.idf | 6 + testfiles/TranspiredCollectors.idf | 106 +- testfiles/TwoWayCommonPipe_Pri-Sec.idf | 40 + testfiles/UnitHeater.idf | 20 + testfiles/UnitHeaterAuto.idf | 20 + testfiles/UnitHeaterGasElec.idf | 20 + testfiles/UnitVent5Zone.idf | 40 + ...e-MinOAOn-Annual-SelectMonths-Detailed.idf | 40 + testfiles/UnitVent5ZoneAuto.idf | 40 + testfiles/UnitVent5ZoneFixedOANoCoilOpt.idf | 40 + .../UnitaryHybridAC_DedicatedOutsideAir.idf | 6 + .../UnitarySystem_5ZoneWaterLoopHeatPump.idf | 40 + testfiles/UnitarySystem_DXCoilSystemAuto.idf | 20 + ...arySystem_FurnaceWithDXSystemRHcontrol.idf | 20 + testfiles/UnitarySystem_HeatPumpAuto.idf | 20 + ...itarySystem_MultiSpeedCoils_SingleMode.idf | 20 + testfiles/UnitarySystem_MultiSpeedDX.idf | 40 + testfiles/UnitarySystem_SingleSpeedDX.idf | 40 + testfiles/UnitarySystem_SubcoolReheatDX.idf | 40 + testfiles/UnitarySystem_TwoSpeedDX.idf | 40 + testfiles/UnitarySystem_TwoStageDX.idf | 40 + ...rySystem_TwoStageDXWithHumidityControl.idf | 40 + testfiles/UnitarySystem_VSCoolingCoil.idf | 20 + ...System_VSHeatPumpWaterToAirEquationFit.idf | 40 + ...nitarySystem_WaterCoils_wMultiSpeedFan.idf | 20 + testfiles/UserDefinedRoomAirPatterns.idf | 397 +- .../UserInputViewFactorFile-LshapedZone.idf | 20 + testfiles/VAVSingleDuctConstFlowBoiler.idf | 20 + testfiles/VAVSingleDuctReheat.idf | 20 + testfiles/VAVSingleDuctReheatBaseboard.idf | 20 + testfiles/VAVSingleDuctReheatNoReheat.idf | 20 + testfiles/VAVSingleDuctReheat_DualMax.idf | 20 + ...VSingleDuctReheat_MaxSAT_ReverseActing.idf | 20 + testfiles/VAVSingleDuctVarFlowBoiler.idf | 20 + testfiles/VSDXCoilSystemAuto.idf | 20 + testfiles/VSHeatPumpWaterHeater.idf | 40 + testfiles/VSHeatPumpWaterToAirEquationFit.idf | 40 + .../VSHeatPumpWaterToAirWithRHControl.idf | 40 + testfiles/VariableRefrigerantFlow_5Zone.idf | 74 +- ...VariableRefrigerantFlow_5Zone_wAirloop.idf | 40 + ...riableRefrigerantFlow_FluidTCtrl_5Zone.idf | 40 + ...bleRefrigerantFlow_FluidTCtrl_HR_5Zone.idf | 40 + ...erantFlow_FluidTCtrl_wSuppHeater_5Zone.idf | 40 + ...iableRefrigerantFlow_wSuppHeater_5Zone.idf | 40 + testfiles/VaryingLocationAndOrientation.idf | 6 + testfiles/VentilatedSlab.idf | 46 +- testfiles/VentilatedSlab_SeriesSlabs.idf | 46 +- testfiles/VentilationSimpleTest.idf | 54 + testfiles/WCE_Diffuse_Shade.idf | 6 + testfiles/WCE_DoubleClear_BSDF.idf | 6 + testfiles/WCE_Interior_VB_-45_deg.idf | 6 + testfiles/WWHPSimpleAuto.idf | 68 +- testfiles/WaterSideEconomizer_Integrated.idf | 40 + .../WaterSideEconomizer_NonIntegrated.idf | 40 + testfiles/WindACAirtoAir.idf | 20 + testfiles/WindACAuto.idf | 20 + testfiles/WindACRHControl.idf | 29 +- testfiles/WindowTests.idf | 60 + testfiles/WindowTestsSimple.idf | 54 + testfiles/ZoneCoupledGroundHTBasement.idf | 11 + testfiles/ZoneCoupledGroundHTSlabInGrade.idf | 6 + testfiles/ZoneCoupledGroundHTSlabOnGrade.idf | 6 + testfiles/ZoneCoupledKivaBasement.idf | 11 + ...eCoupledKivaBasementAdaptiveConvection.idf | 11 + testfiles/ZoneCoupledKivaConvection.idf | 20 + ...upledKivaConvectionAdaptiveSmallOffice.idf | 58 +- .../ZoneCoupledKivaRefBldgMediumOffice.idf | 173 +- ...oneCoupledKivaRefBldgMediumOfficeNoClg.idf | 173 +- testfiles/ZoneCoupledKivaSlab.idf | 6 + testfiles/ZoneCoupledKivaWalkoutBasement.idf | 21 + testfiles/ZoneSysAvailManager.idf | 172 +- testfiles/ZoneVSWSHP_wDOAS.idf | 6 + testfiles/ZoneWSHP_wDOAS.idf | 174 +- testfiles/_1ZoneUncontrolled_Feb29.idf | 6 + testfiles/_1ZoneUncontrolled_SineOSC.idf | 6 + testfiles/_1ZoneUncontrolled_customrange.idf | 6 + testfiles/_1Zone_Heavy_AdiabaticX2.idf | 12 + testfiles/_1Zone_Heavy_MassX2.idf | 13 +- testfiles/_1Zone_Heavy_SelfRef.idf | 11 + testfiles/_1a-Long0.0.idf | 7 + testfiles/_5ZoneAirCooled_LeapYear_annual.idf | 40 + testfiles/_5ZoneAirCooled_annual.idf | 40 + testfiles/_5ZoneEvapCooled.idf | 40 + testfiles/_AllOffOpScheme.idf | 20 + testfiles/_CTFTestsPart1.idf | 60 + testfiles/_CTFTestsPart2.idf | 54 + testfiles/_ConvCoefftest.idf | 6 + testfiles/_CoolingTowerDewPointRangeOp.idf | 40 + testfiles/_CoolingTowerWithDPDeltaTempOp.idf | 40 + testfiles/_DOASDXCOIL_wUserSHRMethod.idf | 40 + ...andVentilationFixedRateAndHighPriority.idf | 40 + ...ntilationReductionRatioAndHighPriority.idf | 40 + ...entilationReductionRatioAndLowPriority.idf | 40 + ...lDamperMultizoneAverageSetPointManager.idf | 20 + testfiles/_ElectricREformulatedEIRChiller.idf | 20 + testfiles/_ExternalInterface-actuator.idf | 20 + ...rface-functionalmockupunit-to-actuator.idf | 20 + ...rface-functionalmockupunit-to-schedule.idf | 9 +- ...rface-functionalmockupunit-to-variable.idf | 20 + testfiles/_ExternalInterface-schedule.idf | 39 +- testfiles/_ExternalInterface-variable.idf | 20 + testfiles/_FanCoilHybridVentAFN.idf | 34 + testfiles/_FollowSysNodeTemp.idf | 20 + testfiles/_FuelCellTest200.idf | 1 + .../_HybridVentilationControlGlobalAN.idf | 34 + .../_HybridVentilationControl_MinTime.idf | 34 + testfiles/_MaterialTest.idf | 108 + testfiles/_MicroCHPTest301.idf | 1 + testfiles/_MultiSpeedACElecFurnace.idf | 20 + testfiles/_PurchAirWindowBlind2.idf | 20 + testfiles/_PurchAirWindowBlind3.idf | 20 + testfiles/_PurchAirWindowBlind4.idf | 20 + testfiles/_SingleZoneTestCTFTwoDD.idf | 6 + testfiles/_SingleZoneTestCondFDTwoDD.idf | 6 + testfiles/_SmallOffice_Dulles.idf | 36 +- ...VAVSingleDuctConstFlowBoiler_otherfuel.idf | 20 + testfiles/gasAbsorptionChillerHeater.idf | 20 + 717 files changed, 62613 insertions(+), 24211 deletions(-) diff --git a/performance_tests/15zonePSZ.idf b/performance_tests/15zonePSZ.idf index 2efd37fa0e3..52a9d689a49 100644 --- a/performance_tests/15zonePSZ.idf +++ b/performance_tests/15zonePSZ.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 15 zone PSZ, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2051,6 +2065,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2067,6 +2082,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2098,6 +2114,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2114,6 +2131,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2148,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2165,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2201,7 +2221,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2351,7 +2372,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2442,6 +2468,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2473,6 +2500,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2489,6 +2517,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2534,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2521,6 +2551,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2537,6 +2568,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2592,7 +2624,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2742,7 +2775,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -2833,6 +2871,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2849,6 +2888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2865,6 +2905,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2881,6 +2922,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2912,6 +2954,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2971,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2983,7 +3027,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3133,7 +3178,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -3224,6 +3274,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3255,6 +3306,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3271,6 +3323,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3287,6 +3340,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3303,6 +3357,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3319,6 +3374,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3374,7 +3430,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -3524,7 +3581,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -3615,6 +3677,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3631,6 +3694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3662,6 +3726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3678,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3694,6 +3760,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3710,6 +3777,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3765,7 +3833,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -3915,7 +3984,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -4006,6 +4080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4114,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4069,6 +4146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4085,6 +4163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4101,6 +4180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4156,7 +4236,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -4306,7 +4387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -4397,6 +4483,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4413,6 +4500,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4429,6 +4517,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4445,6 +4534,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4476,6 +4566,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4492,6 +4583,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4547,7 +4639,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -4697,7 +4790,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -4788,6 +4886,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4804,6 +4903,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4820,6 +4920,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4851,6 +4952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4867,6 +4969,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4883,6 +4986,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4938,7 +5042,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -5088,7 +5193,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -5179,6 +5289,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5195,6 +5306,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5226,6 +5338,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5242,6 +5355,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5258,6 +5372,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5274,6 +5389,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5329,7 +5445,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -5479,7 +5596,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -5570,6 +5692,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5586,6 +5709,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5602,6 +5726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5633,6 +5758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5649,6 +5775,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5665,6 +5792,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5720,7 +5848,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -5870,7 +5999,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -5961,6 +6095,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5977,6 +6112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5993,6 +6129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6009,6 +6146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6040,6 +6178,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6056,6 +6195,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6111,7 +6251,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -6261,7 +6402,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -6352,6 +6498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6368,6 +6515,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6384,6 +6532,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6400,6 +6549,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6416,6 +6566,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6432,6 +6583,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6448,6 +6600,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6464,6 +6617,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6479,7 +6633,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -6629,7 +6784,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -6720,6 +6880,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6736,6 +6897,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6752,6 +6914,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6768,6 +6931,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6784,6 +6948,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6800,6 +6965,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6815,7 +6981,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -6965,7 +7132,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -7056,6 +7228,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7072,6 +7245,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7088,6 +7262,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7104,6 +7279,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7120,6 +7296,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7136,6 +7313,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7152,6 +7330,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7168,6 +7347,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7183,7 +7363,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -7333,7 +7514,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -11956,7 +12142,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -12049,7 +12235,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -12151,9 +12337,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -12189,17 +12375,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/15zonePTAC.idf b/performance_tests/15zonePTAC.idf index b2ff5857059..e2715494bde 100644 --- a/performance_tests/15zonePTAC.idf +++ b/performance_tests/15zonePTAC.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 15 zone PTAC, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2156,6 +2170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2172,6 +2187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2203,6 +2219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2251,6 +2270,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2306,7 +2326,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2456,7 +2477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2652,6 +2678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2683,6 +2710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2699,6 +2727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2778,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2802,7 +2834,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2952,7 +2985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -3148,6 +3186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3164,6 +3203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3180,6 +3220,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3196,6 +3237,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3227,6 +3269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3243,6 +3286,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3298,7 +3342,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3448,7 +3493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -3644,6 +3694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3675,6 +3726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3691,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3707,6 +3760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3723,6 +3777,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3739,6 +3794,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3794,7 +3850,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -3944,7 +4001,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -4140,6 +4202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4156,6 +4219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4187,6 +4251,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4203,6 +4268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4219,6 +4285,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4235,6 +4302,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4290,7 +4358,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -4440,7 +4509,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -4636,6 +4710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4652,6 +4727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4668,6 +4744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4699,6 +4776,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4715,6 +4793,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4731,6 +4810,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4786,7 +4866,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -4936,7 +5017,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -5132,6 +5218,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5148,6 +5235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5164,6 +5252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5180,6 +5269,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5211,6 +5301,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5227,6 +5318,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5282,7 +5374,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -5432,7 +5525,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -5628,6 +5726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5644,6 +5743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5660,6 +5760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5691,6 +5792,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5707,6 +5809,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5723,6 +5826,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5778,7 +5882,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -5928,7 +6033,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -6124,6 +6234,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6140,6 +6251,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6171,6 +6283,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6187,6 +6300,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6203,6 +6317,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6219,6 +6334,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6274,7 +6390,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -6424,7 +6541,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -6620,6 +6742,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6636,6 +6759,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6652,6 +6776,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6683,6 +6808,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6699,6 +6825,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6715,6 +6842,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6770,7 +6898,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -6920,7 +7049,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -7116,6 +7250,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7132,6 +7267,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7148,6 +7284,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7164,6 +7301,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7195,6 +7333,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7211,6 +7350,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7266,7 +7406,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -7416,7 +7557,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -7612,6 +7758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7628,6 +7775,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7644,6 +7792,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7660,6 +7809,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7676,6 +7826,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7692,6 +7843,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7708,6 +7860,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7724,6 +7877,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7739,7 +7893,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -7889,7 +8044,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -8085,6 +8245,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8101,6 +8262,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8117,6 +8279,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8133,6 +8296,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8149,6 +8313,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8165,6 +8330,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8180,7 +8346,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -8330,7 +8497,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -8526,6 +8698,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8542,6 +8715,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8558,6 +8732,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8574,6 +8749,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8590,6 +8766,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8606,6 +8783,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8622,6 +8800,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8638,6 +8817,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8653,7 +8833,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -8803,7 +8984,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -9656,7 +9842,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -9749,7 +9935,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -9851,9 +10037,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -9889,17 +10075,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/15zonePVAV.idf b/performance_tests/15zonePVAV.idf index 2364d014d0b..56d1d3246ee 100644 --- a/performance_tests/15zonePVAV.idf +++ b/performance_tests/15zonePVAV.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 15 zone PVAV, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2082,6 +2097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2503,6 +2530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2910,6 +2950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2926,6 +2967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3315,6 +3366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4112,6 +4187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4128,6 +4204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,6 +4236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4605,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4622,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4639,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4924,6 +5023,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4940,6 +5040,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5330,6 +5441,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5361,6 +5473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5377,6 +5490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5752,6 +5876,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5783,6 +5908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,6 +6294,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6174,6 +6311,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6548,6 +6695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6712,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6580,6 +6729,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6596,6 +6746,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6612,6 +6763,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6628,6 +6780,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6644,6 +6797,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6659,7 +6813,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -6809,7 +6964,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -6915,6 +7075,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6931,6 +7092,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6947,6 +7109,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6963,6 +7126,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6979,6 +7143,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6995,6 +7160,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7010,7 +7176,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -7160,7 +7327,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -7266,6 +7438,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7282,6 +7455,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7298,6 +7472,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7314,6 +7489,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7330,6 +7506,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7346,6 +7523,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7540,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7557,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7393,7 +7573,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -7543,7 +7724,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -8689,7 +8875,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -8782,7 +8968,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -8884,9 +9070,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -8922,17 +9108,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/15zonevav.idf b/performance_tests/15zonevav.idf index f75b5da38ec..37c6f46e52c 100644 --- a/performance_tests/15zonevav.idf +++ b/performance_tests/15zonevav.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 15 zone vav, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2082,6 +2097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2503,6 +2530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2910,6 +2950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2926,6 +2967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3315,6 +3366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4112,6 +4187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4128,6 +4204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,6 +4236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4605,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4622,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4639,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4924,6 +5023,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4940,6 +5040,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5330,6 +5441,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5361,6 +5473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5377,6 +5490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5752,6 +5876,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5783,6 +5908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,6 +6294,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6174,6 +6311,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6548,6 +6695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6712,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6580,6 +6729,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6596,6 +6746,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6612,6 +6763,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6628,6 +6780,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6644,6 +6797,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6659,7 +6813,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -6809,7 +6964,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -6915,6 +7075,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6931,6 +7092,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6947,6 +7109,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6963,6 +7126,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6979,6 +7143,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6995,6 +7160,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7010,7 +7176,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -7160,7 +7327,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -7266,6 +7438,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7282,6 +7455,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7298,6 +7472,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7314,6 +7489,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7330,6 +7506,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7346,6 +7523,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7540,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7557,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7393,7 +7573,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -7543,7 +7724,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -9094,7 +9280,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -9187,7 +9373,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -9289,9 +9475,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -9327,17 +9513,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/15zonevav_no_reports.idf b/performance_tests/15zonevav_no_reports.idf index d451459ae88..e1178c11a66 100644 --- a/performance_tests/15zonevav_no_reports.idf +++ b/performance_tests/15zonevav_no_reports.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 15 zone vav, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2082,6 +2097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2503,6 +2530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2910,6 +2950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2926,6 +2967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3315,6 +3366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4112,6 +4187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4128,6 +4204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,6 +4236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4605,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4622,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4639,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4924,6 +5023,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4940,6 +5040,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5330,6 +5441,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5361,6 +5473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5377,6 +5490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5752,6 +5876,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5783,6 +5908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,6 +6294,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6174,6 +6311,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6548,6 +6695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6712,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6580,6 +6729,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6596,6 +6746,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6612,6 +6763,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6628,6 +6780,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6644,6 +6797,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6659,7 +6813,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -6809,7 +6964,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -6915,6 +7075,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6931,6 +7092,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6947,6 +7109,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6963,6 +7126,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6979,6 +7143,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6995,6 +7160,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7010,7 +7176,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -7160,7 +7327,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -7266,6 +7438,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7282,6 +7455,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7298,6 +7472,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7314,6 +7489,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7330,6 +7506,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7346,6 +7523,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7540,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7557,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7393,7 +7573,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -7543,7 +7724,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -8908,7 +9094,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} diff --git a/performance_tests/30zonePSZ.idf b/performance_tests/30zonePSZ.idf index 3144490ded9..362656ead3e 100644 --- a/performance_tests/30zonePSZ.idf +++ b/performance_tests/30zonePSZ.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 30 zone PSZ, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2051,6 +2065,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2082,6 +2097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2098,6 +2114,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2114,6 +2131,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2148,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2165,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2201,7 +2221,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2351,7 +2372,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2442,6 +2468,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2485,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2489,6 +2517,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2534,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2521,6 +2551,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2537,6 +2568,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2592,7 +2624,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2742,7 +2775,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2833,6 +2871,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2849,6 +2888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2880,6 +2920,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2937,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2954,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2971,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2983,7 +3027,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3133,7 +3178,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3224,6 +3274,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3255,6 +3306,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3271,6 +3323,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3287,6 +3340,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3303,6 +3357,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3319,6 +3374,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3374,7 +3430,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -3524,7 +3581,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -3615,6 +3677,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3646,6 +3709,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3662,6 +3726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3678,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3694,6 +3760,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3710,6 +3777,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3765,7 +3833,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -3915,7 +3984,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4006,6 +4080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4114,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4054,6 +4131,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4085,6 +4163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4101,6 +4180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4156,7 +4236,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -4306,7 +4387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -4397,6 +4483,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4413,6 +4500,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4429,6 +4517,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4445,6 +4534,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4476,6 +4566,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4492,6 +4583,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4547,7 +4639,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -4697,7 +4790,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -4788,6 +4886,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4819,6 +4918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4835,6 +4935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4851,6 +4952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4867,6 +4969,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4883,6 +4986,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4938,7 +5042,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -5088,7 +5193,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -5179,6 +5289,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5210,6 +5321,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5226,6 +5338,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5242,6 +5355,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5258,6 +5372,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5274,6 +5389,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5329,7 +5445,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -5479,7 +5596,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -5570,6 +5692,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5586,6 +5709,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5617,6 +5741,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5633,6 +5758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5649,6 +5775,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5665,6 +5792,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5720,7 +5848,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -5870,7 +5999,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -5961,6 +6095,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5977,6 +6112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6008,6 +6144,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6024,6 +6161,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6040,6 +6178,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6056,6 +6195,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6111,7 +6251,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -6261,7 +6402,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -6352,6 +6498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6368,6 +6515,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6384,6 +6532,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6415,6 +6564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6431,6 +6581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6447,6 +6598,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6502,7 +6654,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -6652,7 +6805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -6743,6 +6901,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6759,6 +6918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6775,6 +6935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6806,6 +6967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6822,6 +6984,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6838,6 +7001,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6893,7 +7057,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -7043,7 +7208,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -7134,6 +7304,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7150,6 +7321,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7166,6 +7338,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7182,6 +7355,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7213,6 +7387,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7229,6 +7404,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7284,7 +7460,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -7434,7 +7611,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -7525,6 +7707,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7541,6 +7724,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7557,6 +7741,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7573,6 +7758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7604,6 +7790,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7620,6 +7807,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7675,7 +7863,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -7825,7 +8014,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -7916,6 +8110,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7932,6 +8127,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7948,6 +8144,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7979,6 +8176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7995,6 +8193,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8011,6 +8210,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8066,7 +8266,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -8216,7 +8417,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -8307,6 +8513,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8323,6 +8530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8339,6 +8547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8370,6 +8579,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8386,6 +8596,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8402,6 +8613,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8457,7 +8669,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -8607,7 +8820,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -8698,6 +8916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8714,6 +8933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8745,6 +8965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8761,6 +8982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8777,6 +8999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8793,6 +9016,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8848,7 +9072,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -8998,7 +9223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -9089,6 +9319,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9105,6 +9336,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9136,6 +9368,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9152,6 +9385,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9168,6 +9402,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9184,6 +9419,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9239,7 +9475,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -9389,7 +9626,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -9480,6 +9722,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9496,6 +9739,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9512,6 +9756,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9543,6 +9788,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9559,6 +9805,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9575,6 +9822,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9630,7 +9878,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -9780,7 +10029,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -9871,6 +10125,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9887,6 +10142,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9903,6 +10159,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9934,6 +10191,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9950,6 +10208,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9966,6 +10225,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10021,7 +10281,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -10171,7 +10432,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -10262,6 +10528,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10278,6 +10545,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10294,6 +10562,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10310,6 +10579,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10341,6 +10611,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10357,6 +10628,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10412,7 +10684,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -10562,7 +10835,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -10653,6 +10931,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10669,6 +10948,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10685,6 +10965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10701,6 +10982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10732,6 +11014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10748,6 +11031,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10803,7 +11087,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -10953,7 +11238,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -11044,6 +11334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11060,6 +11351,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11076,6 +11368,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11092,6 +11385,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11108,6 +11402,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11124,6 +11419,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11140,6 +11436,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11156,6 +11453,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11171,7 +11469,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -11321,7 +11620,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -11412,6 +11716,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11428,6 +11733,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11444,6 +11750,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11460,6 +11767,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11476,6 +11784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11492,6 +11801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11508,6 +11818,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11524,6 +11835,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11539,7 +11851,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -11689,7 +12002,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -11780,6 +12098,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11796,6 +12115,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11812,6 +12132,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11828,6 +12149,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11844,6 +12166,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11860,6 +12183,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11875,7 +12199,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -12025,7 +12350,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -12116,6 +12446,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12132,6 +12463,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12148,6 +12480,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12164,6 +12497,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12180,6 +12514,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12196,6 +12531,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12211,7 +12547,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -12361,7 +12698,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -12452,6 +12794,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12468,6 +12811,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12484,6 +12828,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12500,6 +12845,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12516,6 +12862,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12532,6 +12879,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12548,6 +12896,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12564,6 +12913,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12579,7 +12929,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -12729,7 +13080,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -12820,6 +13176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12836,6 +13193,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12852,6 +13210,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12868,6 +13227,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12884,6 +13244,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12900,6 +13261,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12916,6 +13278,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12932,6 +13295,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12947,7 +13311,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -13097,7 +13462,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -21995,7 +22365,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -22088,7 +22458,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -22190,9 +22560,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -22228,17 +22598,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/30zonePTAC.idf b/performance_tests/30zonePTAC.idf index dd12589d480..2009d2dc7aa 100644 --- a/performance_tests/30zonePTAC.idf +++ b/performance_tests/30zonePTAC.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 30 zone PTAC, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2156,6 +2170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2187,6 +2202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2253,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2251,6 +2270,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2306,7 +2326,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2456,7 +2477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2652,6 +2678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2668,6 +2695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2778,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2802,7 +2834,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2952,7 +2985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -3148,6 +3186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3164,6 +3203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3195,6 +3235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3211,6 +3252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3227,6 +3269,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3243,6 +3286,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3298,7 +3342,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3448,7 +3493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3644,6 +3694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3675,6 +3726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3691,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3707,6 +3760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3723,6 +3777,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3739,6 +3794,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3794,7 +3850,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -3944,7 +4001,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -4140,6 +4202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4171,6 +4234,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4187,6 +4251,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4203,6 +4268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4219,6 +4285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4235,6 +4302,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4290,7 +4358,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -4440,7 +4509,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4636,6 +4710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4652,6 +4727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4668,6 +4744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4684,6 +4761,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4715,6 +4793,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4731,6 +4810,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4786,7 +4866,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -4936,7 +5017,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -5132,6 +5218,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5148,6 +5235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5164,6 +5252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5180,6 +5269,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5211,6 +5301,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5227,6 +5318,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5282,7 +5374,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -5432,7 +5525,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -5628,6 +5726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5659,6 +5758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5675,6 +5775,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5691,6 +5792,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5707,6 +5809,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5723,6 +5826,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5778,7 +5882,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -5928,7 +6033,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -6124,6 +6234,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6155,6 +6266,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6171,6 +6283,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6187,6 +6300,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6203,6 +6317,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6219,6 +6334,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6274,7 +6390,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -6424,7 +6541,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -6620,6 +6742,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6636,6 +6759,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6667,6 +6791,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6683,6 +6808,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6699,6 +6825,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6715,6 +6842,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6770,7 +6898,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -6920,7 +7049,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -7116,6 +7250,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7132,6 +7267,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7163,6 +7299,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7179,6 +7316,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7195,6 +7333,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7211,6 +7350,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7266,7 +7406,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -7416,7 +7557,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -7612,6 +7758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7628,6 +7775,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7644,6 +7792,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7675,6 +7824,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7691,6 +7841,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7707,6 +7858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7762,7 +7914,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -7912,7 +8065,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -8108,6 +8266,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8124,6 +8283,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8140,6 +8300,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8171,6 +8332,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8187,6 +8349,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8203,6 +8366,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8258,7 +8422,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -8408,7 +8573,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -8604,6 +8774,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8620,6 +8791,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8636,6 +8808,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8652,6 +8825,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8683,6 +8857,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8699,6 +8874,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8754,7 +8930,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -8904,7 +9081,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -9100,6 +9282,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9116,6 +9299,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9132,6 +9316,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9148,6 +9333,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9179,6 +9365,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9195,6 +9382,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9250,7 +9438,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -9400,7 +9589,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -9596,6 +9790,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9612,6 +9807,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9628,6 +9824,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9659,6 +9856,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9675,6 +9873,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9691,6 +9890,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9746,7 +9946,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -9896,7 +10097,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -10092,6 +10298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10108,6 +10315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10124,6 +10332,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10155,6 +10364,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10171,6 +10381,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10187,6 +10398,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10242,7 +10454,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -10392,7 +10605,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -10588,6 +10806,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10604,6 +10823,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10635,6 +10855,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10651,6 +10872,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10667,6 +10889,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10683,6 +10906,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10738,7 +10962,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -10888,7 +11113,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -11084,6 +11314,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11100,6 +11331,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11131,6 +11363,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11147,6 +11380,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11163,6 +11397,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11179,6 +11414,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11234,7 +11470,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -11384,7 +11621,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -11580,6 +11822,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11596,6 +11839,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11612,6 +11856,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11643,6 +11888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11659,6 +11905,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11675,6 +11922,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11730,7 +11978,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -11880,7 +12129,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -12076,6 +12330,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12092,6 +12347,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12108,6 +12364,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12139,6 +12396,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12155,6 +12413,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12171,6 +12430,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12226,7 +12486,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -12376,7 +12637,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -12572,6 +12838,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12588,6 +12855,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12604,6 +12872,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12620,6 +12889,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12651,6 +12921,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12667,6 +12938,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12722,7 +12994,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -12872,7 +13145,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -13068,6 +13346,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13084,6 +13363,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13100,6 +13380,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13116,6 +13397,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13147,6 +13429,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13163,6 +13446,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13218,7 +13502,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -13368,7 +13653,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -13564,6 +13854,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13580,6 +13871,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13596,6 +13888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13612,6 +13905,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13628,6 +13922,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13644,6 +13939,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13660,6 +13956,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13676,6 +13973,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13691,7 +13989,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -13841,7 +14140,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -14037,6 +14341,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14053,6 +14358,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14069,6 +14375,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14085,6 +14392,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14101,6 +14409,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14117,6 +14426,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14133,6 +14443,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14149,6 +14460,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14164,7 +14476,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -14314,7 +14627,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -14510,6 +14828,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14526,6 +14845,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14542,6 +14862,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14558,6 +14879,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14574,6 +14896,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14590,6 +14913,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14605,7 +14929,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -14755,7 +15080,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -14951,6 +15281,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14967,6 +15298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14983,6 +15315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14999,6 +15332,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15015,6 +15349,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15031,6 +15366,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15046,7 +15382,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -15196,7 +15533,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -15392,6 +15734,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15408,6 +15751,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15424,6 +15768,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15440,6 +15785,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15456,6 +15802,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15472,6 +15819,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15488,6 +15836,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15504,6 +15853,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15519,7 +15869,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -15669,7 +16020,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -15865,6 +16221,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15881,6 +16238,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15897,6 +16255,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15913,6 +16272,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15929,6 +16289,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15945,6 +16306,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15961,6 +16323,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15977,6 +16340,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15992,7 +16356,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -16142,7 +16507,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -17160,7 +17530,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -17253,7 +17623,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -17355,9 +17725,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -17393,17 +17763,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/30zonePVAV.idf b/performance_tests/30zonePVAV.idf index 6abda26330a..12e6d9e74a8 100644 --- a/performance_tests/30zonePVAV.idf +++ b/performance_tests/30zonePVAV.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 30 zone PVAV, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2097,6 +2112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2488,6 +2515,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +2965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3315,6 +3366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3721,6 +3784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4112,6 +4187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4128,6 +4204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4144,6 +4221,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4605,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4622,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4639,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4939,6 +5038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4955,6 +5055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5345,6 +5456,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5361,6 +5473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5377,6 +5490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5767,6 +5891,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5783,6 +5908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6173,6 +6309,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6189,6 +6326,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6548,6 +6695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6712,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6595,6 +6744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6778,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,7 +6834,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -6832,7 +6985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -6938,6 +7096,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6954,6 +7113,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6970,6 +7130,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7001,6 +7162,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7017,6 +7179,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7033,6 +7196,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7088,7 +7252,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -7238,7 +7403,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -7344,6 +7514,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7360,6 +7531,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7376,6 +7548,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7392,6 +7565,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7423,6 +7597,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7614,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7494,7 +7670,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -7644,7 +7821,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -7750,6 +7932,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7766,6 +7949,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7782,6 +7966,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7798,6 +7983,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7829,6 +8015,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +8032,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7900,7 +8088,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -8050,7 +8239,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -8156,6 +8350,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8172,6 +8367,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8188,6 +8384,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8219,6 +8416,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8235,6 +8433,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8251,6 +8450,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8306,7 +8506,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -8456,7 +8657,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -8562,6 +8768,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8578,6 +8785,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8594,6 +8802,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8625,6 +8834,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8641,6 +8851,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8657,6 +8868,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8712,7 +8924,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -8862,7 +9075,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -8968,6 +9186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8984,6 +9203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9015,6 +9235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9031,6 +9252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9047,6 +9269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9063,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9118,7 +9342,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -9268,7 +9493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -9374,6 +9604,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9390,6 +9621,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9421,6 +9653,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9437,6 +9670,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9453,6 +9687,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9469,6 +9704,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9524,7 +9760,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -9674,7 +9911,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -9780,6 +10022,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9796,6 +10039,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9812,6 +10056,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9843,6 +10088,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9859,6 +10105,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9875,6 +10122,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9930,7 +10178,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -10080,7 +10329,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -10186,6 +10440,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10202,6 +10457,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10218,6 +10474,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10249,6 +10506,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10265,6 +10523,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10540,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10336,7 +10596,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -10486,7 +10747,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -10592,6 +10858,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10608,6 +10875,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10624,6 +10892,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10640,6 +10909,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10671,6 +10941,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10687,6 +10958,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10742,7 +11014,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -10892,7 +11165,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -10998,6 +11276,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11014,6 +11293,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11030,6 +11310,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11046,6 +11327,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11077,6 +11359,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11093,6 +11376,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11148,7 +11432,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -11298,7 +11583,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -11404,6 +11694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11420,6 +11711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11436,6 +11728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11452,6 +11745,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11468,6 +11762,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11484,6 +11779,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11500,6 +11796,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11516,6 +11813,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11531,7 +11829,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -11681,7 +11980,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -11787,6 +12091,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11803,6 +12108,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11819,6 +12125,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11835,6 +12142,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11851,6 +12159,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11867,6 +12176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11883,6 +12193,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11899,6 +12210,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11914,7 +12226,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -12064,7 +12377,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -12170,6 +12488,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12186,6 +12505,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12202,6 +12522,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12218,6 +12539,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12234,6 +12556,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12250,6 +12573,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12265,7 +12589,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -12415,7 +12740,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -12521,6 +12851,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12537,6 +12868,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12553,6 +12885,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12569,6 +12902,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12585,6 +12919,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12601,6 +12936,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12616,7 +12952,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -12766,7 +13103,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -12872,6 +13214,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12888,6 +13231,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12904,6 +13248,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12920,6 +13265,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12936,6 +13282,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12952,6 +13299,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12968,6 +13316,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12984,6 +13333,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12999,7 +13349,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -13149,7 +13500,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -13255,6 +13611,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13271,6 +13628,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13287,6 +13645,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13303,6 +13662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13319,6 +13679,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13335,6 +13696,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13351,6 +13713,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13367,6 +13730,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13382,7 +13746,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -13532,7 +13897,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -14873,7 +15243,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -14966,7 +15336,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -15068,9 +15438,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -15106,17 +15476,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/30zonevav.idf b/performance_tests/30zonevav.idf index d2f59d8274d..1417b131535 100644 --- a/performance_tests/30zonevav.idf +++ b/performance_tests/30zonevav.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 30 zone vav, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2097,6 +2112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2488,6 +2515,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +2965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3315,6 +3366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3721,6 +3784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4112,6 +4187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4128,6 +4204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4144,6 +4221,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4605,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4622,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4639,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4939,6 +5038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4955,6 +5055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5345,6 +5456,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5361,6 +5473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5377,6 +5490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5767,6 +5891,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5783,6 +5908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6173,6 +6309,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6189,6 +6326,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6548,6 +6695,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6712,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6595,6 +6744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6778,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,7 +6834,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -6832,7 +6985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -6938,6 +7096,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6954,6 +7113,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6970,6 +7130,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7001,6 +7162,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7017,6 +7179,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7033,6 +7196,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7088,7 +7252,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -7238,7 +7403,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -7344,6 +7514,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7360,6 +7531,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7376,6 +7548,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7392,6 +7565,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7423,6 +7597,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7614,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7494,7 +7670,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -7644,7 +7821,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -7750,6 +7932,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7766,6 +7949,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7782,6 +7966,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7798,6 +7983,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7829,6 +8015,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +8032,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7900,7 +8088,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -8050,7 +8239,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -8156,6 +8350,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8172,6 +8367,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8188,6 +8384,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8219,6 +8416,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8235,6 +8433,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8251,6 +8450,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8306,7 +8506,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -8456,7 +8657,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -8562,6 +8768,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8578,6 +8785,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8594,6 +8802,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8625,6 +8834,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8641,6 +8851,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8657,6 +8868,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8712,7 +8924,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -8862,7 +9075,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -8968,6 +9186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8984,6 +9203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9015,6 +9235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9031,6 +9252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9047,6 +9269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9063,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9118,7 +9342,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -9268,7 +9493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -9374,6 +9604,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9390,6 +9621,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9421,6 +9653,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9437,6 +9670,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9453,6 +9687,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9469,6 +9704,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9524,7 +9760,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -9674,7 +9911,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -9780,6 +10022,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9796,6 +10039,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9812,6 +10056,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9843,6 +10088,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9859,6 +10105,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9875,6 +10122,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9930,7 +10178,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -10080,7 +10329,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -10186,6 +10440,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10202,6 +10457,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10218,6 +10474,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10249,6 +10506,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10265,6 +10523,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10540,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10336,7 +10596,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -10486,7 +10747,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -10592,6 +10858,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10608,6 +10875,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10624,6 +10892,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10640,6 +10909,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10671,6 +10941,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10687,6 +10958,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10742,7 +11014,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -10892,7 +11165,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -10998,6 +11276,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11014,6 +11293,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11030,6 +11310,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11046,6 +11327,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11077,6 +11359,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11093,6 +11376,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11148,7 +11432,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -11298,7 +11583,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -11404,6 +11694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11420,6 +11711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11436,6 +11728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11452,6 +11745,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11468,6 +11762,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11484,6 +11779,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11500,6 +11796,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11516,6 +11813,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11531,7 +11829,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -11681,7 +11980,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -11787,6 +12091,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11803,6 +12108,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11819,6 +12125,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11835,6 +12142,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11851,6 +12159,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11867,6 +12176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11883,6 +12193,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11899,6 +12210,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11914,7 +12226,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -12064,7 +12377,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -12170,6 +12488,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12186,6 +12505,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12202,6 +12522,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12218,6 +12539,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12234,6 +12556,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12250,6 +12573,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12265,7 +12589,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -12415,7 +12740,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -12521,6 +12851,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12537,6 +12868,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12553,6 +12885,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12569,6 +12902,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12585,6 +12919,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12601,6 +12936,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12616,7 +12952,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -12766,7 +13103,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -12872,6 +13214,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12888,6 +13231,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12904,6 +13248,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12920,6 +13265,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12936,6 +13282,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12952,6 +13299,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12968,6 +13316,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12984,6 +13333,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12999,7 +13349,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -13149,7 +13500,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -13255,6 +13611,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13271,6 +13628,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13287,6 +13645,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13303,6 +13662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13319,6 +13679,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13335,6 +13696,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13351,6 +13713,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13367,6 +13730,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13382,7 +13746,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -13532,7 +13897,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -15278,7 +15648,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -15371,7 +15741,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -15473,9 +15843,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -15511,17 +15881,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/45zonePSZ.idf b/performance_tests/45zonePSZ.idf index 25357ba0060..14794a11827 100644 --- a/performance_tests/45zonePSZ.idf +++ b/performance_tests/45zonePSZ.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 45 zone PSZ, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2051,6 +2065,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2082,6 +2097,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2098,6 +2114,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2114,6 +2131,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2148,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2165,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2201,7 +2221,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2351,7 +2372,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2442,6 +2468,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2473,6 +2500,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2489,6 +2517,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2534,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2521,6 +2551,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2537,6 +2568,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2592,7 +2624,8 @@ ZN_1_FLR_3_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_1_Infiltration, !- Name @@ -2742,7 +2775,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_1,!- Name @@ -2833,6 +2871,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2849,6 +2888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2880,6 +2920,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2937,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2954,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2971,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2983,7 +3027,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -3133,7 +3178,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -3224,6 +3274,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3240,6 +3291,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3271,6 +3323,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3287,6 +3340,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3303,6 +3357,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3319,6 +3374,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3374,7 +3430,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3524,7 +3581,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3615,6 +3677,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3631,6 +3694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3662,6 +3726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3678,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3694,6 +3760,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3710,6 +3777,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3765,7 +3833,8 @@ ZN_1_FLR_3_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_2_Infiltration, !- Name @@ -3915,7 +3984,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_2,!- Name @@ -4006,6 +4080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4037,6 +4112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4053,6 +4129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4069,6 +4146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4085,6 +4163,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4101,6 +4180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4156,7 +4236,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -4306,7 +4387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -4397,6 +4483,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4428,6 +4515,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4444,6 +4532,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4460,6 +4549,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4476,6 +4566,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4492,6 +4583,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4547,7 +4639,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -4697,7 +4790,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4788,6 +4886,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4819,6 +4918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4835,6 +4935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4851,6 +4952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4867,6 +4969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4883,6 +4986,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4938,7 +5042,8 @@ ZN_1_FLR_3_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_3_Infiltration, !- Name @@ -5088,7 +5193,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_3,!- Name @@ -5179,6 +5289,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5195,6 +5306,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5211,6 +5323,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5227,6 +5340,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5258,6 +5372,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5274,6 +5389,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5329,7 +5445,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -5479,7 +5596,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -5570,6 +5692,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5586,6 +5709,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5602,6 +5726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5618,6 +5743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5649,6 +5775,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5665,6 +5792,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5720,7 +5848,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -5870,7 +5999,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -5961,6 +6095,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5977,6 +6112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5993,6 +6129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6009,6 +6146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6040,6 +6178,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6056,6 +6195,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6111,7 +6251,8 @@ ZN_1_FLR_3_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_4_Infiltration, !- Name @@ -6261,7 +6402,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_4,!- Name @@ -6352,6 +6498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6383,6 +6530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6399,6 +6547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6415,6 +6564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6431,6 +6581,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6447,6 +6598,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6502,7 +6654,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -6652,7 +6805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -6743,6 +6901,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6774,6 +6933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6790,6 +6950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6806,6 +6967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6822,6 +6984,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6838,6 +7001,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6893,7 +7057,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -7043,7 +7208,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -7134,6 +7304,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7165,6 +7336,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7181,6 +7353,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7197,6 +7370,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7213,6 +7387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7229,6 +7404,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7284,7 +7460,8 @@ ZN_1_FLR_3_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_5_Infiltration, !- Name @@ -7434,7 +7611,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_5,!- Name @@ -7525,6 +7707,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7541,6 +7724,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7572,6 +7756,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7588,6 +7773,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7604,6 +7790,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7620,6 +7807,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7675,7 +7863,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -7825,7 +8014,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -7916,6 +8110,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7932,6 +8127,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7963,6 +8159,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7979,6 +8176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7995,6 +8193,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8011,6 +8210,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8066,7 +8266,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -8216,7 +8417,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -8307,6 +8513,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8323,6 +8530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8354,6 +8562,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8370,6 +8579,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8386,6 +8596,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8402,6 +8613,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8457,7 +8669,8 @@ ZN_1_FLR_3_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_6_Infiltration, !- Name @@ -8607,7 +8820,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_6,!- Name @@ -8698,6 +8916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8714,6 +8933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8730,6 +8950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8761,6 +8982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8777,6 +8999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8793,6 +9016,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8848,7 +9072,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -8998,7 +9223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -9089,6 +9319,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9105,6 +9336,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9121,6 +9353,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9152,6 +9385,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9168,6 +9402,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9184,6 +9419,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9239,7 +9475,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -9389,7 +9626,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -9480,6 +9722,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9496,6 +9739,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9512,6 +9756,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9543,6 +9788,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9559,6 +9805,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9575,6 +9822,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9630,7 +9878,8 @@ ZN_1_FLR_3_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_7_Infiltration, !- Name @@ -9780,7 +10029,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_7,!- Name @@ -9871,6 +10125,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9887,6 +10142,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9903,6 +10159,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9919,6 +10176,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9950,6 +10208,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9966,6 +10225,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10021,7 +10281,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -10171,7 +10432,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -10262,6 +10528,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10278,6 +10545,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10294,6 +10562,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10310,6 +10579,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10341,6 +10611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10357,6 +10628,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10412,7 +10684,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -10562,7 +10835,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -10653,6 +10931,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10669,6 +10948,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10685,6 +10965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10701,6 +10982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10732,6 +11014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10748,6 +11031,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10803,7 +11087,8 @@ ZN_1_FLR_3_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_8_Infiltration, !- Name @@ -10953,7 +11238,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_8,!- Name @@ -11044,6 +11334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11060,6 +11351,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11076,6 +11368,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11107,6 +11400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11123,6 +11417,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11139,6 +11434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11194,7 +11490,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -11344,7 +11641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -11435,6 +11737,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11451,6 +11754,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11467,6 +11771,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11498,6 +11803,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11514,6 +11820,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11530,6 +11837,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11585,7 +11893,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -11735,7 +12044,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -11826,6 +12140,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11842,6 +12157,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11858,6 +12174,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11889,6 +12206,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11905,6 +12223,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11921,6 +12240,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11976,7 +12296,8 @@ ZN_1_FLR_3_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_9_Infiltration, !- Name @@ -12126,7 +12447,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_9,!- Name @@ -12217,6 +12543,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12233,6 +12560,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12264,6 +12592,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12280,6 +12609,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12296,6 +12626,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12312,6 +12643,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12367,7 +12699,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -12517,7 +12850,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -12608,6 +12946,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12624,6 +12963,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12655,6 +12995,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12671,6 +13012,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12687,6 +13029,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12703,6 +13046,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12758,7 +13102,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -12908,7 +13253,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -12999,6 +13349,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13015,6 +13366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13046,6 +13398,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13062,6 +13415,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13078,6 +13432,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13094,6 +13449,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13149,7 +13505,8 @@ ZN_1_FLR_3_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_10_Infiltration, !- Name @@ -13299,7 +13656,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_10, !- Name @@ -13390,6 +13752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13406,6 +13769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13422,6 +13786,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13453,6 +13818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13469,6 +13835,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13485,6 +13852,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13540,7 +13908,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -13690,7 +14059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -13781,6 +14155,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13797,6 +14172,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13813,6 +14189,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13844,6 +14221,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13860,6 +14238,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13876,6 +14255,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13931,7 +14311,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -14081,7 +14462,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -14172,6 +14558,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14188,6 +14575,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14204,6 +14592,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14235,6 +14624,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14251,6 +14641,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14267,6 +14658,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14322,7 +14714,8 @@ ZN_1_FLR_3_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_11_Infiltration, !- Name @@ -14472,7 +14865,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_11, !- Name @@ -14563,6 +14961,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14579,6 +14978,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14595,6 +14995,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14611,6 +15012,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14642,6 +15044,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14658,6 +15061,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14713,7 +15117,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -14863,7 +15268,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -14954,6 +15364,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14970,6 +15381,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14986,6 +15398,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15002,6 +15415,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15033,6 +15447,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15049,6 +15464,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15104,7 +15520,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -15254,7 +15671,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -15345,6 +15767,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15361,6 +15784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15377,6 +15801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15393,6 +15818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15424,6 +15850,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15440,6 +15867,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15495,7 +15923,8 @@ ZN_1_FLR_3_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_12_Infiltration, !- Name @@ -15645,7 +16074,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_12, !- Name @@ -15736,6 +16170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15752,6 +16187,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15768,6 +16204,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15784,6 +16221,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15800,6 +16238,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15816,6 +16255,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15832,6 +16272,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15848,6 +16289,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15863,7 +16305,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -16013,7 +16456,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -16104,6 +16552,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16120,6 +16569,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16136,6 +16586,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16152,6 +16603,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16168,6 +16620,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16184,6 +16637,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16200,6 +16654,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16216,6 +16671,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16231,7 +16687,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -16381,7 +16838,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -16472,6 +16934,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16488,6 +16951,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16504,6 +16968,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16520,6 +16985,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16536,6 +17002,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16552,6 +17019,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16568,6 +17036,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16584,6 +17053,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16599,7 +17069,8 @@ ZN_1_FLR_3_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_13_Infiltration, !- Name @@ -16749,7 +17220,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_13, !- Name @@ -16840,6 +17316,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16856,6 +17333,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16872,6 +17350,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16888,6 +17367,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16904,6 +17384,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16920,6 +17401,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16935,7 +17417,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -17085,7 +17568,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -17176,6 +17664,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17192,6 +17681,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17208,6 +17698,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17224,6 +17715,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17240,6 +17732,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17256,6 +17749,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17271,7 +17765,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -17421,7 +17916,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -17512,6 +18012,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17528,6 +18029,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17544,6 +18046,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17560,6 +18063,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17576,6 +18080,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17592,6 +18097,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17607,7 +18113,8 @@ ZN_1_FLR_3_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_14_Infiltration, !- Name @@ -17757,7 +18264,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_14, !- Name @@ -17848,6 +18360,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17864,6 +18377,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17880,6 +18394,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17896,6 +18411,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17912,6 +18428,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17928,6 +18445,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17944,6 +18462,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17960,6 +18479,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17975,7 +18495,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -18125,7 +18646,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -18216,6 +18742,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18232,6 +18759,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18248,6 +18776,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18264,6 +18793,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18280,6 +18810,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18296,6 +18827,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18312,6 +18844,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18328,6 +18861,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18343,7 +18877,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -18493,7 +19028,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -18584,6 +19124,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18600,6 +19141,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18616,6 +19158,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18632,6 +19175,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18648,6 +19192,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18664,6 +19209,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18680,6 +19226,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18696,6 +19243,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18711,7 +19259,8 @@ ZN_1_FLR_3_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_15_Infiltration, !- Name @@ -18861,7 +19410,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_15, !- Name @@ -32034,7 +32588,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -32127,7 +32681,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -32229,9 +32783,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -32267,17 +32821,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/45zonePTAC.idf b/performance_tests/45zonePTAC.idf index cd56eb195b8..8b001bcb04a 100644 --- a/performance_tests/45zonePTAC.idf +++ b/performance_tests/45zonePTAC.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 45 zone PTAC, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2156,6 +2170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2187,6 +2202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2253,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2251,6 +2270,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2306,7 +2326,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2456,7 +2477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2652,6 +2678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2683,6 +2710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2699,6 +2727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2778,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2802,7 +2834,8 @@ ZN_1_FLR_3_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_1_Infiltration, !- Name @@ -2952,7 +2985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_1,!- Name @@ -3148,6 +3186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3164,6 +3203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3195,6 +3235,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3211,6 +3252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3227,6 +3269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3243,6 +3286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3298,7 +3342,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -3448,7 +3493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -3644,6 +3694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3660,6 +3711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3691,6 +3743,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3707,6 +3760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3723,6 +3777,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3739,6 +3794,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3794,7 +3850,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3944,7 +4001,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -4140,6 +4202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4156,6 +4219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4187,6 +4251,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4203,6 +4268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4219,6 +4285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4235,6 +4302,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4290,7 +4358,8 @@ ZN_1_FLR_3_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_2_Infiltration, !- Name @@ -4440,7 +4509,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_2,!- Name @@ -4636,6 +4710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4667,6 +4742,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4683,6 +4759,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4699,6 +4776,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4715,6 +4793,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4731,6 +4810,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4786,7 +4866,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -4936,7 +5017,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -5132,6 +5218,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5163,6 +5250,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5179,6 +5267,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5195,6 +5284,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5211,6 +5301,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5227,6 +5318,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5282,7 +5374,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -5432,7 +5525,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -5628,6 +5726,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5659,6 +5758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5675,6 +5775,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5691,6 +5792,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5707,6 +5809,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5723,6 +5826,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5778,7 +5882,8 @@ ZN_1_FLR_3_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_3_Infiltration, !- Name @@ -5928,7 +6033,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_3,!- Name @@ -6124,6 +6234,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6140,6 +6251,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6156,6 +6268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6172,6 +6285,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6203,6 +6317,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6219,6 +6334,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6274,7 +6390,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -6424,7 +6541,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -6620,6 +6742,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6636,6 +6759,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6652,6 +6776,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6668,6 +6793,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6699,6 +6825,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6715,6 +6842,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6770,7 +6898,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -6920,7 +7049,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -7116,6 +7250,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7132,6 +7267,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7148,6 +7284,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7164,6 +7301,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7195,6 +7333,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7211,6 +7350,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7266,7 +7406,8 @@ ZN_1_FLR_3_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_4_Infiltration, !- Name @@ -7416,7 +7557,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_4,!- Name @@ -7612,6 +7758,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7643,6 +7790,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7659,6 +7807,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7675,6 +7824,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7691,6 +7841,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7707,6 +7858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7762,7 +7914,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -7912,7 +8065,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -8108,6 +8266,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8139,6 +8298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8155,6 +8315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8171,6 +8332,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8187,6 +8349,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8203,6 +8366,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8258,7 +8422,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -8408,7 +8573,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -8604,6 +8774,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8635,6 +8806,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8651,6 +8823,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8667,6 +8840,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8683,6 +8857,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8699,6 +8874,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8754,7 +8930,8 @@ ZN_1_FLR_3_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_5_Infiltration, !- Name @@ -8904,7 +9081,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_5,!- Name @@ -9100,6 +9282,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9116,6 +9299,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9147,6 +9331,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9163,6 +9348,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9179,6 +9365,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9195,6 +9382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9250,7 +9438,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -9400,7 +9589,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -9596,6 +9790,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9612,6 +9807,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9643,6 +9839,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9659,6 +9856,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9675,6 +9873,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9691,6 +9890,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9746,7 +9946,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -9896,7 +10097,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -10092,6 +10298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10108,6 +10315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10139,6 +10347,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10155,6 +10364,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10171,6 +10381,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10187,6 +10398,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10242,7 +10454,8 @@ ZN_1_FLR_3_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_6_Infiltration, !- Name @@ -10392,7 +10605,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_6,!- Name @@ -10588,6 +10806,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10604,6 +10823,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10620,6 +10840,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10651,6 +10872,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10667,6 +10889,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10683,6 +10906,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10738,7 +10962,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -10888,7 +11113,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -11084,6 +11314,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11100,6 +11331,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11116,6 +11348,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11147,6 +11380,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11163,6 +11397,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11179,6 +11414,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11234,7 +11470,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -11384,7 +11621,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -11580,6 +11822,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11596,6 +11839,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11612,6 +11856,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11643,6 +11888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11659,6 +11905,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11675,6 +11922,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11730,7 +11978,8 @@ ZN_1_FLR_3_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_7_Infiltration, !- Name @@ -11880,7 +12129,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_7,!- Name @@ -12076,6 +12330,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12092,6 +12347,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12108,6 +12364,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12124,6 +12381,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12155,6 +12413,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12171,6 +12430,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12226,7 +12486,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -12376,7 +12637,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -12572,6 +12838,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12588,6 +12855,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12604,6 +12872,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12620,6 +12889,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12651,6 +12921,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12667,6 +12938,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12722,7 +12994,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -12872,7 +13145,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -13068,6 +13346,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13084,6 +13363,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13100,6 +13380,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13116,6 +13397,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13147,6 +13429,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13163,6 +13446,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13218,7 +13502,8 @@ ZN_1_FLR_3_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_8_Infiltration, !- Name @@ -13368,7 +13653,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_8,!- Name @@ -13564,6 +13854,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13580,6 +13871,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13596,6 +13888,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13627,6 +13920,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13643,6 +13937,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13659,6 +13954,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13714,7 +14010,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -13864,7 +14161,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -14060,6 +14362,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14076,6 +14379,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14092,6 +14396,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14123,6 +14428,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14139,6 +14445,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14155,6 +14462,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14210,7 +14518,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -14360,7 +14669,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -14556,6 +14870,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14572,6 +14887,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14588,6 +14904,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14619,6 +14936,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14635,6 +14953,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14651,6 +14970,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14706,7 +15026,8 @@ ZN_1_FLR_3_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_9_Infiltration, !- Name @@ -14856,7 +15177,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_9,!- Name @@ -15052,6 +15378,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15068,6 +15395,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15099,6 +15427,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15115,6 +15444,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15131,6 +15461,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15147,6 +15478,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15202,7 +15534,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -15352,7 +15685,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -15548,6 +15886,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15564,6 +15903,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15595,6 +15935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15611,6 +15952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15627,6 +15969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15643,6 +15986,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15698,7 +16042,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -15848,7 +16193,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -16044,6 +16394,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16060,6 +16411,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16091,6 +16443,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16107,6 +16460,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16123,6 +16477,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16139,6 +16494,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16194,7 +16550,8 @@ ZN_1_FLR_3_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_10_Infiltration, !- Name @@ -16344,7 +16701,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_10, !- Name @@ -16540,6 +16902,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16556,6 +16919,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16572,6 +16936,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16603,6 +16968,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16619,6 +16985,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16635,6 +17002,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16690,7 +17058,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -16840,7 +17209,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -17036,6 +17410,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17052,6 +17427,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17068,6 +17444,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17099,6 +17476,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17115,6 +17493,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17131,6 +17510,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17186,7 +17566,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -17336,7 +17717,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -17532,6 +17918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17548,6 +17935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17564,6 +17952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17595,6 +17984,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17611,6 +18001,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17627,6 +18018,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17682,7 +18074,8 @@ ZN_1_FLR_3_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_11_Infiltration, !- Name @@ -17832,7 +18225,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_11, !- Name @@ -18028,6 +18426,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18044,6 +18443,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18060,6 +18460,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18076,6 +18477,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18107,6 +18509,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18123,6 +18526,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18178,7 +18582,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -18328,7 +18733,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -18524,6 +18934,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18540,6 +18951,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18556,6 +18968,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18572,6 +18985,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18603,6 +19017,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18619,6 +19034,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18674,7 +19090,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -18824,7 +19241,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -19020,6 +19442,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19036,6 +19459,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19052,6 +19476,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19068,6 +19493,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19099,6 +19525,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19115,6 +19542,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19170,7 +19598,8 @@ ZN_1_FLR_3_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_12_Infiltration, !- Name @@ -19320,7 +19749,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_12, !- Name @@ -19516,6 +19950,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19532,6 +19967,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19548,6 +19984,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19564,6 +20001,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19580,6 +20018,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19596,6 +20035,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19612,6 +20052,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19628,6 +20069,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19643,7 +20085,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -19793,7 +20236,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -19989,6 +20437,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20005,6 +20454,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20021,6 +20471,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20037,6 +20488,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20053,6 +20505,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20069,6 +20522,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20085,6 +20539,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20101,6 +20556,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20116,7 +20572,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -20266,7 +20723,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -20462,6 +20924,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20478,6 +20941,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20494,6 +20958,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20510,6 +20975,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20526,6 +20992,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20542,6 +21009,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20558,6 +21026,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20574,6 +21043,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20589,7 +21059,8 @@ ZN_1_FLR_3_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_13_Infiltration, !- Name @@ -20739,7 +21210,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_13, !- Name @@ -20935,6 +21411,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20951,6 +21428,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20967,6 +21445,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20983,6 +21462,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20999,6 +21479,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21015,6 +21496,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21030,7 +21512,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -21180,7 +21663,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -21376,6 +21864,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21392,6 +21881,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21408,6 +21898,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21424,6 +21915,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21440,6 +21932,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21456,6 +21949,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21471,7 +21965,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -21621,7 +22116,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -21817,6 +22317,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21833,6 +22334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21849,6 +22351,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21865,6 +22368,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21881,6 +22385,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21897,6 +22402,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21912,7 +22418,8 @@ ZN_1_FLR_3_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_14_Infiltration, !- Name @@ -22062,7 +22569,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_14, !- Name @@ -22258,6 +22770,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22274,6 +22787,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22290,6 +22804,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22306,6 +22821,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22322,6 +22838,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22338,6 +22855,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22354,6 +22872,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22370,6 +22889,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22385,7 +22905,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -22535,7 +23056,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -22731,6 +23257,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22747,6 +23274,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22763,6 +23291,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22779,6 +23308,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22795,6 +23325,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22811,6 +23342,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22827,6 +23359,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22843,6 +23376,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22858,7 +23392,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -23008,7 +23543,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -23204,6 +23744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23220,6 +23761,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23236,6 +23778,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23252,6 +23795,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23268,6 +23812,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23284,6 +23829,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23300,6 +23846,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23316,6 +23863,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23331,7 +23879,8 @@ ZN_1_FLR_3_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_15_Infiltration, !- Name @@ -23481,7 +24030,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_15, !- Name @@ -24664,7 +25218,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -24757,7 +25311,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -24859,9 +25413,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -24897,17 +25451,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/45zonePVAV.idf b/performance_tests/45zonePVAV.idf index 8bd648f700c..0dec7e6b3b0 100644 --- a/performance_tests/45zonePVAV.idf +++ b/performance_tests/45zonePVAV.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 45 zone PVAV, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2097,6 +2112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2503,6 +2530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_3_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_1_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_1,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +2965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3300,6 +3351,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_3_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_2_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_2,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4127,6 +4202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4143,6 +4219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4159,6 +4236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4533,6 +4620,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4549,6 +4637,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4565,6 +4654,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4939,6 +5038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4955,6 +5055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_3_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_3_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_3,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5330,6 +5441,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5346,6 +5458,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5362,6 +5475,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5752,6 +5876,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5768,6 +5893,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,6 +6294,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6174,6 +6311,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_3_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_4_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_4,!- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6563,6 +6710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6579,6 +6727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6595,6 +6744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6778,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,7 +6834,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -6832,7 +6985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -6938,6 +7096,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6969,6 +7128,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6985,6 +7145,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7001,6 +7162,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7017,6 +7179,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7033,6 +7196,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7088,7 +7252,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -7238,7 +7403,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -7344,6 +7514,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7375,6 +7546,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7391,6 +7563,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7407,6 +7580,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7423,6 +7597,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7614,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7494,7 +7670,8 @@ ZN_1_FLR_3_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_5_Infiltration, !- Name @@ -7644,7 +7821,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_5,!- Name @@ -7750,6 +7932,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7766,6 +7949,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7797,6 +7981,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7813,6 +7998,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7829,6 +8015,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +8032,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7900,7 +8088,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -8050,7 +8239,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -8156,6 +8350,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8172,6 +8367,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8203,6 +8399,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8219,6 +8416,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8235,6 +8433,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8251,6 +8450,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8306,7 +8506,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -8456,7 +8657,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -8562,6 +8768,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8578,6 +8785,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8609,6 +8817,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8625,6 +8834,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8641,6 +8851,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8657,6 +8868,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8712,7 +8924,8 @@ ZN_1_FLR_3_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_6_Infiltration, !- Name @@ -8862,7 +9075,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_6,!- Name @@ -8968,6 +9186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8984,6 +9203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9000,6 +9220,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9031,6 +9252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9047,6 +9269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9063,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9118,7 +9342,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -9268,7 +9493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -9374,6 +9604,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9390,6 +9621,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9406,6 +9638,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9437,6 +9670,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9453,6 +9687,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9469,6 +9704,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9524,7 +9760,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -9674,7 +9911,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -9780,6 +10022,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9796,6 +10039,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9812,6 +10056,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9843,6 +10088,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9859,6 +10105,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9875,6 +10122,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9930,7 +10178,8 @@ ZN_1_FLR_3_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_7_Infiltration, !- Name @@ -10080,7 +10329,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_7,!- Name @@ -10186,6 +10440,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10202,6 +10457,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10218,6 +10474,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10234,6 +10491,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10265,6 +10523,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10540,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10336,7 +10596,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -10486,7 +10747,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -10592,6 +10858,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10608,6 +10875,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10624,6 +10892,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10640,6 +10909,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10671,6 +10941,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10687,6 +10958,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10742,7 +11014,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -10892,7 +11165,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -10998,6 +11276,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11014,6 +11293,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11030,6 +11310,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11046,6 +11327,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11077,6 +11359,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11093,6 +11376,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11148,7 +11432,8 @@ ZN_1_FLR_3_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_8_Infiltration, !- Name @@ -11298,7 +11583,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_8,!- Name @@ -11404,6 +11694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11420,6 +11711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11436,6 +11728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11467,6 +11760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11483,6 +11777,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11499,6 +11794,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11554,7 +11850,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -11704,7 +12001,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -11810,6 +12112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11826,6 +12129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11842,6 +12146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11873,6 +12178,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11889,6 +12195,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11905,6 +12212,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11960,7 +12268,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -12110,7 +12419,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -12216,6 +12530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12232,6 +12547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12248,6 +12564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12279,6 +12596,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12295,6 +12613,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12311,6 +12630,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12366,7 +12686,8 @@ ZN_1_FLR_3_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_9_Infiltration, !- Name @@ -12516,7 +12837,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_9,!- Name @@ -12622,6 +12948,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12638,6 +12965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12669,6 +12997,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12685,6 +13014,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12701,6 +13031,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12717,6 +13048,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12772,7 +13104,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -12922,7 +13255,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -13028,6 +13366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13044,6 +13383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13075,6 +13415,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13091,6 +13432,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13107,6 +13449,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13123,6 +13466,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13178,7 +13522,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -13328,7 +13673,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -13434,6 +13784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13450,6 +13801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13481,6 +13833,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13497,6 +13850,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13513,6 +13867,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13529,6 +13884,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13584,7 +13940,8 @@ ZN_1_FLR_3_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_10_Infiltration, !- Name @@ -13734,7 +14091,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_10, !- Name @@ -13840,6 +14202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13856,6 +14219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13872,6 +14236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13903,6 +14268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13919,6 +14285,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13935,6 +14302,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13990,7 +14358,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -14140,7 +14509,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -14246,6 +14620,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14262,6 +14637,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14278,6 +14654,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14309,6 +14686,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14325,6 +14703,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14341,6 +14720,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14396,7 +14776,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -14546,7 +14927,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -14652,6 +15038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14668,6 +15055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14684,6 +15072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14715,6 +15104,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14731,6 +15121,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14747,6 +15138,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14802,7 +15194,8 @@ ZN_1_FLR_3_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_11_Infiltration, !- Name @@ -14952,7 +15345,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_11, !- Name @@ -15058,6 +15456,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15074,6 +15473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15090,6 +15490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15106,6 +15507,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15137,6 +15539,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15153,6 +15556,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15208,7 +15612,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -15358,7 +15763,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -15464,6 +15874,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15480,6 +15891,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15496,6 +15908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15512,6 +15925,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15543,6 +15957,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15559,6 +15974,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15614,7 +16030,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -15764,7 +16181,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -15870,6 +16292,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15886,6 +16309,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15902,6 +16326,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15918,6 +16343,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15949,6 +16375,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15965,6 +16392,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16020,7 +16448,8 @@ ZN_1_FLR_3_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_12_Infiltration, !- Name @@ -16170,7 +16599,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_12, !- Name @@ -16276,6 +16710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16292,6 +16727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16308,6 +16744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16324,6 +16761,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16340,6 +16778,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16356,6 +16795,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16372,6 +16812,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16388,6 +16829,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16403,7 +16845,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -16553,7 +16996,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -16659,6 +17107,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16675,6 +17124,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16691,6 +17141,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16707,6 +17158,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16723,6 +17175,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16739,6 +17192,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16755,6 +17209,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16771,6 +17226,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16786,7 +17242,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -16936,7 +17393,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -17042,6 +17504,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17058,6 +17521,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17074,6 +17538,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17090,6 +17555,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17106,6 +17572,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17122,6 +17589,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17138,6 +17606,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17154,6 +17623,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17169,7 +17639,8 @@ ZN_1_FLR_3_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_13_Infiltration, !- Name @@ -17319,7 +17790,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_13, !- Name @@ -17425,6 +17901,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17441,6 +17918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17457,6 +17935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17473,6 +17952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17489,6 +17969,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17505,6 +17986,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17520,7 +18002,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -17670,7 +18153,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -17776,6 +18264,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17792,6 +18281,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17808,6 +18298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17824,6 +18315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17840,6 +18332,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17856,6 +18349,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17871,7 +18365,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -18021,7 +18516,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -18127,6 +18627,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18143,6 +18644,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18159,6 +18661,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18175,6 +18678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18191,6 +18695,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18207,6 +18712,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18222,7 +18728,8 @@ ZN_1_FLR_3_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_14_Infiltration, !- Name @@ -18372,7 +18879,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_14, !- Name @@ -18478,6 +18990,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18494,6 +19007,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18510,6 +19024,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18526,6 +19041,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18542,6 +19058,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18558,6 +19075,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18574,6 +19092,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18590,6 +19109,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18605,7 +19125,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -18755,7 +19276,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -18861,6 +19387,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18877,6 +19404,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18893,6 +19421,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18909,6 +19438,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18925,6 +19455,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18941,6 +19472,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18957,6 +19489,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18973,6 +19506,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18988,7 +19522,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -19138,7 +19673,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -19244,6 +19784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19260,6 +19801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19276,6 +19818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19292,6 +19835,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19308,6 +19852,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19324,6 +19869,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19340,6 +19886,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19356,6 +19903,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19371,7 +19919,8 @@ ZN_1_FLR_3_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_15_Infiltration, !- Name @@ -19521,7 +20070,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_15, !- Name @@ -21057,7 +21611,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -21150,7 +21704,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -21252,9 +21806,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -21290,17 +21844,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/45zonevav.idf b/performance_tests/45zonevav.idf index 8681295bc44..2464de0641a 100644 --- a/performance_tests/45zonevav.idf +++ b/performance_tests/45zonevav.idf @@ -128,7 +128,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -175,7 +177,7 @@ 45 zone vav, !- Name 0.0000, !- North Axis {deg} City, !- Terrain - 0.0400, !- Loads Convergence Tolerance Value + 0.0400, !- Loads Convergence Tolerance Value {W} 0.2000, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -1660,6 +1662,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1745,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1762,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,7 +1818,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1960,7 +1969,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_1,!- Name @@ -2066,6 +2080,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2097,6 +2112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2163,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2216,7 +2236,8 @@ ZN_1_FLR_2_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_1_Infiltration, !- Name @@ -2366,7 +2387,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_1,!- Name @@ -2472,6 +2498,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2503,6 +2530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2581,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2598,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2622,7 +2654,8 @@ ZN_1_FLR_3_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_1, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_1_Infiltration, !- Name @@ -2772,7 +2805,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_1,!- Name @@ -2878,6 +2916,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +2933,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +2965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2982,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +2999,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3016,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3028,7 +3072,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -3178,7 +3223,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_2,!- Name @@ -3284,6 +3334,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3300,6 +3351,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3331,6 +3383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3347,6 +3400,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3363,6 +3417,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3379,6 +3434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,7 +3490,8 @@ ZN_1_FLR_2_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_2_Infiltration, !- Name @@ -3584,7 +3641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_2,!- Name @@ -3690,6 +3752,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3769,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3737,6 +3801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3753,6 +3818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3852,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3840,7 +3908,8 @@ ZN_1_FLR_3_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_2, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_2_Infiltration, !- Name @@ -3990,7 +4059,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_2,!- Name @@ -4096,6 +4170,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4127,6 +4202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4143,6 +4219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4159,6 +4236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4175,6 +4253,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4191,6 +4270,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,7 +4326,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -4396,7 +4477,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_3,!- Name @@ -4502,6 +4588,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4533,6 +4620,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4549,6 +4637,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4565,6 +4654,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4581,6 +4671,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4688,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4652,7 +4744,8 @@ ZN_1_FLR_2_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_3_Infiltration, !- Name @@ -4802,7 +4895,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_3,!- Name @@ -4908,6 +5006,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4939,6 +5038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4955,6 +5055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4971,6 +5072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4987,6 +5089,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5003,6 +5106,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5058,7 +5162,8 @@ ZN_1_FLR_3_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_3, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_3_Infiltration, !- Name @@ -5208,7 +5313,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_3,!- Name @@ -5314,6 +5424,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5330,6 +5441,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5346,6 +5458,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5362,6 +5475,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5393,6 +5507,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5409,6 +5524,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5464,7 +5580,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -5614,7 +5731,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_4,!- Name @@ -5720,6 +5842,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5736,6 +5859,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5752,6 +5876,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5768,6 +5893,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5799,6 +5925,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5815,6 +5942,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5870,7 +5998,8 @@ ZN_1_FLR_2_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_4_Infiltration, !- Name @@ -6020,7 +6149,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_4,!- Name @@ -6126,6 +6260,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6142,6 +6277,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,6 +6294,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6174,6 +6311,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6205,6 +6343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6360,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,7 +6416,8 @@ ZN_1_FLR_3_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_4, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_4_Infiltration, !- Name @@ -6426,7 +6567,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_4,!- Name @@ -6532,6 +6678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6563,6 +6710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6579,6 +6727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6595,6 +6744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6761,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6778,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,7 +6834,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -6832,7 +6985,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_5,!- Name @@ -6938,6 +7096,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6969,6 +7128,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6985,6 +7145,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7001,6 +7162,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7017,6 +7179,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7033,6 +7196,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7088,7 +7252,8 @@ ZN_1_FLR_2_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_5_Infiltration, !- Name @@ -7238,7 +7403,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_5,!- Name @@ -7344,6 +7514,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7375,6 +7546,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7391,6 +7563,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7407,6 +7580,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7423,6 +7597,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7614,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7494,7 +7670,8 @@ ZN_1_FLR_3_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_5, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_5_Infiltration, !- Name @@ -7644,7 +7821,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_5,!- Name @@ -7750,6 +7932,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7766,6 +7949,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7797,6 +7981,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7813,6 +7998,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7829,6 +8015,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +8032,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7900,7 +8088,8 @@ ZN_1_FLR_1_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_6_Infiltration, !- Name @@ -8050,7 +8239,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_6,!- Name @@ -8156,6 +8350,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8172,6 +8367,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8203,6 +8399,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8219,6 +8416,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8235,6 +8433,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8251,6 +8450,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8306,7 +8506,8 @@ ZN_1_FLR_2_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_6_Infiltration, !- Name @@ -8456,7 +8657,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_6,!- Name @@ -8562,6 +8768,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8578,6 +8785,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8609,6 +8817,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8625,6 +8834,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8641,6 +8851,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8657,6 +8868,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8712,7 +8924,8 @@ ZN_1_FLR_3_SEC_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_6, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_6_Infiltration, !- Name @@ -8862,7 +9075,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_6,!- Name @@ -8968,6 +9186,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8984,6 +9203,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9000,6 +9220,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9031,6 +9252,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9047,6 +9269,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9063,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9118,7 +9342,8 @@ ZN_1_FLR_1_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_7_Infiltration, !- Name @@ -9268,7 +9493,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_7,!- Name @@ -9374,6 +9604,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9390,6 +9621,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9406,6 +9638,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9437,6 +9670,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9453,6 +9687,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9469,6 +9704,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9524,7 +9760,8 @@ ZN_1_FLR_2_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_7_Infiltration, !- Name @@ -9674,7 +9911,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_7,!- Name @@ -9780,6 +10022,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9796,6 +10039,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9812,6 +10056,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9843,6 +10088,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9859,6 +10105,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9875,6 +10122,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9930,7 +10178,8 @@ ZN_1_FLR_3_SEC_7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_7, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_7_Infiltration, !- Name @@ -10080,7 +10329,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_7,!- Name @@ -10186,6 +10440,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10202,6 +10457,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10218,6 +10474,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10234,6 +10491,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10265,6 +10523,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10540,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10336,7 +10596,8 @@ ZN_1_FLR_1_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_8_Infiltration, !- Name @@ -10486,7 +10747,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_8,!- Name @@ -10592,6 +10858,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10608,6 +10875,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10624,6 +10892,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10640,6 +10909,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10671,6 +10941,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10687,6 +10958,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10742,7 +11014,8 @@ ZN_1_FLR_2_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_8_Infiltration, !- Name @@ -10892,7 +11165,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_8,!- Name @@ -10998,6 +11276,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11014,6 +11293,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11030,6 +11310,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11046,6 +11327,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11077,6 +11359,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11093,6 +11376,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11148,7 +11432,8 @@ ZN_1_FLR_3_SEC_8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_8, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_8_Infiltration, !- Name @@ -11298,7 +11583,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_8,!- Name @@ -11404,6 +11694,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11420,6 +11711,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11436,6 +11728,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11467,6 +11760,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11483,6 +11777,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11499,6 +11794,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11554,7 +11850,8 @@ ZN_1_FLR_1_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_9_Infiltration, !- Name @@ -11704,7 +12001,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_9,!- Name @@ -11810,6 +12112,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11826,6 +12129,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11842,6 +12146,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11873,6 +12178,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11889,6 +12195,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11905,6 +12212,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11960,7 +12268,8 @@ ZN_1_FLR_2_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_9_Infiltration, !- Name @@ -12110,7 +12419,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_9,!- Name @@ -12216,6 +12530,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12232,6 +12547,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12248,6 +12564,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12279,6 +12596,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12295,6 +12613,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12311,6 +12630,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12366,7 +12686,8 @@ ZN_1_FLR_3_SEC_9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_9, !- Zone or ZoneList Name - 133.1698; !- Surface Area {m2} + , !- Surface Area {m2} + 133.1698; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_9_Infiltration, !- Name @@ -12516,7 +12837,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_9,!- Name @@ -12622,6 +12948,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12638,6 +12965,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12669,6 +12997,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12685,6 +13014,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12701,6 +13031,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12717,6 +13048,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12772,7 +13104,8 @@ ZN_1_FLR_1_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_10_Infiltration, !- Name @@ -12922,7 +13255,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_10, !- Name @@ -13028,6 +13366,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13044,6 +13383,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13075,6 +13415,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13091,6 +13432,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13107,6 +13449,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13123,6 +13466,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13178,7 +13522,8 @@ ZN_1_FLR_2_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_10_Infiltration, !- Name @@ -13328,7 +13673,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_10, !- Name @@ -13434,6 +13784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13450,6 +13801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13481,6 +13833,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13497,6 +13850,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13513,6 +13867,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13529,6 +13884,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13584,7 +13940,8 @@ ZN_1_FLR_3_SEC_10_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_10, !- Zone or ZoneList Name - 137.1000; !- Surface Area {m2} + , !- Surface Area {m2} + 137.1000; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_10_Infiltration, !- Name @@ -13734,7 +14091,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_10, !- Name @@ -13840,6 +14202,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13856,6 +14219,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13872,6 +14236,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13903,6 +14268,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13919,6 +14285,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13935,6 +14302,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13990,7 +14358,8 @@ ZN_1_FLR_1_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_11_Infiltration, !- Name @@ -14140,7 +14509,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_11, !- Name @@ -14246,6 +14620,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14262,6 +14637,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14278,6 +14654,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14309,6 +14686,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14325,6 +14703,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14341,6 +14720,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14396,7 +14776,8 @@ ZN_1_FLR_2_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_11_Infiltration, !- Name @@ -14546,7 +14927,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_11, !- Name @@ -14652,6 +15038,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14668,6 +15055,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14684,6 +15072,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14715,6 +15104,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14731,6 +15121,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14747,6 +15138,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14802,7 +15194,8 @@ ZN_1_FLR_3_SEC_11_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_11, !- Zone or ZoneList Name - 95.3302; !- Surface Area {m2} + , !- Surface Area {m2} + 95.3302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_11_Infiltration, !- Name @@ -14952,7 +15345,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_11, !- Name @@ -15058,6 +15456,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15074,6 +15473,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15090,6 +15490,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15106,6 +15507,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15137,6 +15539,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15153,6 +15556,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15208,7 +15612,8 @@ ZN_1_FLR_1_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_12_Infiltration, !- Name @@ -15358,7 +15763,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_12, !- Name @@ -15464,6 +15874,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15480,6 +15891,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15496,6 +15908,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15512,6 +15925,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15543,6 +15957,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15559,6 +15974,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15614,7 +16030,8 @@ ZN_1_FLR_2_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_12_Infiltration, !- Name @@ -15764,7 +16181,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_12, !- Name @@ -15870,6 +16292,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15886,6 +16309,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_6,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15902,6 +16326,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15918,6 +16343,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15949,6 +16375,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15965,6 +16392,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16020,7 +16448,8 @@ ZN_1_FLR_3_SEC_12_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_12, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_12_Infiltration, !- Name @@ -16170,7 +16599,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_12, !- Name @@ -16276,6 +16710,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16292,6 +16727,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16308,6 +16744,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16324,6 +16761,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16340,6 +16778,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16356,6 +16795,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16372,6 +16812,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16388,6 +16829,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16403,7 +16845,8 @@ ZN_1_FLR_1_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_13_Infiltration, !- Name @@ -16553,7 +16996,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_13, !- Name @@ -16659,6 +17107,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16675,6 +17124,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16691,6 +17141,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16707,6 +17158,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16723,6 +17175,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16739,6 +17192,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16755,6 +17209,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16771,6 +17226,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16786,7 +17242,8 @@ ZN_1_FLR_2_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_13_Infiltration, !- Name @@ -16936,7 +17393,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_13, !- Name @@ -17042,6 +17504,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17058,6 +17521,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17074,6 +17538,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17090,6 +17555,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_10_Wall_4,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17106,6 +17572,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_11_Wall_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17122,6 +17589,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_12_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17138,6 +17606,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17154,6 +17623,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17169,7 +17639,8 @@ ZN_1_FLR_3_SEC_13_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_13, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_13_Infiltration, !- Name @@ -17319,7 +17790,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_13, !- Name @@ -17425,6 +17901,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17441,6 +17918,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17457,6 +17935,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17473,6 +17952,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17489,6 +17969,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17505,6 +17986,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17520,7 +18002,8 @@ ZN_1_FLR_1_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_14_Infiltration, !- Name @@ -17670,7 +18153,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_14, !- Name @@ -17776,6 +18264,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17792,6 +18281,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17808,6 +18298,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17824,6 +18315,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17840,6 +18332,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17856,6 +18349,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17871,7 +18365,8 @@ ZN_1_FLR_2_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_14_Infiltration, !- Name @@ -18021,7 +18516,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_14, !- Name @@ -18127,6 +18627,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18143,6 +18644,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Wall_5,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18159,6 +18661,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_9_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18175,6 +18678,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_13_Wall_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18191,6 +18695,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18207,6 +18712,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18222,7 +18728,8 @@ ZN_1_FLR_3_SEC_14_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_14, !- Zone or ZoneList Name - 32.9208; !- Surface Area {m2} + , !- Surface Area {m2} + 32.9208; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_14_Infiltration, !- Name @@ -18372,7 +18879,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_14, !- Name @@ -18478,6 +18990,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18494,6 +19007,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18510,6 +19024,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18526,6 +19041,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18542,6 +19058,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18558,6 +19075,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18574,6 +19092,7 @@ Floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18590,6 +19109,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18605,7 +19125,8 @@ ZN_1_FLR_1_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_15_Infiltration, !- Name @@ -18755,7 +19276,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_1_SEC_15, !- Name @@ -18861,6 +19387,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18877,6 +19404,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18893,6 +19421,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18909,6 +19438,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18925,6 +19455,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18941,6 +19472,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18957,6 +19489,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18973,6 +19506,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_15_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18988,7 +19522,8 @@ ZN_1_FLR_2_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_2_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_2_SEC_15_Infiltration, !- Name @@ -19138,7 +19673,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_2_SEC_15, !- Name @@ -19244,6 +19784,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19260,6 +19801,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19276,6 +19818,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_7_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19292,6 +19835,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19308,6 +19852,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_14_Wall_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19324,6 +19869,7 @@ Wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_3_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19340,6 +19886,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_2_SEC_15_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19356,6 +19903,7 @@ Roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-5_IEAD_Roof, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19371,7 +19919,8 @@ ZN_1_FLR_3_SEC_15_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_3_SEC_15, !- Zone or ZoneList Name - 361.6792; !- Surface Area {m2} + , !- Surface Area {m2} + 361.6792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_3_SEC_15_Infiltration, !- Name @@ -19521,7 +20070,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ZN_1_FLR_3_SEC_15, !- Name @@ -21462,7 +22016,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -21555,7 +22109,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -21657,9 +22211,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -21695,17 +22249,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/BenchmarkHospitalNew_USA_CA_SAN_FRANCISCO.idf b/performance_tests/BenchmarkHospitalNew_USA_CA_SAN_FRANCISCO.idf index 30122bdea0a..bbc1487c245 100644 --- a/performance_tests/BenchmarkHospitalNew_USA_CA_SAN_FRANCISCO.idf +++ b/performance_tests/BenchmarkHospitalNew_USA_CA_SAN_FRANCISCO.idf @@ -88,7 +88,7 @@ Building, !- Name 0, !- North Axis {deg} City, !- Terrain - 0.04, !- Loads Convergence Tolerance Value + 0.04, !- Loads Convergence Tolerance Value {W} 0.2, !- Temperature Convergence Tolerance Value {deltaC} MinimalShadowing, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -112,7 +112,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes ConvergenceLimits, 5, !- Minimum System Timestep {minutes} @@ -1623,6 +1625,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1642,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1659,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1676,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1693,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1710,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1718,7 +1726,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7478.6947; !- Surface Area {m2} + , !- Surface Area {m2} + 7478.6947; !- Extended Field ZoneInfiltration:DesignFlowRate, Basement_Infiltration, !- Name @@ -1827,6 +1836,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1843,6 +1853,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1859,6 +1870,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1875,6 +1887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1891,6 +1904,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1907,6 +1921,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1922,7 +1937,8 @@ ER_Exam1_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_Exam1_Mult4_Flr_1_Infiltration, !- Name @@ -2072,7 +2088,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_Exam1_Mult4_Flr_1, !- Name @@ -2233,6 +2254,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2249,6 +2271,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2265,6 +2288,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2281,6 +2305,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2297,6 +2322,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2313,6 +2339,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2328,7 +2355,8 @@ ER_Exam2_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam2_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_Exam2_Flr_1_Infiltration, !- Name @@ -2478,7 +2506,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_Exam2_Flr_1, !- Name @@ -2639,6 +2672,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2655,6 +2689,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2671,6 +2706,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2687,6 +2723,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2703,6 +2740,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2719,6 +2757,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2734,7 +2773,8 @@ ER_Exam3_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_Exam3_Mult4_Flr_1_Infiltration, !- Name @@ -2884,7 +2924,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_Exam3_Mult4_Flr_1, !- Name @@ -3045,6 +3090,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3061,6 +3107,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3077,6 +3124,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3093,6 +3141,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3109,6 +3158,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3125,6 +3175,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3140,7 +3191,8 @@ ER_Exam4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_Exam4_Flr_1_Infiltration, !- Name @@ -3290,7 +3342,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_Exam4_Flr_1, !- Name @@ -3451,6 +3508,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3467,6 +3525,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3483,6 +3542,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3499,6 +3559,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3515,6 +3576,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3531,6 +3593,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3546,7 +3609,8 @@ ER_Exam5_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam5_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_Exam5_Mult4_Flr_1_Infiltration, !- Name @@ -3696,7 +3760,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_Exam5_Mult4_Flr_1, !- Name @@ -3857,6 +3926,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3888,6 +3958,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3904,6 +3975,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3920,6 +3992,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3936,6 +4009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3952,6 +4026,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3967,7 +4042,8 @@ Office1_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office1_Mult4_Flr_1, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field ZoneInfiltration:DesignFlowRate, Office1_Mult4_Flr_1_Infiltration, !- Name @@ -4117,7 +4193,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Office1_Mult4_Flr_1, !- Name @@ -4223,6 +4304,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4239,6 +4321,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4270,6 +4353,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4286,6 +4370,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4302,6 +4387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4322,6 +4408,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4338,6 +4425,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4354,6 +4442,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4370,6 +4459,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4386,6 +4476,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4402,6 +4493,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4421,7 +4513,8 @@ Lobby_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Lobby_Flr_1, !- Zone or ZoneList Name - 2949.6212; !- Surface Area {m2} + , !- Surface Area {m2} + 2949.6212; !- Extended Field ZoneInfiltration:DesignFlowRate, Lobby_Flr_1_Infiltration,!- Name @@ -4571,7 +4664,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Lobby_Flr_1, !- Name @@ -4677,6 +4775,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4693,6 +4792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4709,6 +4809,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4725,6 +4826,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4741,6 +4843,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4757,6 +4860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4773,6 +4877,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4788,7 +4893,8 @@ Corridor_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_1, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_Flr_1_Infiltration, !- Name @@ -4910,7 +5016,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_Flr_1, !- Name @@ -5016,6 +5127,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5047,6 +5159,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5067,6 +5180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5083,6 +5197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5099,6 +5214,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5115,6 +5231,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5131,6 +5248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5147,6 +5265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5163,6 +5282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5179,6 +5299,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_NurseStat_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5198,7 +5319,8 @@ ER_NurseStat_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_NurseStat_Flr_1, !- Zone or ZoneList Name - 2471.2209; !- Surface Area {m2} + , !- Surface Area {m2} + 2471.2209; !- Extended Field ZoneInfiltration:DesignFlowRate, ER_NurseStat_Flr_1_Infiltration, !- Name @@ -5348,7 +5470,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ER_NurseStat_Flr_1, !- Name @@ -5454,6 +5581,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5470,6 +5598,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5486,6 +5615,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5502,6 +5632,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5518,6 +5649,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5534,6 +5666,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5549,7 +5682,8 @@ OR1_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR1_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field ZoneInfiltration:DesignFlowRate, OR1_Flr_2_Infiltration, !- Name @@ -5699,7 +5833,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA OR1_Flr_2, !- Name @@ -5860,6 +5999,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5876,6 +6016,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5892,6 +6033,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5908,6 +6050,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,6 +6067,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5940,6 +6084,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5955,7 +6100,8 @@ OR2_Mult5_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name OR2_Mult5_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field ZoneInfiltration:DesignFlowRate, OR2_Mult5_Flr_2_Infiltration, !- Name @@ -6105,7 +6251,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA OR2_Mult5_Flr_2, !- Name @@ -6266,6 +6417,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6282,6 +6434,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6298,6 +6451,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6314,6 +6468,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6330,6 +6485,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6346,6 +6502,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6361,7 +6518,8 @@ OR3_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR3_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field ZoneInfiltration:DesignFlowRate, OR3_Flr_2_Infiltration, !- Name @@ -6511,7 +6669,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA OR3_Flr_2, !- Name @@ -6672,6 +6835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6688,6 +6852,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6704,6 +6869,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6720,6 +6886,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6736,6 +6903,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6752,6 +6920,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6767,7 +6936,8 @@ OR4_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR4_Flr_2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field ZoneInfiltration:DesignFlowRate, OR4_Flr_2_Infiltration, !- Name @@ -6917,7 +7087,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA OR4_Flr_2, !- Name @@ -7078,6 +7253,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7109,6 +7285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7125,6 +7302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7141,6 +7319,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7157,6 +7336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7173,6 +7353,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7188,7 +7369,8 @@ IC_PatRoom1_Mult5_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, IC_PatRoom1_Mult5_Flr_2_Infiltration, !- Name @@ -7338,7 +7520,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA IC_PatRoom1_Mult5_Flr_2, !- Name @@ -7444,6 +7631,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7475,6 +7663,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7506,6 +7695,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7522,6 +7712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7538,6 +7729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7554,6 +7746,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7569,7 +7762,8 @@ IC_PatRoom2_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom2_Flr_2, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, IC_PatRoom2_Flr_2_Infiltration, !- Name @@ -7719,7 +7913,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA IC_PatRoom2_Flr_2, !- Name @@ -7825,6 +8024,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7856,6 +8056,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7872,6 +8073,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7888,6 +8090,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7904,6 +8107,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7920,6 +8124,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7935,7 +8140,8 @@ IC_PatRoom3_Mult6_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, IC_PatRoom3_Mult6_Flr_2_Infiltration, !- Name @@ -8085,7 +8291,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA IC_PatRoom3_Mult6_Flr_2, !- Name @@ -8191,6 +8402,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8207,6 +8419,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8238,6 +8451,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8254,6 +8468,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8270,6 +8485,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8286,6 +8502,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8301,7 +8518,8 @@ ICU_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name ICU_Flr_2, !- Zone or ZoneList Name - 1235.9289; !- Surface Area {m2} + , !- Surface Area {m2} + 1235.9289; !- Extended Field ZoneInfiltration:DesignFlowRate, ICU_Flr_2_Infiltration, !- Name @@ -8451,7 +8669,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ICU_Flr_2, !- Name @@ -8557,6 +8780,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8573,6 +8797,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8589,6 +8814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8605,6 +8831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8621,6 +8848,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8637,6 +8865,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ICU_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8652,7 +8881,8 @@ ICU_NurseSat_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ICU_NurseSat_Flr_2, !- Zone or ZoneList Name - 1337.5356; !- Surface Area {m2} + , !- Surface Area {m2} + 1337.5356; !- Extended Field ZoneInfiltration:DesignFlowRate, ICU_NurseSat_Flr_2_Infiltration, !- Name @@ -8802,7 +9032,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA ICU_NurseSat_Flr_2, !- Name @@ -8908,6 +9143,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8924,6 +9160,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8940,6 +9177,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8956,6 +9194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8972,6 +9211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8988,6 +9228,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9003,7 +9244,8 @@ Corridor_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_2, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_Flr_2_Infiltration, !- Name @@ -9125,7 +9367,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_Flr_2, !- Name @@ -9231,6 +9478,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9247,6 +9495,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9278,6 +9527,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9298,6 +9548,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9314,6 +9565,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9330,6 +9582,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9346,6 +9599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9362,6 +9616,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9378,6 +9633,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9394,6 +9650,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR_NurseSat_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9413,7 +9670,8 @@ OR_NurseSat_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name OR_NurseSat_Flr_2, !- Zone or ZoneList Name - 2025.2863; !- Surface Area {m2} + , !- Surface Area {m2} + 2025.2863; !- Extended Field ZoneInfiltration:DesignFlowRate, OR_NurseSat_Flr_2_Infiltration, !- Name @@ -9563,7 +9821,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA OR_NurseSat_Flr_2, !- Name @@ -9669,6 +9932,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9700,6 +9964,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9716,6 +9981,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9732,6 +9998,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9748,6 +10015,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9764,6 +10032,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9779,7 +10048,8 @@ PatRoom1_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom1_Mult10_Flr_3_Infiltration, !- Name @@ -9929,7 +10199,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom1_Mult10_Flr_3, !- Name @@ -10090,6 +10365,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10121,6 +10397,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10152,6 +10429,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10168,6 +10446,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10184,6 +10463,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10200,6 +10480,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10215,7 +10496,8 @@ PatRoom2_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom2_Flr_3_Infiltration, !- Name @@ -10365,7 +10647,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom2_Flr_3, !- Name @@ -10526,6 +10813,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10557,6 +10845,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10573,6 +10862,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10589,6 +10879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10605,6 +10896,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10621,6 +10913,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10636,7 +10929,8 @@ PatRoom3_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom3_Mult10_Flr_3_Infiltration, !- Name @@ -10786,7 +11080,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom3_Mult10_Flr_3, !- Name @@ -10947,6 +11246,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10978,6 +11278,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11009,6 +11310,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11025,6 +11327,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11041,6 +11344,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11057,6 +11361,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11072,7 +11377,8 @@ PatRoom4_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom4_Flr_3_Infiltration, !- Name @@ -11222,7 +11528,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom4_Flr_3, !- Name @@ -11383,6 +11694,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11414,6 +11726,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11430,6 +11743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11446,6 +11760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11462,6 +11777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11478,6 +11794,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11493,7 +11810,8 @@ PatRoom5_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom5_Mult10_Flr_3_Infiltration, !- Name @@ -11643,7 +11961,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom5_Mult10_Flr_3, !- Name @@ -11804,6 +12127,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11820,6 +12144,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11836,6 +12161,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11852,6 +12178,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11868,6 +12195,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11884,6 +12212,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11899,7 +12228,8 @@ PhysTherapy_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PhysTherapy_Flr_3, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field ZoneInfiltration:DesignFlowRate, PhysTherapy_Flr_3_Infiltration, !- Name @@ -12049,7 +12379,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PhysTherapy_Flr_3, !- Name @@ -12210,6 +12545,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12241,6 +12577,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12272,6 +12609,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12288,6 +12626,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12304,6 +12643,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12320,6 +12660,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12335,7 +12676,8 @@ PatRoom6_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom6_Flr_3_Infiltration, !- Name @@ -12485,7 +12827,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom6_Flr_3, !- Name @@ -12646,6 +12993,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12677,6 +13025,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12693,6 +13042,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12709,6 +13059,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12725,6 +13076,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12741,6 +13093,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12756,7 +13109,8 @@ PatRoom7_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom7_Mult10_Flr_3_Infiltration, !- Name @@ -12906,7 +13260,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom7_Mult10_Flr_3, !- Name @@ -13067,6 +13426,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13098,6 +13458,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13129,6 +13490,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13145,6 +13507,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13161,6 +13524,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13177,6 +13541,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13192,7 +13557,8 @@ PatRoom8_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom8_Flr_3_Infiltration, !- Name @@ -13342,7 +13708,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom8_Flr_3, !- Name @@ -13503,6 +13874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13519,6 +13891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13535,6 +13908,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13557,6 +13931,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13573,6 +13948,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13589,6 +13965,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13605,6 +13982,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13621,6 +13999,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13643,6 +14022,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13659,6 +14039,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13675,6 +14056,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13691,6 +14073,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13706,7 +14089,8 @@ NurseSat_Lobby_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseSat_Lobby_Flr_3, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field ZoneInfiltration:DesignFlowRate, NurseSat_Lobby_Flr_3_Infiltration, !- Name @@ -13856,7 +14240,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA NurseSat_Lobby_Flr_3, !- Name @@ -13962,6 +14351,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13980,6 +14370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13996,6 +14387,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14012,6 +14404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14028,6 +14421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14044,6 +14438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14060,6 +14455,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14078,6 +14474,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14093,7 +14490,8 @@ Lab_Flr_3_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name Lab_Flr_3, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field ZoneInfiltration:DesignFlowRate, Lab_Flr_3_Infiltration, !- Name @@ -14243,7 +14641,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Lab_Flr_3, !- Name @@ -14404,6 +14807,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14420,6 +14824,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14436,6 +14841,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14452,6 +14858,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14468,6 +14875,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14490,6 +14898,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14506,6 +14915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14522,6 +14932,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14538,6 +14949,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14554,6 +14966,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14570,6 +14983,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14586,6 +15000,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14602,6 +15017,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14624,6 +15040,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14640,6 +15057,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14655,7 +15073,8 @@ Corridor_SE_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_SE_Flr_3_Infiltration, !- Name @@ -14777,7 +15196,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_SE_Flr_3, !- Name @@ -14883,6 +15307,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14899,6 +15324,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14915,6 +15341,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14931,6 +15358,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14953,6 +15381,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14969,6 +15398,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14985,6 +15415,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15001,6 +15432,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15017,6 +15449,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15033,6 +15466,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15049,6 +15483,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15065,6 +15500,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15081,6 +15517,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15097,6 +15534,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15113,6 +15551,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15134,7 +15573,8 @@ Corridor_NW_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_NW_Flr_3_Infiltration, !- Name @@ -15256,7 +15696,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_NW_Flr_3, !- Name @@ -15362,6 +15807,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15393,6 +15839,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15409,6 +15856,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15425,6 +15873,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15441,6 +15890,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15457,6 +15907,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15472,7 +15923,8 @@ PatRoom1_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom1_Mult10_Flr_4_Infiltration, !- Name @@ -15622,7 +16074,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom1_Mult10_Flr_4, !- Name @@ -15783,6 +16240,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15814,6 +16272,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15845,6 +16304,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15861,6 +16321,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15877,6 +16338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15893,6 +16355,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15908,7 +16371,8 @@ PatRoom2_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom2_Flr_4_Infiltration, !- Name @@ -16058,7 +16522,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom2_Flr_4, !- Name @@ -16219,6 +16688,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16250,6 +16720,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16266,6 +16737,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16282,6 +16754,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16298,6 +16771,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16314,6 +16788,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16329,7 +16804,8 @@ PatRoom3_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom3_Mult10_Flr_4_Infiltration, !- Name @@ -16479,7 +16955,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom3_Mult10_Flr_4, !- Name @@ -16640,6 +17121,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16671,6 +17153,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16702,6 +17185,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16718,6 +17202,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16734,6 +17219,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16750,6 +17236,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16765,7 +17252,8 @@ PatRoom4_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom4_Flr_4_Infiltration, !- Name @@ -16915,7 +17403,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom4_Flr_4, !- Name @@ -17076,6 +17569,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17107,6 +17601,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17123,6 +17618,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17139,6 +17635,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17155,6 +17652,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17171,6 +17669,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17186,7 +17685,8 @@ PatRoom5_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom5_Mult10_Flr_4_Infiltration, !- Name @@ -17336,7 +17836,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom5_Mult10_Flr_4, !- Name @@ -17497,6 +18002,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17513,6 +18019,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17529,6 +18036,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17545,6 +18053,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17561,6 +18070,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17577,6 +18087,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17592,7 +18103,8 @@ Radiology_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Radiology_Flr_4, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field ZoneInfiltration:DesignFlowRate, Radiology_Flr_4_Infiltration, !- Name @@ -17742,7 +18254,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Radiology_Flr_4, !- Name @@ -17903,6 +18420,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17934,6 +18452,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17965,6 +18484,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17981,6 +18501,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17997,6 +18518,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18013,6 +18535,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18028,7 +18551,8 @@ PatRoom6_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom6_Flr_4_Infiltration, !- Name @@ -18178,7 +18702,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom6_Flr_4, !- Name @@ -18339,6 +18868,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18370,6 +18900,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18386,6 +18917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18402,6 +18934,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18418,6 +18951,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18434,6 +18968,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18449,7 +18984,8 @@ PatRoom7_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom7_Mult10_Flr_4_Infiltration, !- Name @@ -18599,7 +19135,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom7_Mult10_Flr_4, !- Name @@ -18760,6 +19301,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18791,6 +19333,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18822,6 +19365,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18838,6 +19382,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18854,6 +19399,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18870,6 +19416,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18885,7 +19432,8 @@ PatRoom8_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field ZoneInfiltration:DesignFlowRate, PatRoom8_Flr_4_Infiltration, !- Name @@ -19035,7 +19583,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA PatRoom8_Flr_4, !- Name @@ -19196,6 +19749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19212,6 +19766,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19228,6 +19783,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19250,6 +19806,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19266,6 +19823,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19282,6 +19840,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19298,6 +19857,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19314,6 +19874,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19336,6 +19897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19352,6 +19914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19368,6 +19931,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19384,6 +19948,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19399,7 +19964,8 @@ NurseSat_Lobby_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseSat_Lobby_Flr_4, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field ZoneInfiltration:DesignFlowRate, NurseSat_Lobby_Flr_4_Infiltration, !- Name @@ -19549,7 +20115,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA NurseSat_Lobby_Flr_4, !- Name @@ -19655,6 +20226,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19673,6 +20245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19689,6 +20262,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19705,6 +20279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19721,6 +20296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19737,6 +20313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19753,6 +20330,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19771,6 +20349,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19786,7 +20365,8 @@ Lab_Flr_4_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name Lab_Flr_4, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field ZoneInfiltration:DesignFlowRate, Lab_Flr_4_Infiltration, !- Name @@ -19936,7 +20516,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Lab_Flr_4, !- Name @@ -20097,6 +20682,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20113,6 +20699,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20129,6 +20716,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20145,6 +20733,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20161,6 +20750,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20183,6 +20773,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20199,6 +20790,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20215,6 +20807,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20231,6 +20824,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20247,6 +20841,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20263,6 +20858,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20279,6 +20875,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20295,6 +20892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20317,6 +20915,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20333,6 +20932,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20348,7 +20948,8 @@ Corridor_SE_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_SE_Flr_4_Infiltration, !- Name @@ -20470,7 +21071,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_SE_Flr_4, !- Name @@ -20576,6 +21182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20592,6 +21199,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20608,6 +21216,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20624,6 +21233,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20646,6 +21256,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20662,6 +21273,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20678,6 +21290,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20694,6 +21307,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20710,6 +21324,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20726,6 +21341,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20742,6 +21358,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20758,6 +21375,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20774,6 +21392,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20790,6 +21409,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20806,6 +21426,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20827,7 +21448,8 @@ Corridor_NW_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_NW_Flr_4_Infiltration, !- Name @@ -20949,7 +21571,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_NW_Flr_4, !- Name @@ -21055,6 +21682,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21071,6 +21699,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21087,6 +21716,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21118,6 +21748,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21134,6 +21765,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21150,6 +21782,7 @@ Roof, !- Surface Type roofs, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21165,7 +21798,8 @@ Dining_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Dining_Flr_5, !- Zone or ZoneList Name - 1393.5456; !- Surface Area {m2} + , !- Surface Area {m2} + 1393.5456; !- Extended Field ZoneInfiltration:DesignFlowRate, Dining_Flr_5_Infiltration, !- Name @@ -21315,7 +21949,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Dining_Flr_5, !- Name @@ -21440,6 +22079,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21456,6 +22096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21472,6 +22113,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21488,6 +22130,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21504,6 +22147,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21520,6 +22164,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21536,6 +22181,7 @@ Roof, !- Surface Type roofs, !- Construction Name NurseSat_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21551,7 +22197,8 @@ NurseSat_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseSat_Flr_5, !- Zone or ZoneList Name - 2081.0281; !- Surface Area {m2} + , !- Surface Area {m2} + 2081.0281; !- Extended Field ZoneInfiltration:DesignFlowRate, NurseSat_Flr_5_Infiltration, !- Name @@ -21701,7 +22348,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA NurseSat_Flr_5, !- Name @@ -21807,6 +22459,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21823,6 +22476,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21839,6 +22493,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21855,6 +22510,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21871,6 +22527,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21887,6 +22544,7 @@ Roof, !- Surface Type roofs, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21903,6 +22561,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21918,7 +22577,8 @@ Kitchen_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen_Flr_5, !- Zone or ZoneList Name - 1858.0608; !- Surface Area {m2} + , !- Surface Area {m2} + 1858.0608; !- Extended Field ZoneInfiltration:DesignFlowRate, Kitchen_Flr_5_Infiltration, !- Name @@ -22097,7 +22757,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Kitchen_Flr_5, !- Name @@ -22539,6 +23204,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22570,6 +23236,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22601,6 +23268,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22617,6 +23285,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22633,6 +23302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22649,6 +23319,7 @@ Roof, !- Surface Type roofs, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22664,7 +23335,8 @@ Office1_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office1_Flr_5, !- Zone or ZoneList Name - 139.3911; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3911; !- Extended Field ZoneInfiltration:DesignFlowRate, Office1_Flr_5_Infiltration, !- Name @@ -22814,7 +23486,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Office1_Flr_5, !- Name @@ -22920,6 +23597,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22951,6 +23629,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22967,6 +23646,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22983,6 +23663,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22999,6 +23680,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23015,6 +23697,7 @@ Roof, !- Surface Type roofs, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23030,7 +23713,8 @@ Office2_Mult5_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office2_Mult5_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field ZoneInfiltration:DesignFlowRate, Office2_Mult5_Flr_5_Infiltration, !- Name @@ -23180,7 +23864,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Office2_Mult5_Flr_5, !- Name @@ -23286,6 +23975,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23317,6 +24007,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23348,6 +24039,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23364,6 +24056,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23380,6 +24073,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23396,6 +24090,7 @@ Roof, !- Surface Type roofs, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23411,7 +24106,8 @@ Office3_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office3_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field ZoneInfiltration:DesignFlowRate, Office3_Flr_5_Infiltration, !- Name @@ -23561,7 +24257,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Office3_Flr_5, !- Name @@ -23667,6 +24368,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23698,6 +24400,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23714,6 +24417,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23730,6 +24434,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23746,6 +24451,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23762,6 +24468,7 @@ Roof, !- Surface Type roofs, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23777,7 +24484,8 @@ Office4_Mult6_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office4_Mult6_Flr_5, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field ZoneInfiltration:DesignFlowRate, Office4_Mult6_Flr_5_Infiltration, !- Name @@ -23927,7 +24635,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Office4_Mult6_Flr_5, !- Name @@ -24033,6 +24746,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24049,6 +24763,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24065,6 +24780,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24081,6 +24797,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24097,6 +24814,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24117,6 +24835,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24133,6 +24852,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24149,6 +24869,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24165,6 +24886,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24181,6 +24903,7 @@ Roof, !- Surface Type roofs, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24200,7 +24923,8 @@ Corridor_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_5, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_Flr_5_Infiltration, !- Name @@ -24322,7 +25046,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Corridor_Flr_5, !- Name @@ -27358,7 +28087,7 @@ UtilityCost:Tariff, CA_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -27451,7 +28180,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -27555,9 +28284,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -27593,17 +28322,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/BenchmarkLargeOfficeNew_USA_CA_SAN_FRANCISCO_10_windows_per_zone.idf b/performance_tests/BenchmarkLargeOfficeNew_USA_CA_SAN_FRANCISCO_10_windows_per_zone.idf index 775951298dc..8f8b95433f1 100644 --- a/performance_tests/BenchmarkLargeOfficeNew_USA_CA_SAN_FRANCISCO_10_windows_per_zone.idf +++ b/performance_tests/BenchmarkLargeOfficeNew_USA_CA_SAN_FRANCISCO_10_windows_per_zone.idf @@ -76,7 +76,7 @@ Building, !- Name 0, !- North Axis {deg} City, !- Terrain - 0.04, !- Loads Convergence Tolerance Value + 0.04, !- Loads Convergence Tolerance Value {W} 0.2, !- Temperature Convergence Tolerance Value {deltaC} MinimalShadowing, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -100,7 +100,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes ConvergenceLimits, 5, !- Minimum System Timestep {minutes} @@ -1562,6 +1564,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1581,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1598,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1615,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1666,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1683,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1700,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1717,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,7 +1733,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field ZoneInfiltration:DesignFlowRate, Basement_Infiltration, !- Name @@ -1830,6 +1843,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1860,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1910,6 +1928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1925,7 +1944,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_bottom_Infiltration,!- Name @@ -2075,7 +2095,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_bottom, !- Name @@ -2236,6 +2261,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2252,6 +2278,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2295,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2312,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2329,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2316,6 +2346,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,7 +2362,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_mid_Infiltration, !- Name @@ -2481,7 +2513,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_mid, !- Name @@ -2642,6 +2679,7 @@ Roof, !- Surface Type roofs, !- Construction Name Core_top, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2658,6 +2696,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2674,6 +2713,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2690,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2706,6 +2747,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2722,6 +2764,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2737,7 +2780,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2887,7 +2931,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_top, !- Name @@ -3048,6 +3097,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3064,6 +3114,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3080,6 +3131,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3096,6 +3148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3112,6 +3165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3128,6 +3182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3143,7 +3198,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3293,7 +3349,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_3, !- Name @@ -3399,6 +3460,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3415,6 +3477,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3431,6 +3494,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3447,6 +3511,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3463,6 +3528,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3479,6 +3545,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3494,7 +3561,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3644,7 +3712,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_2, !- Name @@ -3750,6 +3823,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3766,6 +3840,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3782,6 +3857,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3798,6 +3874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3814,6 +3891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3830,6 +3908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3845,7 +3924,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3995,7 +4075,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_1, !- Name @@ -4101,6 +4186,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4117,6 +4203,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4133,6 +4220,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4149,6 +4237,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4165,6 +4254,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4181,6 +4271,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4196,7 +4287,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4346,7 +4438,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_4, !- Name @@ -4452,6 +4549,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4468,6 +4566,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4484,6 +4583,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4500,6 +4600,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4516,6 +4617,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4532,6 +4634,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4547,7 +4650,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4697,7 +4801,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_3, !- Name @@ -4803,6 +4912,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4819,6 +4929,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4835,6 +4946,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4851,6 +4963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4867,6 +4980,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4883,6 +4997,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4898,7 +5013,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5048,7 +5164,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_2, !- Name @@ -5154,6 +5275,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5170,6 +5292,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5186,6 +5309,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5202,6 +5326,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5218,6 +5343,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5234,6 +5360,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5249,7 +5376,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5399,7 +5527,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_1, !- Name @@ -5505,6 +5638,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5521,6 +5655,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5537,6 +5672,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5553,6 +5689,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5569,6 +5706,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5585,6 +5723,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5600,7 +5739,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5750,7 +5890,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_4, !- Name @@ -5856,6 +6001,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5872,6 +6018,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5888,6 +6035,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5904,6 +6052,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5920,6 +6069,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5936,6 +6086,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5951,7 +6102,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6101,7 +6253,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_3, !- Name @@ -6207,6 +6364,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6223,6 +6381,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6239,6 +6398,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6255,6 +6415,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6271,6 +6432,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6287,6 +6449,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6302,7 +6465,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6452,7 +6616,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_2, !- Name @@ -6558,6 +6727,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6574,6 +6744,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6590,6 +6761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6606,6 +6778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6622,6 +6795,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6638,6 +6812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6653,7 +6828,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6803,7 +6979,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_1, !- Name @@ -6909,6 +7090,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6925,6 +7107,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6941,6 +7124,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6957,6 +7141,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6973,6 +7158,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6989,6 +7175,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7004,7 +7191,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7154,7 +7342,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_4, !- Name @@ -9086,7 +9279,7 @@ UtilityCost:Tariff, CA_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -9179,7 +9372,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} @@ -9275,9 +9468,9 @@ SumOrAverage, !- Aggregation Type for Variable or Meter 1 Electricity:Facility, !- Variable or Meter 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 - NaturalGas:Facility, !- Variable or Meter 3 Name + NaturalGas:Facility, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - NaturalGas:Facility, !- Variable or Meter 4 Name + NaturalGas:Facility, !- Variable or Meter 4 Name Maximum; !- Aggregation Type for Variable or Meter 4 Output:Table:Monthly, @@ -9313,17 +9506,17 @@ Output:Table:Monthly, End-Use Energy Consumption - Natural Gas, !- Name , !- Digits After Decimal - InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Heating:NaturalGas, !- Variable or Meter 3 Name + Heating:NaturalGas, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Cooling:NaturalGas, !- Variable or Meter 4 Name + Cooling:NaturalGas, !- Variable or Meter 4 Name SumOrAverage, !- Aggregation Type for Variable or Meter 4 - WaterSystems:NaturalGas, !- Variable or Meter 5 Name + WaterSystems:NaturalGas, !- Variable or Meter 5 Name SumOrAverage, !- Aggregation Type for Variable or Meter 5 - Cogeneration:NaturalGas, !- Variable or Meter 6 Name + Cogeneration:NaturalGas, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 Output:Table:Monthly, diff --git a/performance_tests/Benchmarklargeofficenew_usa_ca_san_francisco_no_reports.idf b/performance_tests/Benchmarklargeofficenew_usa_ca_san_francisco_no_reports.idf index 7cdc3d3ac8d..1ed484ae07b 100644 --- a/performance_tests/Benchmarklargeofficenew_usa_ca_san_francisco_no_reports.idf +++ b/performance_tests/Benchmarklargeofficenew_usa_ca_san_francisco_no_reports.idf @@ -76,7 +76,7 @@ Building, !- Name 0, !- North Axis {deg} City, !- Terrain - 0.04, !- Loads Convergence Tolerance Value + 0.04, !- Loads Convergence Tolerance Value {W} 0.2, !- Temperature Convergence Tolerance Value {deltaC} MinimalShadowing, !- Solar Distribution 25, !- Maximum Number of Warmup Days @@ -100,7 +100,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes ConvergenceLimits, 5, !- Minimum System Timestep {minutes} @@ -1562,6 +1564,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1581,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1598,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1615,7 @@ Wall, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1666,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1683,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1700,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1717,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,7 +1733,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field ZoneInfiltration:DesignFlowRate, Basement_Infiltration, !- Name @@ -1830,6 +1843,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1860,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1910,6 +1928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1925,7 +1944,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_bottom_Infiltration,!- Name @@ -2075,7 +2095,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_bottom, !- Name @@ -2236,6 +2261,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2252,6 +2278,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2295,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2312,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2329,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2316,6 +2346,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,7 +2362,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_mid_Infiltration, !- Name @@ -2481,7 +2513,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_mid, !- Name @@ -2642,6 +2679,7 @@ Roof, !- Surface Type roofs, !- Construction Name Core_top, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2658,6 +2696,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2674,6 +2713,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2690,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2706,6 +2747,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2722,6 +2764,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2737,7 +2780,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2887,7 +2931,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Core_top, !- Name @@ -3048,6 +3097,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3079,6 +3129,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3095,6 +3146,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3111,6 +3163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3127,6 +3180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3143,6 +3197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3158,7 +3213,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3308,7 +3364,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_3, !- Name @@ -3414,6 +3475,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3445,6 +3507,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3461,6 +3524,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3477,6 +3541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3493,6 +3558,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3509,6 +3575,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3524,7 +3591,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3674,7 +3742,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_2, !- Name @@ -3780,6 +3853,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3811,6 +3885,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3827,6 +3902,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3843,6 +3919,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3859,6 +3936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3875,6 +3953,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3890,7 +3969,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -4040,7 +4120,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_1, !- Name @@ -4146,6 +4231,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4177,6 +4263,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4193,6 +4280,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4209,6 +4297,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4225,6 +4314,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4241,6 +4331,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4256,7 +4347,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4406,7 +4498,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_bot_ZN_4, !- Name @@ -4512,6 +4609,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4543,6 +4641,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4559,6 +4658,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4575,6 +4675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4591,6 +4692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4607,6 +4709,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4622,7 +4725,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4772,7 +4876,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_3, !- Name @@ -4878,6 +4987,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4909,6 +5019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4925,6 +5036,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4941,6 +5053,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4957,6 +5070,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4973,6 +5087,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4988,7 +5103,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5138,7 +5254,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_2, !- Name @@ -5244,6 +5365,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5260,6 +5382,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5291,6 +5414,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5307,6 +5431,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5323,6 +5448,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5339,6 +5465,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5354,7 +5481,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5504,7 +5632,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_1, !- Name @@ -5610,6 +5743,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5641,6 +5775,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5657,6 +5792,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5673,6 +5809,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5689,6 +5826,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5705,6 +5843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5720,7 +5859,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5870,7 +6010,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_mid_ZN_4, !- Name @@ -5976,6 +6121,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6007,6 +6153,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6023,6 +6170,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6039,6 +6187,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6055,6 +6204,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6071,6 +6221,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6086,7 +6237,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6236,7 +6388,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_3, !- Name @@ -6342,6 +6499,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6373,6 +6531,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6389,6 +6548,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6405,6 +6565,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6421,6 +6582,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6437,6 +6599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6452,7 +6615,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6602,7 +6766,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_2, !- Name @@ -6708,6 +6877,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6739,6 +6909,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6755,6 +6926,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6771,6 +6943,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6787,6 +6960,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6803,6 +6977,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6818,7 +6993,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6968,7 +7144,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_1, !- Name @@ -7074,6 +7255,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7105,6 +7287,7 @@ Roof, !- Surface Type roofs, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7121,6 +7304,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7137,6 +7321,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7153,6 +7338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7169,6 +7355,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7184,7 +7371,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7334,7 +7522,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, SZ DSOA Perimeter_top_ZN_4, !- Name @@ -9266,7 +9459,7 @@ UtilityCost:Tariff, CA_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -9359,7 +9552,7 @@ ! FuelFactors, - FuelOilNo1, !- Existing Fuel Resource Name + FuelOilNo1, !- Existing Fuel Resource Name m3, !- Units of Measure 38.656E+09, !- Energy per Unit Factor 1.158, !- Source Energy Factor {J/J} diff --git a/performance_tests/PipingSystem_Underground_FHX.idf b/performance_tests/PipingSystem_Underground_FHX.idf index 6b8da299888..3b0ac3b59ca 100644 --- a/performance_tests/PipingSystem_Underground_FHX.idf +++ b/performance_tests/PipingSystem_Underground_FHX.idf @@ -59,7 +59,7 @@ FHX House, !- Name 0.0, !- North Axis {deg} Suburbs, !- Terrain - 0.05, !- Loads Convergence Tolerance Value + 0.05, !- Loads Convergence Tolerance Value {W} 0.05, !- Temperature Convergence Tolerance Value {deltaC} FullInteriorAndExterior, !- Solar Distribution 35, !- Maximum Number of Warmup Days @@ -92,7 +92,9 @@ Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes !*********************************************************** !****** LOCATION SPECIFIC OBJECTS ************************** @@ -201,7 +203,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} Sizing:Zone, Main Floor, !- Zone or ZoneList Name @@ -225,7 +232,12 @@ 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 + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} Sizing:Plant, Condenser Loop, !- Plant or Condenser Loop Name @@ -352,6 +364,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -368,6 +381,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -384,6 +398,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -400,6 +415,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -416,6 +432,7 @@ Floor, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementFloorOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -432,6 +449,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -475,6 +493,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -491,6 +510,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -507,6 +527,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -523,6 +544,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -539,6 +561,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,97 +853,97 @@ Zone 2 Outlet Node; !- Return Air Stream Node Name Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Coil:Cooling:WaterToAirHeatPump:EquationFit, Sys 2 Heat Pump Cooling Mode, !- Name diff --git a/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf b/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf index 3ff0b18f9ee..b1f943b98cc 100644 --- a/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf +++ b/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf @@ -229,6 +229,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -245,6 +246,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -261,6 +263,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -277,6 +280,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -293,6 +297,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -309,6 +314,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf b/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf index 05782aa96ea..55fd3c59542 100644 --- a/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf +++ b/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf @@ -229,6 +229,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -245,6 +246,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -261,6 +263,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -277,6 +280,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -293,6 +297,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -309,6 +314,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneEvapCooler.idf b/testfiles/1ZoneEvapCooler.idf index 71757d957e3..3d28fe3e0a6 100644 --- a/testfiles/1ZoneEvapCooler.idf +++ b/testfiles/1ZoneEvapCooler.idf @@ -248,6 +248,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -264,6 +265,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -280,6 +282,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -296,6 +299,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -312,6 +316,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -328,6 +333,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneParameterAspect.idf b/testfiles/1ZoneParameterAspect.idf index 83ca8d17da0..374b18f13f7 100644 --- a/testfiles/1ZoneParameterAspect.idf +++ b/testfiles/1ZoneParameterAspect.idf @@ -273,6 +273,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -289,6 +290,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -305,6 +307,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -321,6 +324,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -337,6 +341,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -353,6 +358,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled.idf b/testfiles/1ZoneUncontrolled.idf index 9cc685ac379..b27bd72680b 100644 --- a/testfiles/1ZoneUncontrolled.idf +++ b/testfiles/1ZoneUncontrolled.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +305,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +322,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +339,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -351,6 +356,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled3SurfaceZone.idf b/testfiles/1ZoneUncontrolled3SurfaceZone.idf index 9c01b376b25..1841dbdb0f3 100644 --- a/testfiles/1ZoneUncontrolled3SurfaceZone.idf +++ b/testfiles/1ZoneUncontrolled3SurfaceZone.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -303,6 +305,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledAnnualOutputs.idf b/testfiles/1ZoneUncontrolledAnnualOutputs.idf index bffbe86a008..64209f02e59 100644 --- a/testfiles/1ZoneUncontrolledAnnualOutputs.idf +++ b/testfiles/1ZoneUncontrolledAnnualOutputs.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +305,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +322,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +339,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -351,6 +356,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledCondFDWithVariableKat24C.idf b/testfiles/1ZoneUncontrolledCondFDWithVariableKat24C.idf index dff89390b4b..d596bbf041e 100644 --- a/testfiles/1ZoneUncontrolledCondFDWithVariableKat24C.idf +++ b/testfiles/1ZoneUncontrolledCondFDWithVariableKat24C.idf @@ -302,6 +302,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -318,6 +319,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -334,6 +336,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -350,6 +353,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -366,6 +370,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -382,6 +387,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledFourAlgorithms.idf b/testfiles/1ZoneUncontrolledFourAlgorithms.idf index 9ead06b93d1..c9f99ddf510 100644 --- a/testfiles/1ZoneUncontrolledFourAlgorithms.idf +++ b/testfiles/1ZoneUncontrolledFourAlgorithms.idf @@ -546,6 +546,7 @@ Wall, !- Surface Type WALL-1 EMPD, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -562,6 +563,7 @@ Wall, !- Surface Type WALL-1 EMPD, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -582,6 +584,7 @@ Wall, !- Surface Type WALL-1 EMPD, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -603,6 +606,7 @@ Wall, !- Surface Type Exterior HAMT wall, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +627,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -639,6 +644,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledResLayers.idf b/testfiles/1ZoneUncontrolledResLayers.idf index 2cb9724e9c8..1a84eba21db 100644 --- a/testfiles/1ZoneUncontrolledResLayers.idf +++ b/testfiles/1ZoneUncontrolledResLayers.idf @@ -297,6 +297,7 @@ Wall, !- Surface Type WALL1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -313,6 +314,7 @@ Wall, !- Surface Type WALL2, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -329,6 +331,7 @@ Wall, !- Surface Type WALL3, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -345,6 +348,7 @@ Wall, !- Surface Type WALL4, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -361,6 +365,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -377,6 +382,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledUTF8.idf b/testfiles/1ZoneUncontrolledUTF8.idf index 74ecf9800db..e3112c0c537 100644 --- a/testfiles/1ZoneUncontrolledUTF8.idf +++ b/testfiles/1ZoneUncontrolledUTF8.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name 试验, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name 试验, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +305,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name 试验, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +322,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name 试验, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +339,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name 试验, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -351,6 +356,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 试验, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolledWithHysteresisPCM.idf b/testfiles/1ZoneUncontrolledWithHysteresisPCM.idf index d746a3d34b1..26400414de9 100644 --- a/testfiles/1ZoneUncontrolledWithHysteresisPCM.idf +++ b/testfiles/1ZoneUncontrolledWithHysteresisPCM.idf @@ -287,6 +287,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +304,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +321,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +338,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -351,6 +355,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -367,6 +372,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_DD2009.idf b/testfiles/1ZoneUncontrolled_DD2009.idf index fd3a02c7923..d289870da00 100644 --- a/testfiles/1ZoneUncontrolled_DD2009.idf +++ b/testfiles/1ZoneUncontrolled_DD2009.idf @@ -674,6 +674,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +691,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +708,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +725,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +742,7 @@ Ceiling, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -754,6 +759,7 @@ Floor, !- Surface Type Slab, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_DDChanges.idf b/testfiles/1ZoneUncontrolled_DDChanges.idf index 1c6de4a1435..694832f3b23 100644 --- a/testfiles/1ZoneUncontrolled_DDChanges.idf +++ b/testfiles/1ZoneUncontrolled_DDChanges.idf @@ -1657,6 +1657,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1673,6 +1674,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1689,6 +1691,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1705,6 +1708,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1721,6 +1725,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1742,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_FCfactor_Slab_UGWall.idf b/testfiles/1ZoneUncontrolled_FCfactor_Slab_UGWall.idf index 84738c5e892..c04572f33bd 100644 --- a/testfiles/1ZoneUncontrolled_FCfactor_Slab_UGWall.idf +++ b/testfiles/1ZoneUncontrolled_FCfactor_Slab_UGWall.idf @@ -267,6 +267,7 @@ Wall, !- Surface Type CfactorUGWall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name GroundFCfactorMethod, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -283,6 +284,7 @@ Wall, !- Surface Type CfactorUGWall2, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name GroundFCfactorMethod, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -299,6 +301,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -315,6 +318,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -331,6 +335,7 @@ Floor, !- Surface Type slabconst, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name GroundFCfactorMethod, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -347,6 +352,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_OtherEquipmentWithFuel.idf b/testfiles/1ZoneUncontrolled_OtherEquipmentWithFuel.idf index bc959147a25..54c588ad524 100644 --- a/testfiles/1ZoneUncontrolled_OtherEquipmentWithFuel.idf +++ b/testfiles/1ZoneUncontrolled_OtherEquipmentWithFuel.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +305,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +322,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +339,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -351,6 +356,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_Win_ASH55_Thermal_Comfort.idf b/testfiles/1ZoneUncontrolled_Win_ASH55_Thermal_Comfort.idf index dbac3e6052e..3456b0d300b 100644 --- a/testfiles/1ZoneUncontrolled_Win_ASH55_Thermal_Comfort.idf +++ b/testfiles/1ZoneUncontrolled_Win_ASH55_Thermal_Comfort.idf @@ -114,7 +114,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -131,7 +133,6 @@ Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators - RunPeriod, Run Period 2, !- Name 7, !- Begin Month @@ -286,6 +287,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -360,6 +362,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -376,6 +379,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -392,6 +396,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -408,6 +413,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -424,6 +430,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -436,8 +443,8 @@ 15.24000,15.24000,4.572; !- X,Y,Z ==> Vertex 4 {m} People, - ZONE ONE People, !- Name - ZONE ONE, !- Zone or ZoneList Name + ZONE ONE People, !- Name + ZONE ONE, !- Zone or ZoneList Name BLDG_OCC_SCH, !- Number of People Schedule Name Area/Person, !- Number of People Calculation Method , !- Number of People @@ -646,42 +653,43 @@ 7.5, !- Y-Coordinate of Reference Point {m} 0.7; !- Z-Coordinate of Reference Point {m} - Output:Variable,*,Site Outdoor Air Barometric Pressure,hourly; !- Zone Average [Pa] + Output:Variable,*,Site Outdoor Air Barometric Pressure,hourly; Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; - Output:Variable,*,Site Outdoor Air Humidity Ratio,hourly; !- Zone Average [kgWater/kgDryAir] + Output:Variable,*,Site Outdoor Air Humidity Ratio,hourly; - Output:Variable,*,Site Outdoor Air Relative Humidity,hourly; !- Zone Average [%] + Output:Variable,*,Site Outdoor Air Relative Humidity,hourly; Output:Variable,*,Zone Mean Air Temperature,hourly; - Output:Variable,*,Zone Mean Air Humidity Ratio,hourly; !- Zone Average [kgWater/kgDryAir] + Output:Variable,*,Zone Mean Air Humidity Ratio,hourly; - Output:Variable,*,Zone Air Relative Humidity,hourly; !- Zone Average [%] + Output:Variable,*,Zone Air Relative Humidity,hourly; - Output:Variable,*,Zone Heat Index,hourly; !- Zone Average [C] + Output:Variable,*,Zone Heat Index,hourly; - Output:Variable,*,Zone Humidity Index,hourly; !- Zone Average [] + Output:Variable,*,Zone Humidity Index,hourly; - Output:Variable,*,Zone Thermal Comfort Fanger Model PMV,hourly; !- Zone Average [] + Output:Variable,*,Zone Thermal Comfort Fanger Model PMV,hourly; - Output:Variable,*,Zone Thermal Comfort Fanger Model PPD,hourly; !- Zone Average [%] + Output:Variable,*,Zone Thermal Comfort Fanger Model PPD,hourly; - Output:Variable,*,Zone Thermal Comfort Pierce Model Standard Effective Temperature,hourly; !- Zone Average [C] + Output:Variable,*,Zone Thermal Comfort Pierce Model Standard Effective Temperature,hourly; - Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect,hourly; !- Zone Average [C] + Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect,hourly; - Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect Adjusted PMV,hourly; !- Zone Average [] + Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect Adjusted PMV,hourly; - Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect Adjusted PPD,hourly; !- Zone Average [] + Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Elevated Air Speed Cooling Effect Adjusted PPD,hourly; - Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Ankle Draft PPD,hourly; !- Zone Average [] + Output:Variable,*,Zone Thermal Comfort ASHRAE 55 Ankle Draft PPD,hourly; Output:VariableDictionary,IDF; OutputControl:Table:Style, - HTML; !- Column Separator + HTML; !- Column Separator Output:Table:SummaryReports, - AllSummary; !- Report 1 Name + AllSummary; !- Report 1 Name + diff --git a/testfiles/1ZoneUncontrolled_Win_ResilienceReports.idf b/testfiles/1ZoneUncontrolled_Win_ResilienceReports.idf index baac4601c33..9b9bf7fef5f 100644 --- a/testfiles/1ZoneUncontrolled_Win_ResilienceReports.idf +++ b/testfiles/1ZoneUncontrolled_Win_ResilienceReports.idf @@ -6,7 +6,7 @@ ! Basic file description: Basic test for EnergyPlus. Resistive Walls. Regular (no ground contact) floor. ! Regular roof. One Window. ! -! Highlights: Reporting thermal, CO2 and visual resilience metrics. Heat Index, Humidex, +! Highlights: Reporting thermal, CO2 and visual resilience metrics. Heat Index, Humidex, ! Standard Effective Temperature, Daylighting levels and Zone CO2 levels are calculated. ! ! @@ -114,7 +114,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -131,7 +133,6 @@ Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators - RunPeriod, Run Period 2, !- Name 7, !- Begin Month @@ -286,6 +287,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -360,6 +362,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -376,6 +379,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -392,6 +396,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -408,6 +413,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -424,6 +430,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -436,8 +443,8 @@ 15.24000,15.24000,4.572; !- X,Y,Z ==> Vertex 4 {m} People, - ZONE ONE People, !- Name - ZONE ONE, !- Zone or ZoneList Name + ZONE ONE People, !- Name + ZONE ONE, !- Zone or ZoneList Name BLDG_OCC_SCH, !- Number of People Schedule Name Area/Person, !- Number of People Calculation Method , !- Number of People @@ -632,38 +639,39 @@ 7.5, !- Y-Coordinate of Reference Point {m} 0.7; !- Z-Coordinate of Reference Point {m} - Output:Variable,*,Site Outdoor Air Barometric Pressure,hourly; !- Zone Average [Pa] + Output:Variable,*,Site Outdoor Air Barometric Pressure,hourly; Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; - Output:Variable,*,Site Outdoor Air Humidity Ratio,hourly; !- Zone Average [kgWater/kgDryAir] + Output:Variable,*,Site Outdoor Air Humidity Ratio,hourly; - Output:Variable,*,Site Outdoor Air Relative Humidity,hourly; !- Zone Average [%] + Output:Variable,*,Site Outdoor Air Relative Humidity,hourly; Output:Variable,*,Zone Mean Air Temperature,hourly; - Output:Variable,*,Zone Mean Air Humidity Ratio,hourly; !- Zone Average [kgWater/kgDryAir] + Output:Variable,*,Zone Mean Air Humidity Ratio,hourly; - Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; !- Zone Average [C] + Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; - Output:Variable,*,Zone Heat Index,hourly; !- Zone Average [C] + Output:Variable,*,Zone Heat Index,hourly; - Output:Variable,*,Zone Humidity Index,hourly; !- Zone Average [] + Output:Variable,*,Zone Humidity Index,hourly; - Output:Variable,*,Zone Thermal Comfort Pierce Model Standard Effective Temperature,hourly; !- Zone Average [C] + Output:Variable,*,Zone Thermal Comfort Pierce Model Standard Effective Temperature,hourly; - Output:Variable,*,Zone Air CO2 Concentration,hourly; !- HVAC Average [ppm] + Output:Variable,*,Zone Air CO2 Concentration,hourly; - Output:Variable,*,Daylighting Reference Point 1 Illuminance,hourly; !- Zone Average [lux] + Output:Variable,*,Daylighting Reference Point 1 Illuminance,hourly; Output:VariableDictionary,IDF; OutputControl:Table:Style, - HTML; !- Column Separator + HTML; !- Column Separator Output:Table:SummaryReports, AnnualBuildingUtilityPerformanceSummary, !- Report 1 Name - DemandEndUseComponentsSummary, !- Report 2 Name - ThermalResilienceSummary, !- Report 3 Name - CO2ResilienceSummary, !- Report 4 Name - VisualResilienceSummary; !- Report 5 Name + DemandEndUseComponentsSummary, !- Report 2 Name + ThermalResilienceSummary,!- Report 3 Name + CO2ResilienceSummary, !- Report 4 Name + VisualResilienceSummary; !- Report 5 Name + diff --git a/testfiles/1ZoneUncontrolled_win_1.idf b/testfiles/1ZoneUncontrolled_win_1.idf index a20b5938e48..142eac16a82 100644 --- a/testfiles/1ZoneUncontrolled_win_1.idf +++ b/testfiles/1ZoneUncontrolled_win_1.idf @@ -275,6 +275,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -306,6 +307,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -322,6 +324,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -338,6 +341,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +358,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -370,6 +375,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneUncontrolled_win_2.idf b/testfiles/1ZoneUncontrolled_win_2.idf index 014167064a2..301aac8d72d 100644 --- a/testfiles/1ZoneUncontrolled_win_2.idf +++ b/testfiles/1ZoneUncontrolled_win_2.idf @@ -275,6 +275,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -306,6 +307,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -322,6 +324,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -338,6 +341,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +358,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -370,6 +375,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/1ZoneWith14ControlledHeat-CoolPanels.idf b/testfiles/1ZoneWith14ControlledHeat-CoolPanels.idf index eb53e5ecd61..9ab92194b8d 100644 --- a/testfiles/1ZoneWith14ControlledHeat-CoolPanels.idf +++ b/testfiles/1ZoneWith14ControlledHeat-CoolPanels.idf @@ -578,6 +578,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -594,6 +595,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -610,6 +612,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +629,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +646,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -658,6 +663,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition Zn001:Roof001:OSC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf b/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf index 3c03bcf4f81..e1b6d90fe12 100644 --- a/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf +++ b/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf @@ -450,6 +450,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -466,6 +467,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +484,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +501,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +518,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +535,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -546,6 +552,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -562,6 +569,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -578,6 +586,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -594,6 +603,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -610,6 +620,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +637,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +654,7 @@ Floor, !- Surface Type Plenum Floor, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PZn001:CeilingW, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -658,6 +671,7 @@ Floor, !- Surface Type Plenum Floor, !- Construction Name East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PZn001:CeilingE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -674,6 +688,7 @@ Roof, !- Surface Type Plenum Floor, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001W, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -690,6 +705,7 @@ Roof, !- Surface Type Plenum Floor, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -706,6 +722,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -722,6 +739,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -738,6 +756,7 @@ Roof, !- Surface Type ROOF19, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -754,6 +773,7 @@ Roof, !- Surface Type ROOF19, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -770,6 +790,7 @@ Wall, !- Surface Type PARTITION, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Partiton001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +807,7 @@ Wall, !- Surface Type PARTITION, !- Construction Name West Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PZn001:Partiton001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -802,6 +824,7 @@ Wall, !- Surface Type PARTITION, !- Construction Name East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Partiton001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -818,6 +841,7 @@ Wall, !- Surface Type PARTITION, !- Construction Name East Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PZn001:Partiton001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/4ZoneWithShading_Simple_1.idf b/testfiles/4ZoneWithShading_Simple_1.idf index 213e938a16f..9dc54575cf7 100644 --- a/testfiles/4ZoneWithShading_Simple_1.idf +++ b/testfiles/4ZoneWithShading_Simple_1.idf @@ -521,6 +521,7 @@ Zn001:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -586,6 +587,7 @@ Zn001:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -598,6 +600,7 @@ Zn001:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -610,6 +613,7 @@ Zn001:Wall004, !- Name INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -622,6 +626,7 @@ Zn001:Flr001, !- Name FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -634,6 +639,7 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Zn003:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -647,6 +653,7 @@ Zn002:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -690,6 +697,7 @@ Zn002:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 46, !- Starting X Coordinate {m} @@ -736,6 +744,7 @@ Zn002:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 46, !- Starting X Coordinate {m} @@ -748,6 +757,7 @@ Zn002:Wall004, !- Name INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -760,6 +770,7 @@ Zn002:Flr001, !- Name FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -772,6 +783,7 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Zn004:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -785,6 +797,7 @@ Zn003:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -808,6 +821,7 @@ Zn003:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -820,6 +834,7 @@ Zn003:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -832,6 +847,7 @@ Zn003:Wall004, !- Name INTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn004:Wall004, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -856,6 +872,7 @@ Zn003:Flr001, !- Name FLOOR34, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn001:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -869,6 +886,7 @@ Zn003:Roof001, !- Name ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 6, !- Starting X Coordinate {m} @@ -881,6 +899,7 @@ Zn004:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} @@ -904,6 +923,7 @@ Zn004:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 46, !- Starting X Coordinate {m} @@ -916,6 +936,7 @@ Zn004:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 46, !- Starting X Coordinate {m} @@ -928,6 +949,7 @@ Zn004:Wall004, !- Name INTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn003:Wall004, !- Outside Boundary Condition Object 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -952,6 +974,7 @@ Zn004:Flr001, !- Name FLOOR34, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn002:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -965,6 +988,7 @@ Zn004:Roof001, !- Name ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 26, !- Starting X Coordinate {m} diff --git a/testfiles/4ZoneWithShading_Simple_2.idf b/testfiles/4ZoneWithShading_Simple_2.idf index 2322f14cf8b..6db4e1179c8 100644 --- a/testfiles/4ZoneWithShading_Simple_2.idf +++ b/testfiles/4ZoneWithShading_Simple_2.idf @@ -509,6 +509,7 @@ Zn001:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -575,6 +576,7 @@ Zn001:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -587,6 +589,7 @@ Zn001:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -609,6 +612,7 @@ Zn001:Wall004, !- Name INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -621,6 +625,7 @@ Zn001:Flr001, !- Name FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -633,18 +638,19 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name - 180, !- Azimuth Angle {deg} + 180, !- Space Name + 0, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} - 0, !- Starting Y Coordinate {m} - 10, !- Starting Z Coordinate {m} - 20, !- Length {m} - 20; !- Width {m} + 10, !- Starting Y Coordinate {m} + 20, !- Starting Z Coordinate {m} + 20; !- Length {m} Wall:Exterior, Zn002:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -688,6 +694,7 @@ Zn002:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -700,6 +707,7 @@ Zn002:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -712,6 +720,7 @@ Zn002:Wall004, !- Name INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -724,6 +733,7 @@ Zn002:Flr001, !- Name FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -736,18 +746,19 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name - 180, !- Azimuth Angle {deg} + 180, !- Space Name + 0, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} - 0, !- Starting Y Coordinate {m} - 10, !- Starting Z Coordinate {m} - 20, !- Length {m} - 20; !- Width {m} + 10, !- Starting Y Coordinate {m} + 20, !- Starting Z Coordinate {m} + 20; !- Length {m} Wall:Exterior, Zn003:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -771,6 +782,7 @@ Zn003:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -783,6 +795,7 @@ Zn003:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -795,6 +808,7 @@ Zn003:Wall004, !- Name INTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name ZONE 4, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -841,6 +855,7 @@ Zn003:Flr001, !- Name FLOOR34, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn001:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -854,6 +869,7 @@ Zn003:Roof001, !- Name ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -866,6 +882,7 @@ Zn004:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -889,6 +906,7 @@ Zn004:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -901,6 +919,7 @@ Zn004:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -913,6 +932,7 @@ Zn004:Flr001, !- Name FLOOR34, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn002:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -926,6 +946,7 @@ Zn004:Roof001, !- Name ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} diff --git a/testfiles/5ZoneAirCooled.idf b/testfiles/5ZoneAirCooled.idf index 566cdb25028..4093bb81dd8 100644 --- a/testfiles/5ZoneAirCooled.idf +++ b/testfiles/5ZoneAirCooled.idf @@ -557,6 +557,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +574,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -589,6 +591,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -605,6 +608,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +625,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +642,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -653,6 +659,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -669,6 +676,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +693,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +710,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +790,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +857,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +874,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +891,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +908,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +925,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1005,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1037,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1054,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1071,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1088,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1185,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1209,6 +1232,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1249,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1266,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1283,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1300,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1380,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1383,6 +1412,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1429,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1446,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1463,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1480,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1560,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1577,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1594,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1574,6 +1611,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1628,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1645,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledConvCoef.idf b/testfiles/5ZoneAirCooledConvCoef.idf index 8c6c11a4370..307dc875e6d 100644 --- a/testfiles/5ZoneAirCooledConvCoef.idf +++ b/testfiles/5ZoneAirCooledConvCoef.idf @@ -653,6 +653,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +687,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +704,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +721,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +738,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +806,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +953,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +970,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +987,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1101,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1133,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1150,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1281,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1305,6 +1328,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1345,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1396,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1448,6 +1476,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1479,6 +1508,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1495,6 +1525,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1576,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1622,6 +1656,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1673,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledDemandLimiting.idf b/testfiles/5ZoneAirCooledDemandLimiting.idf index f1cb0c3c9cc..a68c9b1a7ce 100644 --- a/testfiles/5ZoneAirCooledDemandLimiting.idf +++ b/testfiles/5ZoneAirCooledDemandLimiting.idf @@ -640,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +674,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +691,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +708,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +873,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +940,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +957,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1050,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1082,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1099,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1133,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1150,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1192,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1216,6 +1239,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1256,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1273,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1264,6 +1290,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1280,6 +1307,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1349,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1352,6 +1381,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1368,6 +1398,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1384,6 +1415,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1400,6 +1432,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1416,6 +1449,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,6 +1491,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1508,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1576,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf b/testfiles/5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf index bbe76d7dc5a..39368310a46 100644 --- a/testfiles/5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf +++ b/testfiles/5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1051,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1083,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1100,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1193,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1217,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1257,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1350,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1382,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1399,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1577,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf b/testfiles/5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf index a8574dac7be..a8db49e820b 100644 --- a/testfiles/5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf +++ b/testfiles/5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1051,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1083,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1100,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1193,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1217,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1257,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1350,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1382,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1399,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1577,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledWithCoupledInGradeSlab.idf b/testfiles/5ZoneAirCooledWithCoupledInGradeSlab.idf index 32827eb7e27..7887ce2eb5f 100644 --- a/testfiles/5ZoneAirCooledWithCoupledInGradeSlab.idf +++ b/testfiles/5ZoneAirCooledWithCoupledInGradeSlab.idf @@ -673,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +707,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +741,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +826,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +906,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +973,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +990,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1007,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1024,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1041,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1121,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1153,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1170,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1187,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1204,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1221,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1301,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1325,6 +1348,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1365,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1382,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1399,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1496,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1528,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1545,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1562,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1579,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1596,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1676,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1693,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1727,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1744,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1722,6 +1761,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledWithDOASAirLoop.idf b/testfiles/5ZoneAirCooledWithDOASAirLoop.idf index b639b93f4ca..33991ac542b 100644 --- a/testfiles/5ZoneAirCooledWithDOASAirLoop.idf +++ b/testfiles/5ZoneAirCooledWithDOASAirLoop.idf @@ -558,6 +558,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -574,6 +575,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -590,6 +592,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -606,6 +609,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -622,6 +626,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +643,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -654,6 +660,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +677,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +694,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +711,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +791,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +858,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +875,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +892,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +909,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +926,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1006,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1021,6 +1038,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1055,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1072,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1089,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1106,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1186,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1210,6 +1233,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1250,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1267,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1284,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1301,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1381,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1384,6 +1413,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1400,6 +1430,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1416,6 +1447,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1432,6 +1464,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1448,6 +1481,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1561,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1578,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1559,6 +1595,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1612,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1629,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1646,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooledWithSlab.idf b/testfiles/5ZoneAirCooledWithSlab.idf index aef6bc86d41..f580a9ab7ba 100644 --- a/testfiles/5ZoneAirCooledWithSlab.idf +++ b/testfiles/5ZoneAirCooledWithSlab.idf @@ -731,6 +731,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +748,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +765,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +782,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +799,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -811,6 +816,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +833,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +850,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -859,6 +867,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -875,6 +884,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +964,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1031,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1048,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name GroundSlabPreprocessorPerimeter, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1065,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1179,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1194,6 +1211,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1228,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name GroundSlabPreprocessorPerimeter, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1245,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1262,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1279,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1359,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1383,6 +1406,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1423,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name GroundSlabPreprocessorPerimeter, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1440,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1557,6 +1586,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1573,6 +1603,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name GroundSlabPreprocessorPerimeter, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1589,6 +1620,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1605,6 +1637,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1621,6 +1654,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1700,6 +1734,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1716,6 +1751,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name GroundSlabPreprocessorCore, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1732,6 +1768,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1785,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1764,6 +1802,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1780,6 +1819,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_AirBoundaries.idf b/testfiles/5ZoneAirCooled_AirBoundaries.idf index 91c0f180eb8..fc9e35ed565 100644 --- a/testfiles/5ZoneAirCooled_AirBoundaries.idf +++ b/testfiles/5ZoneAirCooled_AirBoundaries.idf @@ -563,6 +563,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +580,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +597,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +614,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +631,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +648,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +665,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +682,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +699,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +796,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -852,6 +863,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +880,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +897,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -900,6 +914,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +931,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1011,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1043,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1060,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1077,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1094,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1111,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1169,6 +1191,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1215,6 +1238,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1255,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1272,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1289,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1306,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1386,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1389,6 +1418,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1435,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1452,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1469,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1486,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1532,6 +1566,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1548,6 +1583,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1564,6 +1600,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1617,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1596,6 +1634,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1651,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_AirBoundaries_Daylighting.idf b/testfiles/5ZoneAirCooled_AirBoundaries_Daylighting.idf index 11f127d95a2..a08c648a4d8 100644 --- a/testfiles/5ZoneAirCooled_AirBoundaries_Daylighting.idf +++ b/testfiles/5ZoneAirCooled_AirBoundaries_Daylighting.idf @@ -579,6 +579,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +596,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +647,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +664,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +681,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +837,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +904,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +921,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +938,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +955,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +972,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1052,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1067,6 +1084,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1101,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1118,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1135,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1152,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1232,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1256,6 +1279,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1272,6 +1296,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1288,6 +1313,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1304,6 +1330,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1320,6 +1347,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1427,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1459,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1446,6 +1476,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1493,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1510,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1527,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1632,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1649,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1630,6 +1666,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1646,6 +1683,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1662,6 +1700,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1678,6 +1717,7 @@ WALL, !- Surface Type Air Wall, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_UniformLoading.idf b/testfiles/5ZoneAirCooled_UniformLoading.idf index ebade59ea57..aec3a79c7b0 100644 --- a/testfiles/5ZoneAirCooled_UniformLoading.idf +++ b/testfiles/5ZoneAirCooled_UniformLoading.idf @@ -639,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -687,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +707,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -735,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -751,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +872,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +939,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +956,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +973,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +990,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1007,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1087,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1119,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1136,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1153,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1170,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1187,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1267,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1291,6 +1314,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1331,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1348,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1365,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1382,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1462,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1465,6 +1494,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1511,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1497,6 +1528,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1545,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1562,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1608,6 +1642,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1624,6 +1659,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1676,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1656,6 +1693,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1672,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1688,6 +1727,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_VAVBoxMinAirFlowTurnDown.idf b/testfiles/5ZoneAirCooled_VAVBoxMinAirFlowTurnDown.idf index 78b89e86883..d5ecdc7cd61 100644 --- a/testfiles/5ZoneAirCooled_VAVBoxMinAirFlowTurnDown.idf +++ b/testfiles/5ZoneAirCooled_VAVBoxMinAirFlowTurnDown.idf @@ -724,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -740,6 +741,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +758,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +775,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +792,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +826,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +843,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +860,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +877,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +957,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1013,6 +1024,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1041,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1058,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1075,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1077,6 +1092,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1172,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1187,6 +1204,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1221,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1238,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1255,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,6 +1272,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1352,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1376,6 +1399,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1416,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1440,6 +1467,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1519,6 +1547,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1550,6 +1579,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1566,6 +1596,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1613,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1630,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1647,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1693,6 +1727,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1709,6 +1744,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1725,6 +1761,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1741,6 +1778,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1757,6 +1795,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1773,6 +1812,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_VRPSizing.idf b/testfiles/5ZoneAirCooled_VRPSizing.idf index 758bf81d288..514091b0236 100644 --- a/testfiles/5ZoneAirCooled_VRPSizing.idf +++ b/testfiles/5ZoneAirCooled_VRPSizing.idf @@ -638,6 +638,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +655,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +672,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +689,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +706,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +740,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +757,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +774,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +791,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +871,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +938,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +955,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +972,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +989,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1006,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1086,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1101,6 +1118,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1135,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1152,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1169,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1186,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1266,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1290,6 +1313,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1330,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1347,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1364,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1381,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1433,6 +1461,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1464,6 +1493,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1480,6 +1510,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1496,6 +1527,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1544,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1528,6 +1561,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1641,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1623,6 +1658,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1675,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1692,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1709,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1726,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_VRPSizing_MaxZd.idf b/testfiles/5ZoneAirCooled_VRPSizing_MaxZd.idf index f5f528e71f4..c0cf4b49480 100644 --- a/testfiles/5ZoneAirCooled_VRPSizing_MaxZd.idf +++ b/testfiles/5ZoneAirCooled_VRPSizing_MaxZd.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1073,6 +1089,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1121,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1138,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1189,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1269,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1293,6 +1316,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1333,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1350,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1367,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1384,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1464,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1467,6 +1496,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1513,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1564,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1644,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1661,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1678,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1695,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1712,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1729,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance.idf b/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance.idf index c871adc7b54..a81bb788009 100644 --- a/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance.idf +++ b/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance.idf @@ -690,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +707,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +741,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -754,6 +758,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -770,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -802,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -818,6 +826,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -834,6 +843,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +923,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +990,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1007,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1024,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1041,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1058,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1138,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1153,6 +1170,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1169,6 +1187,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1185,6 +1204,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1201,6 +1221,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1217,6 +1238,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1318,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1342,6 +1365,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1382,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1374,6 +1399,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1513,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1516,6 +1545,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1532,6 +1562,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1548,6 +1579,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1564,6 +1596,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1613,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1769,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1786,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1767,6 +1803,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1783,6 +1820,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1799,6 +1837,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1815,6 +1854,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance_Pressurized.idf b/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance_Pressurized.idf index f607ba38eaf..9f223170a83 100644 --- a/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance_Pressurized.idf +++ b/testfiles/5ZoneAirCooled_ZoneAirMassFlowBalance_Pressurized.idf @@ -692,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +709,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +726,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -740,6 +743,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +760,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -788,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -804,6 +811,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +828,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +845,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +925,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +992,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1009,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1026,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1043,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1060,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1140,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1172,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1189,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1206,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1223,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1240,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1320,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1344,6 +1367,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1384,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1401,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1418,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1435,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1487,6 +1515,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1547,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1564,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1581,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1566,6 +1598,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1615,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1771,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1788,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1805,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1822,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1801,6 +1839,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1856,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneAutoDXVAV.idf b/testfiles/5ZoneAutoDXVAV.idf index 8111b281f62..022303012cb 100644 --- a/testfiles/5ZoneAutoDXVAV.idf +++ b/testfiles/5ZoneAutoDXVAV.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1073,6 +1089,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1121,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1138,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1189,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1269,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1293,6 +1316,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1333,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1350,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1367,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1384,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1464,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1467,6 +1496,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1513,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1564,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1644,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1661,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1678,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1695,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1712,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1729,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneBoilerOutsideAirReset.idf b/testfiles/5ZoneBoilerOutsideAirReset.idf index df08e6f266e..0e4efa5b8b8 100644 --- a/testfiles/5ZoneBoilerOutsideAirReset.idf +++ b/testfiles/5ZoneBoilerOutsideAirReset.idf @@ -629,6 +629,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +646,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +663,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +680,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +697,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +714,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +731,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +748,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +765,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +782,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +929,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +946,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +963,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +980,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +997,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1077,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1092,6 +1109,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1126,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1143,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1160,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1177,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1257,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1281,6 +1304,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1321,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1338,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1355,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1372,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1452,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1455,6 +1484,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1471,6 +1501,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1487,6 +1518,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1503,6 +1535,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1519,6 +1552,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1632,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1649,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1630,6 +1666,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1646,6 +1683,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1662,6 +1700,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1678,6 +1717,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneBranchSupplyPumps.idf b/testfiles/5ZoneBranchSupplyPumps.idf index e00e332de93..d198e8eeb4a 100644 --- a/testfiles/5ZoneBranchSupplyPumps.idf +++ b/testfiles/5ZoneBranchSupplyPumps.idf @@ -632,6 +632,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +649,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +666,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +683,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +700,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -712,6 +717,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +734,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +751,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +768,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -776,6 +785,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +865,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +932,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +949,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +966,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +983,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +1000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1064,6 +1080,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1112,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1129,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1146,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1163,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1260,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1307,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1324,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1341,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1358,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1375,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1455,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1458,6 +1487,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1504,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1521,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1538,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1555,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1635,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1652,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1669,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1686,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1703,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1681,6 +1720,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneCAV_MaxTemp.idf b/testfiles/5ZoneCAV_MaxTemp.idf index 14f00a26c8a..5ba6e05e1b2 100644 --- a/testfiles/5ZoneCAV_MaxTemp.idf +++ b/testfiles/5ZoneCAV_MaxTemp.idf @@ -605,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +622,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +673,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +775,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +792,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +809,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +826,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +843,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +860,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +894,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +911,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +945,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +979,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -973,6 +996,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1013,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1030,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1047,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1064,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1081,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1183,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1200,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1234,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1251,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1268,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneCAV_MaxTemp_JSON_Outputs.idf b/testfiles/5ZoneCAV_MaxTemp_JSON_Outputs.idf index 46a4c7edb07..72d17e479a4 100644 --- a/testfiles/5ZoneCAV_MaxTemp_JSON_Outputs.idf +++ b/testfiles/5ZoneCAV_MaxTemp_JSON_Outputs.idf @@ -605,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +622,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +673,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +775,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +792,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +809,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +826,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +843,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +860,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +894,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +911,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +945,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +979,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -973,6 +996,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1013,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1030,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1047,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1064,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1081,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1183,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1200,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1234,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1251,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1268,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneCAVtoVAVWarmestTempFlow.idf b/testfiles/5ZoneCAVtoVAVWarmestTempFlow.idf index 87929b51ae3..82b0c39da3e 100644 --- a/testfiles/5ZoneCAVtoVAVWarmestTempFlow.idf +++ b/testfiles/5ZoneCAVtoVAVWarmestTempFlow.idf @@ -597,6 +597,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -613,6 +614,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +665,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +682,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -693,6 +699,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +767,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +784,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +801,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +818,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +835,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +852,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +869,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +886,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +903,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +920,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +937,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +954,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +971,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +988,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +1005,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1022,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1039,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1056,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1073,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1061,6 +1090,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1077,6 +1107,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1124,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1141,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1175,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1192,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1209,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1226,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1243,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1260,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneCoolBeam.idf b/testfiles/5ZoneCoolBeam.idf index f772e9a9521..657d7136541 100644 --- a/testfiles/5ZoneCoolBeam.idf +++ b/testfiles/5ZoneCoolBeam.idf @@ -787,6 +787,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +804,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +821,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -835,6 +838,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +855,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +872,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +889,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +906,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +923,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +940,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1020,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1087,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1104,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1121,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1138,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1235,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1250,6 +1267,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1266,6 +1284,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1301,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1318,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1393,6 +1415,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1439,6 +1462,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1479,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1471,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1487,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1503,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1610,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1613,6 +1642,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1659,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1676,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1693,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1790,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1807,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1788,6 +1824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1804,6 +1841,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1820,6 +1858,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1836,6 +1875,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneCoolingPanelBaseboard.idf b/testfiles/5ZoneCoolingPanelBaseboard.idf index 956457be49a..998b863fd59 100644 --- a/testfiles/5ZoneCoolingPanelBaseboard.idf +++ b/testfiles/5ZoneCoolingPanelBaseboard.idf @@ -884,6 +884,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +935,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +952,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1071,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1173,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1252,6 +1275,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1348,6 +1377,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,47 +2245,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:COOLINGPANEL:RADIANTCONVECTIVE:WATER =========== diff --git a/testfiles/5ZoneCoolingPanelBaseboardAuto.idf b/testfiles/5ZoneCoolingPanelBaseboardAuto.idf index aa175eec86b..4383daccc14 100644 --- a/testfiles/5ZoneCoolingPanelBaseboardAuto.idf +++ b/testfiles/5ZoneCoolingPanelBaseboardAuto.idf @@ -884,6 +884,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +935,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +952,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1071,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1173,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1252,6 +1275,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1348,6 +1377,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,47 +2245,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:COOLINGPANEL:RADIANTCONVECTIVE:WATER =========== @@ -3827,4 +3867,3 @@ Output:Meter:MeterFileOnly,NaturalGas:Plant,runperiod; - diff --git a/testfiles/5ZoneCoolingPanelBaseboardTotalLoad.idf b/testfiles/5ZoneCoolingPanelBaseboardTotalLoad.idf index 263e1c3c420..97b6606f504 100644 --- a/testfiles/5ZoneCoolingPanelBaseboardTotalLoad.idf +++ b/testfiles/5ZoneCoolingPanelBaseboardTotalLoad.idf @@ -884,6 +884,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +935,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +952,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1071,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1173,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1252,6 +1275,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1348,6 +1377,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,47 +2245,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:COOLINGPANEL:RADIANTCONVECTIVE:WATER =========== @@ -3827,4 +3867,3 @@ Output:Meter:MeterFileOnly,NaturalGas:Plant,runperiod; - diff --git a/testfiles/5ZoneCoolingPanelBaseboardVarOff.idf b/testfiles/5ZoneCoolingPanelBaseboardVarOff.idf index c0bb70bbba8..1719803236e 100644 --- a/testfiles/5ZoneCoolingPanelBaseboardVarOff.idf +++ b/testfiles/5ZoneCoolingPanelBaseboardVarOff.idf @@ -884,6 +884,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +935,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +952,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1071,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1173,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1252,6 +1275,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1348,6 +1377,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,47 +2245,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:COOLINGPANEL:RADIANTCONVECTIVE:WATER =========== @@ -3827,4 +3867,3 @@ Output:Meter:MeterFileOnly,NaturalGas:Plant,runperiod; - diff --git a/testfiles/5ZoneCostEst.idf b/testfiles/5ZoneCostEst.idf index eb29bc1aaed..a8f72699d8e 100644 --- a/testfiles/5ZoneCostEst.idf +++ b/testfiles/5ZoneCostEst.idf @@ -1138,6 +1138,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1154,6 +1155,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1172,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1189,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1206,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1223,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1240,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,6 +1257,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1274,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1291,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1308,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1325,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1342,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1359,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1362,6 +1376,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1378,6 +1393,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1410,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1427,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1444,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1461,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1478,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1495,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1490,6 +1512,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1529,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1546,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1563,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1580,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1597,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1614,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1631,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1648,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1634,6 +1665,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1682,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1699,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1682,6 +1716,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,6 +1733,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1714,6 +1750,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1730,6 +1767,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1746,6 +1784,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1762,6 +1801,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1778,6 +1818,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1794,6 +1835,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1810,6 +1852,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1826,6 +1869,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1842,6 +1886,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1858,6 +1903,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1874,6 +1920,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1890,6 +1937,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1906,6 +1954,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1922,6 +1971,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1938,6 +1988,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1954,6 +2005,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1970,6 +2022,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1986,6 +2039,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2002,6 +2056,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2018,6 +2073,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2034,6 +2090,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2050,6 +2107,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2066,6 +2124,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2082,6 +2141,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2097,31 +2157,36 @@ ZN1_S_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN1_S_Space_1, !- Zone or ZoneList Name - 897.599; !- Surface Area {m2} + , !- Surface Area {m2} + 897.599; !- Extended Field InternalMass, ZN2_E_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN2_E_Space_1, !- Zone or ZoneList Name - 132.747; !- Surface Area {m2} + , !- Surface Area {m2} + 132.747; !- Extended Field InternalMass, ZN3_N_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN3_N_Space_1, !- Zone or ZoneList Name - 897.599; !- Surface Area {m2} + , !- Surface Area {m2} + 897.599; !- Extended Field InternalMass, ZN4_W_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN4_W_Space_1, !- Zone or ZoneList Name - 132.747; !- Surface Area {m2} + , !- Surface Area {m2} + 132.747; !- Extended Field InternalMass, ZN5_Core_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN5_Core_Space_1, !- Zone or ZoneList Name - 1655.308; !- Surface Area {m2} + , !- Surface Area {m2} + 1655.308; !- Extended Field FenestrationSurface:Detailed, ZN1_S_Space_1:S_Window_0,!- Name diff --git a/testfiles/5ZoneDDCycOnAny.idf b/testfiles/5ZoneDDCycOnAny.idf index 4f70fb6bf08..d2f4f70b573 100644 --- a/testfiles/5ZoneDDCycOnAny.idf +++ b/testfiles/5ZoneDDCycOnAny.idf @@ -554,6 +554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -570,6 +571,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +588,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +622,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +639,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -650,6 +656,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +673,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +741,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +758,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +775,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +792,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +809,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +826,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +843,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +860,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +877,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +894,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +911,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +928,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +945,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +962,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +979,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1013,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1030,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1047,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1064,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1081,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1098,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1115,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1132,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1149,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDDCycOnOne.idf b/testfiles/5ZoneDDCycOnOne.idf index fbe772172f7..6e527da82b1 100644 --- a/testfiles/5ZoneDDCycOnOne.idf +++ b/testfiles/5ZoneDDCycOnOne.idf @@ -554,6 +554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -570,6 +571,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +588,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +622,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +639,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -650,6 +656,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +673,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +741,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +758,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +775,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +792,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +809,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +826,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +843,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +860,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +877,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +894,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +911,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +928,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +945,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +962,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +979,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1013,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1030,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1047,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1064,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1081,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1098,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1115,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1132,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1149,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDesignInputCoolingCoil.idf b/testfiles/5ZoneDesignInputCoolingCoil.idf index ada9ba1347d..9cf841ef056 100644 --- a/testfiles/5ZoneDesignInputCoolingCoil.idf +++ b/testfiles/5ZoneDesignInputCoolingCoil.idf @@ -618,6 +618,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +686,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +703,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +918,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +935,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +952,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1066,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1224,6 +1246,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1270,6 +1293,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1310,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1327,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1441,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1444,6 +1473,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1490,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1507,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1621,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1638,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1655,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDetailedIceStorage.idf b/testfiles/5ZoneDetailedIceStorage.idf index 674ab90a8b7..c90ea180f39 100644 --- a/testfiles/5ZoneDetailedIceStorage.idf +++ b/testfiles/5ZoneDetailedIceStorage.idf @@ -568,6 +568,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -584,6 +585,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -616,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +636,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +653,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -664,6 +670,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -680,6 +687,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +801,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1016,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1196,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1243,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1260,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1277,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1294,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1311,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1391,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1394,6 +1423,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1440,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1571,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1553,6 +1588,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1569,6 +1605,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1622,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1639,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDetailedIceStorage2.idf b/testfiles/5ZoneDetailedIceStorage2.idf index 0fe7cc5f011..73e5fdfcb57 100644 --- a/testfiles/5ZoneDetailedIceStorage2.idf +++ b/testfiles/5ZoneDetailedIceStorage2.idf @@ -568,6 +568,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -584,6 +585,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -616,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +636,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +653,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -664,6 +670,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -680,6 +687,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +801,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1016,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1196,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1243,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1260,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1277,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1294,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1311,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1391,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1394,6 +1423,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1440,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1571,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1553,6 +1588,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1569,6 +1605,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1622,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1639,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDetailedIceStorageCubicLinear.idf b/testfiles/5ZoneDetailedIceStorageCubicLinear.idf index 9e51a6ccffb..6a70f522e0c 100644 --- a/testfiles/5ZoneDetailedIceStorageCubicLinear.idf +++ b/testfiles/5ZoneDetailedIceStorageCubicLinear.idf @@ -568,6 +568,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -584,6 +585,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -616,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +636,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +653,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -664,6 +670,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -680,6 +687,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +801,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1016,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1196,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1243,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1260,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1277,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1294,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1311,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1391,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1394,6 +1423,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1440,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1571,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1553,6 +1588,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1569,6 +1605,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1622,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1639,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneDetailedIceStorageSimpleCtrl.idf b/testfiles/5ZoneDetailedIceStorageSimpleCtrl.idf index ba81402848b..a70e8a8d6d1 100644 --- a/testfiles/5ZoneDetailedIceStorageSimpleCtrl.idf +++ b/testfiles/5ZoneDetailedIceStorageSimpleCtrl.idf @@ -568,6 +568,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -584,6 +585,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -616,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +636,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +653,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -664,6 +670,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -680,6 +687,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +801,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1016,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1196,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1243,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1260,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1277,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1294,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1311,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1391,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1394,6 +1423,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1440,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1571,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1553,6 +1588,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1569,6 +1605,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1622,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1639,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneEconomicsTariffAndLifeCycleCosts.idf b/testfiles/5ZoneEconomicsTariffAndLifeCycleCosts.idf index 6242fc3f8b6..a1e70ebb0a5 100644 --- a/testfiles/5ZoneEconomicsTariffAndLifeCycleCosts.idf +++ b/testfiles/5ZoneEconomicsTariffAndLifeCycleCosts.idf @@ -618,6 +618,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +686,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +703,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +918,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +935,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +952,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1066,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1224,6 +1246,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1270,6 +1293,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1310,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1327,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1441,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1444,6 +1473,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1490,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1507,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1621,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1638,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1655,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneElectricBaseboard.idf b/testfiles/5ZoneElectricBaseboard.idf index 1843338ab2c..0830dabaffb 100644 --- a/testfiles/5ZoneElectricBaseboard.idf +++ b/testfiles/5ZoneElectricBaseboard.idf @@ -890,6 +890,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +907,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +924,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +941,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +958,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +975,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +992,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1009,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1026,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1043,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1060,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1077,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1094,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1111,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1128,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1162,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1162,6 +1179,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1196,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1230,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1247,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1264,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1258,6 +1281,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1298,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1315,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1332,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1366,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1354,6 +1383,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1400,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1417,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1434,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1451,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1468,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1485,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1502,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1519,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1536,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1553,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneEndUses.idf b/testfiles/5ZoneEndUses.idf index 3678616bd2e..b197b34198e 100644 --- a/testfiles/5ZoneEndUses.idf +++ b/testfiles/5ZoneEndUses.idf @@ -654,6 +654,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +671,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +688,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +705,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +722,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +739,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +756,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +773,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +790,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +807,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +964,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1031,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1048,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1065,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1254,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1269,6 +1286,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1303,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1320,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1337,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1354,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1448,6 +1470,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1494,6 +1517,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1534,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1551,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1568,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1585,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1703,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1706,6 +1735,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1722,6 +1752,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1769,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1786,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1803,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1879,6 +1913,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1895,6 +1930,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1911,6 +1947,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1927,6 +1964,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1943,6 +1981,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1959,6 +1998,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneEngChill.idf b/testfiles/5ZoneEngChill.idf index 4535f18d1a0..f51feeafb46 100644 --- a/testfiles/5ZoneEngChill.idf +++ b/testfiles/5ZoneEngChill.idf @@ -791,6 +791,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +808,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +825,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +842,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +859,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +876,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +893,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +910,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +927,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +944,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1024,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1091,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1108,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1125,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1142,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1159,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1239,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1254,6 +1271,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1288,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1305,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1322,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1339,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1397,6 +1419,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1466,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1483,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1500,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1517,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1534,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1614,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1617,6 +1646,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1663,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1680,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1697,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1681,6 +1714,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1760,6 +1794,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1776,6 +1811,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1792,6 +1828,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1808,6 +1845,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1824,6 +1862,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1840,6 +1879,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneFPIU.idf b/testfiles/5ZoneFPIU.idf index fc445dddea0..c0f14c0dd0b 100644 --- a/testfiles/5ZoneFPIU.idf +++ b/testfiles/5ZoneFPIU.idf @@ -805,6 +805,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +822,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +839,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +856,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +873,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +890,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +907,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +924,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +941,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +958,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1038,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1105,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1122,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1253,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1285,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1302,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1319,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1336,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1433,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1480,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1497,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1514,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1531,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1628,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1631,6 +1660,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1647,6 +1677,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1663,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1679,6 +1711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1695,6 +1728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1774,6 +1808,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1790,6 +1825,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1806,6 +1842,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1822,6 +1859,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1838,6 +1876,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1893,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneFanCoilDOASCool.idf b/testfiles/5ZoneFanCoilDOASCool.idf index 36104958533..afd80ad3150 100644 --- a/testfiles/5ZoneFanCoilDOASCool.idf +++ b/testfiles/5ZoneFanCoilDOASCool.idf @@ -780,6 +780,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +797,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +814,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +831,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +848,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +865,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +882,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +899,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +916,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +933,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +950,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +967,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +984,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1001,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1018,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1035,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1052,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1069,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1086,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1103,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1120,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1137,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1154,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1171,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1188,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1205,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1222,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1239,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1256,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1244,6 +1273,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1290,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1307,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1324,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1341,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1358,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1375,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1392,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1409,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1426,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1443,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneFanCoilDOAS_ERVOnAirLoopMainBranch.idf b/testfiles/5ZoneFanCoilDOAS_ERVOnAirLoopMainBranch.idf index 42f07ee8eb6..b0cfc86e095 100644 --- a/testfiles/5ZoneFanCoilDOAS_ERVOnAirLoopMainBranch.idf +++ b/testfiles/5ZoneFanCoilDOAS_ERVOnAirLoopMainBranch.idf @@ -774,6 +774,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -790,6 +791,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +808,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -822,6 +825,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +842,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +859,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +876,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +893,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +910,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +927,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +944,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -950,6 +961,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +978,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1063,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1080,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1148,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1142,6 +1165,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1182,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1250,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1238,6 +1267,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1284,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1301,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1318,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1352,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1369,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1386,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1403,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1420,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1437,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneFanCoilDOAS_HumidifierOnOASystem.idf b/testfiles/5ZoneFanCoilDOAS_HumidifierOnOASystem.idf index 03d3ce1c8fb..5a50ae0bba1 100644 --- a/testfiles/5ZoneFanCoilDOAS_HumidifierOnOASystem.idf +++ b/testfiles/5ZoneFanCoilDOAS_HumidifierOnOASystem.idf @@ -790,6 +790,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +807,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -822,6 +824,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +841,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +858,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -870,6 +875,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +892,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +909,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +926,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +943,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +960,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -966,6 +977,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +994,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1011,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1045,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1062,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1062,6 +1079,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1096,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1113,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1164,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1158,6 +1181,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1198,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1215,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1232,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1249,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1266,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1254,6 +1283,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1300,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1317,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1334,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1351,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1368,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1385,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1402,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1419,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1436,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1453,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneGeometryTransform.idf b/testfiles/5ZoneGeometryTransform.idf index 010b719c3ea..25a4e743900 100644 --- a/testfiles/5ZoneGeometryTransform.idf +++ b/testfiles/5ZoneGeometryTransform.idf @@ -652,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +686,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +703,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +720,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +788,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +805,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +962,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1029,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1046,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1063,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1080,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1226,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1258,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1275,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1292,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1442,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1489,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1506,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1557,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1647,6 +1675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1678,6 +1707,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1724,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1710,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1726,6 +1758,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1742,6 +1775,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1836,6 +1870,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1852,6 +1887,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1868,6 +1904,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1884,6 +1921,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1900,6 +1938,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1916,6 +1955,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneIceStorage.idf b/testfiles/5ZoneIceStorage.idf index d018a9b327d..1865615285e 100644 --- a/testfiles/5ZoneIceStorage.idf +++ b/testfiles/5ZoneIceStorage.idf @@ -649,6 +649,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +666,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +683,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +700,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -713,6 +717,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -729,6 +734,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +751,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +768,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +785,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +802,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -872,6 +882,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +949,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +966,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +983,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1017,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1097,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1112,6 +1129,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1146,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1163,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1176,6 +1197,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1277,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1301,6 +1324,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1341,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1358,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1349,6 +1375,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1365,6 +1392,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1472,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1475,6 +1504,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1521,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1538,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1523,6 +1555,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1539,6 +1572,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1652,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1669,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1686,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1703,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1682,6 +1720,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,6 +1737,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneNightVent1.idf b/testfiles/5ZoneNightVent1.idf index eba36185ff9..cc6a59fa3e6 100644 --- a/testfiles/5ZoneNightVent1.idf +++ b/testfiles/5ZoneNightVent1.idf @@ -555,6 +555,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -571,6 +572,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -587,6 +589,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -603,6 +606,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +623,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +640,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -651,6 +657,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -667,6 +674,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -683,6 +691,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +708,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +725,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -731,6 +742,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +759,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +776,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +793,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -795,6 +810,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +827,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -827,6 +844,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +861,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -859,6 +878,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -875,6 +895,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +912,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +929,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -923,6 +946,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +963,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +980,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +997,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1014,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1031,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1019,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1133,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1150,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneNightVent2.idf b/testfiles/5ZoneNightVent2.idf index cb8ca016c2c..58421b621cd 100644 --- a/testfiles/5ZoneNightVent2.idf +++ b/testfiles/5ZoneNightVent2.idf @@ -564,6 +564,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +581,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -596,6 +598,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -612,6 +615,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -628,6 +632,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +649,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -660,6 +666,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -676,6 +683,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -692,6 +700,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +717,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +734,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -740,6 +751,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +768,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +785,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -788,6 +802,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -804,6 +819,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +836,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +853,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +870,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +887,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +904,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -900,6 +921,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +938,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +955,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +972,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +989,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +1006,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1023,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1040,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1057,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1074,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1091,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1108,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1125,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1142,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1159,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1176,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1193,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1210,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1227,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneNightVent3.idf b/testfiles/5ZoneNightVent3.idf index a7ec595f444..410df54ee41 100644 --- a/testfiles/5ZoneNightVent3.idf +++ b/testfiles/5ZoneNightVent3.idf @@ -567,6 +567,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -583,6 +584,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -599,6 +601,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -615,6 +618,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -631,6 +635,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +652,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -663,6 +669,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -679,6 +686,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +703,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +737,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +754,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +771,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +788,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +805,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -807,6 +822,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +839,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +856,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +873,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +890,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +907,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +924,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +941,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +958,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +975,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1026,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1015,6 +1043,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1060,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1077,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1094,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1111,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1128,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1145,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,6 +1230,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneReturnFan.idf b/testfiles/5ZoneReturnFan.idf index 260c7356a76..272ef3d2eff 100644 --- a/testfiles/5ZoneReturnFan.idf +++ b/testfiles/5ZoneReturnFan.idf @@ -570,6 +570,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +587,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +604,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +621,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +638,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +655,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +672,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +689,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +706,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +740,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +757,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +774,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +791,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +808,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +825,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +842,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +859,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +876,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +893,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +910,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +944,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +961,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +978,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1063,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1080,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1148,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1165,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneSteamBaseboard.idf b/testfiles/5ZoneSteamBaseboard.idf index a3ca22514bb..5d4208c80df 100644 --- a/testfiles/5ZoneSteamBaseboard.idf +++ b/testfiles/5ZoneSteamBaseboard.idf @@ -571,6 +571,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -587,6 +588,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -603,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +622,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +639,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +656,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -667,6 +673,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -683,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +741,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +758,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +775,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +792,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -795,6 +809,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +826,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +843,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -843,6 +860,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +894,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +911,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +945,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +979,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -971,6 +996,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1013,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1030,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1047,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1064,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1081,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1067,6 +1098,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1083,6 +1115,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1099,6 +1132,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1149,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1217,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1234,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1251,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1268,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1285,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1302,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,45 +2050,45 @@ 0; !- Velocity Squared Term Coefficient ZoneHVAC:Baseboard:RadiantConvective:Steam, - SPACE1-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - REHEATCOILAVAILSCHED, !- Availability_Schedule_Name - SPACE1-1 Reheat Coil Steam Inlet, !- Inlet_Node_Name - SPACE1-1 Reheat Coil Steam Outlet, !- Outlet_Node_Name - Autosize, !- Heating_Design_Capacity - 5, !- Degree_of_SubCooling - autosize, !- Maximum_Steam_Flow_Rate - FRONT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C1-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB15, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE1-1 Baseboard, !- Name + Baseboard Design, !- Design Object + REHEATCOILAVAILSCHED, !- Availability Schedule Name + SPACE1-1 Reheat Coil Steam Inlet, !- Inlet Node Name + SPACE1-1 Reheat Coil Steam Outlet, !- Outlet Node Name + Autosize, !- Heating Design Capacity {W} + 5, !- Degree of SubCooling {deltaC} + autosize, !- Maximum Steam Flow Rate {m3/s} + FRONT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C1-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB15, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Steam, - SPACE3-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - REHEATCOILAVAILSCHED, !- Availability_Schedule_Name - SPACE3-1 Reheat Coil Steam Inlet, !- Inlet_Node_Name - SPACE3-1 Reheat Coil Steam Outlet, !- Outlet_Node_Name - Autosize, !- Heating_Design_Capacity - 5, !- Degree_of_SubCooling - autosize, !- Maximum_Steam_Flow_Rate - BACK-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C3-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB35, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE3-1 Baseboard, !- Name + Baseboard Design, !- Design Object + REHEATCOILAVAILSCHED, !- Availability Schedule Name + SPACE3-1 Reheat Coil Steam Inlet, !- Inlet Node Name + SPACE3-1 Reheat Coil Steam Outlet, !- Outlet Node Name + Autosize, !- Heating Design Capacity {W} + 5, !- Degree of SubCooling {deltaC} + autosize, !- Maximum Steam Flow Rate {m3/s} + BACK-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C3-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB35, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Steam:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People ZoneInfiltration:DesignFlowRate, SPACE5-1 Infil 1, !- Name @@ -3417,3 +3461,4 @@ Output:Table:SummaryReports, AllSummary; !- Report 1 Name + diff --git a/testfiles/5ZoneSupRetPlenRAB.idf b/testfiles/5ZoneSupRetPlenRAB.idf index e10b8469fb0..e89860b8e95 100644 --- a/testfiles/5ZoneSupRetPlenRAB.idf +++ b/testfiles/5ZoneSupRetPlenRAB.idf @@ -604,6 +604,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -620,6 +621,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +638,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +655,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +672,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +689,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +706,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +740,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +757,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +774,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +791,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +808,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F1-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +825,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +842,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +859,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +876,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +893,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +910,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +944,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +961,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +978,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +995,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1012,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1046,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1063,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1080,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1097,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1114,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1182,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1199,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1250,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1267,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1284,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1260,6 +1301,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1276,6 +1318,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1335,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1352,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1369,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1386,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1403,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1420,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1437,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneSupRetPlenVSATU.idf b/testfiles/5ZoneSupRetPlenVSATU.idf index 2114da199d1..04b25dab878 100644 --- a/testfiles/5ZoneSupRetPlenVSATU.idf +++ b/testfiles/5ZoneSupRetPlenVSATU.idf @@ -605,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +622,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +673,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +775,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +792,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F1-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +826,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +843,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +860,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +894,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +911,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +945,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +979,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -973,6 +996,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1013,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1030,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1047,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1064,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1081,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1115,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1183,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1200,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5-1S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1234,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1251,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1268,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1285,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1261,6 +1302,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1277,6 +1319,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1293,6 +1336,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1309,6 +1353,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1370,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1387,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1404,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1421,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1438,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name Sup-PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneSwimmingPool.idf b/testfiles/5ZoneSwimmingPool.idf index c644be166ec..3e0159652d8 100644 --- a/testfiles/5ZoneSwimmingPool.idf +++ b/testfiles/5ZoneSwimmingPool.idf @@ -644,6 +644,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +661,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +678,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +695,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +712,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +746,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +763,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +780,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -788,6 +797,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +944,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +961,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +978,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1092,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1124,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1141,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1175,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1192,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,6 +1272,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1296,6 +1319,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1336,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1370,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1387,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1467,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1470,6 +1499,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1516,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1533,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1550,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1567,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1647,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1664,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1681,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1698,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1715,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1693,6 +1732,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneSwimmingPoolZoneMultipliers.idf b/testfiles/5ZoneSwimmingPoolZoneMultipliers.idf index 9255e995cd4..2586b5ef9e7 100644 --- a/testfiles/5ZoneSwimmingPoolZoneMultipliers.idf +++ b/testfiles/5ZoneSwimmingPoolZoneMultipliers.idf @@ -644,6 +644,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +661,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +678,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +695,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +712,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +746,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +763,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +780,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -788,6 +797,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +877,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +944,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +961,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +978,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1092,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1124,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1141,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1175,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1192,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,6 +1272,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1296,6 +1319,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1336,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1370,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1387,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1467,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1470,6 +1499,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1516,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1533,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1550,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1567,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1647,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1664,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1681,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1698,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1715,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1693,6 +1732,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneTDV.idf b/testfiles/5ZoneTDV.idf index d898c50f213..30885dcfbe9 100644 --- a/testfiles/5ZoneTDV.idf +++ b/testfiles/5ZoneTDV.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed.idf b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed.idf index b712c860c05..6999c382da5 100644 --- a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed.idf +++ b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed.idf @@ -1107,6 +1107,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1157,6 +1158,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1175,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1192,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1209,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1226,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1276,7 +1282,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1587,6 +1594,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1637,6 +1645,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1662,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1679,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1685,6 +1696,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1701,6 +1713,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1756,7 +1769,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2067,6 +2081,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2083,6 +2098,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2099,6 +2115,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2130,6 +2147,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2164,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2181,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2217,7 +2237,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2528,6 +2549,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2544,6 +2566,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2560,6 +2583,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2576,6 +2600,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2626,6 +2651,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2642,6 +2668,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2697,7 +2724,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3008,6 +3036,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3024,6 +3053,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3040,6 +3070,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3056,6 +3087,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3072,6 +3104,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3088,6 +3121,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3263,7 +3297,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 670.2792; !- Surface Area {m2} + , !- Surface Area {m2} + 670.2792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MaxZd.idf b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MaxZd.idf index 390cc656f42..5724ae0dab6 100644 --- a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MaxZd.idf +++ b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MaxZd.idf @@ -1086,6 +1086,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1137,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1154,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1171,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1188,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1205,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1255,7 +1261,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1587,6 +1594,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1637,6 +1645,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1662,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1679,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1685,6 +1696,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1701,6 +1713,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1756,7 +1769,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2067,6 +2081,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2083,6 +2098,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2099,6 +2115,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2130,6 +2147,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2164,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2181,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2217,7 +2237,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2528,6 +2549,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2544,6 +2566,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2560,6 +2583,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2576,6 +2600,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2626,6 +2651,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2642,6 +2668,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2697,7 +2724,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3008,6 +3036,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3024,6 +3053,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3040,6 +3070,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3056,6 +3087,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3072,6 +3104,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3088,6 +3121,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3263,7 +3297,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 670.2792; !- Surface Area {m2} + , !- Surface Area {m2} + 670.2792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MultiPath.idf b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MultiPath.idf index be348b2f23f..a0fc6838083 100644 --- a/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MultiPath.idf +++ b/testfiles/5ZoneVAV-ChilledWaterStorage-Mixed_DCV_MultiPath.idf @@ -1095,6 +1095,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1145,6 +1146,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1163,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1180,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1197,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1214,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1264,7 +1270,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1596,6 +1603,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1646,6 +1654,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1662,6 +1671,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1678,6 +1688,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1705,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1710,6 +1722,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1765,7 +1778,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2076,6 +2090,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2092,6 +2107,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2108,6 +2124,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2156,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2173,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2171,6 +2190,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2226,7 +2246,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2537,6 +2558,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2553,6 +2575,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2569,6 +2592,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2585,6 +2609,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2635,6 +2660,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2677,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2706,7 +2733,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3017,6 +3045,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3033,6 +3062,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3049,6 +3079,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3065,6 +3096,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3081,6 +3113,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3097,6 +3130,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3272,7 +3306,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 670.2792; !- Surface Area {m2} + , !- Surface Area {m2} + 670.2792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/5ZoneVAV-ChilledWaterStorage-Stratified.idf b/testfiles/5ZoneVAV-ChilledWaterStorage-Stratified.idf index 394da091fd1..f1f28cf703a 100644 --- a/testfiles/5ZoneVAV-ChilledWaterStorage-Stratified.idf +++ b/testfiles/5ZoneVAV-ChilledWaterStorage-Stratified.idf @@ -1098,6 +1098,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1149,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1166,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1183,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1200,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1217,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1267,7 +1273,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1578,6 +1585,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1628,6 +1636,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1653,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1670,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1687,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1704,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1747,7 +1760,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2058,6 +2072,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2089,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2106,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2121,6 +2138,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2137,6 +2155,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2153,6 +2172,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2208,7 +2228,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2519,6 +2540,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2557,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2574,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2591,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2617,6 +2642,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2633,6 +2659,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2688,7 +2715,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -2999,6 +3027,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3015,6 +3044,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3031,6 +3061,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3047,6 +3078,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3063,6 +3095,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3079,6 +3112,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3254,7 +3288,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 670.2792; !- Surface Area {m2} + , !- Surface Area {m2} + 670.2792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/5ZoneVAV-Pri-SecLoop.idf b/testfiles/5ZoneVAV-Pri-SecLoop.idf index d3db30ced8a..d336ee892ad 100644 --- a/testfiles/5ZoneVAV-Pri-SecLoop.idf +++ b/testfiles/5ZoneVAV-Pri-SecLoop.idf @@ -635,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +686,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +703,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +788,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +868,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +935,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +952,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1003,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1083,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,6 +1115,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1132,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1263,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1287,6 +1310,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1327,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1378,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1430,6 +1458,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1461,6 +1490,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1507,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1525,6 +1558,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1638,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1655,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWLHPPlantLoopTower.idf b/testfiles/5ZoneWLHPPlantLoopTower.idf index 6348d883c7b..384a77c5882 100644 --- a/testfiles/5ZoneWLHPPlantLoopTower.idf +++ b/testfiles/5ZoneWLHPPlantLoopTower.idf @@ -849,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +866,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +883,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +900,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -913,6 +917,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +934,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +951,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +968,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +985,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1002,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1082,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1138,6 +1149,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1166,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1297,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1312,6 +1329,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1346,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1363,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1380,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1397,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1477,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1501,6 +1524,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1541,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1558,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1575,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1565,6 +1592,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1672,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1675,6 +1704,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1721,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1738,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1755,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1772,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1852,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1869,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1886,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1903,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1920,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1898,6 +1937,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmest.idf b/testfiles/5ZoneWarmest.idf index 90a5364aa4e..4112e86841c 100644 --- a/testfiles/5ZoneWarmest.idf +++ b/testfiles/5ZoneWarmest.idf @@ -817,6 +817,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +834,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +868,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +885,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +902,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +919,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +936,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +953,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +970,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1050,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1117,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1134,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1168,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1185,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1265,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1280,6 +1297,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1314,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1331,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1348,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1365,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1445,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1469,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1643,6 +1672,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1689,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1740,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1786,6 +1820,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1837,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1854,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1871,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1888,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1905,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestMultDDSizBypass.idf b/testfiles/5ZoneWarmestMultDDSizBypass.idf index 00b2ac983fb..373b8b7fe68 100644 --- a/testfiles/5ZoneWarmestMultDDSizBypass.idf +++ b/testfiles/5ZoneWarmestMultDDSizBypass.idf @@ -845,6 +845,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +913,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1078,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1145,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1293,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1325,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1342,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1473,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1520,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1537,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1571,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1588,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1671,6 +1700,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1717,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1734,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1751,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1768,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1848,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1865,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1882,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1899,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1916,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1933,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestMultDDSizOnOff.idf b/testfiles/5ZoneWarmestMultDDSizOnOff.idf index 0cb17353a75..4678e71465a 100644 --- a/testfiles/5ZoneWarmestMultDDSizOnOff.idf +++ b/testfiles/5ZoneWarmestMultDDSizOnOff.idf @@ -845,6 +845,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +913,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1078,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1145,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1293,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1325,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1342,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1473,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1520,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1537,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1571,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1588,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1671,6 +1700,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1717,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1734,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1751,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1768,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1848,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1865,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1882,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1899,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1916,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1933,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestMultDDSizVAV.idf b/testfiles/5ZoneWarmestMultDDSizVAV.idf index 3cd103eaaf3..580947e63e5 100644 --- a/testfiles/5ZoneWarmestMultDDSizVAV.idf +++ b/testfiles/5ZoneWarmestMultDDSizVAV.idf @@ -845,6 +845,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +913,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1078,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1145,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1293,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1325,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1342,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1473,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1520,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1537,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1571,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1588,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1671,6 +1700,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1717,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1734,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1751,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1768,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1848,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1865,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1882,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1899,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1916,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1933,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestMultDDSizVT.idf b/testfiles/5ZoneWarmestMultDDSizVT.idf index 0b062fb948a..7db5533c2ac 100644 --- a/testfiles/5ZoneWarmestMultDDSizVT.idf +++ b/testfiles/5ZoneWarmestMultDDSizVT.idf @@ -845,6 +845,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +913,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1078,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1145,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1293,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1325,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1342,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1473,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1520,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1537,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1571,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1588,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1671,6 +1700,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1717,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1734,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1751,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1768,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1848,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1865,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1882,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1899,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1916,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1933,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestVFD.idf b/testfiles/5ZoneWarmestVFD.idf index 8aab30bc5f6..20529c9b9a9 100644 --- a/testfiles/5ZoneWarmestVFD.idf +++ b/testfiles/5ZoneWarmestVFD.idf @@ -821,6 +821,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +838,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +855,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +872,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +889,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +906,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +923,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +940,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +957,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +974,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1121,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1138,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1189,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1253,6 +1269,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1301,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1318,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1352,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1369,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1449,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1473,6 +1496,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1513,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1564,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1644,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1647,6 +1676,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1663,6 +1693,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1679,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1695,6 +1727,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1711,6 +1744,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1790,6 +1824,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1806,6 +1841,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1822,6 +1858,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1838,6 +1875,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1892,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1909,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWarmestVFD_FCMAuto.idf b/testfiles/5ZoneWarmestVFD_FCMAuto.idf index 9aca4a8981b..e243297bd06 100644 --- a/testfiles/5ZoneWarmestVFD_FCMAuto.idf +++ b/testfiles/5ZoneWarmestVFD_FCMAuto.idf @@ -800,6 +800,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +817,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +834,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +868,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +885,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +902,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +919,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +936,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +953,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1033,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1100,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1117,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1168,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1248,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1263,6 +1280,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1297,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1314,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1331,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1348,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1428,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1452,6 +1475,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1492,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1509,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1623,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1655,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1672,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1803,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1820,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1801,6 +1837,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1854,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1871,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1849,6 +1888,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterCooled_Baseboard.idf b/testfiles/5ZoneWaterCooled_Baseboard.idf index d1fc3af8670..e555995241a 100644 --- a/testfiles/5ZoneWaterCooled_Baseboard.idf +++ b/testfiles/5ZoneWaterCooled_Baseboard.idf @@ -883,6 +883,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +900,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +917,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +934,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +951,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +968,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +985,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1002,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1019,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1036,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1053,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1070,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1087,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1104,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1121,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1138,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1155,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1172,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1189,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1206,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1223,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1240,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1257,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1251,6 +1274,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1267,6 +1291,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1283,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1359,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1347,6 +1376,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1393,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1379,6 +1410,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1427,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1444,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1461,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1443,6 +1478,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1495,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1512,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1546,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2204,47 +2244,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:VAV:NOREHEAT =========== diff --git a/testfiles/5ZoneWaterCooled_BaseboardScalableSizing.idf b/testfiles/5ZoneWaterCooled_BaseboardScalableSizing.idf index 2f6f3dc46eb..eb7214132e0 100644 --- a/testfiles/5ZoneWaterCooled_BaseboardScalableSizing.idf +++ b/testfiles/5ZoneWaterCooled_BaseboardScalableSizing.idf @@ -885,6 +885,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +902,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +919,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +936,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +953,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +970,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +987,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1004,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1021,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1038,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1055,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1061,6 +1072,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1077,6 +1089,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1106,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1123,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1157,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1157,6 +1174,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1191,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1208,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1253,6 +1276,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1269,6 +1293,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1310,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1327,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1361,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1349,6 +1378,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1365,6 +1395,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1381,6 +1412,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1397,6 +1429,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1446,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1463,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1445,6 +1480,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1497,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1514,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1531,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2206,47 +2246,47 @@ !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:BASEBOARD:RADIANTCONVECTIVE:WATER =========== ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE2-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE2-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE2-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 87.78, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - RIGHT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C2-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB25, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE2-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Outlet Node Name + 87.78, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + RIGHT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C2-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB25, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water, - SPACE4-1 Baseboard, !- Name - Baseboard Design, !- Design_Object_Name - ReheatCoilAvailSched, !- Availability_Schedule_Name - SPACE4-1 Zone Coil Water In Node, !- Inlet_Node_Name - SPACE4-1 Zone Coil Water Out Node, !- Outlet_Node_Name - 82.22, !- Rated_Average_Water_Temperature - 0.063, !- Rated_Water_Mass_Flow_Rate - autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Water_Flow_Rate - LEFT-1, !- Surface_1_Name - 0.4, !- Fraction_of_Radiant_Energy_to_Surface_1 - C4-1, !- Surface_2_Name - 0.2, !- Fraction_of_Radiant_Energy_to_Surface_2 - SB45, !- Surface_3_Name - 0.1; !- Fraction_of_Radiant_Energy_to_Surface_3 + SPACE4-1 Baseboard, !- Name + Baseboard Design, !- Design Object + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Water In Node, !- Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Outlet Node Name + 82.22, !- Rated Average Water Temperature {C} + 0.063, !- Rated Water Mass Flow Rate {kg/s} + autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Water Flow Rate {m3/s} + LEFT-1, !- Surface 1 Name + 0.4, !- Fraction of Radiant Energy to Surface 1 + C4-1, !- Surface 2 Name + 0.2, !- Fraction of Radiant Energy to Surface 2 + SB45, !- Surface 3 Name + 0.1; !- Fraction of Radiant Energy to Surface 3 ZoneHVAC:Baseboard:RadiantConvective:Water:Design, - Baseboard Design, !- Design_Object_Name - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.001, !- Convergence_Tolerance - 0.3, !- Fraction_Radiant - 0.3; !- Fraction_of_Radiant_Energy_Incident_on_People + Baseboard Design, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.001, !- Convergence Tolerance + 0.3, !- Fraction Radiant + 0.3; !- Fraction of Radiant Energy Incident on People !- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:VAV:NOREHEAT =========== diff --git a/testfiles/5ZoneWaterCooled_GasFiredSteamHumidifier.idf b/testfiles/5ZoneWaterCooled_GasFiredSteamHumidifier.idf index ae8e648882d..935ef22bc52 100644 --- a/testfiles/5ZoneWaterCooled_GasFiredSteamHumidifier.idf +++ b/testfiles/5ZoneWaterCooled_GasFiredSteamHumidifier.idf @@ -659,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +676,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +693,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +710,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +727,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +778,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +795,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +812,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +892,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +959,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +976,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +993,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1010,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1027,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1107,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1139,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1156,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1287,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1311,6 +1334,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1351,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1368,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1385,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1402,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1482,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1514,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1531,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1565,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1582,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1662,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1679,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1696,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1713,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1730,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1747,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterCooled_HighRHControl.idf b/testfiles/5ZoneWaterCooled_HighRHControl.idf index d4c096da5f1..163b9941acd 100644 --- a/testfiles/5ZoneWaterCooled_HighRHControl.idf +++ b/testfiles/5ZoneWaterCooled_HighRHControl.idf @@ -643,6 +643,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +660,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +677,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +694,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +711,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +728,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +745,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +762,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +779,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +796,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -866,6 +876,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +943,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +960,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +977,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +994,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1011,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1091,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1123,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1140,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1191,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1271,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1295,6 +1318,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1335,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1352,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1369,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1386,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1466,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1469,6 +1498,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1515,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1532,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1549,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1566,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1646,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1663,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1680,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1697,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1714,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1731,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterCooled_MultizoneAverageRHControl.idf b/testfiles/5ZoneWaterCooled_MultizoneAverageRHControl.idf index c1fb9df3276..9f276737045 100644 --- a/testfiles/5ZoneWaterCooled_MultizoneAverageRHControl.idf +++ b/testfiles/5ZoneWaterCooled_MultizoneAverageRHControl.idf @@ -659,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +676,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +693,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +710,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +727,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +778,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +795,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +812,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +892,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +959,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +976,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +993,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1010,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1027,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1107,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1139,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1156,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1287,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1311,6 +1334,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1351,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1368,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1385,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1402,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1482,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1514,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1531,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1565,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1582,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1662,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1679,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1696,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1713,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1730,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1747,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterCooled_MultizoneMinMaxRHControl.idf b/testfiles/5ZoneWaterCooled_MultizoneMinMaxRHControl.idf index 634ac452b70..1e0666e1adc 100644 --- a/testfiles/5ZoneWaterCooled_MultizoneMinMaxRHControl.idf +++ b/testfiles/5ZoneWaterCooled_MultizoneMinMaxRHControl.idf @@ -659,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +676,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +693,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +710,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +727,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +778,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +795,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +812,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +892,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +959,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +976,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +993,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1010,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1027,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1107,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1139,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1156,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1287,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1311,6 +1334,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1351,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1368,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1385,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1402,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1482,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1514,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1531,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1565,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1582,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1662,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1679,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1696,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1713,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1730,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1747,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterLoopHeatPump.idf b/testfiles/5ZoneWaterLoopHeatPump.idf index debf807a871..da9c5d22aa7 100644 --- a/testfiles/5ZoneWaterLoopHeatPump.idf +++ b/testfiles/5ZoneWaterLoopHeatPump.idf @@ -557,6 +557,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +574,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -589,6 +591,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -605,6 +608,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +625,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +642,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -653,6 +659,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -669,6 +676,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +693,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +710,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +790,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +857,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +874,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +891,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +908,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +925,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1005,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1037,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1054,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1071,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1088,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1185,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1209,6 +1232,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1249,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1266,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1283,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1300,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1380,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1383,6 +1412,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1429,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1446,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1463,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1480,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1560,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1577,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1594,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1574,6 +1611,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1628,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1645,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5ZoneWaterSystems.idf b/testfiles/5ZoneWaterSystems.idf index 746a1ce46ed..f4f4425c3f6 100644 --- a/testfiles/5ZoneWaterSystems.idf +++ b/testfiles/5ZoneWaterSystems.idf @@ -2407,6 +2407,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2423,6 +2424,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2439,6 +2441,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2455,6 +2458,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2471,6 +2475,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2487,6 +2492,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2503,6 +2509,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2526,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2543,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2560,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2717,6 +2727,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2783,6 +2794,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2799,6 +2811,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2828,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2831,6 +2845,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2847,6 +2862,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2985,6 +3001,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3016,6 +3033,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3032,6 +3050,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3048,6 +3067,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3064,6 +3084,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3080,6 +3101,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3205,6 +3227,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3251,6 +3274,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3267,6 +3291,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3283,6 +3308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3299,6 +3325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3315,6 +3342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3431,6 +3459,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3462,6 +3491,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3478,6 +3508,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3494,6 +3525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3510,6 +3542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3526,6 +3559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3630,6 +3664,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3646,6 +3681,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3662,6 +3698,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3678,6 +3715,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3694,6 +3732,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3710,6 +3749,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5Zone_IdealLoadsAirSystems_ReturnPlenum.idf b/testfiles/5Zone_IdealLoadsAirSystems_ReturnPlenum.idf index 0aea41ea16a..a4bc616cddf 100644 --- a/testfiles/5Zone_IdealLoadsAirSystems_ReturnPlenum.idf +++ b/testfiles/5Zone_IdealLoadsAirSystems_ReturnPlenum.idf @@ -606,6 +606,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -622,6 +623,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +674,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +691,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +708,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +839,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -895,6 +906,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +923,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +940,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +957,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1054,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1086,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1103,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1120,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1137,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1154,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1234,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1258,6 +1281,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1298,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1315,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1332,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1429,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1432,6 +1461,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1448,6 +1478,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1464,6 +1495,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1480,6 +1512,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1496,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1609,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1626,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1643,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1623,6 +1660,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1677,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5Zone_Transformer.idf b/testfiles/5Zone_Transformer.idf index 3029432e406..615c4742f4f 100644 --- a/testfiles/5Zone_Transformer.idf +++ b/testfiles/5Zone_Transformer.idf @@ -918,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +935,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -950,6 +952,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -966,6 +969,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +986,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1037,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1054,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1071,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1105,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1122,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1190,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1190,6 +1207,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1224,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1258,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1275,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1292,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1286,6 +1309,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1326,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1394,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1382,6 +1411,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1428,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1430,6 +1462,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1446,6 +1479,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1496,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1513,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1547,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1564,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1581,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5Zone_Unitary_HXAssistedCoil.idf b/testfiles/5Zone_Unitary_HXAssistedCoil.idf index 5e9b4dfa9bb..04ab9dbd300 100644 --- a/testfiles/5Zone_Unitary_HXAssistedCoil.idf +++ b/testfiles/5Zone_Unitary_HXAssistedCoil.idf @@ -640,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +674,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +691,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +708,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +873,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +940,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +957,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1120,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1137,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1154,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1171,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1188,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1315,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1332,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1366,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1383,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1463,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1495,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1512,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1546,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1563,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1643,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1660,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1677,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5Zone_Unitary_VSDesuperheatWaterHeater.idf b/testfiles/5Zone_Unitary_VSDesuperheatWaterHeater.idf index 7f0e7c90f12..a1ae62a2d61 100644 --- a/testfiles/5Zone_Unitary_VSDesuperheatWaterHeater.idf +++ b/testfiles/5Zone_Unitary_VSDesuperheatWaterHeater.idf @@ -640,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +674,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +691,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +708,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +873,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +940,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +957,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1120,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1137,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1154,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1171,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1188,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1315,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1332,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1366,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1383,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1463,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1495,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1512,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1546,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1563,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1643,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1660,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1677,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/5Zone_Unitary_VSDesuperheater.idf b/testfiles/5Zone_Unitary_VSDesuperheater.idf index 410ac2a1643..fbfe62be1a1 100644 --- a/testfiles/5Zone_Unitary_VSDesuperheater.idf +++ b/testfiles/5Zone_Unitary_VSDesuperheater.idf @@ -640,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +674,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +691,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +708,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +873,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +940,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +957,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1120,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1137,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1154,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1171,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1188,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1315,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1332,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1366,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1383,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1463,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1495,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1512,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1546,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1563,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1643,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1660,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1677,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ASHRAE9012016_ApartmentHighRise_Denver.idf b/testfiles/ASHRAE9012016_ApartmentHighRise_Denver.idf index 628e8c5a15d..25c2fa38a62 100644 --- a/testfiles/ASHRAE9012016_ApartmentHighRise_Denver.idf +++ b/testfiles/ASHRAE9012016_ApartmentHighRise_Denver.idf @@ -4656,6 +4656,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4672,6 +4673,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4688,6 +4690,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4704,6 +4707,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4720,6 +4724,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4736,6 +4741,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4752,6 +4758,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4768,6 +4775,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4784,6 +4792,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4800,6 +4809,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4816,6 +4826,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4832,6 +4843,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4848,6 +4860,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4864,6 +4877,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4880,6 +4894,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4896,6 +4911,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4912,6 +4928,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4928,6 +4945,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4944,6 +4962,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4960,6 +4979,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4976,6 +4996,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4992,6 +5013,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5008,6 +5030,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5024,6 +5047,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5040,6 +5064,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5056,6 +5081,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5072,6 +5098,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5088,6 +5115,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5104,6 +5132,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5120,6 +5149,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5136,6 +5166,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5152,6 +5183,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5168,6 +5200,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5184,6 +5217,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5200,6 +5234,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5216,6 +5251,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5232,6 +5268,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5248,6 +5285,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5264,6 +5302,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5280,6 +5319,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5296,6 +5336,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5312,6 +5353,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Office, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5328,6 +5370,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5344,6 +5387,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5360,6 +5404,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5376,6 +5421,7 @@ Floor, !- Surface Type int_slab_ceiling, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5392,6 +5438,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5408,6 +5455,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5424,6 +5472,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5440,6 +5489,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5456,6 +5506,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5472,6 +5523,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5488,6 +5540,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5504,6 +5557,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5520,6 +5574,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5536,6 +5591,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5552,6 +5608,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5568,6 +5625,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5584,6 +5642,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5600,6 +5659,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5616,6 +5676,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5632,6 +5693,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5648,6 +5710,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5664,6 +5727,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5680,6 +5744,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5696,6 +5761,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5712,6 +5778,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5728,6 +5795,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5744,6 +5812,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5760,6 +5829,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5776,6 +5846,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5792,6 +5863,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5808,6 +5880,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5824,6 +5897,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5840,6 +5914,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5856,6 +5931,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5872,6 +5948,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5888,6 +5965,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5904,6 +5982,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5920,6 +5999,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5936,6 +6016,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5952,6 +6033,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5968,6 +6050,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5984,6 +6067,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6000,6 +6084,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6016,6 +6101,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6032,6 +6118,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6048,6 +6135,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F2 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F2 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6064,6 +6152,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6080,6 +6169,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6096,6 +6186,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F2 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6112,6 +6203,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F2 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6128,6 +6220,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6144,6 +6237,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6160,6 +6254,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6176,6 +6271,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6192,6 +6288,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6208,6 +6305,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6224,6 +6322,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6240,6 +6339,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6256,6 +6356,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6272,6 +6373,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6288,6 +6390,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6304,6 +6407,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6320,6 +6424,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6336,6 +6441,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6352,6 +6458,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6368,6 +6475,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6384,6 +6492,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6400,6 +6509,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6416,6 +6526,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6432,6 +6543,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6448,6 +6560,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6464,6 +6577,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6480,6 +6594,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6496,6 +6611,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6512,6 +6628,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6528,6 +6645,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6544,6 +6662,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6560,6 +6679,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6576,6 +6696,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6592,6 +6713,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6608,6 +6730,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6624,6 +6747,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6640,6 +6764,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6656,6 +6781,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6672,6 +6798,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6688,6 +6815,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6704,6 +6832,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6720,6 +6849,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6736,6 +6866,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6752,6 +6883,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6768,6 +6900,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6784,6 +6917,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F3 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F3 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6800,6 +6934,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6816,6 +6951,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F3 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6832,6 +6968,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F3 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6848,6 +6985,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F3 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6864,6 +7002,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6880,6 +7019,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6896,6 +7036,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6912,6 +7053,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6928,6 +7070,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6944,6 +7087,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6960,6 +7104,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6976,6 +7121,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6992,6 +7138,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7008,6 +7155,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7024,6 +7172,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7040,6 +7189,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7056,6 +7206,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7072,6 +7223,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7088,6 +7240,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7104,6 +7257,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7120,6 +7274,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7136,6 +7291,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7152,6 +7308,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7168,6 +7325,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7184,6 +7342,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7200,6 +7359,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7216,6 +7376,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7232,6 +7393,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7248,6 +7410,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7264,6 +7427,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7280,6 +7444,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7296,6 +7461,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7312,6 +7478,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7328,6 +7495,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7344,6 +7512,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7360,6 +7529,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7376,6 +7546,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7392,6 +7563,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7408,6 +7580,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7424,6 +7597,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7440,6 +7614,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7456,6 +7631,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7472,6 +7648,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7488,6 +7665,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7504,6 +7682,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7520,6 +7699,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F4 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F4 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7536,6 +7716,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7552,6 +7733,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F4 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7568,6 +7750,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F4 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7584,6 +7767,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F4 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7600,6 +7784,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7616,6 +7801,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7632,6 +7818,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7648,6 +7835,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7664,6 +7852,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7680,6 +7869,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7696,6 +7886,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7712,6 +7903,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7728,6 +7920,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7744,6 +7937,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7760,6 +7954,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7776,6 +7971,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7792,6 +7988,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7808,6 +8005,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7824,6 +8022,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7840,6 +8039,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7856,6 +8056,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7872,6 +8073,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7888,6 +8090,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7904,6 +8107,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7920,6 +8124,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7936,6 +8141,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7952,6 +8158,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7968,6 +8175,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7984,6 +8192,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8000,6 +8209,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8016,6 +8226,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8032,6 +8243,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8048,6 +8260,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8064,6 +8277,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8080,6 +8294,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8096,6 +8311,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8112,6 +8328,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8128,6 +8345,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8144,6 +8362,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8160,6 +8379,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8176,6 +8396,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8192,6 +8413,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8208,6 +8430,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8224,6 +8447,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8240,6 +8464,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8256,6 +8481,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8272,6 +8498,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8288,6 +8515,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8304,6 +8532,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8320,6 +8549,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8336,6 +8566,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8352,6 +8583,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8368,6 +8600,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8384,6 +8617,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8400,6 +8634,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8416,6 +8651,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8432,6 +8668,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8448,6 +8685,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8464,6 +8702,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8480,6 +8719,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8496,6 +8736,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8512,6 +8753,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8528,6 +8770,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8544,6 +8787,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8560,6 +8804,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8576,6 +8821,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8592,6 +8838,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8608,6 +8855,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8624,6 +8872,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8640,6 +8889,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8656,6 +8906,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8672,6 +8923,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8688,6 +8940,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8704,6 +8957,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8720,6 +8974,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8736,6 +8991,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8752,6 +9008,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8768,6 +9025,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8784,6 +9042,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8800,6 +9059,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8816,6 +9076,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8832,6 +9093,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8848,6 +9110,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8864,6 +9127,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8880,6 +9144,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8896,6 +9161,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8912,6 +9178,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8928,6 +9195,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8944,6 +9212,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8960,6 +9229,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8976,6 +9246,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8992,6 +9263,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F6 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F6 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9008,6 +9280,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9024,6 +9297,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F6 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9040,6 +9314,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F6 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9056,6 +9331,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F6 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9072,6 +9348,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9088,6 +9365,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9104,6 +9382,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9120,6 +9399,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9136,6 +9416,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9152,6 +9433,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9168,6 +9450,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9184,6 +9467,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9200,6 +9484,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9216,6 +9501,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9232,6 +9518,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9248,6 +9535,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9264,6 +9552,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9280,6 +9569,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9296,6 +9586,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9312,6 +9603,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9328,6 +9620,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9344,6 +9637,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9360,6 +9654,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9376,6 +9671,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9392,6 +9688,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9408,6 +9705,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9424,6 +9722,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9440,6 +9739,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9456,6 +9756,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9472,6 +9773,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9488,6 +9790,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9504,6 +9807,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9520,6 +9824,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9536,6 +9841,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9552,6 +9858,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9568,6 +9875,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9584,6 +9892,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9600,6 +9909,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9616,6 +9926,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9632,6 +9943,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9648,6 +9960,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9664,6 +9977,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9680,6 +9994,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9696,6 +10011,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9712,6 +10028,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9728,6 +10045,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F7 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F7 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9744,6 +10062,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9760,6 +10079,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F7 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9776,6 +10096,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F7 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9792,6 +10113,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F7 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9808,6 +10130,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9824,6 +10147,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9840,6 +10164,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9856,6 +10181,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9872,6 +10198,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9888,6 +10215,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9904,6 +10232,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9920,6 +10249,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9936,6 +10266,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9952,6 +10283,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9968,6 +10300,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9984,6 +10317,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10000,6 +10334,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10016,6 +10351,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10032,6 +10368,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10048,6 +10385,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10064,6 +10402,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10080,6 +10419,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10096,6 +10436,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10112,6 +10453,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10128,6 +10470,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10144,6 +10487,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10160,6 +10504,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10176,6 +10521,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10192,6 +10538,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10208,6 +10555,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10224,6 +10572,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10240,6 +10589,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10256,6 +10606,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10272,6 +10623,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10288,6 +10640,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10304,6 +10657,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10320,6 +10674,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10336,6 +10691,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10352,6 +10708,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10368,6 +10725,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10384,6 +10742,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10400,6 +10759,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10416,6 +10776,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10432,6 +10793,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10448,6 +10810,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10464,6 +10827,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F8 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F8 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10480,6 +10844,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10496,6 +10861,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F8 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10512,6 +10878,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F8 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10528,6 +10895,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F8 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10544,6 +10912,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10560,6 +10929,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10576,6 +10946,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10592,6 +10963,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10608,6 +10980,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10624,6 +10997,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10640,6 +11014,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10656,6 +11031,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10672,6 +11048,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10688,6 +11065,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10704,6 +11082,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10720,6 +11099,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10736,6 +11116,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10752,6 +11133,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10768,6 +11150,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10784,6 +11167,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10800,6 +11184,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10816,6 +11201,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10832,6 +11218,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10848,6 +11235,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10864,6 +11252,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10880,6 +11269,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10896,6 +11286,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10912,6 +11303,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10928,6 +11320,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10944,6 +11337,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10960,6 +11354,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10976,6 +11371,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10992,6 +11388,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11008,6 +11405,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11024,6 +11422,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11040,6 +11439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11056,6 +11456,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11072,6 +11473,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11088,6 +11490,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11104,6 +11507,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11120,6 +11524,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11136,6 +11541,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11152,6 +11558,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11168,6 +11575,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11184,6 +11592,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11200,6 +11609,7 @@ Wall, !- Surface Type int_wall, !- Construction Name F9 S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition F9 SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11216,6 +11626,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11232,6 +11643,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name F9 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11248,6 +11660,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name F9 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11264,6 +11677,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name F9 Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11280,6 +11694,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11296,6 +11711,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11312,6 +11728,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11328,6 +11745,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11344,6 +11762,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11360,6 +11779,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11376,6 +11796,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11392,6 +11813,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11408,6 +11830,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11424,6 +11847,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11440,6 +11864,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11456,6 +11881,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11472,6 +11898,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11488,6 +11915,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11504,6 +11932,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11520,6 +11949,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11536,6 +11966,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11552,6 +11983,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11568,6 +12000,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11584,6 +12017,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11600,6 +12034,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11616,6 +12051,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11632,6 +12068,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11648,6 +12085,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11664,6 +12102,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11680,6 +12119,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11696,6 +12136,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11712,6 +12153,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11728,6 +12170,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11744,6 +12187,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11760,6 +12204,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11776,6 +12221,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11792,6 +12238,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11808,6 +12255,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11824,6 +12272,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11840,6 +12289,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11856,6 +12306,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11872,6 +12323,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11888,6 +12340,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11904,6 +12357,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11920,6 +12374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11936,6 +12391,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11952,6 +12408,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11968,6 +12425,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11984,6 +12442,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12000,6 +12459,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9 Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14119,481 +14579,561 @@ G SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G SW Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G NW Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, Office_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G NE Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G N1 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G N2 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G S1 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, G S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name G S2 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, F2 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F2 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F2 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F3 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F3 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F4 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F4 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, M S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name M S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F6 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F6 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F7 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F7 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F8 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F8 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 SW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 NW Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 SE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 NE Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 N1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 N2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 S1 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, F9 S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name F9 S2 Apartment, !- Zone or ZoneList Name - 176.4981; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4981; !- Extended Field InternalMass, T SW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T SW Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T NW Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T NW Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T SE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T SE Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T NE Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T NE Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T N1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T N1 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T N2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T N2 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T S1 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T S1 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field InternalMass, T S2 Apartment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name T S2 Apartment, !- Zone or ZoneList Name - 88.2492727; !- Surface Area {m2} + , !- Surface Area {m2} + 88.2492727; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -50508,99 +51048,99 @@ !- =========== ALL OBJECTS IN CLASS: CURVE:QUADLINEAR =========== Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -4.30266987344639, !- CoefficientC1 - 7.18536990534372, !- CoefficientC2 - -2.23946714486189, !- CoefficientC3 - 0.139995928440879, !- CoefficientC4 - 0.102660179888915, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -4.30266987344639, !- Coefficient1 Constant + 7.18536990534372, !- Coefficient2 w + -2.23946714486189, !- Coefficient3 x + 0.139995928440879, !- Coefficient4 y + 0.102660179888915, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -5.67775976415698, !- CoefficientC1 - 0.438988156976704, !- CoefficientC2 - 5.845277342193, !- CoefficientC3 - 0.141605667000125, !- CoefficientC4 - -0.168727936032429, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -5.67775976415698, !- Coefficient1 Constant + 0.438988156976704, !- Coefficient2 w + 5.845277342193, !- Coefficient3 x + 0.141605667000125, !- Coefficient4 y + -0.168727936032429, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - 0.237847462869254, !- CoefficientC1 - -3.35823796081626, !- CoefficientC2 - 3.80640467406376, !- CoefficientC3 - 0.179200417311554, !- CoefficientC4 - 0.12860719846082, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + 0.237847462869254, !- Coefficient1 Constant + -3.35823796081626, !- Coefficient2 w + 3.80640467406376, !- Coefficient3 x + 0.179200417311554, !- Coefficient4 y + 0.12860719846082, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -3.79175529243238, !- CoefficientC1 - 3.38799239505527, !- CoefficientC2 - 1.5022612076303, !- CoefficientC3 - -0.177653510577989, !- CoefficientC4 - -0.103079864171839, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -3.79175529243238, !- Coefficient1 Constant + 3.38799239505527, !- Coefficient2 w + 1.5022612076303, !- Coefficient3 x + -0.177653510577989, !- Coefficient4 y + -0.103079864171839, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: CURVE:QUINTLINEAR =========== Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - 6.0019444814887, !- CoefficientC1 - 22.6300677244073, !- CoefficientC2 - -26.7960783730934, !- CoefficientC3 - -1.72374720346819, !- CoefficientC4 - 0.490644802367817, !- CoefficientC5 - 0.0693119353468141, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + 6.0019444814887, !- Coefficient1 Constant + 22.6300677244073, !- Coefficient2 v + -26.7960783730934, !- Coefficient3 w + -1.72374720346819, !- Coefficient4 x + 0.490644802367817, !- Coefficient5 y + 0.0693119353468141, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== diff --git a/testfiles/ASHRAE9012016_ApartmentMidRise_Denver.idf b/testfiles/ASHRAE9012016_ApartmentMidRise_Denver.idf index 54c3c329453..0060f4a67e4 100644 --- a/testfiles/ASHRAE9012016_ApartmentMidRise_Denver.idf +++ b/testfiles/ASHRAE9012016_ApartmentMidRise_Denver.idf @@ -2802,6 +2802,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2818,6 +2819,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2834,6 +2836,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2850,6 +2853,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2866,6 +2870,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2882,6 +2887,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2898,6 +2904,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2914,6 +2921,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2930,6 +2938,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2946,6 +2955,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2962,6 +2972,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2978,6 +2989,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2994,6 +3006,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3010,6 +3023,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3026,6 +3040,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3042,6 +3057,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3058,6 +3074,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3074,6 +3091,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3090,6 +3108,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3106,6 +3125,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3122,6 +3142,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3138,6 +3159,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3154,6 +3176,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3170,6 +3193,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3186,6 +3210,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3202,6 +3227,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3218,6 +3244,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3234,6 +3261,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3250,6 +3278,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3266,6 +3295,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3282,6 +3312,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3298,6 +3329,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3314,6 +3346,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3330,6 +3363,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3346,6 +3380,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3362,6 +3397,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3378,6 +3414,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3394,6 +3431,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3410,6 +3448,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3426,6 +3465,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3442,6 +3482,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3458,6 +3499,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3474,6 +3516,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3490,6 +3533,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3506,6 +3550,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3522,6 +3567,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3538,6 +3584,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3554,6 +3601,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3570,6 +3618,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3586,6 +3635,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3602,6 +3652,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3618,6 +3669,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3634,6 +3686,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3650,6 +3703,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3666,6 +3720,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3682,6 +3737,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3698,6 +3754,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3714,6 +3771,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3730,6 +3788,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3746,6 +3805,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3762,6 +3822,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3778,6 +3839,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3794,6 +3856,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3810,6 +3873,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3826,6 +3890,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3842,6 +3907,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3858,6 +3924,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3874,6 +3941,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3890,6 +3958,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3906,6 +3975,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3922,6 +3992,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3938,6 +4009,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3954,6 +4026,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3970,6 +4043,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3986,6 +4060,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4002,6 +4077,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4018,6 +4094,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4034,6 +4111,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4050,6 +4128,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4066,6 +4145,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4082,6 +4162,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4098,6 +4179,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4114,6 +4196,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4130,6 +4213,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4146,6 +4230,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4162,6 +4247,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4178,6 +4264,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4194,6 +4281,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4210,6 +4298,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4226,6 +4315,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4242,6 +4332,7 @@ Roof, !- Surface Type res_roof, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4258,6 +4349,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4274,6 +4366,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4290,6 +4383,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4306,6 +4400,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4322,6 +4417,7 @@ Floor, !- Surface Type int_slab_ceiling, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4338,6 +4434,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4354,6 +4451,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4370,6 +4468,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4386,6 +4485,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4402,6 +4502,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4418,6 +4519,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Office, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4434,6 +4536,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4450,6 +4553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4466,6 +4570,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4482,6 +4587,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4498,6 +4604,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4514,6 +4621,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4530,6 +4638,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4546,6 +4655,7 @@ Wall, !- Surface Type int_wall, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition G Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4562,6 +4672,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4578,6 +4689,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4594,6 +4706,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4610,6 +4723,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4626,6 +4740,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4642,6 +4757,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4658,6 +4774,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4674,6 +4791,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4690,6 +4808,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4706,6 +4825,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4722,6 +4842,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4738,6 +4859,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4754,6 +4876,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4770,6 +4893,7 @@ Wall, !- Surface Type int_wall, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition M Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4786,6 +4910,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4802,6 +4927,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T S1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4818,6 +4944,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4834,6 +4961,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T S2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4850,6 +4978,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4866,6 +4995,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T SE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4882,6 +5012,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4898,6 +5029,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4914,6 +5046,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T N1 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4930,6 +5063,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4946,6 +5080,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T N2 Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4962,6 +5097,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4978,6 +5114,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T NE Apartment, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4994,6 +5131,7 @@ Wall, !- Surface Type int_wall, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition T Corridor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5598,145 +5736,169 @@ G InternalMass SWA, !- Name InteriorFurnishings, !- Construction Name G SW Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass NWA, !- Name InteriorFurnishings, !- Construction Name G NW Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass SEA, !- Name InteriorFurnishings, !- Construction Name Office, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass NEA, !- Name InteriorFurnishings, !- Construction Name G NE Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass N1A, !- Name InteriorFurnishings, !- Construction Name G N1 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass N2A, !- Name InteriorFurnishings, !- Construction Name G N2 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass S1A, !- Name InteriorFurnishings, !- Construction Name G S1 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, G InternalMass S2A, !- Name InteriorFurnishings, !- Construction Name G S2 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, M InternalMass SWA, !- Name InteriorFurnishings, !- Construction Name M SW Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass NWA, !- Name InteriorFurnishings, !- Construction Name M NW Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass SEA, !- Name InteriorFurnishings, !- Construction Name M SE Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass NEA, !- Name InteriorFurnishings, !- Construction Name M NE Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass N1A, !- Name InteriorFurnishings, !- Construction Name M N1 Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass N2A, !- Name InteriorFurnishings, !- Construction Name M N2 Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass S1A, !- Name InteriorFurnishings, !- Construction Name M S1 Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, M InternalMass S2A, !- Name InteriorFurnishings, !- Construction Name M S2 Apartment, !- Zone or ZoneList Name - 176.498545342438; !- Surface Area {m2} + , !- Surface Area {m2} + 176.498545342438; !- Extended Field InternalMass, T InternalMass SWA, !- Name InteriorFurnishings, !- Construction Name T SW Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass NWA, !- Name InteriorFurnishings, !- Construction Name T NW Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass SEA, !- Name InteriorFurnishings, !- Construction Name T SE Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass NEA, !- Name InteriorFurnishings, !- Construction Name T NE Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass N1A, !- Name InteriorFurnishings, !- Construction Name T N1 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass N2A, !- Name InteriorFurnishings, !- Construction Name T N2 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass S1A, !- Name InteriorFurnishings, !- Construction Name T S1 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field InternalMass, T InternalMass S2A, !- Name InteriorFurnishings, !- Construction Name T S2 Apartment, !- Zone or ZoneList Name - 88.249272671219; !- Surface Area {m2} + , !- Surface Area {m2} + 88.249272671219; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE =========== diff --git a/testfiles/ASHRAE9012016_Hospital_Denver.idf b/testfiles/ASHRAE9012016_Hospital_Denver.idf index 76a8c0a8d11..eaed99c858f 100644 --- a/testfiles/ASHRAE9012016_Hospital_Denver.idf +++ b/testfiles/ASHRAE9012016_Hospital_Denver.idf @@ -3682,6 +3682,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,6 +3699,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3714,6 +3716,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3730,6 +3733,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3746,6 +3750,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3762,6 +3767,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3778,6 +3784,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3794,6 +3801,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3810,6 +3818,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3826,6 +3835,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3842,6 +3852,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3858,6 +3869,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3874,6 +3886,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3890,6 +3903,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3906,6 +3920,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma1_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3922,6 +3937,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma1_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3938,6 +3954,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma1_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3954,6 +3971,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma1_Flr_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3970,6 +3988,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3986,6 +4005,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4002,6 +4022,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4018,6 +4039,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4034,6 +4056,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4050,6 +4073,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4066,6 +4090,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4082,6 +4107,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4098,6 +4124,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma2_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4114,6 +4141,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma2_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4130,6 +4158,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma2_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4146,6 +4175,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Trauma2_Flr_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4162,6 +4192,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4178,6 +4209,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Triage_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4194,6 +4226,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Triage_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4210,6 +4243,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Triage_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4226,6 +4260,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Triage_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4242,6 +4277,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Triage_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4258,6 +4294,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4274,6 +4311,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4290,6 +4328,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4306,6 +4345,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4322,6 +4362,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4338,6 +4379,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4354,6 +4396,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4370,6 +4413,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4386,6 +4430,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4402,6 +4447,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4418,6 +4464,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4438,6 +4485,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4454,6 +4502,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4470,6 +4519,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4486,6 +4536,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4502,6 +4553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4570,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4538,6 +4591,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4554,6 +4608,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Records_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4570,6 +4625,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4586,6 +4642,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4602,6 +4659,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4618,6 +4676,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4634,6 +4693,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4650,6 +4710,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4666,6 +4727,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4686,6 +4748,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4702,6 +4765,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4718,6 +4782,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4734,6 +4799,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4750,6 +4816,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4766,6 +4833,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4782,6 +4850,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4798,6 +4867,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStn_Lobby_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4818,6 +4888,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4834,6 +4905,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4850,6 +4922,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4866,6 +4939,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4882,6 +4956,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4898,6 +4973,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4914,6 +4990,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4930,6 +5007,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4946,6 +5024,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4962,6 +5041,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4978,6 +5058,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4994,6 +5075,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5010,6 +5092,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5026,6 +5109,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5042,6 +5126,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5058,6 +5143,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5074,6 +5160,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5090,6 +5177,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5106,6 +5194,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5122,6 +5211,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5138,6 +5228,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5154,6 +5245,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5170,6 +5262,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5186,6 +5279,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5202,6 +5296,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5218,6 +5313,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5234,6 +5330,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5250,6 +5347,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5266,6 +5364,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5282,6 +5381,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5298,6 +5398,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5314,6 +5415,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5330,6 +5432,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5346,6 +5449,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5362,6 +5466,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5378,6 +5483,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5394,6 +5500,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5410,6 +5517,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5426,6 +5534,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5442,6 +5551,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5458,6 +5568,7 @@ Wall, !- Surface Type int_wall, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5474,6 +5585,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5490,6 +5602,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5506,6 +5619,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5522,6 +5636,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5538,6 +5653,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5554,6 +5670,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5570,6 +5687,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5586,6 +5704,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5602,6 +5721,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5618,6 +5738,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5634,6 +5755,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5650,6 +5772,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5666,6 +5789,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5682,6 +5806,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5698,6 +5823,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5714,6 +5840,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5730,6 +5857,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5746,6 +5874,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5762,6 +5891,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5778,6 +5908,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5794,6 +5925,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5810,6 +5942,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5830,6 +5963,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5846,6 +5980,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5862,6 +5997,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5878,6 +6014,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5894,6 +6031,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5910,6 +6048,7 @@ Wall, !- Surface Type int_wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5926,6 +6065,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5946,6 +6086,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5962,6 +6103,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5978,6 +6120,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5994,6 +6137,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6010,6 +6154,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6026,6 +6171,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6042,6 +6188,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6058,6 +6205,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6074,6 +6222,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6090,6 +6239,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6106,6 +6256,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6122,6 +6273,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6138,6 +6290,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6154,6 +6307,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6170,6 +6324,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6186,6 +6341,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6202,6 +6358,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6218,6 +6375,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6234,6 +6392,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6250,6 +6409,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6266,6 +6426,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6282,6 +6443,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6298,6 +6460,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6314,6 +6477,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6330,6 +6494,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6346,6 +6511,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6362,6 +6528,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6378,6 +6545,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6394,6 +6562,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6410,6 +6579,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6426,6 +6596,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6442,6 +6613,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6458,6 +6630,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6474,6 +6647,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6490,6 +6664,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6506,6 +6681,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6522,6 +6698,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6538,6 +6715,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6554,6 +6732,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6570,6 +6749,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6586,6 +6766,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6602,6 +6783,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6618,6 +6800,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6634,6 +6817,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6650,6 +6834,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,6 +6851,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,6 +6868,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6698,6 +6885,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6714,6 +6902,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6730,6 +6919,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6746,6 +6936,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6762,6 +6953,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6778,6 +6970,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6794,6 +6987,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6810,6 +7004,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6826,6 +7021,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6842,6 +7038,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6864,6 +7061,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6880,6 +7078,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6896,6 +7095,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6912,6 +7112,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6928,6 +7129,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6950,6 +7152,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6966,6 +7169,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6982,6 +7186,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6998,6 +7203,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7014,6 +7220,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7032,6 +7239,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7048,6 +7256,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7064,6 +7273,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7080,6 +7290,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7096,6 +7307,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7112,6 +7324,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7130,6 +7343,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7146,6 +7360,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7162,6 +7377,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7178,6 +7394,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7194,6 +7411,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7210,6 +7428,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7232,6 +7451,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7248,6 +7468,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7264,6 +7485,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7280,6 +7502,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7296,6 +7519,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7312,6 +7536,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7328,6 +7553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7344,6 +7570,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7366,6 +7593,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7382,6 +7610,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7398,6 +7627,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7414,6 +7644,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7430,6 +7661,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7446,6 +7678,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7468,6 +7701,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7484,6 +7718,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7500,6 +7735,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7516,6 +7752,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7532,6 +7769,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7548,6 +7786,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7564,6 +7803,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7580,6 +7820,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7596,6 +7837,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7612,6 +7854,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7628,6 +7871,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7650,6 +7894,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7666,6 +7911,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7682,6 +7928,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7698,6 +7945,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7714,6 +7962,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7730,6 +7979,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7746,6 +7996,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7762,6 +8013,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7778,6 +8030,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7794,6 +8047,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7810,6 +8064,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7826,6 +8081,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7842,6 +8098,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7858,6 +8115,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7874,6 +8132,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7890,6 +8149,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7906,6 +8166,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7922,6 +8183,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7938,6 +8200,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7954,6 +8217,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7970,6 +8234,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7986,6 +8251,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8002,6 +8268,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8018,6 +8285,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8034,6 +8302,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8050,6 +8319,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8066,6 +8336,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8082,6 +8353,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8098,6 +8370,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8114,6 +8387,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8130,6 +8404,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8146,6 +8421,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8162,6 +8438,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8178,6 +8455,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8194,6 +8472,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8210,6 +8489,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8226,6 +8506,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8242,6 +8523,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8258,6 +8540,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8274,6 +8557,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8290,6 +8574,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8306,6 +8591,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8322,6 +8608,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8338,6 +8625,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8354,6 +8642,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8370,6 +8659,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8386,6 +8676,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8402,6 +8693,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8418,6 +8710,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8434,6 +8727,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8450,6 +8744,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8466,6 +8761,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8482,6 +8778,7 @@ Wall, !- Surface Type int_wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8498,6 +8795,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8514,6 +8812,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8530,6 +8829,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8546,6 +8846,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8568,6 +8869,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8584,6 +8886,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8600,6 +8903,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8616,6 +8920,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8632,6 +8937,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8654,6 +8960,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8670,6 +8977,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8686,6 +8994,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8702,6 +9011,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8718,6 +9028,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8736,6 +9047,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8752,6 +9064,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8768,6 +9081,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8784,6 +9098,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8800,6 +9115,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8816,6 +9132,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8834,6 +9151,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8850,6 +9168,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8866,6 +9185,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8882,6 +9202,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8898,6 +9219,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8914,6 +9236,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8936,6 +9259,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8952,6 +9276,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8968,6 +9293,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8984,6 +9310,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9000,6 +9327,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9016,6 +9344,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9032,6 +9361,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9048,6 +9378,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9070,6 +9401,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9086,6 +9418,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9102,6 +9435,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9118,6 +9452,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9134,6 +9469,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9150,6 +9486,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9172,6 +9509,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9188,6 +9526,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9204,6 +9543,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9220,6 +9560,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9236,6 +9577,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9252,6 +9594,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9268,6 +9611,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9284,6 +9628,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9300,6 +9645,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9316,6 +9662,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9332,6 +9679,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9354,6 +9702,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9370,6 +9719,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9386,6 +9736,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9402,6 +9753,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9418,6 +9770,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9434,6 +9787,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9450,6 +9804,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9466,6 +9821,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9482,6 +9838,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9498,6 +9855,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9514,6 +9872,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9530,6 +9889,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9546,6 +9906,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9562,6 +9923,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9578,6 +9940,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9594,6 +9957,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9610,6 +9974,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9626,6 +9991,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9642,6 +10008,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9658,6 +10025,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9674,6 +10042,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9690,6 +10059,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9706,6 +10076,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9722,6 +10093,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9738,6 +10110,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9754,6 +10127,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9770,6 +10144,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9786,6 +10161,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9802,6 +10178,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9818,6 +10195,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9834,6 +10212,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9850,6 +10229,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9866,6 +10246,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9882,6 +10263,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9898,6 +10280,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9914,6 +10297,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9930,6 +10314,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9946,6 +10331,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9962,6 +10348,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9978,6 +10365,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9994,6 +10382,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10010,6 +10399,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10026,6 +10416,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10042,6 +10433,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10058,6 +10450,7 @@ Wall, !- Surface Type Air_Wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10074,6 +10467,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseStn_Lobby_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10090,6 +10484,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10106,6 +10501,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10122,6 +10518,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10142,6 +10539,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10158,6 +10556,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10174,6 +10573,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10190,6 +10590,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10206,6 +10607,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11084,331 +11486,386 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7478.6947; !- Surface Area {m2} + , !- Surface Area {m2} + 7478.6947; !- Extended Field InternalMass, ER_Exam1_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Trauma1_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Trauma1_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Exam3_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Trauma2_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Trauma2_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Triage_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, Office1_Mult4_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office1_Mult4_Flr_1, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, Lobby_Records_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Lobby_Records_Flr_1, !- Zone or ZoneList Name - 2949.6212; !- Surface Area {m2} + , !- Surface Area {m2} + 2949.6212; !- Extended Field InternalMass, Corridor_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_1, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field InternalMass, ER_NurseStn_Lobby_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name - 2471.2209; !- Surface Area {m2} + , !- Surface Area {m2} + 2471.2209; !- Extended Field InternalMass, OR1_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR1_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR2_Mult5_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name OR2_Mult5_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR3_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR3_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR4_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name OR4_Flr_2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field InternalMass, IC_PatRoom1_Mult5_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, IC_PatRoom2_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom2_Flr_2, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, IC_PatRoom3_Mult6_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, ICU_Flr_2_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name ICU_Flr_2, !- Zone or ZoneList Name - 1235.9289; !- Surface Area {m2} + , !- Surface Area {m2} + 1235.9289; !- Extended Field InternalMass, ICU_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name - 1337.5356; !- Surface Area {m2} + , !- Surface Area {m2} + 1337.5356; !- Extended Field InternalMass, Corridor_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_2, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field InternalMass, OR_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name - 2025.2863; !- Surface Area {m2} + , !- Surface Area {m2} + 2025.2863; !- Extended Field InternalMass, PatRoom1_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom2_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom3_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom4_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom5_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PhysTherapy_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PhysTherapy_Flr_3, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field InternalMass, PatRoom6_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PatRoom7_Mult10_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom8_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, NurseStn_Lobby_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field InternalMass, Lab_Flr_3_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name Lab_Flr_3, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field InternalMass, Corridor_SE_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Corridor_NW_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, PatRoom1_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom2_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom3_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom4_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom5_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, Radiology_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Radiology_Flr_4, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field InternalMass, PatRoom6_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PatRoom7_Mult10_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom8_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, NurseStn_Lobby_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field InternalMass, Lab_Flr_4_InternalMass_1,!- Name InteriorFurnishings, !- Construction Name Lab_Flr_4, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field InternalMass, Corridor_SE_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Corridor_NW_Flr_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Dining_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Dining_Flr_5, !- Zone or ZoneList Name - 1393.5456; !- Surface Area {m2} + , !- Surface Area {m2} + 1393.5456; !- Extended Field InternalMass, NurseStn_Lobby_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name - 2081.0281; !- Surface Area {m2} + , !- Surface Area {m2} + 2081.0281; !- Extended Field InternalMass, Kitchen_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen_Flr_5, !- Zone or ZoneList Name - 1858.0608; !- Surface Area {m2} + , !- Surface Area {m2} + 1858.0608; !- Extended Field InternalMass, Office1_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office1_Flr_5, !- Zone or ZoneList Name - 139.3911; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3911; !- Extended Field InternalMass, Office2_Mult5_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office2_Mult5_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field InternalMass, Office3_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office3_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field InternalMass, Office4_Mult6_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Office4_Mult6_Flr_5, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, Corridor_Flr_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_5, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/ASHRAE9012016_HotelLarge_Denver.idf b/testfiles/ASHRAE9012016_HotelLarge_Denver.idf index 2abca335ab6..3a287a661d0 100644 --- a/testfiles/ASHRAE9012016_HotelLarge_Denver.idf +++ b/testfiles/ASHRAE9012016_HotelLarge_Denver.idf @@ -5081,6 +5081,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5097,6 +5098,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5113,6 +5115,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5129,6 +5132,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5145,6 +5149,7 @@ Floor, !- Surface Type basement_floor, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5161,6 +5166,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5177,6 +5183,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5193,6 +5200,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5209,6 +5217,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5225,6 +5234,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5241,6 +5251,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5257,6 +5268,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5275,6 +5287,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5293,6 +5306,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5309,6 +5323,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5325,6 +5340,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5341,6 +5357,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5357,6 +5374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5373,6 +5391,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5389,6 +5408,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5405,6 +5425,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5421,6 +5442,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5437,6 +5459,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5453,6 +5476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5469,6 +5493,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5485,6 +5510,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5501,6 +5527,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5517,6 +5544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5533,6 +5561,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5549,6 +5578,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5565,6 +5595,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5581,6 +5612,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5597,6 +5629,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5613,6 +5646,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5629,6 +5663,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_4_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5645,6 +5680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5661,6 +5697,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5677,6 +5714,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5693,6 +5731,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5709,6 +5748,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5725,6 +5765,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5741,6 +5782,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5757,6 +5799,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5773,6 +5816,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5789,6 +5833,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5805,6 +5850,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5821,6 +5867,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5837,6 +5884,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5853,6 +5901,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5869,6 +5918,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5885,6 +5935,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5901,6 +5952,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5917,6 +5969,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5933,6 +5986,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5949,6 +6003,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5965,6 +6020,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5981,6 +6037,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5997,6 +6054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6013,6 +6071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6029,6 +6088,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6045,6 +6105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6061,6 +6122,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6077,6 +6139,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6093,6 +6156,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6109,6 +6173,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6127,6 +6192,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6145,6 +6211,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6167,6 +6234,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6183,6 +6251,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6199,6 +6268,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6215,6 +6285,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6231,6 +6302,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6247,6 +6319,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6263,6 +6336,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6279,6 +6353,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6295,6 +6370,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6311,6 +6387,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6327,6 +6404,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6343,6 +6421,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6359,6 +6438,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6375,6 +6455,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6391,6 +6472,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6407,6 +6489,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6423,6 +6506,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6439,6 +6523,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6455,6 +6540,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6471,6 +6557,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6487,6 +6574,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6503,6 +6591,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6519,6 +6608,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6535,6 +6625,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6551,6 +6642,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6567,6 +6659,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6583,6 +6676,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6599,6 +6693,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6615,6 +6710,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6631,6 +6727,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6647,6 +6744,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6663,6 +6761,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6679,6 +6778,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6695,6 +6795,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6711,6 +6812,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6727,6 +6829,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6743,6 +6846,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6759,6 +6863,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6775,6 +6880,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6791,6 +6897,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6807,6 +6914,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6823,6 +6931,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6841,6 +6950,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6857,6 +6967,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6875,6 +6986,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6891,6 +7003,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6907,6 +7020,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6923,6 +7037,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6939,6 +7054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6955,6 +7071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6971,6 +7088,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6987,6 +7105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7003,6 +7122,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7019,6 +7139,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7035,6 +7156,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7053,6 +7175,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7069,6 +7192,7 @@ Ceiling, !- Surface Type nonres_floor_ceiling, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7087,6 +7211,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7103,6 +7228,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7119,6 +7245,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7135,6 +7262,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7151,6 +7279,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7167,6 +7296,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7183,6 +7313,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7199,6 +7330,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7215,6 +7347,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7231,6 +7364,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7247,6 +7381,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7263,6 +7398,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7279,6 +7415,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7295,6 +7432,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7311,6 +7449,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7327,6 +7466,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7343,6 +7483,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7359,6 +7500,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7375,6 +7517,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7391,6 +7534,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7407,6 +7551,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7423,6 +7568,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7585,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7455,6 +7602,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7471,6 +7619,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7487,6 +7636,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7503,6 +7653,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7519,6 +7670,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7535,6 +7687,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7551,6 +7704,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7567,6 +7721,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7583,6 +7738,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7599,6 +7755,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7615,6 +7772,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7633,6 +7791,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7649,6 +7808,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7665,6 +7825,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7681,6 +7842,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7699,6 +7861,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7715,6 +7878,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7731,6 +7895,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7747,6 +7912,7 @@ Floor, !- Surface Type nonres_floor, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7771,6 +7937,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7787,6 +7954,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_4_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7803,6 +7971,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7819,6 +7988,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7835,6 +8005,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7851,6 +8022,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7867,6 +8039,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7883,6 +8056,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7899,6 +8073,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7915,6 +8090,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7935,6 +8111,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8496,133 +8673,155 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 3957.6604; !- Surface Area {m2} + , !- Surface Area {m2} + 3957.6604; !- Extended Field InternalMass, Retail_1_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Retail_1_Flr_1, !- Zone or ZoneList Name - 134.1427; !- Surface Area {m2} + , !- Surface Area {m2} + 134.1427; !- Extended Field InternalMass, Retail_2_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Retail_2_Flr_1, !- Zone or ZoneList Name - 155.3378; !- Surface Area {m2} + , !- Surface Area {m2} + 155.3378; !- Extended Field InternalMass, Mech_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Mech_Flr_1, !- Zone or ZoneList Name - 328.4864; !- Surface Area {m2} + , !- Surface Area {m2} + 328.4864; !- Extended Field InternalMass, Storage_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Storage_Flr_1, !- Zone or ZoneList Name - 189.5185; !- Surface Area {m2} + , !- Surface Area {m2} + 189.5185; !- Extended Field InternalMass, Laundry_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Laundry_Flr_1, !- Zone or ZoneList Name - 156.0789; !- Surface Area {m2} + , !- Surface Area {m2} + 156.0789; !- Extended Field InternalMass, Cafe_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Cafe_Flr_1, !- Zone or ZoneList Name - 377.7238; !- Surface Area {m2} + , !- Surface Area {m2} + 377.7238; !- Extended Field InternalMass, Lobby_Flr_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Lobby_Flr_1, !- Zone or ZoneList Name - 2616.3722; !- Surface Area {m2} + , !- Surface Area {m2} + 2616.3722; !- Extended Field InternalMass, Room_1_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_1_Flr_3, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_2_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_2_Flr_3, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Room_3_Mult19_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_3_Mult19_Flr_3, !- Zone or ZoneList Name - 49.0477; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0477; !- Extended Field InternalMass, Room_4_Mult19_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_4_Mult19_Flr_3, !- Zone or ZoneList Name - 49.0611; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0611; !- Extended Field InternalMass, Room_5_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_5_Flr_3, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_6_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_6_Flr_3, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Corridor_Flr_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_3, !- Zone or ZoneList Name - 778.8094; !- Surface Area {m2} + , !- Surface Area {m2} + 778.8094; !- Extended Field InternalMass, Room_1_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_1_Flr_6, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_2_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_2_Flr_6, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Room_3_Mult9_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Room_3_Mult9_Flr_6, !- Zone or ZoneList Name - 49.0611; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0611; !- Extended Field InternalMass, Banquet_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Banquet_Flr_6, !- Zone or ZoneList Name - 663.3149; !- Surface Area {m2} + , !- Surface Area {m2} + 663.3149; !- Extended Field InternalMass, Dining_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Dining_Flr_6, !- Zone or ZoneList Name - 663.3149; !- Surface Area {m2} + , !- Surface Area {m2} + 663.3149; !- Extended Field InternalMass, Kitchen_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen_Flr_6, !- Zone or ZoneList Name - 206.6089; !- Surface Area {m2} + , !- Surface Area {m2} + 206.6089; !- Extended Field InternalMass, Corridor_Flr_6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_6, !- Zone or ZoneList Name - 824.2494; !- Surface Area {m2} + , !- Surface Area {m2} + 824.2494; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/ASHRAE9012016_HotelSmall_Denver.idf b/testfiles/ASHRAE9012016_HotelSmall_Denver.idf index cde37563c07..cfc412398bc 100644 --- a/testfiles/ASHRAE9012016_HotelSmall_Denver.idf +++ b/testfiles/ASHRAE9012016_HotelSmall_Denver.idf @@ -4435,6 +4435,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4453,6 +4454,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr2_10001_0_10000, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4471,6 +4473,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4489,6 +4492,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4507,6 +4511,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4525,6 +4530,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_10002_0_10001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4543,6 +4549,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4561,6 +4568,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_10003_0_10002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4579,6 +4587,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr1_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4597,6 +4606,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4623,6 +4633,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr2_10004_0_10003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4645,6 +4656,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4667,6 +4679,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10005_0_10004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4685,6 +4698,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4703,6 +4717,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4721,6 +4736,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_10007_0_10005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4739,6 +4755,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4757,6 +4774,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_10008_0_10006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4775,6 +4793,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4793,6 +4812,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_10009_0_10007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4811,6 +4831,7 @@ Wall, !- Surface Type int_wall, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4829,6 +4850,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_10010_0_10008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4847,6 +4869,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4865,6 +4888,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10011_0_10009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4883,6 +4907,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4901,6 +4926,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10012_0_10010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4919,6 +4945,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_9_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4937,6 +4964,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4955,6 +4983,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_10013_0_10011, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4973,6 +5002,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4991,6 +5021,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_10014_0_10012, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5009,6 +5040,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5027,6 +5059,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_10015_0_10013, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5045,6 +5078,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5063,6 +5097,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10016_0_10014, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5081,6 +5116,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5099,6 +5135,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr1_10017_0_10015, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5117,6 +5154,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_15_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5135,6 +5173,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5153,6 +5192,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontLoungeFlr1_10018_0_10016, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5171,6 +5211,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5189,6 +5230,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10019_0_10017, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5207,6 +5249,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5225,6 +5268,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10020_0_10018, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5243,6 +5287,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5261,6 +5306,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5279,6 +5325,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_10021_0_10019, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5297,6 +5344,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5315,6 +5363,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_10022_0_10020, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5333,6 +5382,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_22_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5351,6 +5401,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_10023_0_10021, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5369,6 +5420,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_23_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5387,6 +5439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_10024_0_10022, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5405,6 +5458,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_24_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5423,6 +5477,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_10025_0_10023, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5441,6 +5496,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_25_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5459,6 +5515,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10026_0_10024, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5477,6 +5534,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_26_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5495,6 +5553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr1_10027_0_10025, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5513,6 +5572,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_27_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5531,6 +5591,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5549,6 +5610,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr2_10028_0_10026, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5567,6 +5629,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5585,6 +5648,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5603,6 +5667,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10030_0_10027, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5621,6 +5686,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5639,6 +5705,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5657,6 +5724,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5675,6 +5743,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom201_10031_0_10028, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5693,6 +5762,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontLoungeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5711,6 +5781,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom202_205_10032_0_10029, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5729,6 +5800,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontLoungeFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5747,6 +5819,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10033_0_10030, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5765,6 +5838,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontLoungeFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5783,6 +5857,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5801,6 +5876,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5819,6 +5895,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5837,6 +5914,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10035_0_10031, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5855,6 +5933,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RestroomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5873,6 +5952,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5891,6 +5971,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5909,6 +5990,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10039_0_10032, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5927,6 +6009,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MeetingRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5945,6 +6028,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10040_0_10033, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5963,6 +6047,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MeetingRoomFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5981,6 +6066,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_10041_0_10034, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5999,6 +6085,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6017,6 +6104,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6035,6 +6123,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6053,6 +6142,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10044_0_10035, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6071,6 +6161,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MechanicalRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6089,6 +6180,7 @@ Wall, !- Surface Type int_wall, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_10045_0_10036, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6107,6 +6199,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6125,6 +6218,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6143,6 +6237,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6161,6 +6256,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10048_0_10037, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6179,6 +6275,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom101_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6197,6 +6294,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_10049_0_10038, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6215,6 +6313,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6233,6 +6332,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6251,6 +6351,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6269,6 +6370,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10052_0_10039, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6287,6 +6389,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom102_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6305,6 +6408,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10053_0_10040, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6323,6 +6427,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6341,6 +6446,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6359,6 +6465,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6377,6 +6484,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom213_10056_0_10041, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6395,6 +6503,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom103_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6413,6 +6522,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6431,6 +6541,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6449,6 +6560,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom214_10060_0_10042, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6467,6 +6579,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom104_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6485,6 +6598,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6503,6 +6617,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_10062_0_10043, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6521,6 +6636,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6539,6 +6655,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6557,6 +6674,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10064_0_10044, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6575,6 +6693,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom105_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6593,6 +6712,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6611,6 +6731,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_10066_0_10045, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6629,6 +6750,7 @@ Wall, !- Surface Type int_wall, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6647,6 +6769,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6665,6 +6788,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10068_0_10046, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6683,6 +6807,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_EmployeeLoungeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6701,6 +6826,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6719,6 +6845,7 @@ Wall, !- Surface Type int_wall, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_10070_0_10047, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6737,6 +6864,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6755,6 +6883,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6773,6 +6902,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10072_0_10048, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6791,6 +6921,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_LaundryRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6809,6 +6940,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom219_10073_0_10049, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6827,6 +6959,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_LaundryRoomFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6845,6 +6978,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6863,6 +6997,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10075_0_10050, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6881,6 +7016,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6899,6 +7035,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6917,6 +7054,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr2_10077_0_10051, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6935,6 +7073,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr1_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6953,6 +7092,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6971,6 +7111,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6989,6 +7130,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom220_223_10081_0_10052, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7007,6 +7149,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ExerciseCenterFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7025,6 +7168,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7043,6 +7187,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_10083_0_10053, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7061,6 +7206,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7079,6 +7225,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7097,6 +7244,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom220_223_10085_0_10054, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7115,6 +7263,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontOfficeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7133,6 +7282,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom224_10086_0_10055, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7151,6 +7301,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontOfficeFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7169,6 +7320,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7187,6 +7339,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10088_0_10056, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7205,6 +7358,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7223,6 +7377,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7241,6 +7396,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr2_10090_0_10057, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7259,6 +7415,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7277,6 +7434,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10091_0_10058, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7295,6 +7453,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7313,6 +7472,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7331,6 +7491,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7349,6 +7510,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7367,6 +7529,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr2_10093_0_10059, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7385,6 +7548,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr1_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7403,6 +7567,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7421,6 +7586,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr3_10098_0_10060, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7439,6 +7605,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7457,6 +7624,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7475,6 +7643,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7493,6 +7662,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_10099_0_10061, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7511,6 +7681,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7529,6 +7700,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_10100_0_10062, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7547,6 +7719,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr2_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7565,6 +7738,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr3_10102_0_10063, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7587,6 +7761,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7609,6 +7784,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7627,6 +7803,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_10104_0_10064, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7645,6 +7822,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7663,6 +7841,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_10105_0_10065, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7681,6 +7860,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7699,6 +7879,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10106_0_10066, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7717,6 +7898,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7735,6 +7917,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_10107_0_10067, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7753,6 +7936,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7771,6 +7955,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_10108_0_10068, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7789,6 +7974,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7807,6 +7993,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7825,6 +8012,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_10109_0_10069, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7843,6 +8031,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7861,6 +8050,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_10110_0_10070, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7879,6 +8069,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7897,6 +8088,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_10111_0_10071, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7915,6 +8107,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7933,6 +8126,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_10112_0_10072, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7951,6 +8145,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7969,6 +8164,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr2_10113_0_10073, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7987,6 +8183,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8005,6 +8202,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8023,6 +8221,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom201_10114_0_10074, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8041,6 +8240,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8059,6 +8259,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_10115_0_10075, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8077,6 +8278,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8095,6 +8297,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_10116_0_10076, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8113,6 +8316,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8131,6 +8335,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_10117_0_10077, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8149,6 +8354,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8167,6 +8373,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10118_0_10078, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8185,6 +8392,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8203,6 +8411,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr2_10119_0_10079, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8221,6 +8430,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8239,6 +8449,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr3_10121_0_10080, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8257,6 +8468,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8275,6 +8487,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8293,6 +8506,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10123_0_10081, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8311,6 +8525,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8329,6 +8544,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8347,6 +8563,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom301_10125_0_10082, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8365,6 +8582,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom201_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8383,6 +8601,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_10126_0_10083, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8401,6 +8620,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom201_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8419,6 +8639,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8437,6 +8658,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8455,6 +8677,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom302_305_10129_0_10084, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8473,6 +8696,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom202_205_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8491,6 +8715,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_10130_0_10085, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8509,6 +8734,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8527,6 +8753,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8545,6 +8772,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom306_308_10136_0_10086, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8563,6 +8791,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom206_208_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8581,6 +8810,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_10137_0_10087, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8599,6 +8829,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8617,6 +8848,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8635,6 +8867,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom309_312_10144_0_10088, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8653,6 +8886,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom209_212_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8671,6 +8905,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10145_0_10089, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8689,6 +8924,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8707,6 +8943,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8725,6 +8962,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom313_10149_0_10090, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8743,6 +8981,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom213_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8761,6 +9000,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8779,6 +9019,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom314_10154_0_10091, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8797,6 +9038,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom214_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8815,6 +9057,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8833,6 +9076,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_10156_0_10092, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8851,6 +9095,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8869,6 +9114,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom315_318_10161_0_10093, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8887,6 +9133,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom215_218_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8905,6 +9152,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8923,6 +9171,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10163_0_10094, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8941,6 +9190,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8959,6 +9209,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr3_10166_0_10095, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8977,6 +9228,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr2_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8995,6 +9247,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10167_0_10096, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9013,6 +9266,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9031,6 +9285,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9049,6 +9304,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom319_10171_0_10097, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9067,6 +9323,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom219_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9085,6 +9342,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9103,6 +9361,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom320_323_10177_0_10098, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9121,6 +9380,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom220_223_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9139,6 +9399,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9157,6 +9418,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_10179_0_10099, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9175,6 +9437,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9193,6 +9456,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom324_10182_0_10100, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9211,6 +9475,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom224_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9229,6 +9494,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9247,6 +9513,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_10184_0_10101, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9265,6 +9532,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9283,6 +9551,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr3_10187_0_10102, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9301,6 +9570,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr2_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9319,6 +9589,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9337,6 +9608,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr2_10189_0_10103, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9355,6 +9627,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9373,6 +9646,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr3_10192_0_10104, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9391,6 +9665,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9409,6 +9684,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9427,6 +9703,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9445,6 +9722,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr4_10196_0_10105, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9463,6 +9741,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9481,6 +9760,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9499,6 +9779,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9517,6 +9798,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_10197_0_10106, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9535,6 +9817,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9553,6 +9836,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_10198_0_10107, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9571,6 +9855,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr3_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9589,6 +9874,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr4_10200_0_10108, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9611,6 +9897,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9633,6 +9920,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9651,6 +9939,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_10202_0_10109, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9669,6 +9958,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9687,6 +9977,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_10203_0_10110, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9705,6 +9996,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9723,6 +10015,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10204_0_10111, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9741,6 +10034,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9759,6 +10053,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_10205_0_10112, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9777,6 +10072,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9795,6 +10091,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_10206_0_10113, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9813,6 +10110,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9831,6 +10129,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9849,6 +10148,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_10207_0_10114, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9867,6 +10167,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9885,6 +10186,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_10208_0_10115, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9903,6 +10205,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9921,6 +10224,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_10209_0_10116, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9939,6 +10243,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9957,6 +10262,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_10210_0_10117, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9975,6 +10281,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9993,6 +10300,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr3_10211_0_10118, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10011,6 +10319,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10029,6 +10338,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10047,6 +10357,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom301_10212_0_10119, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10065,6 +10376,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10083,6 +10395,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_10213_0_10120, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10101,6 +10414,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10119,6 +10433,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_10214_0_10121, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10137,6 +10452,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10155,6 +10471,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_10215_0_10122, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10173,6 +10490,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10191,6 +10509,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10216_0_10123, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10209,6 +10528,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10227,6 +10547,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr3_10217_0_10124, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10245,6 +10566,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10263,6 +10585,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr4_10219_0_10125, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10604,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10299,6 +10623,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10317,6 +10642,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10221_0_10126, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10335,6 +10661,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10353,6 +10680,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10371,6 +10699,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom401_10223_0_10127, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10389,6 +10718,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom301_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10407,6 +10737,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_10224_0_10128, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10425,6 +10756,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom301_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10443,6 +10775,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10461,6 +10794,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10479,6 +10813,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom402_405_10227_0_10129, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10497,6 +10832,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom302_305_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10515,6 +10851,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_10228_0_10130, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10533,6 +10870,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10551,6 +10889,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10569,6 +10908,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom406_408_10232_0_10131, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10587,6 +10927,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom306_308_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10605,6 +10946,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_10233_0_10132, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10623,6 +10965,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10641,6 +10984,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10659,6 +11003,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom409_412_10237_0_10133, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10677,6 +11022,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom309_312_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10695,6 +11041,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10238_0_10134, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10713,6 +11060,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10731,6 +11079,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10749,6 +11098,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom413_10242_0_10135, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10767,6 +11117,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom313_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10785,6 +11136,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10803,6 +11155,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom414_10247_0_10136, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10821,6 +11174,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom314_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10839,6 +11193,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10857,6 +11212,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_10249_0_10137, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10875,6 +11231,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10893,6 +11250,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom415_418_10252_0_10138, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10911,6 +11269,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom315_318_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10929,6 +11288,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10947,6 +11307,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10254_0_10139, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10965,6 +11326,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10983,6 +11345,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr4_10257_0_10140, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11001,6 +11364,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr3_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11019,6 +11383,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10258_0_10141, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11037,6 +11402,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11055,6 +11421,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11073,6 +11440,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom419_10262_0_10142, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11091,6 +11459,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom319_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11109,6 +11478,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11127,6 +11497,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom420_423_10267_0_10143, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11145,6 +11516,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom320_323_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11163,6 +11535,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11181,6 +11554,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_10269_0_10144, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11199,6 +11573,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11217,6 +11592,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom424_10272_0_10145, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11235,6 +11611,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom324_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11253,6 +11630,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11271,6 +11649,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_10274_0_10146, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11289,6 +11668,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11307,6 +11687,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr4_10277_0_10147, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11325,6 +11706,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr3_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11343,6 +11725,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11361,6 +11744,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr3_10279_0_10148, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11379,6 +11763,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11397,6 +11782,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr4_10282_0_10149, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11415,6 +11801,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11433,6 +11820,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11451,6 +11839,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11469,6 +11858,7 @@ Roof, !- Surface Type res_roof, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11487,6 +11877,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11505,6 +11896,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11523,6 +11915,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_10286_0_10150, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11541,6 +11934,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11559,6 +11953,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_10287_0_10151, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11577,6 +11972,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr4_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11595,6 +11991,7 @@ Roof, !- Surface Type res_roof, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11617,6 +12014,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11635,6 +12033,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_10290_0_10152, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11653,6 +12052,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11671,6 +12071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_10291_0_10153, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11689,6 +12090,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11707,6 +12109,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10292_0_10154, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11725,6 +12128,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11743,6 +12147,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_10293_0_10155, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11761,6 +12166,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11779,6 +12185,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_10294_0_10156, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11797,6 +12204,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11815,6 +12223,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11833,6 +12242,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_10295_0_10157, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11851,6 +12261,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11869,6 +12280,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_10296_0_10158, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11887,6 +12299,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11905,6 +12318,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_10297_0_10159, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11923,6 +12337,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11941,6 +12356,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_10298_0_10160, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11959,6 +12375,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11977,6 +12394,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr4_10299_0_10161, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11995,6 +12413,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12013,6 +12432,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12031,6 +12451,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom401_10300_0_10162, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12049,6 +12470,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12067,6 +12489,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_10301_0_10163, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12085,6 +12508,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12103,6 +12527,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_10302_0_10164, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12121,6 +12546,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12139,6 +12565,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_10303_0_10165, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12157,6 +12584,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12175,6 +12603,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10304_0_10166, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12193,6 +12622,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12211,6 +12641,7 @@ Wall, !- Surface Type int_wall, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr4_10305_0_10167, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12229,6 +12660,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12247,6 +12679,7 @@ Roof, !- Surface Type res_roof, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12265,6 +12698,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12283,6 +12717,7 @@ Wall, !- Surface Type int_wall, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10308_0_10168, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12301,6 +12736,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12319,6 +12755,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12337,6 +12774,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12355,6 +12793,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_10310_0_10169, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12373,6 +12812,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom401_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12391,6 +12831,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12409,6 +12850,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12427,6 +12869,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12445,6 +12888,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_10313_0_10170, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12463,6 +12907,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12481,6 +12926,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12499,6 +12945,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12517,6 +12964,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_10317_0_10171, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12535,6 +12983,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12553,6 +13002,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12571,6 +13021,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12589,6 +13040,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10321_0_10172, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12607,6 +13059,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12625,6 +13078,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12643,6 +13097,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12661,6 +13116,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12679,6 +13135,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12697,6 +13154,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12715,6 +13173,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_10330_0_10173, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12733,6 +13192,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12751,6 +13211,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12769,6 +13230,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12787,6 +13249,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10334_0_10174, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12805,6 +13268,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12823,6 +13287,7 @@ Roof, !- Surface Type res_roof, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12841,6 +13306,7 @@ Wall, !- Surface Type int_wall, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10337_0_10175, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12859,6 +13325,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12877,6 +13344,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12895,6 +13363,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12913,6 +13382,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12931,6 +13401,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12949,6 +13420,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12967,6 +13439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_10346_0_10176, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12985,6 +13458,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13003,6 +13477,7 @@ Roof, !- Surface Type res_roof, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13021,6 +13496,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13039,6 +13515,7 @@ Wall, !- Surface Type int_wall, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_10350_0_10177, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13057,6 +13534,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13075,6 +13553,7 @@ Roof, !- Surface Type res_roof, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13093,6 +13572,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13111,6 +13591,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr4_10354_0_10178, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13129,6 +13610,7 @@ Wall, !- Surface Type int_wall, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13147,6 +13629,7 @@ Roof, !- Surface Type res_roof, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13165,6 +13648,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13183,6 +13667,7 @@ Wall, !- Surface Type res_ext_wall, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ASHRAE9012016_OfficeLarge_Denver.idf b/testfiles/ASHRAE9012016_OfficeLarge_Denver.idf index a2ccaf62b94..8aa383135e0 100644 --- a/testfiles/ASHRAE9012016_OfficeLarge_Denver.idf +++ b/testfiles/ASHRAE9012016_OfficeLarge_Denver.idf @@ -3116,6 +3116,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3132,6 +3133,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3148,6 +3150,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3164,6 +3167,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3180,6 +3184,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3196,6 +3201,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3212,6 +3218,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3228,6 +3235,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3244,6 +3252,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3260,6 +3269,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,6 +3286,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3303,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3308,6 +3320,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3337,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3354,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3356,6 +3371,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3372,6 +3388,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3388,6 +3405,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3404,6 +3422,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3420,6 +3439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3436,6 +3456,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3452,6 +3473,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3468,6 +3490,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3484,6 +3507,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3500,6 +3524,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3516,6 +3541,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3532,6 +3558,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3548,6 +3575,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3564,6 +3592,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3580,6 +3609,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3596,6 +3626,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3612,6 +3643,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3628,6 +3660,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3644,6 +3677,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3660,6 +3694,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3676,6 +3711,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3692,6 +3728,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3708,6 +3745,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3724,6 +3762,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3740,6 +3779,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3756,6 +3796,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3772,6 +3813,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3788,6 +3830,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3804,6 +3847,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3820,6 +3864,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3836,6 +3881,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3852,6 +3898,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3868,6 +3915,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3884,6 +3932,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3900,6 +3949,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3916,6 +3966,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3932,6 +3983,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3948,6 +4000,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3964,6 +4017,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3980,6 +4034,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3996,6 +4051,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4012,6 +4068,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4028,6 +4085,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4044,6 +4102,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4060,6 +4119,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4076,6 +4136,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4092,6 +4153,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4108,6 +4170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4124,6 +4187,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4140,6 +4204,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4156,6 +4221,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4172,6 +4238,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4188,6 +4255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4204,6 +4272,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4220,6 +4289,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4236,6 +4306,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4252,6 +4323,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4268,6 +4340,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4284,6 +4357,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4300,6 +4374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4316,6 +4391,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4332,6 +4408,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4348,6 +4425,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4364,6 +4442,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4380,6 +4459,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4396,6 +4476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4412,6 +4493,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4428,6 +4510,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4444,6 +4527,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4460,6 +4544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Int-Per3S-NE-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4476,6 +4561,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4492,6 +4578,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4508,6 +4595,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4524,6 +4612,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4540,6 +4629,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4556,6 +4646,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4572,6 +4663,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4588,6 +4680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4604,6 +4697,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4620,6 +4714,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4636,6 +4731,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4652,6 +4748,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4668,6 +4765,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4684,6 +4782,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4700,6 +4799,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4716,6 +4816,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4732,6 +4833,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4748,6 +4850,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4764,6 +4867,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4780,6 +4884,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4796,6 +4901,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4812,6 +4918,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4828,6 +4935,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4844,6 +4952,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4860,6 +4969,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4876,6 +4986,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4892,6 +5003,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4908,6 +5020,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition GroundFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4924,6 +5037,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_bot_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4940,6 +5054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4956,6 +5071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4972,6 +5088,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4988,6 +5105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5004,6 +5122,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5020,6 +5139,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5036,6 +5156,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5052,6 +5173,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name DataCenter_mid_ZN_6, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5068,6 +5190,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5084,6 +5207,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_mid_ZN_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5100,6 +5224,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5116,6 +5241,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5132,6 +5258,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5148,6 +5275,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5164,6 +5292,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5180,6 +5309,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5196,6 +5326,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5212,6 +5343,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_top_ZN_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5228,6 +5360,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5244,6 +5377,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5260,6 +5394,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5276,6 +5411,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5292,6 +5428,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5308,6 +5445,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5324,6 +5462,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5340,6 +5479,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5356,6 +5496,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5372,6 +5513,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5388,6 +5530,7 @@ Wall, !- Surface Type basement_wall, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition surfPropOthSdCoefBasementAvgWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5404,6 +5547,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_bot_ZN_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5420,6 +5564,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5436,6 +5581,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5452,6 +5598,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5468,6 +5615,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5484,6 +5632,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5500,6 +5649,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5516,6 +5666,7 @@ Wall, !- Surface Type int_wall, !- Construction Name DataCenter_basement_ZN_6,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6079,97 +6230,113 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field InternalMass, Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field InternalMass, Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6526; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6526; !- Extended Field InternalMass, Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field InternalMass, Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field InternalMass, Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field InternalMass, Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field InternalMass, Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field InternalMass, Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field InternalMass, Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field InternalMass, Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field InternalMass, Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8258; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8258; !- Extended Field InternalMass, Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9504; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9504; !- Extended Field InternalMass, Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8354; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8354; !- Extended Field InternalMass, Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9478; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9478; !- Extended Field !- =========== ALL OBJECTS IN CLASS: OTHERSIDECOEFFICIENTS =========== !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE =========== @@ -10606,99 +10773,99 @@ !- =========== ALL OBJECTS IN CLASS: CURVE:QUADLINEAR =========== Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -4.30266987344639, !- CoefficientC1 - 7.18536990534372, !- CoefficientC2 - -2.23946714486189, !- CoefficientC3 - 0.139995928440879, !- CoefficientC4 - 0.102660179888915, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -4.30266987344639, !- Coefficient1 Constant + 7.18536990534372, !- Coefficient2 w + -2.23946714486189, !- Coefficient3 x + 0.139995928440879, !- Coefficient4 y + 0.102660179888915, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -5.67775976415698, !- CoefficientC1 - 0.438988156976704, !- CoefficientC2 - 5.845277342193, !- CoefficientC3 - 0.141605667000125, !- CoefficientC4 - -0.168727936032429, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -5.67775976415698, !- Coefficient1 Constant + 0.438988156976704, !- Coefficient2 w + 5.845277342193, !- Coefficient3 x + 0.141605667000125, !- Coefficient4 y + -0.168727936032429, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - 0.237847462869254, !- CoefficientC1 - -3.35823796081626, !- CoefficientC2 - 3.80640467406376, !- CoefficientC3 - 0.179200417311554, !- CoefficientC4 - 0.12860719846082, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + 0.237847462869254, !- Coefficient1 Constant + -3.35823796081626, !- Coefficient2 w + 3.80640467406376, !- Coefficient3 x + 0.179200417311554, !- Coefficient4 y + 0.12860719846082, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -3.79175529243238, !- CoefficientC1 - 3.38799239505527, !- CoefficientC2 - 1.5022612076303, !- CoefficientC3 - -0.177653510577989, !- CoefficientC4 - -0.103079864171839, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -3.79175529243238, !- Coefficient1 Constant + 3.38799239505527, !- Coefficient2 w + 1.5022612076303, !- Coefficient3 x + -0.177653510577989, !- Coefficient4 y + -0.103079864171839, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: CURVE:QUINTLINEAR =========== Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - 6.0019444814887, !- CoefficientC1 - 22.6300677244073, !- CoefficientC2 - -26.7960783730934, !- CoefficientC3 - -1.72374720346819, !- CoefficientC4 - 0.490644802367817, !- CoefficientC5 - 0.0693119353468141, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + 6.0019444814887, !- Coefficient1 Constant + 22.6300677244073, !- Coefficient2 v + -26.7960783730934, !- Coefficient3 w + -1.72374720346819, !- Coefficient4 x + 0.490644802367817, !- Coefficient5 y + 0.0693119353468141, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: NODE LIST =========== @@ -17661,3 +17828,4 @@ SET_Perimeter_top_ZN_4_Light_EMS_Program_Prog_Manager, !- Name AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point SET_Perimeter_top_ZN_4_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_OfficeMedium_Denver.idf b/testfiles/ASHRAE9012016_OfficeMedium_Denver.idf index 210fc829a13..18f81f8fbd9 100644 --- a/testfiles/ASHRAE9012016_OfficeMedium_Denver.idf +++ b/testfiles/ASHRAE9012016_OfficeMedium_Denver.idf @@ -2834,6 +2834,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2850,6 +2851,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2866,6 +2868,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2882,6 +2885,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2898,6 +2902,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2914,6 +2919,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2930,6 +2936,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2946,6 +2953,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2962,6 +2970,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2978,6 +2987,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2994,6 +3004,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3010,6 +3021,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3026,6 +3038,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3042,6 +3055,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3058,6 +3072,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3074,6 +3089,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition TopFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3090,6 +3106,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3106,6 +3123,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3122,6 +3140,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3138,6 +3157,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3154,6 +3174,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3170,6 +3191,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3186,6 +3208,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3202,6 +3225,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3218,6 +3242,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3234,6 +3259,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FirstFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3250,6 +3276,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3266,6 +3293,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3282,6 +3310,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3298,6 +3327,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3314,6 +3344,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition MidFloor_Plenum, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3330,6 +3361,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3346,6 +3378,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3362,6 +3395,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3378,6 +3412,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3394,6 +3429,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3410,6 +3446,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3426,6 +3463,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3442,6 +3480,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3458,6 +3497,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3474,6 +3514,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3490,6 +3531,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3506,6 +3548,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_bot_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3522,6 +3565,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3538,6 +3582,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3554,6 +3599,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3570,6 +3616,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3586,6 +3633,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3602,6 +3650,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3618,6 +3667,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3634,6 +3684,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3650,6 +3701,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3666,6 +3718,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3682,6 +3735,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,6 +3752,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_mid_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3714,6 +3769,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3730,6 +3786,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3746,6 +3803,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3762,6 +3820,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3778,6 +3837,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3794,6 +3854,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3810,6 +3871,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3826,6 +3888,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3842,6 +3905,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3858,6 +3922,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3874,6 +3939,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3890,6 +3956,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Perimeter_top_ZN_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3906,6 +3973,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3922,6 +3990,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3938,6 +4007,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3954,6 +4024,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3970,6 +4041,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3986,6 +4058,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4002,6 +4075,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4018,6 +4092,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4034,6 +4109,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4050,6 +4126,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4066,6 +4143,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4082,6 +4160,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4466,67 +4545,78 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0770; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0770; !- Extended Field InternalMass, Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0770; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0770; !- Extended Field InternalMass, Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0770; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0770; !- Extended Field InternalMass, Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6750; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6750; !- Extended Field InternalMass, Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5073; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5073; !- Extended Field InternalMass, Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6723; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6723; !- Extended Field InternalMass, Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5056; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5056; !- Extended Field InternalMass, Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6750; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6750; !- Extended Field InternalMass, Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5073; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5073; !- Extended Field InternalMass, Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6723; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6723; !- Extended Field InternalMass, Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5056; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5056; !- Extended Field !============== insert these here ====================== @@ -4534,25 +4624,29 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6750; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6750; !- Extended Field InternalMass, Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5073; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5073; !- Extended Field InternalMass, Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6723; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6723; !- Extended Field InternalMass, Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5056; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5056; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE =========== @@ -12079,3 +12173,4 @@ SET_Perimeter_mid_ZN_4_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Perimeter_mid_ZN_4_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_OfficeSmall_Denver.idf b/testfiles/ASHRAE9012016_OfficeSmall_Denver.idf index 537cb0147ff..cc1d110532a 100644 --- a/testfiles/ASHRAE9012016_OfficeSmall_Denver.idf +++ b/testfiles/ASHRAE9012016_OfficeSmall_Denver.idf @@ -3204,6 +3204,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3220,6 +3221,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3236,6 +3238,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3252,6 +3255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3268,6 +3272,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3284,6 +3289,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3300,6 +3306,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3316,6 +3323,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3332,6 +3340,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3348,6 +3357,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3364,6 +3374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3380,6 +3391,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3396,6 +3408,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3412,6 +3425,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3428,6 +3442,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3444,6 +3459,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3460,6 +3476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3476,6 +3493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3492,6 +3510,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3508,6 +3527,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3524,6 +3544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3540,6 +3561,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3556,6 +3578,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3572,6 +3595,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3588,6 +3612,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3604,6 +3629,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3620,6 +3646,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3636,6 +3663,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3652,6 +3680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3668,6 +3697,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3684,6 +3714,7 @@ Floor, !- Surface Type ext_soffit_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3700,6 +3731,7 @@ Floor, !- Surface Type ext_soffit_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3716,6 +3748,7 @@ Floor, !- Surface Type ext_soffit_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3732,6 +3765,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3748,6 +3782,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3764,6 +3799,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3780,6 +3816,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3796,6 +3833,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3812,6 +3850,7 @@ Floor, !- Surface Type ext_soffit_floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3828,6 +3867,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3844,6 +3884,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3859,6 +3900,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3874,6 +3916,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4238,31 +4281,36 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -7820,3 +7868,4 @@ SET_Perimeter_ZN_4_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Perimeter_ZN_4_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_OutPatientHealthCare_Denver.idf b/testfiles/ASHRAE9012016_OutPatientHealthCare_Denver.idf index e15cea7c8a6..3fafc50202c 100644 --- a/testfiles/ASHRAE9012016_OutPatientHealthCare_Denver.idf +++ b/testfiles/ASHRAE9012016_OutPatientHealthCare_Denver.idf @@ -6119,6 +6119,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6135,6 +6136,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B3A518, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6151,6 +6153,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A08A28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6167,6 +6170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 114EC6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6183,6 +6187,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 66B6F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6199,6 +6204,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6215,6 +6221,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E78E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6231,6 +6238,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6247,6 +6255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A1087A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6263,6 +6272,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DEFACF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6279,6 +6289,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F67EC8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6295,6 +6306,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 19D150, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6311,6 +6323,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D9E95, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6327,6 +6340,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6343,6 +6357,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 39BFFB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6359,6 +6374,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6375,6 +6391,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A6D45E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6391,6 +6408,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3145CA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6407,6 +6425,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7BB928, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6423,6 +6442,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8FF821, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6439,6 +6459,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6455,6 +6476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EE0803, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6471,6 +6493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8BB36F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6487,6 +6510,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 75EAF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6503,6 +6527,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 855191, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6519,6 +6544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86244A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6535,6 +6561,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EB611D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6551,6 +6578,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1CC550, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6567,6 +6595,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2FE383, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6583,6 +6612,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6599,6 +6629,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 808817, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6615,6 +6646,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EF47B0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6631,6 +6663,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6B967C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6647,6 +6680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A809DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6663,6 +6697,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 121DFF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6679,6 +6714,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 774CCD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6695,6 +6731,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A5FA3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6711,6 +6748,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6727,6 +6765,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8043B2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6743,6 +6782,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ACADA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6759,6 +6799,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A2F014, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6775,6 +6816,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7949FA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6791,6 +6833,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9B49F5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6807,6 +6850,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D03DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6823,6 +6867,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3F961C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6839,6 +6884,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6855,6 +6901,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 541C9C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6871,6 +6918,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4ED109, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6887,6 +6935,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1EC3A0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6903,6 +6952,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6919,6 +6969,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8DB72, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6935,6 +6986,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6951,6 +7003,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E8328, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6967,6 +7020,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 964F72, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6983,6 +7037,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6999,6 +7054,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 65AB67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7015,6 +7071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EC28A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7031,6 +7088,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7047,6 +7105,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B736E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7063,6 +7122,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F23EB6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7079,6 +7139,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7095,6 +7156,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6FB351, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7111,6 +7173,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7127,6 +7190,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D8FAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7143,6 +7207,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1A8E2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7159,6 +7224,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7175,6 +7241,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 863C6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7191,6 +7258,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 55622A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7207,6 +7275,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 725D3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7223,6 +7292,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E1B4BB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7239,6 +7309,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE7511, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7255,6 +7326,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7271,6 +7343,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE206C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7287,6 +7360,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F951A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7303,6 +7377,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 20FB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7319,6 +7394,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1624C5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7335,6 +7411,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3E6044, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7351,6 +7428,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9A776E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7367,6 +7445,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2CF0AA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7383,6 +7462,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4AA9BC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7399,6 +7479,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 40E182, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7415,6 +7496,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7431,6 +7513,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3A6904, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7447,6 +7530,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 897BAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7463,6 +7547,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8D6453, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7479,6 +7564,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 41CE25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7495,6 +7581,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B533A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7511,6 +7598,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7533,6 +7621,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA9233, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7549,6 +7638,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 976E3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7565,6 +7655,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9926F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7581,6 +7672,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 88CB69, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7597,6 +7689,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9FF31D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7613,6 +7706,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CAC621, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7629,6 +7723,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1068C8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7645,6 +7740,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B45B50, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7661,6 +7757,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFD4BB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7677,6 +7774,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C48E94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7693,6 +7791,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3084E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7709,6 +7808,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5BC3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7725,6 +7825,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7741,6 +7842,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72A819, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7757,6 +7859,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 517DFC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7779,6 +7882,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 167608, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7795,6 +7899,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7811,6 +7916,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4507E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7827,6 +7933,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 234734, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7843,6 +7950,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E90253, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7859,6 +7967,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 867BBB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7875,6 +7984,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4911A5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7891,6 +8001,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5724CC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7907,6 +8018,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA00FE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7923,6 +8035,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7939,6 +8052,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4C4C25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7955,6 +8069,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 102EC4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7971,6 +8086,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7987,6 +8103,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F99476, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8003,6 +8120,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D699FF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8019,6 +8137,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8134C2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8035,6 +8154,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8051,6 +8171,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 772953, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8067,6 +8188,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 704EC3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8083,6 +8205,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8D03E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8099,6 +8222,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8115,6 +8239,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 761D33, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8131,6 +8256,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EAACE4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8147,6 +8273,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A9A1F6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8163,6 +8290,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EC3BEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8179,6 +8307,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1E3410, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8195,6 +8324,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9EADD8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8211,6 +8341,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8227,6 +8358,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 88AE01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8243,6 +8375,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5A7EAB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8259,6 +8392,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 592524, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8275,6 +8409,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FD0958, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8291,6 +8426,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7AE5B9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8307,6 +8443,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C0F51F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8323,6 +8460,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E3BB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8339,6 +8477,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1003C1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8355,6 +8494,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A9C27A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8371,6 +8511,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 18AFE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8387,6 +8528,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FFE9D0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8403,6 +8545,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2156D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8419,6 +8562,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 37898A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8435,6 +8579,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0C60A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8451,6 +8596,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE8843, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8467,6 +8613,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5F9E13, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8483,6 +8630,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8499,6 +8647,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A6147C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8515,6 +8664,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9A0DF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8531,6 +8681,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 962DB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8547,6 +8698,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 891195, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8563,6 +8715,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9E12D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8579,6 +8732,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 307901, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8595,6 +8749,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB87D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8611,6 +8766,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 15A02B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8627,6 +8783,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8643,6 +8800,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 89BBEB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8659,6 +8817,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8B4DC1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8675,6 +8834,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8691,6 +8851,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8707,6 +8868,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8723,6 +8885,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8739,6 +8902,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A78253, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8755,6 +8919,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 27B0D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8771,6 +8936,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46E87C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8787,6 +8953,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8803,6 +8970,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CEC6B4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8819,6 +8987,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 74AB49, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8835,6 +9004,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE027F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8851,6 +9021,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 90FDA9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8867,6 +9038,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8887,6 +9059,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E20721, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8903,6 +9076,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E608B9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8919,6 +9093,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2C53A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8935,6 +9110,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E66ECE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8951,6 +9127,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1A95D5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8971,6 +9148,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BA91C7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8987,6 +9165,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC17E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9003,6 +9182,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24139C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9019,6 +9199,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C9D24D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9035,6 +9216,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E24F1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9051,6 +9233,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9067,6 +9250,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EA718, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9083,6 +9267,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0B690, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9099,6 +9284,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4418C4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9115,6 +9301,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E43750, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9131,6 +9318,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 34019D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9147,6 +9335,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 73E892, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9163,6 +9352,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 91DE28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9179,6 +9369,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9195,6 +9386,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9211,6 +9403,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E21951, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9227,6 +9420,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 95486C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9243,6 +9437,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 596DE0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9259,6 +9454,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 256F02, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9275,6 +9471,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A30DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9291,6 +9488,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9307,6 +9505,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 21F419, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9323,6 +9522,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 59E0E4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9339,6 +9539,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 71783C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9355,6 +9556,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A452BE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9371,6 +9573,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 551E65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9387,6 +9590,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D9F81F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9403,6 +9607,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A7F46C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9419,6 +9624,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E3B855, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9435,6 +9641,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BD39AC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9451,6 +9658,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4FA380, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9467,6 +9675,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C6DCD1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9483,6 +9692,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9499,6 +9709,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 526C70, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9515,6 +9726,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5FD018, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9531,6 +9743,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23683B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9547,6 +9760,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BABBB4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9563,6 +9777,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 44686F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9579,6 +9794,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1AD133, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9595,6 +9811,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5CB03, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9611,6 +9828,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F740DF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9627,6 +9845,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4A07CD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9643,6 +9862,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72C4ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9659,6 +9879,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CCAA9D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9675,6 +9896,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BA0A29, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9691,6 +9913,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 243E09, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9707,6 +9930,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BAE3F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9723,6 +9947,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A3E3D6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9739,6 +9964,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9755,6 +9981,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D8C098, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9771,6 +9998,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 96662A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9787,6 +10015,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58B6B6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9803,6 +10032,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5B569, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9819,6 +10049,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3F71D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9835,6 +10066,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE5078, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9851,6 +10083,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9867,6 +10100,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BA8FF7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9883,6 +10117,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FCD8D2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9899,6 +10134,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3AE495, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9915,6 +10151,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 344D34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9931,6 +10168,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EA8FA7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9947,6 +10185,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C3884, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9963,6 +10202,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A59907, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9979,6 +10219,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4579A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9995,6 +10236,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BD5B50, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10011,6 +10253,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C94CC0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10027,6 +10270,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10043,6 +10287,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 75A3C4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10059,6 +10304,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 446771, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10075,6 +10321,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9E478E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10091,6 +10338,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FAE342, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10107,6 +10355,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9EB05A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10123,6 +10372,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10139,6 +10389,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5C927, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10155,6 +10406,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EAE60F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10171,6 +10423,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 33A280, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10187,6 +10440,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25AB11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10203,6 +10457,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2730E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10219,6 +10474,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B92155, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10235,6 +10491,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CD7BAD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10251,6 +10508,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87C477, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10267,6 +10525,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CE626A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10283,6 +10542,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10299,6 +10559,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10315,6 +10576,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E77E00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10331,6 +10593,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10347,6 +10610,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2BD1E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10363,6 +10627,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 196C5F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10379,6 +10644,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9DB411, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10395,6 +10661,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 64A2F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10411,6 +10678,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 874DF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10427,6 +10695,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10443,6 +10712,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 816F6D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10459,6 +10729,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10475,6 +10746,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24EAE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10491,6 +10763,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 765EA5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10507,6 +10780,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B44BE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10523,6 +10797,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 76F2F2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10539,6 +10814,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2D53AC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10555,6 +10831,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 352740, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10571,6 +10848,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4D50C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10587,6 +10865,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10603,6 +10882,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10FB67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10619,6 +10899,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 29BD5F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10635,6 +10916,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EBFE47, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10651,6 +10933,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FEC1E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10667,6 +10950,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1D9EED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10683,6 +10967,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 829DCE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10699,6 +10984,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D1E495, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10715,6 +11001,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A3F683, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10731,6 +11018,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 291561, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10747,6 +11035,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5620F1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10763,6 +11052,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10779,6 +11069,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 762F8C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10795,6 +11086,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE5062, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10811,6 +11103,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BEC196, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10827,6 +11120,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7434CD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10843,6 +11137,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA6EDA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10859,6 +11154,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8594D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10875,6 +11171,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10891,6 +11188,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B5816, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10907,6 +11205,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D023D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10923,6 +11222,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86A28D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10939,6 +11239,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA9EF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10955,6 +11256,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B693D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10971,6 +11273,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 464A53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10987,6 +11290,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9853A2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11003,6 +11307,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 852027, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11019,6 +11324,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 92E22C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11035,6 +11341,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE2C3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11051,6 +11358,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B255F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11067,6 +11375,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA1709, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11083,6 +11392,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7D08C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11099,6 +11409,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFCCAE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11115,6 +11426,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 630683, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11131,6 +11443,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3110A1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11147,6 +11460,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 362FF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11163,6 +11477,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 98E1BD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11179,6 +11494,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8E5734, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11195,6 +11511,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11211,6 +11528,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 231744, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11227,6 +11545,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6A14D8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11243,6 +11562,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 42E287, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11259,6 +11579,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6A1AB7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11275,6 +11596,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 414FE2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11291,6 +11613,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11307,6 +11630,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F24E0D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11323,6 +11647,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 21FC9D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11339,6 +11664,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11355,6 +11681,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D4B714, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11371,6 +11698,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 28DE5A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11387,6 +11715,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFDE4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11403,6 +11732,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25B45C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11419,6 +11749,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D9965C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11435,6 +11766,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FD4C82, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11451,6 +11783,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FDAEB8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11467,6 +11800,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F81393, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11483,6 +11817,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1BDF58, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11499,6 +11834,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 795751, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11515,6 +11851,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11531,6 +11868,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14C7EF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11547,6 +11885,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2FEACD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11563,6 +11902,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 22DAE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11579,6 +11919,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA45DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11595,6 +11936,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11611,6 +11953,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11627,6 +11970,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 30DB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11643,6 +11987,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 361D65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11659,6 +12004,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11675,6 +12021,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9F3F6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11691,6 +12038,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2FA45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11707,6 +12055,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 824665, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11723,6 +12072,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9B592, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11739,6 +12089,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E920E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11755,6 +12106,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9C9E1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11771,6 +12123,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11789,6 +12142,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83658D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11807,6 +12161,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2FAF44, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11823,6 +12178,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7E0561, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11839,6 +12195,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 68F53B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11855,6 +12212,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B67EC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11871,6 +12229,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 612A96, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11887,6 +12246,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7F8BA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11903,6 +12263,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 11E9BF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11919,6 +12280,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6B31A8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11935,6 +12297,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7FA5FF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11951,6 +12314,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14CDC6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11967,6 +12331,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11983,6 +12348,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11999,6 +12365,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 57B162, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12015,6 +12382,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BDC047, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12031,6 +12399,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 115AA8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12047,6 +12416,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3AE420, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12063,6 +12433,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8259AE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12079,6 +12450,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA21EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12095,6 +12467,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E3963E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12111,6 +12484,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A8C4C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12127,6 +12501,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12143,6 +12518,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12159,6 +12535,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 809229, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12175,6 +12552,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 330DF9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12191,6 +12569,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4017DC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12207,6 +12586,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 59CEFB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12223,6 +12603,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 17C5CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12239,6 +12620,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4C8372, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12255,6 +12637,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F87FCE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12271,6 +12654,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12287,6 +12671,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12303,6 +12688,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5A39B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12319,6 +12705,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 839A66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12335,6 +12722,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8F966C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12351,6 +12739,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C51FD6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12367,6 +12756,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CFB630, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12383,6 +12773,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12399,6 +12790,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D61127, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12415,6 +12807,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2C9CF4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12431,6 +12824,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A2AAC5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12447,6 +12841,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C822C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12463,6 +12858,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7E9E26, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12479,6 +12875,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12495,6 +12892,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B4DBD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12511,6 +12909,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA9655, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12527,6 +12926,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4A854B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12543,6 +12943,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EA4B61, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12559,6 +12960,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C81AED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12575,6 +12977,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EB34C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12591,6 +12994,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 49DA86, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12607,6 +13011,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 15A915, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12623,6 +13028,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4B590B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12639,6 +13045,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12655,6 +13062,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 70DAD1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12671,6 +13079,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA769A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12687,6 +13096,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 445A39, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12703,6 +13113,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 814856, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12719,6 +13130,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5CA4CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12735,6 +13147,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D1899C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12751,6 +13164,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12767,6 +13181,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6A2C62, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12783,6 +13198,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 26AF41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12799,6 +13215,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 825233, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12815,6 +13232,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D199F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12831,6 +13249,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B551AD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12847,6 +13266,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5CD67D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12863,6 +13283,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D10995, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12879,6 +13300,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EB4979, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12895,6 +13317,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 56C7DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12911,6 +13334,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12927,6 +13351,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6822BB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12943,6 +13368,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4FE92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12959,6 +13385,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EBA9B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12975,6 +13402,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12991,6 +13419,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13007,6 +13436,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 36E420, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13023,6 +13453,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6E46A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13039,6 +13470,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2C31F2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13055,6 +13487,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4968A2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13071,6 +13504,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13087,6 +13521,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 52CA89, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13103,6 +13538,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83A098, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13119,6 +13555,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13135,6 +13572,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 75353D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13151,6 +13589,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F43F35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13167,6 +13606,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4161C8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13183,6 +13623,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C92A6E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13199,6 +13640,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 37E2C7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13215,6 +13657,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 619EE6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13231,6 +13674,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 38F548, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13247,6 +13691,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 35028C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13263,6 +13708,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1B2EF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13279,6 +13725,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1747DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13295,6 +13742,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E321D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13311,6 +13759,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87BFF9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13327,6 +13776,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4B217A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13343,6 +13793,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CDC86, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13359,6 +13810,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2CE5F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13375,6 +13827,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10830D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13391,6 +13844,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 283EC6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13407,6 +13861,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 20B940, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13423,6 +13878,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2805F0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13439,6 +13895,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13455,6 +13912,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 94A56A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13471,6 +13929,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EE0E68, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13487,6 +13946,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3DB37, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13503,6 +13963,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 415590, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13519,6 +13980,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 66D163, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13535,6 +13997,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 758B3C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13551,6 +14014,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FD8CF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13567,6 +14031,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4398AD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13583,6 +14048,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D29B01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13599,6 +14065,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6FE66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13615,6 +14082,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13631,6 +14099,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87231D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13647,6 +14116,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13663,6 +14133,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13679,6 +14150,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13695,6 +14167,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C0202, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13711,6 +14184,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72BCFE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13727,6 +14201,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BBEE0B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13743,6 +14218,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9ABA5B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13759,6 +14235,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 319A6B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13775,6 +14252,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13791,6 +14269,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13807,6 +14286,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4C599, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13823,6 +14303,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7816FD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13839,6 +14320,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D3CF55, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13855,6 +14337,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 575A7B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13871,6 +14354,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13887,6 +14371,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 62475F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13903,6 +14388,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13919,6 +14405,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C4FA5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13935,6 +14422,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A4B378, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13951,6 +14439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 707E04, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13967,6 +14456,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13983,6 +14473,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 986A05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13999,6 +14490,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 966665, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14015,6 +14507,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4D6DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14031,6 +14524,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 32CC19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14047,6 +14541,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1C7FB1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14063,6 +14558,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C84AE1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14079,6 +14575,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14095,6 +14592,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9879B2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14111,6 +14609,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B370E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14127,6 +14626,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23CCB1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14143,6 +14643,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4F2F27, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14159,6 +14660,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C6F66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14175,6 +14677,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14191,6 +14694,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E82152, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14207,6 +14711,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A28F01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14223,6 +14728,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 39E49D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14239,6 +14745,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 909DB9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14255,6 +14762,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14271,6 +14779,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F30797, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14287,6 +14796,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E89C6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14303,6 +14813,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C25071, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14319,6 +14830,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14335,6 +14847,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4DA0F5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14351,6 +14864,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14367,6 +14881,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2DEB73, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14383,6 +14898,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6E3B28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14399,6 +14915,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DEAC23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14415,6 +14932,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3179A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14431,6 +14949,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14447,6 +14966,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14463,6 +14983,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CE4555, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14479,6 +15000,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D14D65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14495,6 +15017,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7C84B6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14511,6 +15034,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E648BC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14527,6 +15051,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC4EB4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14543,6 +15068,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3C9825, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14559,6 +15085,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CEDA0D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14575,6 +15102,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CDCA72, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14591,6 +15119,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58AD84, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14607,6 +15136,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 680AA1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14623,6 +15153,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 577A10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14639,6 +15170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC8EB7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14655,6 +15187,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 903092, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14671,6 +15204,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7620CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14687,6 +15221,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 36A02A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14703,6 +15238,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D79C57, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14719,6 +15255,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1EE332, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14735,6 +15272,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE64CC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14751,6 +15289,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9E6B6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14767,6 +15306,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A72F04, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14783,6 +15323,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14799,6 +15340,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4E5F5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14815,6 +15357,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C34217, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14831,6 +15374,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14847,6 +15391,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97616F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14863,6 +15408,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FBDD49, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14879,6 +15425,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC6EE7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14895,6 +15442,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 388CB3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14911,6 +15459,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5ECA6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14927,6 +15476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 42FAB2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14943,6 +15493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 53450D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14959,6 +15510,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14975,6 +15527,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 68EB71, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14991,6 +15544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EEECA3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15007,6 +15561,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 92E327, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15023,6 +15578,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FCE842, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15039,6 +15595,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A0117C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15055,6 +15612,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AF38CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15071,6 +15629,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E8F02D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15087,6 +15646,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 65D500, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15103,6 +15663,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B4713, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15119,6 +15680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CFAD9D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15135,6 +15697,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6713DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15151,6 +15714,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15167,6 +15731,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 479A9C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15183,6 +15748,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7F6B1B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15199,6 +15765,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A44272, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15215,6 +15782,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 156F92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15231,6 +15799,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 995832, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15247,6 +15816,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 672F1E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15263,6 +15833,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1B4EDC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15279,6 +15850,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4B54B4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15295,6 +15867,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 52F395, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15311,6 +15884,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7F8407, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15327,6 +15901,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8FB568, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15343,6 +15918,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BE1AE1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15359,6 +15935,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 436189, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15375,6 +15952,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6E717, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15391,6 +15969,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F69079, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15407,6 +15986,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DA6040, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15423,6 +16003,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15439,6 +16020,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D7AC92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15455,6 +16037,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 290DF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15471,6 +16054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 571934, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15487,6 +16071,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15503,6 +16088,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1DC177, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15519,6 +16105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE6295, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15535,6 +16122,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F28371, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15551,6 +16139,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EFCC3C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15567,6 +16156,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED650B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15583,6 +16173,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7BE2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15599,6 +16190,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2884D1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15615,6 +16207,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15631,6 +16224,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3947B8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15647,6 +16241,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6F6C6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15663,6 +16258,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8F1C77, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15679,6 +16275,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB17DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15695,6 +16292,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 16BE00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15711,6 +16309,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C732D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15727,6 +16326,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14F382, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15743,6 +16343,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A72B2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15759,6 +16360,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15775,6 +16377,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 55191F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15791,6 +16394,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3FBBC8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15807,6 +16411,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D78A26, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15823,6 +16428,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 678B62, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15839,6 +16445,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9A5B84, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15855,6 +16462,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B9EEC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15871,6 +16479,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C8F2F1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15887,6 +16496,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 60F383, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15903,6 +16513,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B46F2C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15919,6 +16530,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D10EC7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15935,6 +16547,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 63B825, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15951,6 +16564,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 21C5E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15967,6 +16581,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E6DF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15983,6 +16598,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15999,6 +16615,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D37566, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16015,6 +16632,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BADB96, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16031,6 +16649,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A695C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16047,6 +16666,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8FE324, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16063,6 +16683,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE8664, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16079,6 +16700,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16095,6 +16717,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5C7E1E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16111,6 +16734,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5556EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16127,6 +16751,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 32BAA7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16143,6 +16768,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5C1C9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16159,6 +16785,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 621A74, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16175,6 +16802,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB3834, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16191,6 +16819,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA7BE2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16207,6 +16836,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16223,6 +16853,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 640E64, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16239,6 +16870,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9CE650, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16255,6 +16887,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6ED237, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16271,6 +16904,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 39AFEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16287,6 +16921,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BD4B70, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16303,6 +16938,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C75191, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16319,6 +16955,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4284B6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16335,6 +16972,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE5EBC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16351,6 +16989,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4EE021, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16367,6 +17006,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EE34A3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16383,6 +17023,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 948D7B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16399,6 +17040,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F23BF4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16415,6 +17057,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16431,6 +17074,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4A49C1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16447,6 +17091,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA2E8F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16463,6 +17108,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6ECCF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16479,6 +17125,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EC2478, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16495,6 +17142,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DDCF3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16511,6 +17159,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 26E66C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16527,6 +17176,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C271D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16543,6 +17193,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 577E2E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16559,6 +17210,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16575,6 +17227,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25F524, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16591,6 +17244,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2A1A9E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16607,6 +17261,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8F5FFC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16623,6 +17278,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B9DDBA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16639,6 +17295,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 390BCF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16655,6 +17312,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3D4DE8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16671,6 +17329,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3C8351, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16687,6 +17346,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3137C4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16703,6 +17363,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CBB2D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16719,6 +17380,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16735,6 +17397,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 52FA3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16751,6 +17414,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B5099E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16767,6 +17431,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FF8B08, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16783,6 +17448,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 47CE83, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16799,6 +17465,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A168ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16815,6 +17482,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58A74A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16831,6 +17499,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A2F34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16847,6 +17516,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 18AD08, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16863,6 +17533,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6B171C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16879,6 +17550,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EE606, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16895,6 +17567,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 538FE6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16911,6 +17584,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D7DC8D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16927,6 +17601,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 247258, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16943,6 +17618,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16959,6 +17635,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B1677, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16975,6 +17652,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B04E85, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16991,6 +17669,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0D6E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17007,6 +17686,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 462370, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17023,6 +17703,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FDCEC5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17039,6 +17720,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F94215, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17055,6 +17737,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A8E3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17071,6 +17754,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A49FCC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17087,6 +17771,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 685FFA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17103,6 +17788,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17119,6 +17805,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6A2DCE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17135,6 +17822,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 70C0BF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17151,6 +17839,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 673317, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17167,6 +17856,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83172E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17183,6 +17873,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C605B5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17199,6 +17890,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF9D5D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17215,6 +17907,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17231,6 +17924,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B840A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17247,6 +17941,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17263,6 +17958,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CE123, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17279,6 +17975,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C4550, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17295,6 +17992,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 34B3F0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17311,6 +18009,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 96623F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17327,6 +18026,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 93F6DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17343,6 +18043,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 296861, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17359,6 +18060,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1701A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17375,6 +18077,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 988ACA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17391,6 +18094,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CDA7F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17407,6 +18111,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46F148, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17423,6 +18128,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 16E41D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17439,6 +18145,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 52D809, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17455,6 +18162,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24E235, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17471,6 +18179,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3B5B94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17487,6 +18196,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1891E7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17503,6 +18213,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CF6C6E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17519,6 +18230,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1E6611, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17535,6 +18247,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2C12A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17551,6 +18264,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B94E9A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17567,6 +18281,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 211EA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17583,6 +18298,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A1BBBE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17599,6 +18315,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C27BD7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17615,6 +18332,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86C171, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17631,6 +18349,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 406D70, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17647,6 +18366,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFA16C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17663,6 +18383,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AC2E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17679,6 +18400,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97B688, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17695,6 +18417,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17711,6 +18434,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8E83C6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17727,6 +18451,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1875B3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17743,6 +18468,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FFE052, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17759,6 +18485,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8480E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17775,6 +18502,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 611A3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17791,6 +18519,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AAF377, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17807,6 +18536,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F17575, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17823,6 +18553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1EB5B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17839,6 +18570,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B184C1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17855,6 +18587,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EE166, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17871,6 +18604,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7008C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17887,6 +18621,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 726F67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17903,6 +18638,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5F697A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17919,6 +18655,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7DB101, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17935,6 +18672,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4F0CD7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17951,6 +18689,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AC956A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17967,6 +18706,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8E1DCD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17983,6 +18723,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED1D7F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17999,6 +18740,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 830326, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18015,6 +18757,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 772842, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18031,6 +18774,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A524F1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18047,6 +18791,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24DA9F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18063,6 +18808,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2740BD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18079,6 +18825,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E74E6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18095,6 +18842,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 339B46, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18111,6 +18859,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 690A91, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18127,6 +18876,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EAD1EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18143,6 +18893,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 17258E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18159,6 +18910,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18175,6 +18927,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9D1FA7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18193,6 +18946,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18209,6 +18963,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 99468F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18225,6 +18980,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA9485, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18241,6 +18997,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B04C98, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18257,6 +19014,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 700E69, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18273,6 +19031,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4783F2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18289,6 +19048,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 78FEE8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18305,6 +19065,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AB4E10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18321,6 +19082,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4EDE0A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18337,6 +19099,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6F1456, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18353,6 +19116,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B76374, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18369,6 +19133,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18385,6 +19150,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF91E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18401,6 +19167,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ADD799, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18417,6 +19184,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 815D63, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18433,6 +19201,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFA4B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18449,6 +19218,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC25F3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18465,6 +19235,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A5790, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18481,6 +19252,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97BB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18497,6 +19269,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 513564, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18513,6 +19286,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E63CF4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18529,6 +19303,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C0A312, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18545,6 +19320,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA1F5C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18561,6 +19337,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 442699, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18577,6 +19354,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AF27F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18593,6 +19371,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7274F6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18609,6 +19388,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 340FB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18625,6 +19405,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E74038, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18641,6 +19422,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9FBDA3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18657,6 +19439,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E63515, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18673,6 +19456,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10E44F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18689,6 +19473,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 363652, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18705,6 +19490,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 236CCE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18721,6 +19507,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9EBF3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18737,6 +19524,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E1FB7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18753,6 +19541,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 317B1B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18769,6 +19558,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 496A6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18785,6 +19575,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 68AAF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18801,6 +19592,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87BFF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18817,6 +19609,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 427B0D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18833,6 +19626,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7BF7F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18849,6 +19643,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CDCFEE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18865,6 +19660,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 450AA9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18881,6 +19677,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58F893, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18897,6 +19694,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4469CD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18913,6 +19711,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9036B9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18929,6 +19728,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 137CDB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18945,6 +19745,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0AF69, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18961,6 +19762,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5AF76, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18977,6 +19779,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 762874, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18993,6 +19796,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8E9267, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19009,6 +19813,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1737B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19025,6 +19830,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF5076, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19041,6 +19847,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AFFD01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19057,6 +19864,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 66FE82, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19073,6 +19881,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1D6CD8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19089,6 +19898,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2D0A7F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19105,6 +19915,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 637F6F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19121,6 +19932,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 29E445, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19137,6 +19949,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3C43B2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19153,6 +19966,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE014E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19169,6 +19983,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 343C52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19185,6 +20000,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DDBA1E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19201,6 +20017,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A56694, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19217,6 +20034,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C08963, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19233,6 +20051,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2DB420, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19249,6 +20068,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D88779, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19265,6 +20085,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6D879, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19281,6 +20102,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5136E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19297,6 +20119,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3B9E2E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19313,6 +20136,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B29215, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19329,6 +20153,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F29458, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19345,6 +20170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 67A7F3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19361,6 +20187,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D0731B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19377,6 +20204,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 370DB2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19393,6 +20221,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 69AE66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19409,6 +20238,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1F15F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19425,6 +20255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7055D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19441,6 +20272,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 45A523, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19457,6 +20289,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 491317, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19473,6 +20306,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED8563, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19489,6 +20323,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A03ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19505,6 +20340,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 368A44, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19521,6 +20357,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6DDE6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19537,6 +20374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8A4FA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19553,6 +20391,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83B6E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19569,6 +20408,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19585,6 +20425,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AF86E1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19601,6 +20442,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 827528, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19617,6 +20459,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19633,6 +20476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 35051E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19649,6 +20493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9969B3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19665,6 +20510,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BEDECA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19681,6 +20527,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D6F20A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19699,6 +20546,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 738F37, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19715,6 +20563,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4AD319, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19731,6 +20580,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F41621, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19747,6 +20597,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19763,6 +20614,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 388F10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19779,6 +20631,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFB8E1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19801,6 +20654,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 290CAB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19817,6 +20671,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5CB500, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19837,6 +20692,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B7E9B3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19853,6 +20709,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9114B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19869,6 +20726,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 803791, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19885,6 +20743,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 79376C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19901,6 +20760,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 28F0DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19917,6 +20777,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F22E15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19933,6 +20794,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5DACB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19949,6 +20811,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 535D54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19965,6 +20828,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A02892, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19983,6 +20847,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AB568E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19999,6 +20864,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23C13E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20015,6 +20881,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14A82B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20031,6 +20898,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20047,6 +20915,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ECDEDB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20063,6 +20932,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 50DB3D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20079,6 +20949,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 969F22, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20095,6 +20966,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 34B8D8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20111,6 +20983,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C568B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20127,6 +21000,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D647E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20143,6 +21017,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D60B94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20159,6 +21034,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CABD0E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20175,6 +21051,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B754EC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20191,6 +21068,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D6D2A5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20207,6 +21085,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E5019, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20223,6 +21102,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F62393, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20239,6 +21119,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2CB843, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20255,6 +21136,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D44BF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20271,6 +21153,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BD75DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20287,6 +21170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 247FD8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20303,6 +21187,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F976A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20319,6 +21204,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7EC3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20335,6 +21221,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 942718, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20351,6 +21238,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B51929, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20367,6 +21255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E88E01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20383,6 +21272,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5DBD9D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20399,6 +21289,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 709E99, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20415,6 +21306,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9BB388, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20431,6 +21323,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AB0BF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20447,6 +21340,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BDE9D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20463,6 +21357,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0C0A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20479,6 +21374,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F07866, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20495,6 +21391,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20511,6 +21408,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B5E37D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20527,6 +21425,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F665B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20543,6 +21442,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE769E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20559,6 +21459,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B0FF3A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20575,6 +21476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8AA0B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20591,6 +21493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CADDAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20607,6 +21510,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DB7F62, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20623,6 +21527,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 661D88, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20639,6 +21544,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 88D2F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20655,6 +21561,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D1AFC9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20671,6 +21578,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D21333, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20687,6 +21595,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A7115C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20703,6 +21612,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E2AB17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20719,6 +21629,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BB097B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20735,6 +21646,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5C05FF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20751,6 +21663,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AC2BE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20767,6 +21680,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 484FB1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20783,6 +21697,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25A972, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20799,6 +21714,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 628387, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20815,6 +21731,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 47890C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20831,6 +21748,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CD21EC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20847,6 +21765,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AAD404, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20863,6 +21782,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EF4AD1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20879,6 +21799,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20895,6 +21816,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 301CE0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20911,6 +21833,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F77E4B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20929,6 +21852,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF47AC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20945,6 +21869,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9DFA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20961,6 +21886,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D0C6E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20977,6 +21903,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20995,6 +21922,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8646EF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21011,6 +21939,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B972D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21027,6 +21956,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4A89B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21043,6 +21973,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8316C5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21059,6 +21990,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21075,6 +22007,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F02E9C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21091,6 +22024,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 55BD05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21107,6 +22041,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2515C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21123,6 +22058,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D6005B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21139,6 +22075,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D75504, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21155,6 +22092,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21171,6 +22109,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EA4A9E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21187,6 +22126,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6E6D8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21203,6 +22143,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 460DA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21219,6 +22160,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21235,6 +22177,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21251,6 +22194,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21267,6 +22211,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1AD55, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21283,6 +22228,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 245972, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21299,6 +22245,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 812B32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21315,6 +22262,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AB92B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21331,6 +22279,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1F37D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21347,6 +22296,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21363,6 +22313,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A5FC87, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21379,6 +22330,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E1563, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21395,6 +22347,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC8990, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21411,6 +22364,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21427,6 +22381,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 44775D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21443,6 +22398,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21459,6 +22415,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EEFDE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21475,6 +22432,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 567037, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21491,6 +22449,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 917AB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21507,6 +22466,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 430C7E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21523,6 +22483,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AC05CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21539,6 +22500,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0FD95, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21555,6 +22517,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C86932, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21571,6 +22534,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4180E7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21587,6 +22551,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6B3E65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21603,6 +22568,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CBFB94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21619,6 +22585,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21635,6 +22602,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B1856A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21651,6 +22619,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21667,6 +22636,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7C7BE2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21683,6 +22653,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 31B3DF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21699,6 +22670,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 60F634, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21715,6 +22687,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 98A52C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21731,6 +22704,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3613B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21747,6 +22721,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21763,6 +22738,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21779,6 +22755,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFEF28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21795,6 +22772,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21811,6 +22789,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4C6DBF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21827,6 +22806,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D68874, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21843,6 +22823,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 824F52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21859,6 +22840,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5C690E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21875,6 +22857,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CF2803, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21891,6 +22874,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 869ED5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21907,6 +22891,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D67C59, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21923,6 +22908,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EC372, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21939,6 +22925,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0D8EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21955,6 +22942,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D7E6B2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21971,6 +22959,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE5F03, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21987,6 +22976,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 212961, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22003,6 +22993,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22019,6 +23010,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22035,6 +23027,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7C0F83, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22051,6 +23044,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6D960C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22067,6 +23061,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 82303C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22083,6 +23078,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B9D6E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22099,6 +23095,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DA760E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22115,6 +23112,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 695D6E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22131,6 +23129,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B4F89F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22147,6 +23146,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C45BF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22163,6 +23163,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D2769, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22179,6 +23180,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 287E3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22195,6 +23197,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 957242, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22211,6 +23214,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22227,6 +23231,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA26DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22243,6 +23248,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22259,6 +23265,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 855B07, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22275,6 +23282,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4BF787, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22291,6 +23299,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E13FC4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22307,6 +23316,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D13E00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22323,6 +23333,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BF7411, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22339,6 +23350,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 111907, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22355,6 +23367,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C9F74B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22371,6 +23384,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5FDFAE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22387,6 +23401,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 79D0A5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22403,6 +23418,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CCA8D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22419,6 +23435,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FC3B6D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22435,6 +23452,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22451,6 +23469,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1D53D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22467,6 +23486,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B75832, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22483,6 +23503,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9BA592, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22499,6 +23520,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22515,6 +23537,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB63A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22531,6 +23554,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D1A180, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22547,6 +23571,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22563,6 +23588,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C050FD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22579,6 +23605,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22595,6 +23622,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22611,6 +23639,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7A265, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22627,6 +23656,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 240A7C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22643,6 +23673,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7149EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22659,6 +23690,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C588CC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22675,6 +23707,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D74115, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22691,6 +23724,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C0697F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22707,6 +23741,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED1C1D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22723,6 +23758,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6C1891, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22739,6 +23775,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 958E3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22755,6 +23792,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C78153, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22771,6 +23809,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5065F0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22787,6 +23826,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22803,6 +23843,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BCAAD1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22819,6 +23860,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2451B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22835,6 +23877,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3FB92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22851,6 +23894,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EFFB3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22867,6 +23911,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D4A2A4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22883,6 +23928,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E1B973, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22899,6 +23945,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B352F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22915,6 +23962,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 30A09C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22931,6 +23979,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B52A5D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22947,6 +23996,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CDD69A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22963,6 +24013,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D4C22E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22979,6 +24030,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 71A3C4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22995,6 +24047,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7E82F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23011,6 +24064,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23027,6 +24081,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2BC70D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23043,6 +24098,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 137A14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23059,6 +24115,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A03B2E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23075,6 +24132,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 506DC0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23091,6 +24149,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F631E4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23107,6 +24166,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E49C43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23123,6 +24183,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23139,6 +24200,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6310E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23155,6 +24217,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46292D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23171,6 +24234,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 180143, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23187,6 +24251,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F17DF7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23203,6 +24268,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C7B7AA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23219,6 +24285,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AEA170, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23235,6 +24302,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D197DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23251,6 +24319,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23267,6 +24336,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7DCD8A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23283,6 +24353,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3AEAAB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23299,6 +24370,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23315,6 +24387,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5720F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23331,6 +24404,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E80026, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23347,6 +24421,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 27D999, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23363,6 +24438,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2336C8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23379,6 +24455,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7FDC1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23395,6 +24472,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2272E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23411,6 +24489,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2C7827, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23427,6 +24506,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A4BE81, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23443,6 +24523,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23459,6 +24540,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4497EF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23475,6 +24557,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23491,6 +24574,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 192E17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23507,6 +24591,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 840387, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23523,6 +24608,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E26130, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23539,6 +24625,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 906F5E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23555,6 +24642,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4EB51A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23571,6 +24659,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9AEFF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23587,6 +24676,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4DAEA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23603,6 +24693,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1DCC9F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23619,6 +24710,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 624E8A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23635,6 +24727,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23651,6 +24744,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C39FCC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23669,6 +24763,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23685,6 +24780,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E2AFEB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23701,6 +24797,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 573330, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23717,6 +24814,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23733,6 +24831,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23751,6 +24850,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8F69A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23767,6 +24867,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A3F36, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23783,6 +24884,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9C76F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23799,6 +24901,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2F3F2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23815,6 +24918,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 93EF1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23831,6 +24935,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 133349, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23847,6 +24952,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5E7FE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23863,6 +24969,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23879,6 +24986,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 89A685, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23895,6 +25003,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 44D36C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23911,6 +25020,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9BB582, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23927,6 +25037,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23943,6 +25054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6C68C2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23959,6 +25071,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23975,6 +25088,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3F6EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23991,6 +25105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A11DA8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24007,6 +25122,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 703D3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24023,6 +25139,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8BCB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24039,6 +25156,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name NE Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24055,6 +25173,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1C64E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24071,6 +25190,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24087,6 +25207,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24103,6 +25224,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B2F07D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24119,6 +25241,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 204CB9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24135,6 +25258,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFA29B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24151,6 +25275,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC2C22, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24167,6 +25292,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24183,6 +25309,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8FC82, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24199,6 +25326,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6F0E5D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24215,6 +25343,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24231,6 +25360,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2E9BA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24247,6 +25377,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name NW Elevator, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24263,6 +25394,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24279,6 +25411,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24295,6 +25428,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 43A2A2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24311,6 +25445,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24327,6 +25462,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7F6FC2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24343,6 +25479,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0CB0D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24359,6 +25496,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 49DA28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24375,6 +25513,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8D1659, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24391,6 +25530,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D5E94D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24407,6 +25547,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name NW Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24423,6 +25564,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24439,6 +25581,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24455,6 +25598,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24471,6 +25615,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 822161, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24487,6 +25632,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24503,6 +25649,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 92A2CB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24519,6 +25666,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EAFB3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24535,6 +25683,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E55935, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24551,6 +25700,7 @@ Wall, !- Surface Type int_wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7DCAF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24567,6 +25717,7 @@ Floor, !- Surface Type ext_slab_8in_with_carpet,!- Construction Name SW Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24583,6 +25734,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 368E02, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24599,6 +25751,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24615,6 +25768,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24631,6 +25785,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BAD27A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24647,6 +25802,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D5C4E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24663,6 +25819,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FCDEAC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24679,6 +25836,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3DE7A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24695,6 +25853,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1B522, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24711,6 +25870,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26485,709 +27645,827 @@ Floor 1 Anesthesia_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Anesthesia, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 1 Bio Haz_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Bio Haz, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 Cafe_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Cafe, !- Zone or ZoneList Name - 78.0386; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0386; !- Extended Field InternalMass, Floor 1 Clean_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Clean Work_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean Work, !- Zone or ZoneList Name - 30.6580; !- Surface Area {m2} + , !- Surface Area {m2} + 30.6580; !- Extended Field InternalMass, Floor 1 Dictation_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dictation, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Dressing Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dressing Room, !- Zone or ZoneList Name - 8.3613; !- Surface Area {m2} + , !- Surface Area {m2} + 8.3613; !- Extended Field InternalMass, Floor 1 Electrical Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Electrical Room, !- Zone or ZoneList Name - 18.2090; !- Surface Area {m2} + , !- Surface Area {m2} + 18.2090; !- Extended Field InternalMass, Floor 1 Elevator Pump Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Elevator Pump Room, !- Zone or ZoneList Name - 16.9084; !- Surface Area {m2} + , !- Surface Area {m2} + 16.9084; !- Extended Field InternalMass, Floor 1 Humid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Humid, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 IT Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 IT Hall, !- Zone or ZoneList Name - 26.0129; !- Surface Area {m2} + , !- Surface Area {m2} + 26.0129; !- Extended Field InternalMass, Floor 1 IT Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 IT Room, !- Zone or ZoneList Name - 20.8103; !- Surface Area {m2} + , !- Surface Area {m2} + 20.8103; !- Extended Field InternalMass, Floor 1 Lobby_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby, !- Zone or ZoneList Name - 115.5714; !- Surface Area {m2} + , !- Surface Area {m2} + 115.5714; !- Extended Field InternalMass, Floor 1 Lobby Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby Hall, !- Zone or ZoneList Name - 44.5935; !- Surface Area {m2} + , !- Surface Area {m2} + 44.5935; !- Extended Field InternalMass, Floor 1 Lobby Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Locker Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Locker Room, !- Zone or ZoneList Name - 122.6320; !- Surface Area {m2} + , !- Surface Area {m2} + 122.6320; !- Extended Field InternalMass, Floor 1 Locker Room Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Locker Room Hall,!- Zone or ZoneList Name - 92.1598; !- Surface Area {m2} + , !- Surface Area {m2} + 92.1598; !- Extended Field InternalMass, Floor 1 Lounge_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lounge, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 1 Med Gas_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Med Gas, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 MRI Control Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Control Room,!- Zone or ZoneList Name - 31.2154; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2154; !- Extended Field InternalMass, Floor 1 MRI Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Hall, !- Zone or ZoneList Name - 27.3135; !- Surface Area {m2} + , !- Surface Area {m2} + 27.3135; !- Extended Field InternalMass, Floor 1 MRI Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Room, !- Zone or ZoneList Name - 81.7547; !- Surface Area {m2} + , !- Surface Area {m2} + 81.7547; !- Extended Field InternalMass, Floor 1 MRI Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Nourishment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nourishment, !- Zone or ZoneList Name - 33.8167; !- Surface Area {m2} + , !- Surface Area {m2} + 33.8167; !- Extended Field InternalMass, Floor 1 Nurse Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Hall, !- Zone or ZoneList Name - 92.1598; !- Surface Area {m2} + , !- Surface Area {m2} + 92.1598; !- Extended Field InternalMass, Floor 1 Nurse Janitor_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Janitor, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Nurse Station_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Station, !- Zone or ZoneList Name - 48.4954; !- Surface Area {m2} + , !- Surface Area {m2} + 48.4954; !- Extended Field InternalMass, Floor 1 Nurse Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Office_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field InternalMass, Floor 1 Operating Room 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 1,!- Zone or ZoneList Name - 85.4708; !- Surface Area {m2} + , !- Surface Area {m2} + 85.4708; !- Extended Field InternalMass, Floor 1 Operating Room 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 2,!- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field InternalMass, Floor 1 Operating Room 3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 3,!- Zone or ZoneList Name - 88.4437; !- Surface Area {m2} + , !- Surface Area {m2} + 88.4437; !- Extended Field InternalMass, Floor 1 PACU_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 PACU, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 1 Pre-Op Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Hall, !- Zone or ZoneList Name - 98.1056; !- Surface Area {m2} + , !- Surface Area {m2} + 98.1056; !- Extended Field InternalMass, Floor 1 Pre-Op Room 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone or ZoneList Name - 35.1173; !- Surface Area {m2} + , !- Surface Area {m2} + 35.1173; !- Extended Field InternalMass, Floor 1 Pre-Op Room 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone or ZoneList Name - 62.8025; !- Surface Area {m2} + , !- Surface Area {m2} + 62.8025; !- Extended Field InternalMass, Floor 1 Pre-Op Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Procedure Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Procedure Room, !- Zone or ZoneList Name - 52.9547; !- Surface Area {m2} + , !- Surface Area {m2} + 52.9547; !- Extended Field InternalMass, Floor 1 Reception_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception, !- Zone or ZoneList Name - 94.5753; !- Surface Area {m2} + , !- Surface Area {m2} + 94.5753; !- Extended Field InternalMass, Floor 1 Reception Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception Hall, !- Zone or ZoneList Name - 23.7832; !- Surface Area {m2} + , !- Surface Area {m2} + 23.7832; !- Extended Field InternalMass, Floor 1 Recovery Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Recovery Room, !- Zone or ZoneList Name - 100.3353; !- Surface Area {m2} + , !- Surface Area {m2} + 100.3353; !- Extended Field InternalMass, Floor 1 Scheduling_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Scheduling, !- Zone or ZoneList Name - 22.1109; !- Surface Area {m2} + , !- Surface Area {m2} + 22.1109; !- Extended Field InternalMass, Floor 1 Scrub_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Scrub, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 1 Soil_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Soil Hold_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil Hold, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 Soil Work_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil Work, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 1 Step Down_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Step Down, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, Floor 1 Sterile Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sterile Hall, !- Zone or ZoneList Name - 114.4565; !- Surface Area {m2} + , !- Surface Area {m2} + 114.4565; !- Extended Field InternalMass, Floor 1 Sterile Storage_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sterile Storage, !- Zone or ZoneList Name - 73.5792; !- Surface Area {m2} + , !- Surface Area {m2} + 73.5792; !- Extended Field InternalMass, Floor 1 Storage_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Storage, !- Zone or ZoneList Name - 170.9416; !- Surface Area {m2} + , !- Surface Area {m2} + 170.9416; !- Extended Field InternalMass, Floor 1 Sub-Sterile_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sub-Sterile, !- Zone or ZoneList Name - 36.4180; !- Surface Area {m2} + , !- Surface Area {m2} + 36.4180; !- Extended Field InternalMass, Floor 1 Utility Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Hall, !- Zone or ZoneList Name - 47.5664; !- Surface Area {m2} + , !- Surface Area {m2} + 47.5664; !- Extended Field InternalMass, Floor 1 Utility Janitor_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Janitor, !- Zone or ZoneList Name - 7.8039; !- Surface Area {m2} + , !- Surface Area {m2} + 7.8039; !- Extended Field InternalMass, Floor 1 Utility Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Room, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 1 Vestibule_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 1 Vestibule, !- Zone or ZoneList Name - 13.3780; !- Surface Area {m2} + , !- Surface Area {m2} + 13.3780; !- Extended Field InternalMass, Floor 2 Conference_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Conference, !- Zone or ZoneList Name - 62.4308; !- Surface Area {m2} + , !- Surface Area {m2} + 62.4308; !- Extended Field InternalMass, Floor 2 Conference Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Conference Toilet, !- Zone or ZoneList Name - 11.8916; !- Surface Area {m2} + , !- Surface Area {m2} + 11.8916; !- Extended Field InternalMass, Floor 2 Dictation_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Dictation, !- Zone or ZoneList Name - 13.0064; !- Surface Area {m2} + , !- Surface Area {m2} + 13.0064; !- Extended Field InternalMass, Floor 2 Exam 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 1, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 2 Exam 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 2, !- Zone or ZoneList Name - 100.3353; !- Surface Area {m2} + , !- Surface Area {m2} + 100.3353; !- Extended Field InternalMass, Floor 2 Exam 3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 3, !- Zone or ZoneList Name - 133.7804; !- Surface Area {m2} + , !- Surface Area {m2} + 133.7804; !- Extended Field InternalMass, Floor 2 Exam 4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 4, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 2 Exam 5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 5, !- Zone or ZoneList Name - 65.0321; !- Surface Area {m2} + , !- Surface Area {m2} + 65.0321; !- Extended Field InternalMass, Floor 2 Exam 6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 6, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, Floor 2 Exam 7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 7, !- Zone or ZoneList Name - 147.1584; !- Surface Area {m2} + , !- Surface Area {m2} + 147.1584; !- Extended Field InternalMass, Floor 2 Exam 8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 8, !- Zone or ZoneList Name - 50.1676; !- Surface Area {m2} + , !- Surface Area {m2} + 50.1676; !- Extended Field InternalMass, Floor 2 Exam 9_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 9, !- Zone or ZoneList Name - 73.5792; !- Surface Area {m2} + , !- Surface Area {m2} + 73.5792; !- Extended Field InternalMass, Floor 2 Exam Hall 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 1, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 2, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 3, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 4, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Exam Hall 5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 5, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Exam Hall 6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 6, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Janitor_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Janitor, !- Zone or ZoneList Name - 11.7058; !- Surface Area {m2} + , !- Surface Area {m2} + 11.7058; !- Extended Field InternalMass, Floor 2 Lounge_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge, !- Zone or ZoneList Name - 14.8645; !- Surface Area {m2} + , !- Surface Area {m2} + 14.8645; !- Extended Field InternalMass, Floor 2 Nurse Station 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 1, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, Floor 2 Nurse Station 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 2, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Office_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office, !- Zone or ZoneList Name - 104.0514; !- Surface Area {m2} + , !- Surface Area {m2} + 104.0514; !- Extended Field InternalMass, Floor 2 Office Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office Hall, !- Zone or ZoneList Name - 82.4979; !- Surface Area {m2} + , !- Surface Area {m2} + 82.4979; !- Extended Field InternalMass, Floor 2 Reception_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception, !- Zone or ZoneList Name - 182.8332; !- Surface Area {m2} + , !- Surface Area {m2} + 182.8332; !- Extended Field InternalMass, Floor 2 Reception Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception Hall, !- Zone or ZoneList Name - 104.7946; !- Surface Area {m2} + , !- Surface Area {m2} + 104.7946; !- Extended Field InternalMass, Floor 2 Reception Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception Toilet,!- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 2 Scheduling 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Scheduling 1, !- Zone or ZoneList Name - 60.2012; !- Surface Area {m2} + , !- Surface Area {m2} + 60.2012; !- Extended Field InternalMass, Floor 2 Scheduling 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Scheduling 2, !- Zone or ZoneList Name - 63.5457; !- Surface Area {m2} + , !- Surface Area {m2} + 63.5457; !- Extended Field InternalMass, Floor 2 Storage 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 1, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 2 Storage 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 2, !- Zone or ZoneList Name - 22.2967; !- Surface Area {m2} + , !- Surface Area {m2} + 22.2967; !- Extended Field InternalMass, Floor 2 Storage 3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 3, !- Zone or ZoneList Name - 26.7561; !- Surface Area {m2} + , !- Surface Area {m2} + 26.7561; !- Extended Field InternalMass, Floor 2 Utility_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Utility, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 2 Work_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work, !- Zone or ZoneList Name - 259.3853; !- Surface Area {m2} + , !- Surface Area {m2} + 259.3853; !- Extended Field InternalMass, Floor 2 Work Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work Hall, !- Zone or ZoneList Name - 154.9623; !- Surface Area {m2} + , !- Surface Area {m2} + 154.9623; !- Extended Field InternalMass, Floor 2 Work Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 2 X-Ray_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 2 X-Ray, !- Zone or ZoneList Name - 167.2255; !- Surface Area {m2} + , !- Surface Area {m2} + 167.2255; !- Extended Field InternalMass, Floor 3 Dressing Room_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Dressing Room, !- Zone or ZoneList Name - 7.8039; !- Surface Area {m2} + , !- Surface Area {m2} + 7.8039; !- Extended Field InternalMass, Floor 3 Elevator Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Elevator Hall, !- Zone or ZoneList Name - 68.7482; !- Surface Area {m2} + , !- Surface Area {m2} + 68.7482; !- Extended Field InternalMass, Floor 3 Humid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Humid, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 3 Janitor_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Janitor, !- Zone or ZoneList Name - 11.7058; !- Surface Area {m2} + , !- Surface Area {m2} + 11.7058; !- Extended Field InternalMass, Floor 3 Locker_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Locker, !- Zone or ZoneList Name - 22.2967; !- Surface Area {m2} + , !- Surface Area {m2} + 22.2967; !- Extended Field InternalMass, Floor 3 Lounge_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Lounge, !- Zone or ZoneList Name - 141.0268; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0268; !- Extended Field InternalMass, Floor 3 Lounge Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Lounge Toilet, !- Zone or ZoneList Name - 35.6748; !- Surface Area {m2} + , !- Surface Area {m2} + 35.6748; !- Extended Field InternalMass, Floor 3 Mechanical_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Mechanical, !- Zone or ZoneList Name - 65.0321; !- Surface Area {m2} + , !- Surface Area {m2} + 65.0321; !- Extended Field InternalMass, Floor 3 Mechanical Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Mechanical Hall, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, Floor 3 Office_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office, !- Zone or ZoneList Name - 564.1073; !- Surface Area {m2} + , !- Surface Area {m2} + 564.1073; !- Extended Field InternalMass, Floor 3 Office Hall_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office Hall, !- Zone or ZoneList Name - 154.9623; !- Surface Area {m2} + , !- Surface Area {m2} + 154.9623; !- Extended Field InternalMass, Floor 3 Office Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 3 Physical Therapy 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy 1, !- Zone or ZoneList Name - 241.5479; !- Surface Area {m2} + , !- Surface Area {m2} + 241.5479; !- Extended Field InternalMass, Floor 3 Physical Therapy 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy 2, !- Zone or ZoneList Name - 109.9972; !- Surface Area {m2} + , !- Surface Area {m2} + 109.9972; !- Extended Field InternalMass, Floor 3 Physical Therapy Toilet_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 3 Storage 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Storage 1, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 3 Storage 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Storage 2, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 3 Treatment_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Treatment, !- Zone or ZoneList Name - 88.4437; !- Surface Area {m2} + , !- Surface Area {m2} + 88.4437; !- Extended Field InternalMass, Floor 3 Undeveloped 1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Undeveloped 1, !- Zone or ZoneList Name - 421.4082; !- Surface Area {m2} + , !- Surface Area {m2} + 421.4082; !- Extended Field InternalMass, Floor 3 Undeveloped 2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Undeveloped 2, !- Zone or ZoneList Name - 214.0486; !- Surface Area {m2} + , !- Surface Area {m2} + 214.0486; !- Extended Field InternalMass, Floor 3 Utility_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Utility, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, Floor 3 Work_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Floor 3 Work, !- Zone or ZoneList Name - 106.6527; !- Surface Area {m2} + , !- Surface Area {m2} + 106.6527; !- Extended Field InternalMass, NE Stair_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NE Stair, !- Zone or ZoneList Name - 31.2154; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2154; !- Extended Field InternalMass, NW Elevator_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NW Elevator, !- Zone or ZoneList Name - 26.0129; !- Surface Area {m2} + , !- Surface Area {m2} + 26.0129; !- Extended Field InternalMass, NW Stair_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name NW Stair, !- Zone or ZoneList Name - 35.6748; !- Surface Area {m2} + , !- Surface Area {m2} + 35.6748; !- Extended Field InternalMass, SW Stair_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SW Stair, !- Zone or ZoneList Name - 17.8374; !- Surface Area {m2} + , !- Surface Area {m2} + 17.8374; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/ASHRAE9012016_RestaurantFastFood_Denver.idf b/testfiles/ASHRAE9012016_RestaurantFastFood_Denver.idf index 0ed08d3a4ef..0b84d417973 100644 --- a/testfiles/ASHRAE9012016_RestaurantFastFood_Denver.idf +++ b/testfiles/ASHRAE9012016_RestaurantFastFood_Denver.idf @@ -3770,6 +3770,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3786,6 +3787,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3802,6 +3804,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3818,6 +3821,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-dinning, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3834,6 +3838,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3850,6 +3855,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3866,6 +3872,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3882,6 +3889,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3898,6 +3906,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3914,6 +3923,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-kitchen, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3930,6 +3940,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3946,6 +3957,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3962,6 +3974,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3978,6 +3991,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3994,6 +4008,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4009,6 +4024,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4024,6 +4040,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4040,6 +4057,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4119,13 +4137,15 @@ Dining_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Dining, !- Zone or ZoneList Name - 232.3430; !- Surface Area {m2} + , !- Surface Area {m2} + 232.3430; !- Extended Field InternalMass, Kitchen_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen, !- Zone or ZoneList Name - 232.3430; !- Surface Area {m2} + , !- Surface Area {m2} + 232.3430; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -6855,3 +6875,4 @@ SET_Kitchen_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Kitchen_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_RestaurantSitDown_Denver.idf b/testfiles/ASHRAE9012016_RestaurantSitDown_Denver.idf index 53d73ae90ad..227174cb7dc 100644 --- a/testfiles/ASHRAE9012016_RestaurantSitDown_Denver.idf +++ b/testfiles/ASHRAE9012016_RestaurantSitDown_Denver.idf @@ -3738,6 +3738,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3754,6 +3755,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3770,6 +3772,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3786,6 +3789,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-dinning, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3802,6 +3806,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3818,6 +3823,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3834,6 +3840,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3850,6 +3857,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3866,6 +3874,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3882,6 +3891,7 @@ Ceiling, !- Surface Type nonres_roof, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-kitchen, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3898,6 +3908,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3914,6 +3925,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3930,6 +3942,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3945,6 +3958,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3960,6 +3974,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3976,6 +3991,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3992,6 +4008,7 @@ Roof, !- Surface Type AtticRoofDeck, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4008,6 +4025,7 @@ Floor, !- Surface Type nonres_roof_floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4087,13 +4105,15 @@ Dining_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Dining, !- Zone or ZoneList Name - 743.4961; !- Surface Area {m2} + , !- Surface Area {m2} + 743.4961; !- Extended Field InternalMass, Kitchen_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen, !- Zone or ZoneList Name - 278.8105; !- Surface Area {m2} + , !- Surface Area {m2} + 278.8105; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -6854,3 +6874,4 @@ SET_Kitchen_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Kitchen_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_RetailStandalone_Denver.idf b/testfiles/ASHRAE9012016_RetailStandalone_Denver.idf index 705979f77ab..458b264e9b7 100644 --- a/testfiles/ASHRAE9012016_RetailStandalone_Denver.idf +++ b/testfiles/ASHRAE9012016_RetailStandalone_Denver.idf @@ -3653,6 +3653,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Back_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3669,6 +3670,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3685,6 +3687,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3701,6 +3704,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3717,6 +3721,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3733,6 +3738,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3749,6 +3755,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Core_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3769,6 +3776,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3785,6 +3793,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3801,6 +3810,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3817,6 +3827,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3833,6 +3844,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Back_Space_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3849,6 +3861,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3865,6 +3878,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3885,6 +3899,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3901,6 +3916,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3917,6 +3933,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3933,6 +3950,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3949,6 +3967,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_West_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3965,6 +3984,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3981,6 +4001,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3997,6 +4018,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4013,6 +4035,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4029,6 +4052,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Front_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4045,6 +4069,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4061,6 +4086,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4077,6 +4103,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4093,6 +4120,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4109,6 +4137,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4125,6 +4154,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4141,6 +4171,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Front_Entry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4157,6 +4188,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4173,6 +4205,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4189,6 +4222,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4205,6 +4239,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4221,6 +4256,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4785,31 +4821,36 @@ Back_Space_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Back_Space, !- Zone or ZoneList Name - 759.7800; !- Surface Area {m2} + , !- Surface Area {m2} + 759.7800; !- Extended Field InternalMass, Core_Retail_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_Retail, !- Zone or ZoneList Name - 3200.9658; !- Surface Area {m2} + , !- Surface Area {m2} + 3200.9658; !- Extended Field InternalMass, Point_Of_Sale_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Point_Of_Sale, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field InternalMass, Front_Retail_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Front_Retail, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field InternalMass, Front_Entry_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Front_Entry, !- Zone or ZoneList Name - 24.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 24.0000; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -8645,3 +8686,4 @@ SET_Front_Entry_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Front_Entry_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_RetailStripmall_Denver.idf b/testfiles/ASHRAE9012016_RetailStripmall_Denver.idf index 085bcd6e172..3105b86a2f6 100644 --- a/testfiles/ASHRAE9012016_RetailStripmall_Denver.idf +++ b/testfiles/ASHRAE9012016_RetailStripmall_Denver.idf @@ -3794,6 +3794,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3810,6 +3811,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3826,6 +3828,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3842,6 +3845,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3890,6 +3894,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3906,6 +3911,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4011,7 +4017,8 @@ LGstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -4230,6 +4237,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,6 +4254,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4307,6 +4316,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4323,6 +4333,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4339,6 +4350,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4370,6 +4382,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4385,7 +4398,8 @@ SMstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -4604,6 +4618,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4620,6 +4635,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4681,6 +4697,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4697,6 +4714,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4713,6 +4731,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4744,6 +4763,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4759,7 +4779,8 @@ SMstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -4978,6 +4999,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4994,6 +5016,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5055,6 +5078,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5071,6 +5095,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5087,6 +5112,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5118,6 +5144,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5133,7 +5160,8 @@ SMstore3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -5352,6 +5380,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5368,6 +5397,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5429,6 +5459,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5445,6 +5476,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5461,6 +5493,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5492,6 +5525,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5507,7 +5541,8 @@ SMstore4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -5726,6 +5761,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5742,6 +5778,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5758,6 +5795,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5774,6 +5812,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5820,6 +5859,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5836,6 +5876,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5941,7 +5982,8 @@ LGstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -6160,6 +6202,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6176,6 +6219,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6237,6 +6281,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6253,6 +6298,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6269,6 +6315,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6300,6 +6347,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6315,7 +6363,8 @@ SMstore5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -6534,6 +6583,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6550,6 +6600,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6611,6 +6662,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6679,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6643,6 +6696,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6674,6 +6728,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6689,7 +6744,8 @@ SMstore6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -6908,6 +6964,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6924,6 +6981,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6985,6 +7043,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7001,6 +7060,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7017,6 +7077,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7048,6 +7109,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7063,7 +7125,8 @@ SMstore7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -7280,6 +7343,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7296,6 +7360,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7357,6 +7422,7 @@ Wall, !- Surface Type int_wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7373,6 +7439,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7389,6 +7456,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7420,6 +7488,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7435,7 +7504,8 @@ SMstore8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field !- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== @@ -14165,3 +14235,4 @@ SET_LGSTORE2_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_LGSTORE2_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_SchoolPrimary_Denver.idf b/testfiles/ASHRAE9012016_SchoolPrimary_Denver.idf index f60c45786c2..980b0b7400e 100644 --- a/testfiles/ASHRAE9012016_SchoolPrimary_Denver.idf +++ b/testfiles/ASHRAE9012016_SchoolPrimary_Denver.idf @@ -4612,6 +4612,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4628,6 +4629,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4644,6 +4646,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4660,6 +4663,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4676,6 +4680,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4692,6 +4697,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4708,6 +4714,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4724,6 +4731,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4740,6 +4748,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4756,6 +4765,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4772,6 +4782,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4788,6 +4799,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4804,6 +4816,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4820,6 +4833,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4836,6 +4850,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4852,6 +4867,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4868,6 +4884,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4884,6 +4901,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4900,6 +4918,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4916,6 +4935,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4932,6 +4952,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4948,6 +4969,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4964,6 +4986,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4980,6 +5003,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4996,6 +5020,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5012,6 +5037,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5028,6 +5054,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5044,6 +5071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5060,6 +5088,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5076,6 +5105,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5092,6 +5122,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5108,6 +5139,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5124,6 +5156,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5140,6 +5173,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5156,6 +5190,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5172,6 +5207,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5188,6 +5224,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5204,6 +5241,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5220,6 +5258,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5236,6 +5275,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5252,6 +5292,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5268,6 +5309,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5284,6 +5326,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5300,6 +5343,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5316,6 +5360,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5332,6 +5377,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5348,6 +5394,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5364,6 +5411,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5380,6 +5428,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5396,6 +5445,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5412,6 +5462,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5428,6 +5479,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5444,6 +5496,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5460,6 +5513,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5476,6 +5530,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5492,6 +5547,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5508,6 +5564,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5524,6 +5581,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5540,6 +5598,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5556,6 +5615,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5572,6 +5632,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5588,6 +5649,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5604,6 +5666,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5620,6 +5683,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5636,6 +5700,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5652,6 +5717,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5668,6 +5734,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5684,6 +5751,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5700,6 +5768,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5716,6 +5785,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5732,6 +5802,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5748,6 +5819,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5764,6 +5836,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5780,6 +5853,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5796,6 +5870,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5812,6 +5887,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5828,6 +5904,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5844,6 +5921,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5860,6 +5938,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5876,6 +5955,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5892,6 +5972,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5908,6 +5989,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,6 +6006,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5940,6 +6023,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5956,6 +6040,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5972,6 +6057,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5988,6 +6074,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6004,6 +6091,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6020,6 +6108,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6036,6 +6125,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6052,6 +6142,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6068,6 +6159,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6084,6 +6176,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6100,6 +6193,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6116,6 +6210,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6132,6 +6227,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6148,6 +6244,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6164,6 +6261,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6180,6 +6278,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6196,6 +6295,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6212,6 +6312,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6228,6 +6329,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6244,6 +6346,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6260,6 +6363,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6276,6 +6380,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6292,6 +6397,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6308,6 +6414,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6324,6 +6431,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6340,6 +6448,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6356,6 +6465,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6372,6 +6482,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6388,6 +6499,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6404,6 +6516,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6420,6 +6533,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6436,6 +6550,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6452,6 +6567,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6468,6 +6584,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6484,6 +6601,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6500,6 +6618,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6516,6 +6635,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6532,6 +6652,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6548,6 +6669,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6686,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6580,6 +6703,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6596,6 +6720,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6612,6 +6737,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6628,6 +6754,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6644,6 +6771,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6660,6 +6788,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6676,6 +6805,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6692,6 +6822,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6708,6 +6839,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6724,6 +6856,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6740,6 +6873,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6756,6 +6890,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6772,6 +6907,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6788,6 +6924,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6804,6 +6941,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6820,6 +6958,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6836,6 +6975,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6852,6 +6992,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6868,6 +7009,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6884,6 +7026,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6900,6 +7043,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6916,6 +7060,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6932,6 +7077,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6948,6 +7094,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6964,6 +7111,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6980,6 +7128,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6996,6 +7145,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7012,6 +7162,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7028,6 +7179,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7044,6 +7196,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7060,6 +7213,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7076,6 +7230,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7092,6 +7247,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7108,6 +7264,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7124,6 +7281,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7140,6 +7298,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7156,6 +7315,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7172,6 +7332,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7188,6 +7349,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7204,6 +7366,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7220,6 +7383,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7236,6 +7400,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7252,6 +7417,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7268,6 +7434,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7284,6 +7451,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7300,6 +7468,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7316,6 +7485,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7332,6 +7502,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8760,151 +8931,176 @@ 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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 - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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 - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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 - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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 - 630.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 630.0000; !- Extended Field InternalMass, Computer_Class_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone or ZoneList Name - 324.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 324.0000; !- Extended Field InternalMass, Main_Corridor_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name - 1092.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1092.0000; !- Extended Field InternalMass, Lobby_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name - 342.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 342.0000; !- Extended Field InternalMass, Mech_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Mech_ZN_1_FLR_1, !- Zone or ZoneList Name - 504.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 504.0000; !- Extended Field InternalMass, Bath_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Bath_ZN_1_FLR_1, !- Zone or ZoneList Name - 380.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 380.0000; !- Extended Field InternalMass, Offices_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Offices_ZN_1_FLR_1, !- Zone or ZoneList Name - 882.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 882.0000; !- Extended Field InternalMass, Gym_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Gym_ZN_1_FLR_1, !- Zone or ZoneList Name - 714.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 714.0000; !- Extended Field InternalMass, Kitchen_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name - 336.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 336.0000; !- Extended Field InternalMass, Cafeteria_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name - 630.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 630.0000; !- Extended Field InternalMass, Library_Media_Center_ZN_1_FLR_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone or ZoneList Name - 798.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 798.0000; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -20119,3 +20315,4 @@ SET_LMC_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_LMC_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASHRAE9012016_SchoolSecondary_Denver.idf b/testfiles/ASHRAE9012016_SchoolSecondary_Denver.idf index 8d8dbeade26..ff554b1c234 100644 --- a/testfiles/ASHRAE9012016_SchoolSecondary_Denver.idf +++ b/testfiles/ASHRAE9012016_SchoolSecondary_Denver.idf @@ -5136,6 +5136,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5152,6 +5153,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5168,6 +5170,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5184,6 +5187,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5200,6 +5204,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5216,6 +5221,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5232,6 +5238,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5248,6 +5255,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5264,6 +5272,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5280,6 +5289,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5296,6 +5306,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5312,6 +5323,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5328,6 +5340,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5344,6 +5357,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5360,6 +5374,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5376,6 +5391,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5392,6 +5408,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5408,6 +5425,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5424,6 +5442,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5440,6 +5459,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5456,6 +5476,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5472,6 +5493,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5488,6 +5510,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5504,6 +5527,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5520,6 +5544,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5536,6 +5561,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5552,6 +5578,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5568,6 +5595,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5584,6 +5612,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5600,6 +5629,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5616,6 +5646,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5632,6 +5663,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5648,6 +5680,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5664,6 +5697,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5680,6 +5714,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5696,6 +5731,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5712,6 +5748,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5728,6 +5765,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5744,6 +5782,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5760,6 +5799,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5776,6 +5816,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5792,6 +5833,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5808,6 +5850,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5824,6 +5867,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5840,6 +5884,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5856,6 +5901,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5872,6 +5918,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5888,6 +5935,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5904,6 +5952,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5920,6 +5969,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5936,6 +5986,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5952,6 +6003,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5968,6 +6020,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5984,6 +6037,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6000,6 +6054,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6016,6 +6071,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6032,6 +6088,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6048,6 +6105,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6064,6 +6122,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6080,6 +6139,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6096,6 +6156,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6112,6 +6173,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6128,6 +6190,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6144,6 +6207,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6160,6 +6224,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6176,6 +6241,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6192,6 +6258,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6208,6 +6275,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6224,6 +6292,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6240,6 +6309,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6256,6 +6326,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6272,6 +6343,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6288,6 +6360,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6304,6 +6377,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6320,6 +6394,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6336,6 +6411,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6352,6 +6428,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6368,6 +6445,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6384,6 +6462,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6400,6 +6479,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6416,6 +6496,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6432,6 +6513,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6448,6 +6530,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6464,6 +6547,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6480,6 +6564,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6496,6 +6581,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6512,6 +6598,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6528,6 +6615,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6544,6 +6632,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6560,6 +6649,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6576,6 +6666,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6592,6 +6683,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6608,6 +6700,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6624,6 +6717,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6640,6 +6734,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6656,6 +6751,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6672,6 +6768,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6688,6 +6785,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6704,6 +6802,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6720,6 +6819,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6736,6 +6836,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6752,6 +6853,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6768,6 +6870,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6784,6 +6887,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6800,6 +6904,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6816,6 +6921,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6832,6 +6938,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6848,6 +6955,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6864,6 +6972,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6880,6 +6989,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6896,6 +7006,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6912,6 +7023,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6928,6 +7040,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6944,6 +7057,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6960,6 +7074,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6976,6 +7091,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6992,6 +7108,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7008,6 +7125,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7024,6 +7142,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7040,6 +7159,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7056,6 +7176,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7072,6 +7193,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7088,6 +7210,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7104,6 +7227,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7120,6 +7244,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7136,6 +7261,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7152,6 +7278,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7168,6 +7295,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7184,6 +7312,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7200,6 +7329,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7216,6 +7346,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7232,6 +7363,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7248,6 +7380,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7264,6 +7397,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7280,6 +7414,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7296,6 +7431,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7312,6 +7448,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7328,6 +7465,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7344,6 +7482,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7360,6 +7499,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7376,6 +7516,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7392,6 +7533,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7408,6 +7550,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7424,6 +7567,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7440,6 +7584,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7456,6 +7601,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7472,6 +7618,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7488,6 +7635,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7504,6 +7652,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7520,6 +7669,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7536,6 +7686,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7552,6 +7703,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7568,6 +7720,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7584,6 +7737,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7600,6 +7754,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7616,6 +7771,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7632,6 +7788,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7648,6 +7805,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7664,6 +7822,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7680,6 +7839,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7696,6 +7856,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7712,6 +7873,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7728,6 +7890,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7744,6 +7907,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7760,6 +7924,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7776,6 +7941,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7792,6 +7958,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7808,6 +7975,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7824,6 +7992,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7840,6 +8009,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7856,6 +8026,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7872,6 +8043,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7888,6 +8060,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7904,6 +8077,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7920,6 +8094,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7936,6 +8111,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7952,6 +8128,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7968,6 +8145,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7984,6 +8162,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8000,6 +8179,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8016,6 +8196,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8032,6 +8213,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8048,6 +8230,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8064,6 +8247,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8080,6 +8264,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8096,6 +8281,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8112,6 +8298,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8128,6 +8315,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8144,6 +8332,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8160,6 +8349,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8176,6 +8366,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8192,6 +8383,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8208,6 +8400,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8224,6 +8417,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8240,6 +8434,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8256,6 +8451,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8272,6 +8468,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8288,6 +8485,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8304,6 +8502,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8320,6 +8519,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8336,6 +8536,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8352,6 +8553,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8368,6 +8570,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8384,6 +8587,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8400,6 +8604,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8416,6 +8621,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8432,6 +8638,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8448,6 +8655,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8464,6 +8672,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8480,6 +8689,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8496,6 +8706,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8512,6 +8723,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8528,6 +8740,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8544,6 +8757,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8560,6 +8774,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8576,6 +8791,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8592,6 +8808,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8608,6 +8825,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8624,6 +8842,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8640,6 +8859,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8656,6 +8876,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8672,6 +8893,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8688,6 +8910,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8704,6 +8927,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8720,6 +8944,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8736,6 +8961,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8752,6 +8978,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8768,6 +8995,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8784,6 +9012,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8800,6 +9029,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8816,6 +9046,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8832,6 +9063,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8848,6 +9080,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8864,6 +9097,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8880,6 +9114,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8896,6 +9131,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_4A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8912,6 +9148,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8928,6 +9165,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8944,6 +9182,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8960,6 +9199,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8976,6 +9216,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8992,6 +9233,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9008,6 +9250,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9024,6 +9267,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_4A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9040,6 +9284,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9056,6 +9301,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9072,6 +9318,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9088,6 +9335,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9104,6 +9352,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9120,6 +9369,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9136,6 +9386,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9152,6 +9403,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9168,6 +9420,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9184,6 +9437,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9200,6 +9454,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9216,6 +9471,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9232,6 +9488,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9248,6 +9505,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9264,6 +9522,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9280,6 +9539,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9296,6 +9556,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9312,6 +9573,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9328,6 +9590,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9344,6 +9607,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9360,6 +9624,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9376,6 +9641,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9392,6 +9658,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9408,6 +9675,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9424,6 +9692,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9440,6 +9709,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9456,6 +9726,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9472,6 +9743,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9488,6 +9760,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9504,6 +9777,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9520,6 +9794,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9536,6 +9811,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9552,6 +9828,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9568,6 +9845,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9584,6 +9862,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9600,6 +9879,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9616,6 +9896,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9632,6 +9913,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9648,6 +9930,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9664,6 +9947,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9680,6 +9964,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9696,6 +9981,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9712,6 +9998,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_4_B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9728,6 +10015,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9744,6 +10032,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9760,6 +10049,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9776,6 +10066,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9792,6 +10083,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9808,6 +10100,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9824,6 +10117,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9840,6 +10134,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Floor_A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9856,6 +10151,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9872,6 +10168,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9888,6 +10185,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9904,6 +10202,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9920,6 +10219,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9936,6 +10236,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9952,6 +10253,7 @@ Wall, !- Surface Type int_wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9968,6 +10270,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9984,6 +10287,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10000,6 +10304,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10016,6 +10321,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10032,6 +10338,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10048,6 +10355,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10064,6 +10372,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Floor_B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10080,6 +10389,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10096,6 +10406,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10112,6 +10423,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10128,6 +10440,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10144,6 +10457,7 @@ Floor, !- Surface Type ext_slab_6in_with_carpet,!- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10160,6 +10474,7 @@ Ceiling, !- Surface Type int_slab_ceiling, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10176,6 +10491,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10192,6 +10508,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_4_A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10208,6 +10525,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10224,6 +10542,7 @@ Wall, !- Surface Type int_wall, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10240,6 +10559,7 @@ Floor, !- Surface Type int_slab_floor, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10256,6 +10576,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10272,6 +10593,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10288,6 +10610,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13486,277 +13809,323 @@ 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 640.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 198.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 954.0000; !- Extended Field 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} + , !- Surface Area {m2} + 2280.0000; !- Extended Field 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} + , !- Surface Area {m2} + 2280.0000; !- Extended Field 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} + , !- Surface Area {m2} + 420.0000; !- Extended Field 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} + , !- Surface Area {m2} + 420.0000; !- Extended Field 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} + , !- Surface Area {m2} + 420.0000; !- Extended Field 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} + , !- Surface Area {m2} + 420.0000; !- Extended Field 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} + , !- Surface Area {m2} + 1064.0000; !- Extended Field 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} + , !- Surface Area {m2} + 1064.0000; !- Extended Field 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} + , !- Surface Area {m2} + 3952.0000; !- Extended Field 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} + , !- Surface Area {m2} + 2496.0000; !- Extended Field 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} + , !- Surface Area {m2} + 1976.0000; !- Extended Field 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} + , !- Surface Area {m2} + 432.0000; !- Extended Field 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} + , !- Surface Area {m2} + 1680.0000; !- Extended Field 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} + , !- Surface Area {m2} + 1248.0000; !- Extended Field 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} + , !- Surface Area {m2} + 684.0000; !- Extended Field 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} + , !- Surface Area {m2} + 684.0000; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== @@ -32338,3 +32707,4 @@ 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 + diff --git a/testfiles/ASHRAE9012016_Warehouse_Denver.idf b/testfiles/ASHRAE9012016_Warehouse_Denver.idf index 374cb80dd1c..8a5224751ce 100644 --- a/testfiles/ASHRAE9012016_Warehouse_Denver.idf +++ b/testfiles/ASHRAE9012016_Warehouse_Denver.idf @@ -2770,6 +2770,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2790,6 +2791,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Zone2 Fine Storage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2812,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Zone2 Fine Storage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2829,6 +2832,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2847,6 +2851,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2867,6 +2872,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2885,6 +2891,7 @@ Wall, !- Surface Type semiheated_ext_wall, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Zone2 Fine Storage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2903,6 +2910,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2924,6 +2932,7 @@ Wall, !- Surface Type semiheated_ext_wall, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2944,6 +2953,7 @@ Wall, !- Surface Type semiheated_ext_wall, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2963,6 +2973,7 @@ Wall, !- Surface Type semiheated_ext_wall, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2984,6 +2995,7 @@ Roof, !- Surface Type InsulatedCeiling, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Zone2 Fine Storage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3004,6 +3016,7 @@ Roof, !- Surface Type nonres_roof, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3024,6 +3037,7 @@ Roof, !- Surface Type semiheated_roof, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3043,6 +3057,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3063,6 +3078,7 @@ Wall, !- Surface Type nonres_ext_wall, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3081,6 +3097,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Zone1 Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3100,6 +3117,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Zone2 Fine Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3121,6 +3139,7 @@ Floor, !- Surface Type ext_slab_6in, !- Construction Name Zone3 Bulk Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4432,7 +4451,8 @@ Bulk Storage Products Surface, !- Name Bulk Storage Products, !- Construction Name Zone3 Bulk Storage, !- Zone or ZoneList Name - 6028.44715712782; !- Surface Area {m2} + , !- Surface Area {m2} + 6028.44715712782; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SURFACE:SHADING:ATTACHED =========== !No Overhang @@ -8180,3 +8200,4 @@ SET_Zone3_Bulk_Storage_Light_EMS_Program_Prog_Manager, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point SET_Zone3_Bulk_Storage_Light_EMS_Program; !- Program Name 1 + diff --git a/testfiles/ASIHPMixedTank.idf b/testfiles/ASIHPMixedTank.idf index 0b6fc773008..767cbd34461 100644 --- a/testfiles/ASIHPMixedTank.idf +++ b/testfiles/ASIHPMixedTank.idf @@ -1684,6 +1684,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1716,6 +1718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1732,6 +1735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1752,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1764,6 +1769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1780,6 +1786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1796,6 +1803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1812,6 +1820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1828,6 +1837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1844,6 +1854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1860,6 +1871,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1876,6 +1888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1892,6 +1905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1908,6 +1922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1924,6 +1939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1940,6 +1956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1956,6 +1973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1972,6 +1990,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1988,6 +2007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AbsorptionChiller.idf b/testfiles/AbsorptionChiller.idf index b5b95afff9f..2ebb2150b25 100644 --- a/testfiles/AbsorptionChiller.idf +++ b/testfiles/AbsorptionChiller.idf @@ -657,6 +657,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +689,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +706,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +723,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +740,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +757,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +774,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +791,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +808,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +825,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +842,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +859,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +876,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +893,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +910,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +927,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +944,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +961,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +978,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +995,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ActiveTrombeWall.idf b/testfiles/ActiveTrombeWall.idf index 77bf8aebf54..82fec8421a7 100644 --- a/testfiles/ActiveTrombeWall.idf +++ b/testfiles/ActiveTrombeWall.idf @@ -395,6 +395,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -411,6 +412,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -442,6 +444,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +461,7 @@ Wall, !- Surface Type TROMBE WALL IN, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -474,6 +478,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -490,6 +495,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -506,6 +512,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +554,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +571,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +588,7 @@ Wall, !- Surface Type TROMBE WALL OUT, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -595,6 +605,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +622,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AdaptiveThermostatASH55_5Zone_Miami.idf b/testfiles/AdaptiveThermostatASH55_5Zone_Miami.idf index b1af82c3dbd..0792c807269 100644 --- a/testfiles/AdaptiveThermostatASH55_5Zone_Miami.idf +++ b/testfiles/AdaptiveThermostatASH55_5Zone_Miami.idf @@ -656,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +707,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +724,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +966,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1033,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1050,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1067,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1084,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1101,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1240,6 +1256,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1271,6 +1288,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1305,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1322,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1339,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1356,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1472,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1496,6 +1519,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1536,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1528,6 +1553,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1544,6 +1570,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1560,6 +1587,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1705,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1708,6 +1737,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1724,6 +1754,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1740,6 +1771,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1788,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1805,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1881,6 +1915,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1897,6 +1932,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1913,6 +1949,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1929,6 +1966,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1945,6 +1983,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1961,6 +2000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AdvancedOutput/ExerciseOutput1.idf b/testfiles/AdvancedOutput/ExerciseOutput1.idf index a6da5f7e2e8..c3a79cc0d2d 100644 --- a/testfiles/AdvancedOutput/ExerciseOutput1.idf +++ b/testfiles/AdvancedOutput/ExerciseOutput1.idf @@ -310,6 +310,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -326,6 +327,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -342,6 +344,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -358,6 +361,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -374,6 +378,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +395,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AdvancedOutput/ExerciseOutput1A-Solution.idf b/testfiles/AdvancedOutput/ExerciseOutput1A-Solution.idf index 2fc00c19fb3..dbcdb6b272b 100644 --- a/testfiles/AdvancedOutput/ExerciseOutput1A-Solution.idf +++ b/testfiles/AdvancedOutput/ExerciseOutput1A-Solution.idf @@ -310,6 +310,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -326,6 +327,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -342,6 +344,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -358,6 +361,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -374,6 +378,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +395,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirCooledElectricChiller.idf b/testfiles/AirCooledElectricChiller.idf index 4f9fc48b896..ad5751073ec 100644 --- a/testfiles/AirCooledElectricChiller.idf +++ b/testfiles/AirCooledElectricChiller.idf @@ -651,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +717,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +734,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +751,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +768,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +802,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +819,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +836,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +853,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +870,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +921,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +938,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +955,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +972,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +989,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirEconomizerFaults_RefBldgLargeOfficeNew2004_Chicago.idf b/testfiles/AirEconomizerFaults_RefBldgLargeOfficeNew2004_Chicago.idf index ddbaea4622f..8001e82ed9a 100644 --- a/testfiles/AirEconomizerFaults_RefBldgLargeOfficeNew2004_Chicago.idf +++ b/testfiles/AirEconomizerFaults_RefBldgLargeOfficeNew2004_Chicago.idf @@ -895,6 +895,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +912,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +929,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +946,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +963,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +980,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +997,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1014,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1031,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1039,6 +1048,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1065,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1071,6 +1082,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1099,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1116,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1133,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1150,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1167,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1184,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1183,6 +1201,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1218,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1215,6 +1235,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1286,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1303,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1320,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1354,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1388,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1405,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1391,6 +1422,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1407,6 +1439,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1456,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1473,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1490,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1471,6 +1507,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1487,6 +1524,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1541,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1519,6 +1558,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1535,6 +1575,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1551,6 +1592,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1567,6 +1609,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1626,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1599,6 +1643,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1615,6 +1660,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1631,6 +1677,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1647,6 +1694,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1663,6 +1711,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1679,6 +1728,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1695,6 +1745,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1711,6 +1762,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1727,6 +1779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1743,6 +1796,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1759,6 +1813,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1775,6 +1830,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1791,6 +1847,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1807,6 +1864,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1823,6 +1881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1839,6 +1898,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1855,6 +1915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1871,6 +1932,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1887,6 +1949,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1903,6 +1966,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1919,6 +1983,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1935,6 +2000,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1951,6 +2017,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1967,6 +2034,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1983,6 +2051,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1999,6 +2068,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2015,6 +2085,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2031,6 +2102,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2047,6 +2119,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2063,6 +2136,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2079,6 +2153,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2095,6 +2170,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2111,6 +2187,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2127,6 +2204,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2143,6 +2221,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2159,6 +2238,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2175,6 +2255,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2191,6 +2272,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2207,6 +2289,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2223,6 +2306,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2239,6 +2323,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2255,6 +2340,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2271,6 +2357,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2287,6 +2374,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2303,6 +2391,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2319,6 +2408,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2335,6 +2425,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2351,6 +2442,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2367,6 +2459,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2383,6 +2476,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2399,6 +2493,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2415,6 +2510,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2431,6 +2527,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2447,6 +2544,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2463,6 +2561,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2479,6 +2578,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2495,6 +2595,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2612,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2527,6 +2629,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2646,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2559,6 +2663,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2575,6 +2680,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2591,6 +2697,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2607,6 +2714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2623,6 +2731,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2639,6 +2748,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2655,6 +2765,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2671,6 +2782,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2687,6 +2799,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2703,6 +2816,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2719,6 +2833,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2735,6 +2850,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2751,6 +2867,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2767,6 +2884,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2783,6 +2901,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2799,6 +2918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2935,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2831,6 +2952,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2847,6 +2969,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2863,6 +2986,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2879,6 +3003,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2895,6 +3020,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2911,6 +3037,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2927,6 +3054,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2943,6 +3071,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2959,6 +3088,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4200,97 +4330,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/AirEconomizerWithMaxMinOAFractions.idf b/testfiles/AirEconomizerWithMaxMinOAFractions.idf index 1a3352c5852..25d263b6655 100644 --- a/testfiles/AirEconomizerWithMaxMinOAFractions.idf +++ b/testfiles/AirEconomizerWithMaxMinOAFractions.idf @@ -617,6 +617,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +651,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +685,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +702,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +736,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +850,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +917,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +951,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +968,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +985,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1065,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1097,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1114,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1245,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1269,6 +1292,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1309,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1440,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1472,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1489,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1506,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1620,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1637,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1654,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1671,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1688,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork3zVent.idf b/testfiles/AirflowNetwork3zVent.idf index 78fe03316c2..ec4721c894e 100644 --- a/testfiles/AirflowNetwork3zVent.idf +++ b/testfiles/AirflowNetwork3zVent.idf @@ -441,6 +441,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +458,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +475,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -489,6 +492,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -505,6 +509,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -521,6 +526,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +543,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +560,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +577,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -585,6 +594,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -601,6 +611,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -617,6 +628,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +645,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +662,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +679,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +696,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +713,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +730,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +747,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowNetwork3zVentAutoWPC.idf b/testfiles/AirflowNetwork3zVentAutoWPC.idf index e115524f88f..3492d8f6ef2 100644 --- a/testfiles/AirflowNetwork3zVentAutoWPC.idf +++ b/testfiles/AirflowNetwork3zVentAutoWPC.idf @@ -439,6 +439,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -455,6 +456,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -471,6 +473,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +490,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -503,6 +507,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -519,6 +524,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +541,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +558,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +575,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -583,6 +592,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +609,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -615,6 +626,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -631,6 +643,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +660,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +677,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +694,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +711,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +728,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +745,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowNetworkAdvanced_SingleSided_NV.idf b/testfiles/AirflowNetworkAdvanced_SingleSided_NV.idf index 1f27db53c85..7336c30e327 100644 --- a/testfiles/AirflowNetworkAdvanced_SingleSided_NV.idf +++ b/testfiles/AirflowNetworkAdvanced_SingleSided_NV.idf @@ -661,6 +661,7 @@ Floor, !- Surface Type Exterior Floor, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -677,6 +678,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +695,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +712,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -725,6 +729,7 @@ Roof, !- Surface Type Exterior Roof, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +746,7 @@ Floor, !- Surface Type Exterior Floor, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +763,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +780,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition East_Zone_West_Wall_S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +797,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition North_Zone_South_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +814,7 @@ Roof, !- Surface Type Exterior Roof, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +831,7 @@ Floor, !- Surface Type Exterior Floor, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +848,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition South_Zone_North_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +865,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition East_Zone_West_Wall_N, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +882,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +899,7 @@ Roof, !- Surface Type Exterior Roof, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +916,7 @@ Floor, !- Surface Type Exterior Floor, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +933,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +950,7 @@ Roof, !- Surface Type Exterior Roof, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +967,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition North_Zone_East_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +984,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +1001,7 @@ Wall, !- Surface Type Exterior Wall, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -997,6 +1018,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name East_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition South_Zone_East_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1035,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name South_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition West_Zone_East_Wall_S, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1052,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition South_Zone_West_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1069,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name North_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition West_Zone_East_Wall_N, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1086,7 @@ Wall, !- Surface Type Interior Wall, !- Construction Name West_Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition North_Zone_West_Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetworkOccupantVentilationControl.idf b/testfiles/AirflowNetworkOccupantVentilationControl.idf index 2342398c593..22cba2a8517 100644 --- a/testfiles/AirflowNetworkOccupantVentilationControl.idf +++ b/testfiles/AirflowNetworkOccupantVentilationControl.idf @@ -441,6 +441,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +458,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +475,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -489,6 +492,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -505,6 +509,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -521,6 +526,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +543,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +560,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +577,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -585,6 +594,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -601,6 +611,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -617,6 +628,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +645,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +662,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +679,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +696,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +713,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +730,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +747,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_Attic_Duct.idf b/testfiles/AirflowNetwork_Attic_Duct.idf index a6a5f1a99b1..73e25431da4 100644 --- a/testfiles/AirflowNetwork_Attic_Duct.idf +++ b/testfiles/AirflowNetwork_Attic_Duct.idf @@ -219,6 +219,7 @@ Wall, !- Surface Type Gable FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -235,6 +236,7 @@ Wall, !- Surface Type Gable FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -250,6 +252,7 @@ Wall, !- Surface Type Gable FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -266,6 +269,7 @@ Wall, !- Surface Type Gable FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -281,6 +285,7 @@ Floor, !- Surface Type Ceiling FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zone Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -297,6 +302,7 @@ Roof, !- Surface Type Roof FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -313,6 +319,7 @@ Roof, !- Surface Type Roof FATM, !- Construction Name Attic Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -329,6 +336,7 @@ Floor, !- Surface Type FLOOR:LIVING, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -345,6 +353,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -361,6 +370,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -377,6 +387,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -393,6 +404,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -409,6 +421,7 @@ Ceiling, !- Surface Type Ceiling FATM, !- Construction Name Occupied Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,7 +766,8 @@ TRUSSES, !- Name Trusses, !- Construction Name Attic Thermal Zone, !- Zone or ZoneList Name - 3.9; !- Surface Area {m2} + , !- Surface Area {m2} + 3.9; !- Extended Field Schedule:Compact, Heating/Cooling Setpoints, !- Name diff --git a/testfiles/AirflowNetwork_MultiAirLoops.idf b/testfiles/AirflowNetwork_MultiAirLoops.idf index ba4c1374e0b..4a2c02283dc 100644 --- a/testfiles/AirflowNetwork_MultiAirLoops.idf +++ b/testfiles/AirflowNetwork_MultiAirLoops.idf @@ -649,6 +649,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +666,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +683,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +717,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +734,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +751,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -761,6 +768,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -777,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +802,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +819,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +836,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +853,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +870,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +921,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +938,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +955,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +972,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +989,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +1006,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1023,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1040,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1057,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1049,6 +1074,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name ATTIC Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1091,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1108,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1125,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1142,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1159,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1176,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1161,6 +1193,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1210,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1193,6 +1227,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1244,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1261,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1278,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_House.idf b/testfiles/AirflowNetwork_MultiZone_House.idf index 575200d50b3..d11a698ddbf 100644 --- a/testfiles/AirflowNetwork_MultiZone_House.idf +++ b/testfiles/AirflowNetwork_MultiZone_House.idf @@ -482,6 +482,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +499,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +516,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +533,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -546,6 +550,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -562,6 +567,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +584,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +601,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +618,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -626,6 +635,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +652,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +669,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +686,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +703,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +719,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +735,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +751,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +768,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +785,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +801,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +818,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +835,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,6 +852,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +869,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +886,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_House_FanModel.idf b/testfiles/AirflowNetwork_MultiZone_House_FanModel.idf index ad13c80737e..611ff8a7c89 100644 --- a/testfiles/AirflowNetwork_MultiZone_House_FanModel.idf +++ b/testfiles/AirflowNetwork_MultiZone_House_FanModel.idf @@ -463,6 +463,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -479,6 +480,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -495,6 +497,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +514,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +531,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -543,6 +548,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,6 +565,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +582,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +599,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +616,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +633,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +650,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +667,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +684,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +700,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +716,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +732,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +749,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +766,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +782,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +799,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +816,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -811,6 +833,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +850,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +867,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_House_OvercoolDehumid.idf b/testfiles/AirflowNetwork_MultiZone_House_OvercoolDehumid.idf index b1aac838236..4e4747b93d2 100644 --- a/testfiles/AirflowNetwork_MultiZone_House_OvercoolDehumid.idf +++ b/testfiles/AirflowNetwork_MultiZone_House_OvercoolDehumid.idf @@ -571,6 +571,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -587,6 +588,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -603,6 +605,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +622,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +639,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -651,6 +656,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -667,6 +673,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -683,6 +690,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +707,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +724,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -731,6 +741,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +758,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +775,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +792,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +808,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +824,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -824,6 +840,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -840,6 +857,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +874,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +890,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -887,6 +907,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +924,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +941,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +958,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +975,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,7 +1051,8 @@ InternalMass_LivingZone, !- Name FURNITURE, !- Construction Name LIVING ZONE, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/AirflowNetwork_MultiZone_House_TwoSpeed.idf b/testfiles/AirflowNetwork_MultiZone_House_TwoSpeed.idf index a3c0fc54d6e..4df705e64a0 100644 --- a/testfiles/AirflowNetwork_MultiZone_House_TwoSpeed.idf +++ b/testfiles/AirflowNetwork_MultiZone_House_TwoSpeed.idf @@ -484,6 +484,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -500,6 +501,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -516,6 +518,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +535,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +552,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -564,6 +569,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -580,6 +586,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +603,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +620,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +637,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +654,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +671,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +688,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +705,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +721,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +737,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +753,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +770,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +787,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +803,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +820,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +837,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +854,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +871,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +888,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_LocalNode.idf b/testfiles/AirflowNetwork_MultiZone_LocalNode.idf index cc4175f79ad..074e4ffa1c4 100644 --- a/testfiles/AirflowNetwork_MultiZone_LocalNode.idf +++ b/testfiles/AirflowNetwork_MultiZone_LocalNode.idf @@ -467,6 +467,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -483,6 +484,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -499,6 +501,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -515,6 +518,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -531,6 +535,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -547,6 +552,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -563,6 +569,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -579,6 +586,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -595,6 +603,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +620,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +637,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +654,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +671,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +688,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +704,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +720,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +736,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +753,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +770,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +786,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -783,6 +803,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -799,6 +820,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +837,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +854,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -847,6 +871,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_SmallOffice.idf b/testfiles/AirflowNetwork_MultiZone_SmallOffice.idf index 41ab0d816e8..ee963655b0c 100644 --- a/testfiles/AirflowNetwork_MultiZone_SmallOffice.idf +++ b/testfiles/AirflowNetwork_MultiZone_SmallOffice.idf @@ -627,6 +627,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +644,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +661,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +678,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +695,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +712,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +729,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +746,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +763,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +780,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +797,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +814,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +831,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +848,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +865,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +882,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +899,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +916,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +933,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +950,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +967,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +984,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +1001,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1018,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1035,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1052,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1069,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1086,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1103,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1120,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1137,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1123,6 +1154,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1171,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1188,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_SmallOffice_CoilHXAssistedDX.idf b/testfiles/AirflowNetwork_MultiZone_SmallOffice_CoilHXAssistedDX.idf index da40a5c5e84..0f8cdf561f4 100644 --- a/testfiles/AirflowNetwork_MultiZone_SmallOffice_CoilHXAssistedDX.idf +++ b/testfiles/AirflowNetwork_MultiZone_SmallOffice_CoilHXAssistedDX.idf @@ -652,6 +652,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +686,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +703,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +720,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +737,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +754,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +771,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +805,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +822,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +839,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +856,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +873,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +890,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +907,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +924,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +941,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +958,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +975,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +992,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -988,6 +1009,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1026,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1043,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1036,6 +1060,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1077,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1094,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1084,6 +1111,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1128,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1145,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1132,6 +1162,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1179,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1196,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1213,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_SmallOffice_GenericContam.idf b/testfiles/AirflowNetwork_MultiZone_SmallOffice_GenericContam.idf index cfa7a585678..2701c048b74 100644 --- a/testfiles/AirflowNetwork_MultiZone_SmallOffice_GenericContam.idf +++ b/testfiles/AirflowNetwork_MultiZone_SmallOffice_GenericContam.idf @@ -633,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +667,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +684,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +701,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +718,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +735,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +752,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -761,6 +769,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -777,6 +786,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +803,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +820,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +837,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +854,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +871,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +888,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +905,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +922,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +939,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +956,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +973,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -969,6 +990,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +1007,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1024,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1041,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1058,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1049,6 +1075,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1092,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1109,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1126,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1143,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1160,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1177,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1194,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_SmallOffice_HeatRecoveryHXSL.idf b/testfiles/AirflowNetwork_MultiZone_SmallOffice_HeatRecoveryHXSL.idf index dabecbf174c..4c2b4bf5629 100644 --- a/testfiles/AirflowNetwork_MultiZone_SmallOffice_HeatRecoveryHXSL.idf +++ b/testfiles/AirflowNetwork_MultiZone_SmallOffice_HeatRecoveryHXSL.idf @@ -622,6 +622,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +639,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +656,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +673,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +690,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +707,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +724,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +741,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +758,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +775,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +792,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +809,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +826,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +843,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +860,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +877,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +894,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +911,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +928,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +945,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +962,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +979,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +996,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1013,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1030,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1047,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1064,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1054,6 +1081,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1098,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1115,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1132,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1118,6 +1149,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1166,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1183,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_MultiZone_SmallOffice_VAV.idf b/testfiles/AirflowNetwork_MultiZone_SmallOffice_VAV.idf index 9541db812bf..c3f40cf019a 100644 --- a/testfiles/AirflowNetwork_MultiZone_SmallOffice_VAV.idf +++ b/testfiles/AirflowNetwork_MultiZone_SmallOffice_VAV.idf @@ -634,6 +634,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +668,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +702,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +719,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +736,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +753,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +770,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +787,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +821,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +838,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +855,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +906,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +940,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +957,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +974,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +991,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1008,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1002,6 +1025,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1042,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1059,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1050,6 +1076,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1093,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1082,6 +1110,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,6 +1127,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1114,6 +1144,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1130,6 +1161,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1178,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1195,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_Multizone_HorizontalOpening.idf b/testfiles/AirflowNetwork_Multizone_HorizontalOpening.idf index bce0ab346af..ac69e593b0e 100644 --- a/testfiles/AirflowNetwork_Multizone_HorizontalOpening.idf +++ b/testfiles/AirflowNetwork_Multizone_HorizontalOpening.idf @@ -531,6 +531,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +548,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +565,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +582,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +599,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +616,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -627,6 +633,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -643,6 +650,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +667,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +684,7 @@ FLOOR, !- Surface Type FLOOR SLAB 4 IN, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition WEST_ZONE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +701,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +718,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +735,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +752,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +769,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +786,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +803,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +820,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +837,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +854,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +871,7 @@ FLOOR, !- Surface Type FLOOR SLAB 4 IN, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition EAST_ZONE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +888,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +905,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +922,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +939,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +956,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +973,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +990,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +1007,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1024,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1041,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1058,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1075,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1092,7 @@ FLOOR, !- Surface Type FLOOR SLAB 4 IN, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition NORTH_ZONE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1109,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name NORTH_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_PressureControl.idf b/testfiles/AirflowNetwork_PressureControl.idf index e9367e518b9..2d97d893a42 100644 --- a/testfiles/AirflowNetwork_PressureControl.idf +++ b/testfiles/AirflowNetwork_PressureControl.idf @@ -627,6 +627,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +644,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +661,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +678,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +695,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +712,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +729,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +746,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +763,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +780,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +797,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +814,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +831,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +848,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +865,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +882,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +899,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +916,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +933,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +950,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +967,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +984,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +1001,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1018,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1035,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1052,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1069,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1086,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1103,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1120,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1137,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1123,6 +1154,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1171,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1188,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_Simple_House.idf b/testfiles/AirflowNetwork_Simple_House.idf index 59750a0ede3..8618e72c89f 100644 --- a/testfiles/AirflowNetwork_Simple_House.idf +++ b/testfiles/AirflowNetwork_Simple_House.idf @@ -484,6 +484,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -500,6 +501,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -516,6 +518,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +535,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +552,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -564,6 +569,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -580,6 +586,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +603,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +620,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +637,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +654,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +671,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +688,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +705,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +721,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +737,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +753,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +770,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +787,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +803,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +820,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +837,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +854,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +871,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +888,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowNetwork_Simple_SmallOffice.idf b/testfiles/AirflowNetwork_Simple_SmallOffice.idf index 552a835e9a0..68e12110d56 100644 --- a/testfiles/AirflowNetwork_Simple_SmallOffice.idf +++ b/testfiles/AirflowNetwork_Simple_SmallOffice.idf @@ -625,6 +625,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +642,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +659,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +676,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +693,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +710,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +727,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +744,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +761,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +778,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +795,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +812,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +829,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +846,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +863,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +880,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +897,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +914,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +931,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +948,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +965,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +982,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -977,6 +999,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -993,6 +1016,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1009,6 +1033,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1025,6 +1050,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1041,6 +1067,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1057,6 +1084,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1101,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1118,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1105,6 +1135,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1121,6 +1152,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1169,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1186,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/AirflowWindowsAndBetweenGlassBlinds.idf b/testfiles/AirflowWindowsAndBetweenGlassBlinds.idf index 0c60460264e..033724d10c5 100644 --- a/testfiles/AirflowWindowsAndBetweenGlassBlinds.idf +++ b/testfiles/AirflowWindowsAndBetweenGlassBlinds.idf @@ -696,6 +696,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +833,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +850,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +867,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +884,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +901,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +918,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +935,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +952,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -960,6 +969,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +986,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1003,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1020,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1037,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1054,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1071,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1088,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1105,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1122,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1139,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AirflowWindowsAndBetweenGlassShades.idf b/testfiles/AirflowWindowsAndBetweenGlassShades.idf index ffee7ab328f..3128adab4ce 100644 --- a/testfiles/AirflowWindowsAndBetweenGlassShades.idf +++ b/testfiles/AirflowWindowsAndBetweenGlassShades.idf @@ -710,6 +710,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +847,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +864,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +881,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +898,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +915,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +932,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +949,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +966,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +983,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1000,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1017,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1034,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1051,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1054,6 +1068,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1085,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1102,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1119,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1136,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1153,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/AtticRoof_RadiantBarriers.idf b/testfiles/AtticRoof_RadiantBarriers.idf index 912f09753c6..ab8a69636f6 100644 --- a/testfiles/AtticRoof_RadiantBarriers.idf +++ b/testfiles/AtticRoof_RadiantBarriers.idf @@ -1,13839 +1,13238 @@ - -Version,9.6; !- Version Identifier - -Timestep, - 4; !- Number of Timesteps per Hour - -Building, - Building 1, !- Name - , !- North Axis {deg} - Suburbs, !- Terrain - , !- Loads Convergence Tolerance Value {W} - , !- Temperature Convergence Tolerance Value {deltaC} - , !- Solar Distribution - , !- Maximum Number of Warmup Days - ; !- Minimum Number of Warmup Days - -Zone, - attic - unvented, !- Name - 0, !- Direction of Relative North {deg} - 0, !- X Origin {m} - 0, !- Y Origin {m} - 0, !- Z Origin {m} - , !- Type - 1, !- Multiplier - , !- Ceiling Height {m} - 104.690985541999, !- Volume {m3} - , !- Floor Area {m2} - ASTMC1340, !- Zone Inside Convection Algorithm - , !- Zone Outside Convection Algorithm - Yes; !- Part of Total Floor Area - -BuildingSurface:Detailed, - Roof:0, !- Name - Roof, !- Surface Type - Roof construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 10.8714269967499, 13.8324615907045, 2.4384, !- X,Y,Z Vertex 1 {m} - 10.8714267139162, 3.23874305942385, 7.73525926564035, !- X,Y,Z Vertex 2 {m} - 13.8324610602216, 3.23874298036942, 7.73525926564035, !- X,Y,Z Vertex 3 {m} - 13.8324613430553, 13.8324615116501, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Roof:180, !- Name - Roof, !- Surface Type - Roof construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -10.8714266274474, -13.8324618809526, 2.4384, !- X,Y,Z Vertex 1 {m} - -10.8714266274474, -3.2387433496719, 7.73525926564035, !- X,Y,Z Vertex 2 {m} - -13.8324609737528, -3.2387433496719, 7.73525926564035, !- X,Y,Z Vertex 3 {m} - -13.8324609737528, -13.8324618809526, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Roof:270, !- Name - Roof, !- Surface Type - Roof construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -13.8324620260767, 10.8714264427962, 2.4384, !- X,Y,Z Vertex 1 {m} - -3.23874349479593, 10.871426584213, 7.73525926564035, !- X,Y,Z Vertex 2 {m} - -3.23874353432315, 13.8324609305184, 7.73525926564035, !- X,Y,Z Vertex 3 {m} - -13.8324620656039, 13.8324607891015, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Roof:90, !- Name - Roof, !- Surface Type - Roof construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 13.8324617358286, -10.8714268120987, 2.4384, !- X,Y,Z Vertex 1 {m} - 3.23874320454788, -10.8714266706818, 7.73525926564035, !- X,Y,Z Vertex 2 {m} - 3.23874316502066, -13.8324610169872, 7.73525926564035, !- X,Y,Z Vertex 3 {m} - 13.8324616963014, -13.832461158404, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Surface 1 Reversed, !- Name - Floor, !- Surface Type - FloorBelowAttic construction Reversed, !- Construction Name - attic - unvented, !- Zone Name - Surface, !- Outside Boundary Condition - FloorBelowAttic, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -5.59953355200234, -5.59953355200235, 2.4384, !- X,Y,Z Vertex 1 {m} - -5.59953355200234, 5.59953355200235, 2.4384, !- X,Y,Z Vertex 2 {m} - 5.59953355200234, 5.59953355200235, 2.4384, !- X,Y,Z Vertex 3 {m} - 5.59953355200234, -5.59953355200235, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - WallAtticGable:0, !- Name - Wall, !- Surface Type - WallAtticGable construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -12.9034308016384, 13.832461232477, 0, !- X,Y,Z Vertex 1 {m} - -12.9034308016384, 13.832461232477, 2.4384, !- X,Y,Z Vertex 2 {m} - -10.1411808016384, 13.832461232477, 2.4384, !- X,Y,Z Vertex 3 {m} - -10.1411808016384, 13.832461232477, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - WallAtticGable:180, !- Name - Wall, !- Surface Type - WallAtticGable construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 12.9034311709409, -13.832460887978, 0, !- X,Y,Z Vertex 1 {m} - 12.9034311709409, -13.832460887978, 2.4384, !- X,Y,Z Vertex 2 {m} - 10.1411811709409, -13.8324609617252, 2.4384, !- X,Y,Z Vertex 3 {m} - 10.1411811709409, -13.8324609617252, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - WallAtticGable:270, !- Name - Wall, !- Surface Type - WallAtticGable construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -13.8324610094154, -7.40331489862066, 0, !- X,Y,Z Vertex 1 {m} - -13.8324610094154, -7.40331489862066, 2.4384, !- X,Y,Z Vertex 2 {m} - -13.8324611200363, -4.64106489862066, 2.4384, !- X,Y,Z Vertex 3 {m} - -13.8324611200363, -4.64106489862066, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - WallAtticGable:90, !- Name - Wall, !- Surface Type - WallAtticGable construction, !- Construction Name - attic - unvented, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 13.832461207071, 7.40331452931817, 0, !- X,Y,Z Vertex 1 {m} - 13.832461207071, 7.40331452931817, 2.4384, !- X,Y,Z Vertex 2 {m} - 13.8324612439446, 4.64106452931817, 2.4384, !- X,Y,Z Vertex 3 {m} - 13.8324612439446, 4.64106452931817, 0; !- X,Y,Z Vertex 4 {m} - -ZoneMixing, - whole house fan mix, !- Name - attic - unvented, !- Zone Name - Always On Continuous, !- Schedule Name - Flow/Zone, !- Design Flow Rate Calculation Method - 0, !- Design Flow Rate {m3/s} - , !- Flow Rate per Zone Floor Area {m3/s-m2} - , !- Flow Rate per Person {m3/s-person} - , !- Air Changes per Hour {1/hr} - living space; !- Source Zone Name - -Schedule:Constant, - Always On Continuous, !- Name - Fractional 1, !- Schedule Type Limits Name - 1; !- Hourly Value - -Zone, - central ac and furnace airloop ret air zone, !- Name - 0, !- Direction of Relative North {deg} - 0, !- X Origin {m} - 0, !- Y Origin {m} - 0, !- Z Origin {m} - , !- Type - 1, !- Multiplier - , !- Ceiling Height {m} - 1, !- Volume {m3} - , !- Floor Area {m2} - , !- Zone Inside Convection Algorithm - , !- Zone Outside Convection Algorithm - No; !- Part of Total Floor Area - -BuildingSurface:Detailed, - Surface 1, !- Name - Floor, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 0, !- X,Y,Z Vertex 1 {m} - 0, 1, 0, !- X,Y,Z Vertex 2 {m} - 1, 1, 0, !- X,Y,Z Vertex 3 {m} - 1, 0, 0; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 1, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -BuildingSurface:Detailed, - Surface 2, !- Name - Wall, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 1, 1, !- X,Y,Z Vertex 1 {m} - 0, 1, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 1; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 2, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -BuildingSurface:Detailed, - Surface 3, !- Name - Wall, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 1, 1, 1, !- X,Y,Z Vertex 1 {m} - 1, 1, 0, !- X,Y,Z Vertex 2 {m} - 0, 1, 0, !- X,Y,Z Vertex 3 {m} - 0, 1, 1; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 3, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -BuildingSurface:Detailed, - Surface 4, !- Name - Wall, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 1, 0, 1, !- X,Y,Z Vertex 1 {m} - 1, 0, 0, !- X,Y,Z Vertex 2 {m} - 1, 1, 0, !- X,Y,Z Vertex 3 {m} - 1, 1, 1; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 4, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -BuildingSurface:Detailed, - Surface 5, !- Name - Wall, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 1, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 1, 0, 0, !- X,Y,Z Vertex 3 {m} - 1, 0, 1; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 5, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -BuildingSurface:Detailed, - Surface 6, !- Name - Ceiling, !- Surface Type - AdiabaticConst, !- Construction Name - central ac and furnace airloop ret air zone, !- Zone Name - Adiabatic, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 1, 0, 1, !- X,Y,Z Vertex 1 {m} - 1, 1, 1, !- X,Y,Z Vertex 2 {m} - 0, 1, 1, !- X,Y,Z Vertex 3 {m} - 0, 0, 1; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ConvectionCoefficients, - Surface 6, !- Surface Name - Inside, !- Convection Coefficient 1 Location - Value, !- Convection Coefficient 1 Type - 30; !- Convection Coefficient 1 {W/m2-K} - -OtherEquipment, - central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Name - None, !- Fuel Type - central ac and furnace airloop ret air zone, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Name - None, !- Fuel Type - central ac and furnace airloop ret air zone, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0.17, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Name - None, !- Fuel Type - central ac and furnace airloop ret air zone, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -Zone, - living space, !- Name - 0, !- Direction of Relative North {deg} - 0, !- X Origin {m} - 0, !- Y Origin {m} - 0, !- Z Origin {m} - , !- Type - 1, !- Multiplier - , !- Ceiling Height {m} - 305.8219431936, !- Volume {m3} - , !- Floor Area {m2} - , !- Zone Inside Convection Algorithm - , !- Zone Outside Convection Algorithm - Yes; !- Part of Total Floor Area - -BuildingSurface:Detailed, - FloorBelowAttic, !- Name - Ceiling, !- Surface Type - FloorBelowAttic construction, !- Construction Name - living space, !- Zone Name - Surface, !- Outside Boundary Condition - Surface 1 Reversed, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 5.59953355200234, -5.59953355200235, 2.4384, !- X,Y,Z Vertex 1 {m} - 5.59953355200234, 5.59953355200235, 2.4384, !- X,Y,Z Vertex 2 {m} - -5.59953355200234, 5.59953355200235, 2.4384, !- X,Y,Z Vertex 3 {m} - -5.59953355200234, -5.59953355200235, 2.4384; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Slab, !- Name - Floor, !- Surface Type - Slab construction, !- Construction Name - living space, !- Zone Name - Foundation, !- Outside Boundary Condition - Foundation Kiva 1, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -6.858, -4.572, 0, !- X,Y,Z Vertex 1 {m} - -6.858, 4.572, 0, !- X,Y,Z Vertex 2 {m} - 6.858, 4.572, 0, !- X,Y,Z Vertex 3 {m} - 6.858, -4.572, 0; !- X,Y,Z Vertex 4 {m} - -SurfaceProperty:ExposedFoundationPerimeter, - Slab, !- Surface Name - TotalExposedPerimeter, !- Exposed Perimeter Calculation Method - 45.72, !- Total Exposed Perimeter {m} - ; !- Exposed Perimeter Fraction {dimensionless} - -BuildingSurface:Detailed, - surface DoorNorth, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction 1, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 8.11351039836156, 13.8324615068116, 0, !- X,Y,Z Vertex 1 {m} - 8.11351039836156, 13.8324615068116, 2.034016, !- X,Y,Z Vertex 2 {m} - 9.94339645533308, 13.8324615068116, 2.034016, !- X,Y,Z Vertex 3 {m} - 9.94339645533308, 13.8324615068116, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - DoorNorth, !- Name - Door, !- Surface Type - Door, !- Construction Name - surface DoorNorth, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 8.11451039836156, 13.8324615068116, 0, !- X,Y,Z Vertex 1 {m} - 8.11451039836156, 13.8324615068116, 2.033016, !- X,Y,Z Vertex 2 {m} - 9.94239645533308, 13.8324615068116, 2.033016, !- X,Y,Z Vertex 3 {m} - 9.94239645533308, 13.8324615068116, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - surface DoorSouth, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction 1, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -8.11351002905906, -13.8324617234281, 0, !- X,Y,Z Vertex 1 {m} - -8.11351002905906, -13.8324617234281, 2.034016, !- X,Y,Z Vertex 2 {m} - -9.94339608603057, -13.8324617722829, 2.034016, !- X,Y,Z Vertex 3 {m} - -9.94339608603057, -13.8324617722829, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - DoorSouth, !- Name - Door, !- Surface Type - Door 1, !- Construction Name - surface DoorSouth, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - -8.11451002905906, -13.8324617234548, 0, !- X,Y,Z Vertex 1 {m} - -8.11451002905906, -13.8324617234548, 2.033016, !- X,Y,Z Vertex 2 {m} - -9.94239608603057, -13.8324617722562, 2.033016, !- X,Y,Z Vertex 3 {m} - -9.94239608603057, -13.8324617722562, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - surface WindowEast, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 13.8324615418629, -4.45499627068183, 0, !- X,Y,Z Vertex 1 {m} - 13.8324615418629, -4.45499627068183, 1.2202, !- X,Y,Z Vertex 2 {m} - 13.8324616151282, -9.94339627068183, 1.2202, !- X,Y,Z Vertex 3 {m} - 13.8324616151282, -9.94339627068183, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - WindowEast, !- Name - Window, !- Surface Type - WindowConstruction 2, !- Construction Name - surface WindowEast, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 13.8324615418763, -4.45599627068183, 0.001, !- X,Y,Z Vertex 1 {m} - 13.8324615418763, -4.45599627068183, 1.2202, !- X,Y,Z Vertex 2 {m} - 13.8324616151149, -9.94239627068183, 1.2202, !- X,Y,Z Vertex 3 {m} - 13.8324616151149, -9.94239627068183, 0.001; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - surface WindowNorth, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -1.04512000163844, 13.8324614272806, 0, !- X,Y,Z Vertex 1 {m} - -1.04512000163844, 13.8324614272806, 1.2202, !- X,Y,Z Vertex 2 {m} - 7.18647999836156, 13.8324614272806, 1.2202, !- X,Y,Z Vertex 3 {m} - 7.18647999836156, 13.8324614272806, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - WindowNorth, !- Name - Window, !- Surface Type - WindowConstruction, !- Construction Name - surface WindowNorth, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - -1.04412000163844, 13.8324614272806, 0.001, !- X,Y,Z Vertex 1 {m} - -1.04412000163844, 13.8324614272806, 1.2202, !- X,Y,Z Vertex 2 {m} - 7.18547999836156, 13.8324614272806, 1.2202, !- X,Y,Z Vertex 3 {m} - 7.18547999836156, 13.8324614272806, 0.001; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - surface WindowSouth, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 1.04512037094094, -13.8324613993777, 0, !- X,Y,Z Vertex 1 {m} - 1.04512037094094, -13.8324613993777, 1.2202, !- X,Y,Z Vertex 2 {m} - -7.18647962905906, -13.832461619147, 1.2202, !- X,Y,Z Vertex 3 {m} - -7.18647962905906, -13.832461619147, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - WindowSouth, !- Name - Window, !- Surface Type - WindowConstruction 1, !- Construction Name - surface WindowSouth, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 1.04412037094094, -13.8324613994044, 0.001, !- X,Y,Z Vertex 1 {m} - 1.04412037094094, -13.8324613994044, 1.2202, !- X,Y,Z Vertex 2 {m} - -7.18547962905906, -13.8324616191203, 1.2202, !- X,Y,Z Vertex 3 {m} - -7.18547962905906, -13.8324616191203, 0.001; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - surface WindowWest, !- Name - Wall, !- Surface Type - AdiabaticWallConstruction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -13.8324616608036, 4.45499590137932, 0, !- X,Y,Z Vertex 1 {m} - -13.8324616608036, 4.45499590137932, 1.2202, !- X,Y,Z Vertex 2 {m} - -13.8324618805996, 9.94339590137932, 1.2202, !- X,Y,Z Vertex 3 {m} - -13.8324618805996, 9.94339590137932, 0; !- X,Y,Z Vertex 4 {m} - -FenestrationSurface:Detailed, - WindowWest, !- Name - Window, !- Surface Type - WindowConstruction 3, !- Construction Name - surface WindowWest, !- Building Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - -13.8324616608436, 4.45599590137932, 0.001, !- X,Y,Z Vertex 1 {m} - -13.8324616608436, 4.45599590137932, 1.2202, !- X,Y,Z Vertex 2 {m} - -13.8324618805595, 9.94239590137932, 1.2202, !- X,Y,Z Vertex 3 {m} - -13.8324618805595, 9.94239590137932, 0.001; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Wall:0, !- Name - Wall, !- Surface Type - Wall construction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -9.21215040163844, 13.8324613116327, 0, !- X,Y,Z Vertex 1 {m} - -9.21215040163844, 13.8324613116327, 2.4384, !- X,Y,Z Vertex 2 {m} - -1.97315040163844, 13.8324613116327, 2.4384, !- X,Y,Z Vertex 3 {m} - -1.97315040163844, 13.8324613116327, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Wall:180, !- Name - Wall, !- Surface Type - Wall construction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 9.21215077094093, -13.8324610656844, 0, !- X,Y,Z Vertex 1 {m} - 9.21215077094093, -13.8324610656844, 2.4384, !- X,Y,Z Vertex 2 {m} - 1.97315077094093, -13.832461258953, 2.4384, !- X,Y,Z Vertex 3 {m} - 1.97315077094093, -13.832461258953, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Wall:270, !- Name - Wall, !- Surface Type - Wall construction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -13.8324612363972, -3.71203449862067, 0, !- X,Y,Z Vertex 1 {m} - -13.8324612363972, -3.71203449862067, 2.4384, !- X,Y,Z Vertex 2 {m} - -13.8324615263001, 3.52696550137933, 2.4384, !- X,Y,Z Vertex 3 {m} - -13.8324615263001, 3.52696550137933, 0; !- X,Y,Z Vertex 4 {m} - -BuildingSurface:Detailed, - Wall:90, !- Name - Wall, !- Surface Type - Wall construction, !- Construction Name - living space, !- Zone Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 13.832461335502, 3.71203412931817, 0, !- X,Y,Z Vertex 1 {m} - 13.832461335502, 3.71203412931817, 2.4384, !- X,Y,Z Vertex 2 {m} - 13.8324614321363, -3.52696587068183, 2.4384, !- X,Y,Z Vertex 3 {m} - 13.8324614321363, -3.52696587068183, 0; !- X,Y,Z Vertex 4 {m} - -InternalMass, - furniture mass living space living, !- Name - furniture construction living space, !- Construction Name - living space, !- Zone or ZoneList Name - 125.419104; !- Surface Area {m2} - -InternalMass, - living space Living Partition, !- Name - PartitionWallConstruction, !- Construction Name - living space, !- Zone or ZoneList Name - 125.419104; !- Surface Area {m2} - -People, - occupants, !- Name - living space, !- Zone or ZoneList Name - occupants schedule, !- Number of People Schedule Name - People, !- Number of People Calculation Method - 3, !- Number of People - , !- People per Zone Floor Area {person/m2} - , !- Zone Floor Area per Person {m2/person} - 0.314170909090909, !- Fraction Radiant - 0.563030303030303, !- Sensible Heat Fraction - occupants activity schedule, !- Activity Level Schedule Name - 0, !- Carbon Dioxide Generation Rate {m3/s-W} - No, !- Enable ASHRAE 55 Comfort Warnings - ZoneAveraged; !- Mean Radiant Temperature Calculation Type - -Lights, - interior lighting, !- Name - living space, !- Zone or ZoneList Name - lighting schedule, !- Schedule Name - LightingLevel, !- Design Level Calculation Method - 237.287858616023, !- Lighting Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Return Air Fraction - 0.6, !- Fraction Radiant - 0.2, !- Fraction Visible - 1, !- Fraction Replaceable - interior lighting; !- End-Use Subcategory - -ScheduleTypeLimits, - Fractional, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 1, !- Upper Limit Value {BasedOnField A3} - Continuous; !- Numeric Type - -Schedule:Day:Interval, - lighting schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0548505293079881, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.150503417627477, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.353340478582396, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.447143266915802, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.475187707859644, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.488459733868994, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.475178850084529, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.45677854570346, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.443497661918995, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.439589567078536, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.440884458482272, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.454008636080669, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.504822808865369, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.636442743327019, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.841479462203027, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.996098328662285, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.962575616852304, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.773108419391735, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.674739465630487, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Day:Interval, - lighting schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0545684112394379, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.149096652382691, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.350037782120869, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.442963789683634, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.468465911731104, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.4793336975684, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.46617695106947, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.44794863553161, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.43479188903268, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.430920323409176, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.431505458221858, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.439276315280207, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.471458282969571, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.564331759325521, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.73611664511757, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.918219523465001, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.974482280369358, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.854567392713844, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.517532525930061, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Jan1-Jan27, !- Name - lighting schedule allday1, !- Sunday Schedule:Day Name - lighting schedule allday1, !- Monday Schedule:Day Name - lighting schedule allday1, !- Tuesday Schedule:Day Name - lighting schedule allday1, !- Wednesday Schedule:Day Name - lighting schedule allday1, !- Thursday Schedule:Day Name - lighting schedule allday1, !- Friday Schedule:Day Name - lighting schedule allday1, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Jan28-Feb3, !- Name - lighting schedule allday1, !- Sunday Schedule:Day Name - lighting schedule allday1, !- Monday Schedule:Day Name - lighting schedule allday1, !- Tuesday Schedule:Day Name - lighting schedule allday1, !- Wednesday Schedule:Day Name - lighting schedule allday2, !- Thursday Schedule:Day Name - lighting schedule allday2, !- Friday Schedule:Day Name - lighting schedule allday2, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0537976503721666, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.145253298407914, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.341014647934173, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.431545245976879, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.450320985314924, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.454839626518517, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.442022029377696, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.424263596079687, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.411445998938866, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.407674232988191, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.407952629865843, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.413135478470844, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.435069275021683, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.502214284285284, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.640370823877187, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.818581275958844, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.92892273647281, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.882823122453402, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.54648505757253, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Feb4-Feb24, !- Name - lighting schedule allday2, !- Sunday Schedule:Day Name - lighting schedule allday2, !- Monday Schedule:Day Name - lighting schedule allday2, !- Tuesday Schedule:Day Name - lighting schedule allday2, !- Wednesday Schedule:Day Name - lighting schedule allday2, !- Thursday Schedule:Day Name - lighting schedule allday2, !- Friday Schedule:Day Name - lighting schedule allday2, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Feb25-Mar3, !- Name - lighting schedule allday2, !- Sunday Schedule:Day Name - lighting schedule allday2, !- Monday Schedule:Day Name - lighting schedule allday2, !- Tuesday Schedule:Day Name - lighting schedule allday2, !- Wednesday Schedule:Day Name - lighting schedule allday3, !- Thursday Schedule:Day Name - lighting schedule allday3, !- Friday Schedule:Day Name - lighting schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.052744771436345, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.140003179188351, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.32868881728595, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.415947225037956, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.426053569311475, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.422418132250583, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.410063821753407, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.392947259538458, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.380592949041282, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.37695751198039, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.376660031622233, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.377300552420036, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.381054358525559, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.397442131356291, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.448538191169282, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.559860831729609, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.721252437291489, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.855187098629428, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.605410010254001, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Mar4-Mar31, !- Name - lighting schedule allday3, !- Sunday Schedule:Day Name - lighting schedule allday3, !- Monday Schedule:Day Name - lighting schedule allday3, !- Tuesday Schedule:Day Name - lighting schedule allday3, !- Wednesday Schedule:Day Name - lighting schedule allday3, !- Thursday Schedule:Day Name - lighting schedule allday3, !- Friday Schedule:Day Name - lighting schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0516918925005234, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.134753059968788, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.316362986637727, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.400349204099032, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.402385459849299, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.391195251065195, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.379304227211663, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.362829536079775, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.350938512226242, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.347439404055134, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.347149297219897, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.347684145573138, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.350637326327548, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.363183704716566, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.402417903305008, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.491190094760679, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.631439152624096, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.772248316574811, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.579078515037426, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Apr1-Apr28, !- Name - lighting schedule allday4, !- Sunday Schedule:Day Name - lighting schedule allday4, !- Monday Schedule:Day Name - lighting schedule allday4, !- Tuesday Schedule:Day Name - lighting schedule allday4, !- Wednesday Schedule:Day Name - lighting schedule allday4, !- Thursday Schedule:Day Name - lighting schedule allday4, !- Friday Schedule:Day Name - lighting schedule allday4, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Apr29-May5, !- Name - lighting schedule allday4, !- Sunday Schedule:Day Name - lighting schedule allday4, !- Monday Schedule:Day Name - lighting schedule allday5, !- Tuesday Schedule:Day Name - lighting schedule allday5, !- Wednesday Schedule:Day Name - lighting schedule allday5, !- Thursday Schedule:Day Name - lighting schedule allday5, !- Friday Schedule:Day Name - lighting schedule allday5, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0509211316332521, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.130909705994011, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.30733985245103, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.388930660392277, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.385439146499949, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.369098406148974, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.357546531653551, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.341541722761514, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.329989848266091, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.326590539767811, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.326317868521187, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.32686340171009, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.329604206146784, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.340552724071831, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.373640014970614, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.448206765388673, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.570019656095813, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.704723927574059, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.551643186293296, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.248397578831761; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - May6-May26, !- Name - lighting schedule allday5, !- Sunday Schedule:Day Name - lighting schedule allday5, !- Monday Schedule:Day Name - lighting schedule allday5, !- Tuesday Schedule:Day Name - lighting schedule allday5, !- Wednesday Schedule:Day Name - lighting schedule allday5, !- Thursday Schedule:Day Name - lighting schedule allday5, !- Friday Schedule:Day Name - lighting schedule allday5, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - May27-Jun2, !- Name - lighting schedule allday5, !- Sunday Schedule:Day Name - lighting schedule allday5, !- Monday Schedule:Day Name - lighting schedule allday5, !- Tuesday Schedule:Day Name - lighting schedule allday5, !- Wednesday Schedule:Day Name - lighting schedule allday5, !- Thursday Schedule:Day Name - lighting schedule allday6, !- Friday Schedule:Day Name - lighting schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0506390135647019, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.129502940749224, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.304037155989504, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.384751183160109, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.379316656928395, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.361170982962351, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.349743245752463, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.333910425703636, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.322482688493747, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.319119909212422, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.318849040840008, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.319380916269395, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.322063760430011, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.332822052289174, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.365464595063093, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.439343451100766, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.560617542850604, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.695585680073726, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.547506420320013, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Jun3-Jun30, !- Name - lighting schedule allday6, !- Sunday Schedule:Day Name - lighting schedule allday6, !- Monday Schedule:Day Name - lighting schedule allday6, !- Tuesday Schedule:Day Name - lighting schedule allday6, !- Wednesday Schedule:Day Name - lighting schedule allday6, !- Thursday Schedule:Day Name - lighting schedule allday6, !- Friday Schedule:Day Name - lighting schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday8, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0509211316332521, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.130909705994011, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.30733985245103, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.388930660392277, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.385439146499949, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.369098406148974, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.357546531653551, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.341541722761514, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.329989848266091, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.326590539767811, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.326317575889368, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.326912359091747, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.330140197883059, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.343624122006987, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.385055895139025, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.47704424063142, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.619219238740813, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.757543962644755, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.569318381743293, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Jul1-Jul28, !- Name - lighting schedule allday7, !- Sunday Schedule:Day Name - lighting schedule allday7, !- Monday Schedule:Day Name - lighting schedule allday7, !- Tuesday Schedule:Day Name - lighting schedule allday7, !- Wednesday Schedule:Day Name - lighting schedule allday7, !- Thursday Schedule:Day Name - lighting schedule allday7, !- Friday Schedule:Day Name - lighting schedule allday7, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Jul29-Aug4, !- Name - lighting schedule allday7, !- Sunday Schedule:Day Name - lighting schedule allday7, !- Monday Schedule:Day Name - lighting schedule allday7, !- Tuesday Schedule:Day Name - lighting schedule allday8, !- Wednesday Schedule:Day Name - lighting schedule allday8, !- Thursday Schedule:Day Name - lighting schedule allday8, !- Friday Schedule:Day Name - lighting schedule allday8, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0516918925005235, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.134753059968788, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.316362986637727, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.400349204099032, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.402385459849299, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.391195251065195, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.379304227211663, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.362829536079775, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.350938512226242, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.347439404055134, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.34722143730575, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.348418718487159, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.354705679614567, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.379344126666108, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.447925117368735, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.579796892685269, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.743589460393696, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.845930126466994, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.582383675705355, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.248397578831761; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Aug5-Aug25, !- Name - lighting schedule allday8, !- Sunday Schedule:Day Name - lighting schedule allday8, !- Monday Schedule:Day Name - lighting schedule allday8, !- Tuesday Schedule:Day Name - lighting schedule allday8, !- Wednesday Schedule:Day Name - lighting schedule allday8, !- Thursday Schedule:Day Name - lighting schedule allday8, !- Friday Schedule:Day Name - lighting schedule allday8, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Aug26-Sep1, !- Name - lighting schedule allday8, !- Sunday Schedule:Day Name - lighting schedule allday8, !- Monday Schedule:Day Name - lighting schedule allday8, !- Tuesday Schedule:Day Name - lighting schedule allday8, !- Wednesday Schedule:Day Name - lighting schedule allday8, !- Thursday Schedule:Day Name - lighting schedule allday8, !- Friday Schedule:Day Name - lighting schedule allday9, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.052744771436345, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.140003179188351, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.32868881728595, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.415947225037955, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.426053569311475, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.422418132250583, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.410063821753407, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.392947259538458, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.380592949041282, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.37695751198039, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.376912668654098, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.379718685757143, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.393281629199303, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.440641733407462, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.553198708049517, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.726515233513421, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.874888902156756, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.886623274095023, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.562250710954033, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.24839757883176; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Sep2-Sep29, !- Name - lighting schedule allday9, !- Sunday Schedule:Day Name - lighting schedule allday9, !- Monday Schedule:Day Name - lighting schedule allday9, !- Tuesday Schedule:Day Name - lighting schedule allday9, !- Wednesday Schedule:Day Name - lighting schedule allday9, !- Thursday Schedule:Day Name - lighting schedule allday9, !- Friday Schedule:Day Name - lighting schedule allday9, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Sep30-Oct6, !- Name - lighting schedule allday9, !- Sunday Schedule:Day Name - lighting schedule allday10, !- Monday Schedule:Day Name - lighting schedule allday10, !- Tuesday Schedule:Day Name - lighting schedule allday10, !- Wednesday Schedule:Day Name - lighting schedule allday10, !- Thursday Schedule:Day Name - lighting schedule allday10, !- Friday Schedule:Day Name - lighting schedule allday10, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288737, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0537976503721666, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.145253298407914, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.341014647934173, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.431545245976879, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.450320985314924, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.454839626518517, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.442022029377696, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.424263596079687, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.411445998938866, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.407674232988191, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.411095638743563, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.434714768556816, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.506521350308708, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.658131460958639, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.850352967429085, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 0.95421373172946, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.879153228256593, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.691808401469215, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.602727377136004, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.248397578831761; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Oct7-Oct27, !- Name - lighting schedule allday10, !- Sunday Schedule:Day Name - lighting schedule allday10, !- Monday Schedule:Day Name - lighting schedule allday10, !- Tuesday Schedule:Day Name - lighting schedule allday10, !- Wednesday Schedule:Day Name - lighting schedule allday10, !- Thursday Schedule:Day Name - lighting schedule allday10, !- Friday Schedule:Day Name - lighting schedule allday10, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Oct28-Nov3, !- Name - lighting schedule allday10, !- Sunday Schedule:Day Name - lighting schedule allday10, !- Monday Schedule:Day Name - lighting schedule allday10, !- Tuesday Schedule:Day Name - lighting schedule allday10, !- Wednesday Schedule:Day Name - lighting schedule allday11, !- Thursday Schedule:Day Name - lighting schedule allday11, !- Friday Schedule:Day Name - lighting schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Day:Interval, - lighting schedule allday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.123339999072184, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0740039994433106, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.0493359996288738, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.0545684112394379, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.149096652382691, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.350037782120869, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.442963789683634, !- Value Until Time 7 - 09:00, !- Time 8 {hh:mm} - 0.468465911731105, !- Value Until Time 8 - 10:00, !- Time 9 {hh:mm} - 0.4793336975684, !- Value Until Time 9 - 11:00, !- Time 10 {hh:mm} - 0.46617695106947, !- Value Until Time 10 - 12:00, !- Time 11 {hh:mm} - 0.44794863553161, !- Value Until Time 11 - 13:00, !- Time 12 {hh:mm} - 0.43479188903268, !- Value Until Time 12 - 14:00, !- Time 13 {hh:mm} - 0.430920323409176, !- Value Until Time 13 - 15:00, !- Time 14 {hh:mm} - 0.433881625239621, !- Value Until Time 14 - 16:00, !- Time 15 {hh:mm} - 0.456688044793082, !- Value Until Time 15 - 17:00, !- Time 16 {hh:mm} - 0.531613155257721, !- Value Until Time 16 - 18:00, !- Time 17 {hh:mm} - 0.695538708857989, !- Value Until Time 17 - 19:00, !- Time 18 {hh:mm} - 0.902035899694452, !- Value Until Time 18 - 20:00, !- Time 19 {hh:mm} - 1, !- Value Until Time 19 - 21:00, !- Time 20 {hh:mm} - 0.897458386263446, !- Value Until Time 20 - 22:00, !- Time 21 {hh:mm} - 0.690416938532256, !- Value Until Time 21 - 23:00, !- Time 22 {hh:mm} - 0.592033040472716, !- Value Until Time 22 - 24:00, !- Time 23 {hh:mm} - 0.248397578831761; !- Value Until Time 23 - -Schedule:Week:Daily, - lighting schedule Week Rule - Nov4-Nov24, !- Name - lighting schedule allday11, !- Sunday Schedule:Day Name - lighting schedule allday11, !- Monday Schedule:Day Name - lighting schedule allday11, !- Tuesday Schedule:Day Name - lighting schedule allday11, !- Wednesday Schedule:Day Name - lighting schedule allday11, !- Thursday Schedule:Day Name - lighting schedule allday11, !- Friday Schedule:Day Name - lighting schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Nov25-Dec1, !- Name - lighting schedule allday11, !- Sunday Schedule:Day Name - lighting schedule allday11, !- Monday Schedule:Day Name - lighting schedule allday11, !- Tuesday Schedule:Day Name - lighting schedule allday11, !- Wednesday Schedule:Day Name - lighting schedule allday11, !- Thursday Schedule:Day Name - lighting schedule allday11, !- Friday Schedule:Day Name - lighting schedule allday12, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - lighting schedule Week Rule - Dec2-Dec31, !- Name - lighting schedule allday12, !- Sunday Schedule:Day Name - lighting schedule allday12, !- Monday Schedule:Day Name - lighting schedule allday12, !- Tuesday Schedule:Day Name - lighting schedule allday12, !- Wednesday Schedule:Day Name - lighting schedule allday12, !- Thursday Schedule:Day Name - lighting schedule allday12, !- Friday Schedule:Day Name - lighting schedule allday12, !- Saturday Schedule:Day Name - Schedule Day 16, !- Holiday Schedule:Day Name - Schedule Day 16, !- SummerDesignDay Schedule:Day Name - Schedule Day 16, !- WinterDesignDay Schedule:Day Name - Schedule Day 16, !- CustomDay1 Schedule:Day Name - Schedule Day 16; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - lighting schedule, !- Name - Fractional, !- Schedule Type Limits Name - lighting schedule Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 27, !- End Day 1 - lighting schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 28, !- Start Day 2 - 2, !- End Month 2 - 3, !- End Day 2 - lighting schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 - 2, !- Start Month 3 - 4, !- Start Day 3 - 2, !- End Month 3 - 24, !- End Day 3 - lighting schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 - 2, !- Start Month 4 - 25, !- Start Day 4 - 3, !- End Month 4 - 3, !- End Day 4 - lighting schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 5 - 3, !- Start Month 5 - 4, !- Start Day 5 - 3, !- End Month 5 - 31, !- End Day 5 - lighting schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 6 - 4, !- Start Month 6 - 1, !- Start Day 6 - 4, !- End Month 6 - 28, !- End Day 6 - lighting schedule Week Rule - Apr29-May5, !- Schedule:Week Name 7 - 4, !- Start Month 7 - 29, !- Start Day 7 - 5, !- End Month 7 - 5, !- End Day 7 - lighting schedule Week Rule - May6-May26, !- Schedule:Week Name 8 - 5, !- Start Month 8 - 6, !- Start Day 8 - 5, !- End Month 8 - 26, !- End Day 8 - lighting schedule Week Rule - May27-Jun2, !- Schedule:Week Name 9 - 5, !- Start Month 9 - 27, !- Start Day 9 - 6, !- End Month 9 - 2, !- End Day 9 - lighting schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 10 - 6, !- Start Month 10 - 3, !- Start Day 10 - 6, !- End Month 10 - 30, !- End Day 10 - lighting schedule Week Rule - Jul1-Jul28, !- Schedule:Week Name 11 - 7, !- Start Month 11 - 1, !- Start Day 11 - 7, !- End Month 11 - 28, !- End Day 11 - lighting schedule Week Rule - Jul29-Aug4, !- Schedule:Week Name 12 - 7, !- Start Month 12 - 29, !- Start Day 12 - 8, !- End Month 12 - 4, !- End Day 12 - lighting schedule Week Rule - Aug5-Aug25, !- Schedule:Week Name 13 - 8, !- Start Month 13 - 5, !- Start Day 13 - 8, !- End Month 13 - 25, !- End Day 13 - lighting schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 14 - 8, !- Start Month 14 - 26, !- Start Day 14 - 9, !- End Month 14 - 1, !- End Day 14 - lighting schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 15 - 9, !- Start Month 15 - 2, !- Start Day 15 - 9, !- End Month 15 - 29, !- End Day 15 - lighting schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 16 - 9, !- Start Month 16 - 30, !- Start Day 16 - 10, !- End Month 16 - 6, !- End Day 16 - lighting schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 17 - 10, !- Start Month 17 - 7, !- Start Day 17 - 10, !- End Month 17 - 27, !- End Day 17 - lighting schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 18 - 10, !- Start Month 18 - 28, !- Start Day 18 - 11, !- End Month 18 - 3, !- End Day 18 - lighting schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 19 - 11, !- Start Month 19 - 4, !- Start Day 19 - 11, !- End Month 19 - 24, !- End Day 19 - lighting schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 20 - 11, !- Start Month 20 - 25, !- Start Day 20 - 12, !- End Month 20 - 1, !- End Day 20 - lighting schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 21 - 12, !- Start Month 21 - 2, !- Start Day 21 - 12, !- End Month 21 - 31; !- End Day 21 - -Schedule:Day:Interval, - Schedule Day 16, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -ElectricEquipment, - clothes dryer, !- Name - living space, !- Zone or ZoneList Name - clothes dryer schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 80533.1207326169, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.015, !- Fraction Latent - 0.081, !- Fraction Radiant - 0.85, !- Fraction Lost - clothes dryer; !- End-Use Subcategory - -ElectricEquipment, - clothes washer, !- Name - living space, !- Zone or ZoneList Name - clothes washer schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 19448.4454267132, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.03, !- Fraction Latent - 0.162, !- Fraction Radiant - 0.7, !- Fraction Lost - clothes washer; !- End-Use Subcategory - -ElectricEquipment, - cooking range, !- Name - living space, !- Zone or ZoneList Name - cooking range, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 201.330571702405, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.0799999999999999, !- Fraction Latent - 0.432, !- Fraction Radiant - 0.2, !- Fraction Lost - cooking range; !- End-Use Subcategory - -ElectricEquipment, - dishwasher, !- Name - living space, !- Zone or ZoneList Name - dishwasher schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 9828.32941160075, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.3, !- Fraction Latent - 0.18, !- Fraction Radiant - 0.4, !- Fraction Lost - dishwasher; !- End-Use Subcategory - -ElectricEquipment, - fridge, !- Name - living space, !- Zone or ZoneList Name - fridge, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 97.4834259275168, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Fraction Latent - 0.6, !- Fraction Radiant - 0, !- Fraction Lost - fridge; !- End-Use Subcategory - -ElectricEquipment, - mech vent house fan, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - mech vent; !- End-Use Subcategory - -ElectricEquipment, - mech vent house fan cfis, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0, !- Fraction Lost - mech vent; !- End-Use Subcategory - -ElectricEquipment, - misc plug loads, !- Name - living space, !- Zone or ZoneList Name - misc plug loads schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 224.435610249806, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.045, !- Fraction Latent - 0.513, !- Fraction Radiant - 0.1, !- Fraction Lost - misc plug loads; !- End-Use Subcategory - -ElectricEquipment, - misc tv, !- Name - living space, !- Zone or ZoneList Name - misc tv schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 274.705334312761, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Fraction Latent - 0.6, !- Fraction Radiant - 0, !- Fraction Lost - misc tv; !- End-Use Subcategory - -ElectricEquipment, - whole house fan, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Watts per Zone Floor Area {W/m2} - , !- Watts per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - whole house fan; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_RetCondToDZ equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupCondToDZ equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupLatLkToDZ equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0.17, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupSensLkToDZ equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0.83, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - mech vent house fan latent load equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 1, !- Fraction Latent - 0, !- Fraction Radiant - 0, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - mech vent house fan sensible load equip, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 0, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - General; !- End-Use Subcategory - -OtherEquipment, - water heater EC adjustment, !- Name - Electricity, !- Fuel Type - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 0.01, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0, !- Fraction Radiant - 1, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - water heater EC adjustment; !- End-Use Subcategory - -OtherEquipment, - water latent, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - dhw fixtures schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - 5740.21365641083, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 1, !- Fraction Latent - 0, !- Fraction Radiant - 0, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - water latent; !- End-Use Subcategory - -OtherEquipment, - water sensible, !- Name - None, !- Fuel Type - living space, !- Zone or ZoneList Name - dhw fixtures schedule, !- Schedule Name - EquipmentLevel, !- Design Level Calculation Method - -5657.22261559525, !- Design Level {W} - , !- Power per Zone Floor Area {W/m2} - , !- Power per Person {W/person} - 0, !- Fraction Latent - 0.6, !- Fraction Radiant - 0, !- Fraction Lost - , !- Carbon Dioxide Generation Rate {m3/s-W} - water sensible; !- End-Use Subcategory - -ZoneInfiltration:DesignFlowRate, - infil flow, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - Flow/Zone, !- Design Flow Rate Calculation Method - 0, !- 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} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -ZoneInfiltration:DesignFlowRate, - natural vent flow, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - Flow/Zone, !- Design Flow Rate Calculation Method - 0, !- 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} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -ZoneInfiltration:DesignFlowRate, - whole house fan flow, !- Name - living space, !- Zone or ZoneList Name - Always On Discrete, !- Schedule Name - Flow/Zone, !- Design Flow Rate Calculation Method - 0, !- 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} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -ZoneControl:Thermostat, - living space Thermostat, !- Name - living space, !- Zone or ZoneList Name - living space Thermostat Schedule, !- Control Type Schedule Name - ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type - living space temperature setpoint, !- Control 1 Name - , !- Control 2 Object Type - , !- Control 2 Name - , !- Control 3 Object Type - , !- Control 3 Name - , !- Control 4 Object Type - , !- Control 4 Name - 0; !- Temperature Difference Between Cutout And Setpoint {deltaC} - -Schedule:Compact, - living space Thermostat Schedule, !- Name - living space Thermostat Schedule Type Limits, !- Schedule Type Limits Name - Through: 12/31, !- Field 1 - For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 4; !- Field 4 - -ScheduleTypeLimits, - living space Thermostat Schedule Type Limits, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 4, !- Upper Limit Value {BasedOnField A3} - DISCRETE; !- Numeric Type - -ThermostatSetpoint:DualSetpoint, - living space temperature setpoint, !- Name - heating setpoint, !- Heating Setpoint Temperature Schedule Name - cooling setpoint; !- Cooling Setpoint Temperature Schedule Name - -ScheduleTypeLimits, - Temperature, !- Name - , !- Lower Limit Value {BasedOnField A3} - , !- Upper Limit Value {BasedOnField A3} - Continuous, !- Numeric Type - temperature; !- Unit Type - -Schedule:Day:Interval, - heating setpoint allday1, !- Name - Temperature, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 20; !- Value Until Time 1 - -Schedule:Week:Daily, - heating setpoint Week Rule - Jan1-Dec31, !- Name - heating setpoint allday1, !- Sunday Schedule:Day Name - heating setpoint allday1, !- Monday Schedule:Day Name - heating setpoint allday1, !- Tuesday Schedule:Day Name - heating setpoint allday1, !- Wednesday Schedule:Day Name - heating setpoint allday1, !- Thursday Schedule:Day Name - heating setpoint allday1, !- Friday Schedule:Day Name - heating setpoint allday1, !- Saturday Schedule:Day Name - Schedule Day 3, !- Holiday Schedule:Day Name - Schedule Day 3, !- SummerDesignDay Schedule:Day Name - Schedule Day 3, !- WinterDesignDay Schedule:Day Name - Schedule Day 3, !- CustomDay1 Schedule:Day Name - Schedule Day 3; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - heating setpoint, !- Name - Temperature, !- Schedule Type Limits Name - heating setpoint Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 12, !- End Month 1 - 31; !- End Day 1 - -Schedule:Day:Interval, - Schedule Day 3, !- Name - Temperature, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - cooling setpoint allday1, !- Name - Temperature, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 25.5555555555556; !- Value Until Time 1 - -Schedule:Week:Daily, - cooling setpoint Week Rule - Jan1-Dec31, !- Name - cooling setpoint allday1, !- Sunday Schedule:Day Name - cooling setpoint allday1, !- Monday Schedule:Day Name - cooling setpoint allday1, !- Tuesday Schedule:Day Name - cooling setpoint allday1, !- Wednesday Schedule:Day Name - cooling setpoint allday1, !- Thursday Schedule:Day Name - cooling setpoint allday1, !- Friday Schedule:Day Name - cooling setpoint allday1, !- Saturday Schedule:Day Name - Schedule Day 4, !- Holiday Schedule:Day Name - Schedule Day 4, !- SummerDesignDay Schedule:Day Name - Schedule Day 4, !- WinterDesignDay Schedule:Day Name - Schedule Day 4, !- CustomDay1 Schedule:Day Name - Schedule Day 4; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - cooling setpoint, !- Name - Temperature, !- Schedule Type Limits Name - cooling setpoint Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 12, !- End Month 1 - 31; !- End Day 1 - -Schedule:Day:Interval, - Schedule Day 4, !- Name - Temperature, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -ZoneHVAC:EquipmentConnections, - living space, !- Zone Name - living space Equipment List, !- Zone Conditioning Equipment List Name - living space Inlet Node List, !- Zone Air Inlet Node or NodeList Name - living space Exhaust Node List, !- Zone Air Exhaust Node or NodeList Name - Node 1, !- Zone Air Node Name - living space Return Node List; !- Zone Return Air Node or NodeList Name - -NodeList, - living space Inlet Node List, !- Name - Node 7, !- Node Name 1 - Node 11; !- Node Name 2 - -NodeList, - living space Exhaust Node List, !- Name - Node 10; !- Node Name 1 - -NodeList, - living space Return Node List, !- Name - Node 8; !- Node Name 1 - -AirTerminal:SingleDuct:ConstantVolume:NoReheat, - central ac and furnace terminal, !- Name - Always On Discrete, !- Availability Schedule Name - Node 9, !- Air Inlet Node Name - Node 7, !- Air Outlet Node Name - 0.942007096627203; !- Maximum Air Flow Rate {m3/s} - -ZoneHVAC:AirDistributionUnit, - ADU central ac and furnace terminal, !- Name - Node 7, !- Air Distribution Unit Outlet Node Name - AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type - central ac and furnace terminal; !- Air Terminal Name - -ZoneHVAC:IdealLoadsAirSystem, - ideal residual, !- Name - , !- Availability Schedule Name - Node 11, !- Zone Supply Air Node Name - Node 10, !- Zone Exhaust Air Node Name - , !- System Inlet Air Node Name - 50, !- Maximum Heating Supply Air Temperature {C} - 10, !- Minimum Cooling Supply Air Temperature {C} - 0.015, !- Maximum Heating Supply Air Humidity Ratio {kgWater/kgDryAir} - 0.01, !- Minimum Cooling Supply Air Humidity Ratio {kgWater/kgDryAir} - NoLimit, !- Heating Limit - , !- Maximum Heating Air Flow Rate {m3/s} - , !- Maximum Sensible Heating Capacity {W} - NoLimit, !- Cooling Limit - , !- Maximum Cooling Air Flow Rate {m3/s} - , !- Maximum Total Cooling Capacity {W} - , !- Heating Availability Schedule Name - , !- Cooling Availability Schedule Name - None, !- Dehumidification Control Type - , !- Cooling Sensible Heat Ratio {dimensionless} - None, !- Humidification Control Type - , !- Design Specification Outdoor Air Object Name - , !- Outdoor Air Inlet Node Name - , !- Demand Controlled Ventilation Type - , !- Outdoor Air Economizer Type - , !- Heat Recovery Type - , !- Sensible Heat Recovery Effectiveness {dimensionless} - ; !- Latent Heat Recovery Effectiveness {dimensionless} - -ZoneHVAC:EquipmentList, - living space Equipment List, !- Name - SequentialLoad, !- Load Distribution Scheme - ZoneHVAC:AirDistributionUnit, !- Zone Equipment Object Type 1 - ADU central ac and furnace terminal, !- Zone Equipment Name 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - Sequential Fraction Schedule 1, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - Sequential Fraction Schedule, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment Object Type 2 - ideal residual, !- Zone Equipment Name 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - Sequential Fraction Schedule 2, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - Sequential Fraction Schedule 3; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 - -SimulationControl, - No, !- Do Zone Sizing Calculation - No, !- Do System Sizing Calculation - No, !- Do Plant Sizing Calculation - Yes, !- Run Simulation for Sizing Periods - Yes, !- Run Simulation for Weather File Run Periods - , !- Do HVAC Sizing Simulation for Sizing Periods - ; !- Maximum Number of HVAC Sizing Simulation Passes - -ConvergenceLimits, - 0; !- Minimum System Timestep {minutes} - -RunPeriod, - Run Period 1, !- Name - 1, !- Begin Month - 1, !- Begin Day of Month - , !- Begin Year - 1, !- End Month - 7, !- End Day of Month - , !- End Year - , !- 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 - No, !- Use Weather File Rain Indicators - No; !- Use Weather File Snow Indicators + Version,9.6; + + Timestep,4; + + Building, + Building 1, !- Name + , !- North Axis {deg} + Suburbs, !- Terrain + , !- Loads Convergence Tolerance Value {W} + , !- Temperature Convergence Tolerance Value {deltaC} + , !- Solar Distribution + , !- Maximum Number of Warmup Days + ; !- Minimum Number of Warmup Days + + Zone, + attic - unvented, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + 104.690985541999, !- Volume {m3} + , !- Floor Area {m2} + ASTMC1340, !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + BuildingSurface:Detailed, + Roof:0, !- Name + Roof, !- Surface Type + Roof construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.8714269967499,13.8324615907045,2.4384, !- X,Y,Z ==> Vertex 1 {m} + 10.8714267139162,3.23874305942385,7.73525926564035, !- X,Y,Z ==> Vertex 2 {m} + 13.8324610602216,3.23874298036942,7.73525926564035, !- X,Y,Z ==> Vertex 3 {m} + 13.8324613430553,13.8324615116501,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Roof:180, !- Name + Roof, !- Surface Type + Roof construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -10.8714266274474,-13.8324618809526,2.4384, !- X,Y,Z ==> Vertex 1 {m} + -10.8714266274474,-3.2387433496719,7.73525926564035, !- X,Y,Z ==> Vertex 2 {m} + -13.8324609737528,-3.2387433496719,7.73525926564035, !- X,Y,Z ==> Vertex 3 {m} + -13.8324609737528,-13.8324618809526,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Roof:270, !- Name + Roof, !- Surface Type + Roof construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -13.8324620260767,10.8714264427962,2.4384, !- X,Y,Z ==> Vertex 1 {m} + -3.23874349479593,10.871426584213,7.73525926564035, !- X,Y,Z ==> Vertex 2 {m} + -3.23874353432315,13.8324609305184,7.73525926564035, !- X,Y,Z ==> Vertex 3 {m} + -13.8324620656039,13.8324607891015,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Roof:90, !- Name + Roof, !- Surface Type + Roof construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 13.8324617358286,-10.8714268120987,2.4384, !- X,Y,Z ==> Vertex 1 {m} + 3.23874320454788,-10.8714266706818,7.73525926564035, !- X,Y,Z ==> Vertex 2 {m} + 3.23874316502066,-13.8324610169872,7.73525926564035, !- X,Y,Z ==> Vertex 3 {m} + 13.8324616963014,-13.832461158404,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 1 Reversed, !- Name + Floor, !- Surface Type + FloorBelowAttic construction Reversed, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + FloorBelowAttic, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -5.59953355200234,-5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 1 {m} + -5.59953355200234,5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 2 {m} + 5.59953355200234,5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 3 {m} + 5.59953355200234,-5.59953355200235,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WallAtticGable:0, !- Name + Wall, !- Surface Type + WallAtticGable construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.9034308016384,13.832461232477,0, !- X,Y,Z ==> Vertex 1 {m} + -12.9034308016384,13.832461232477,2.4384, !- X,Y,Z ==> Vertex 2 {m} + -10.1411808016384,13.832461232477,2.4384, !- X,Y,Z ==> Vertex 3 {m} + -10.1411808016384,13.832461232477,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WallAtticGable:180, !- Name + Wall, !- Surface Type + WallAtticGable construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.9034311709409,-13.832460887978,0, !- X,Y,Z ==> Vertex 1 {m} + 12.9034311709409,-13.832460887978,2.4384, !- X,Y,Z ==> Vertex 2 {m} + 10.1411811709409,-13.8324609617252,2.4384, !- X,Y,Z ==> Vertex 3 {m} + 10.1411811709409,-13.8324609617252,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WallAtticGable:270, !- Name + Wall, !- Surface Type + WallAtticGable construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -13.8324610094154,-7.40331489862066,0, !- X,Y,Z ==> Vertex 1 {m} + -13.8324610094154,-7.40331489862066,2.4384, !- X,Y,Z ==> Vertex 2 {m} + -13.8324611200363,-4.64106489862066,2.4384, !- X,Y,Z ==> Vertex 3 {m} + -13.8324611200363,-4.64106489862066,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WallAtticGable:90, !- Name + Wall, !- Surface Type + WallAtticGable construction, !- Construction Name + attic - unvented, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 13.832461207071,7.40331452931817,0, !- X,Y,Z ==> Vertex 1 {m} + 13.832461207071,7.40331452931817,2.4384, !- X,Y,Z ==> Vertex 2 {m} + 13.8324612439446,4.64106452931817,2.4384, !- X,Y,Z ==> Vertex 3 {m} + 13.8324612439446,4.64106452931817,0; !- X,Y,Z ==> Vertex 4 {m} + + ZoneMixing, + whole house fan mix, !- Name + attic - unvented, !- Zone Name + Always On Continuous, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0, !- Design Flow Rate {m3/s} + , !- Flow Rate per Zone Floor Area {m3/s-m2} + , !- Flow Rate per Person {m3/s-person} + , !- Air Changes per Hour {1/hr} + living space; !- Source Zone Name + + Schedule:Constant,Always On Continuous,Fractional 1,1; + + Zone, + central ac and furnace airloop ret air zone, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + 1, !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + BuildingSurface:Detailed, + Surface 1, !- Name + Floor, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0,0,0, !- X,Y,Z ==> Vertex 1 {m} + 0,1,0, !- X,Y,Z ==> Vertex 2 {m} + 1,1,0, !- X,Y,Z ==> Vertex 3 {m} + 1,0,0; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 1, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + BuildingSurface:Detailed, + Surface 2, !- Name + Wall, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0,1,1, !- X,Y,Z ==> Vertex 1 {m} + 0,1,0, !- X,Y,Z ==> Vertex 2 {m} + 0,0,0, !- X,Y,Z ==> Vertex 3 {m} + 0,0,1; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 2, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + BuildingSurface:Detailed, + Surface 3, !- Name + Wall, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1,1,1, !- X,Y,Z ==> Vertex 1 {m} + 1,1,0, !- X,Y,Z ==> Vertex 2 {m} + 0,1,0, !- X,Y,Z ==> Vertex 3 {m} + 0,1,1; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 3, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + BuildingSurface:Detailed, + Surface 4, !- Name + Wall, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1,0,1, !- X,Y,Z ==> Vertex 1 {m} + 1,0,0, !- X,Y,Z ==> Vertex 2 {m} + 1,1,0, !- X,Y,Z ==> Vertex 3 {m} + 1,1,1; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 4, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + BuildingSurface:Detailed, + Surface 5, !- Name + Wall, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0,0,1, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0, !- X,Y,Z ==> Vertex 2 {m} + 1,0,0, !- X,Y,Z ==> Vertex 3 {m} + 1,0,1; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 5, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + BuildingSurface:Detailed, + Surface 6, !- Name + Ceiling, !- Surface Type + AdiabaticConst, !- Construction Name + central ac and furnace airloop ret air zone, !- Zone Name + , !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1,0,1, !- X,Y,Z ==> Vertex 1 {m} + 1,1,1, !- X,Y,Z ==> Vertex 2 {m} + 0,1,1, !- X,Y,Z ==> Vertex 3 {m} + 0,0,1; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ConvectionCoefficients, + Surface 6, !- Surface Name + Inside, !- Convection Coefficient 1 Location + Value, !- Convection Coefficient 1 Type + 30; !- Convection Coefficient 1 {W/m2-K} + + OtherEquipment, + central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Name + None, !- Fuel Type + central ac and furnace airloop ret air zone, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Name + None, !- Fuel Type + central ac and furnace airloop ret air zone, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0.17, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Name + None, !- Fuel Type + central ac and furnace airloop ret air zone, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + Zone, + living space, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + 305.8219431936, !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + BuildingSurface:Detailed, + FloorBelowAttic, !- Name + Ceiling, !- Surface Type + FloorBelowAttic construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 1 Reversed, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.59953355200234,-5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 1 {m} + 5.59953355200234,5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 2 {m} + -5.59953355200234,5.59953355200235,2.4384, !- X,Y,Z ==> Vertex 3 {m} + -5.59953355200234,-5.59953355200235,2.4384; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Slab, !- Name + Floor, !- Surface Type + Slab construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Foundation, !- Outside Boundary Condition + Foundation Kiva 1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -6.858,-4.572,0, !- X,Y,Z ==> Vertex 1 {m} + -6.858,4.572,0, !- X,Y,Z ==> Vertex 2 {m} + 6.858,4.572,0, !- X,Y,Z ==> Vertex 3 {m} + 6.858,-4.572,0; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Slab, !- Surface Name + TotalExposedPerimeter, !- Exposed Perimeter Calculation Method + 45.72, !- Total Exposed Perimeter {m} + ; !- Exposed Perimeter Fraction {dimensionless} + + BuildingSurface:Detailed, + surface DoorNorth, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction 1, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.11351039836156,13.8324615068116,0, !- X,Y,Z ==> Vertex 1 {m} + 8.11351039836156,13.8324615068116,2.034016, !- X,Y,Z ==> Vertex 2 {m} + 9.94339645533308,13.8324615068116,2.034016, !- X,Y,Z ==> Vertex 3 {m} + 9.94339645533308,13.8324615068116,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DoorNorth, !- Name + Door, !- Surface Type + Door, !- Construction Name + surface DoorNorth, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 8.11451039836156,13.8324615068116,0, !- X,Y,Z ==> Vertex 1 {m} + 8.11451039836156,13.8324615068116,2.033016, !- X,Y,Z ==> Vertex 2 {m} + 9.94239645533308,13.8324615068116,2.033016, !- X,Y,Z ==> Vertex 3 {m} + 9.94239645533308,13.8324615068116,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + surface DoorSouth, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction 1, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -8.11351002905906,-13.8324617234281,0, !- X,Y,Z ==> Vertex 1 {m} + -8.11351002905906,-13.8324617234281,2.034016, !- X,Y,Z ==> Vertex 2 {m} + -9.94339608603057,-13.8324617722829,2.034016, !- X,Y,Z ==> Vertex 3 {m} + -9.94339608603057,-13.8324617722829,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DoorSouth, !- Name + Door, !- Surface Type + Door 1, !- Construction Name + surface DoorSouth, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -8.11451002905906,-13.8324617234548,0, !- X,Y,Z ==> Vertex 1 {m} + -8.11451002905906,-13.8324617234548,2.033016, !- X,Y,Z ==> Vertex 2 {m} + -9.94239608603057,-13.8324617722562,2.033016, !- X,Y,Z ==> Vertex 3 {m} + -9.94239608603057,-13.8324617722562,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + surface WindowEast, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 13.8324615418629,-4.45499627068183,0, !- X,Y,Z ==> Vertex 1 {m} + 13.8324615418629,-4.45499627068183,1.2202, !- X,Y,Z ==> Vertex 2 {m} + 13.8324616151282,-9.94339627068183,1.2202, !- X,Y,Z ==> Vertex 3 {m} + 13.8324616151282,-9.94339627068183,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WindowEast, !- Name + Window, !- Surface Type + WindowConstruction 2, !- Construction Name + surface WindowEast, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 13.8324615418763,-4.45599627068183,0.001, !- X,Y,Z ==> Vertex 1 {m} + 13.8324615418763,-4.45599627068183,1.2202, !- X,Y,Z ==> Vertex 2 {m} + 13.8324616151149,-9.94239627068183,1.2202, !- X,Y,Z ==> Vertex 3 {m} + 13.8324616151149,-9.94239627068183,0.001; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + surface WindowNorth, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.04512000163844,13.8324614272806,0, !- X,Y,Z ==> Vertex 1 {m} + -1.04512000163844,13.8324614272806,1.2202, !- X,Y,Z ==> Vertex 2 {m} + 7.18647999836156,13.8324614272806,1.2202, !- X,Y,Z ==> Vertex 3 {m} + 7.18647999836156,13.8324614272806,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WindowNorth, !- Name + Window, !- Surface Type + WindowConstruction, !- Construction Name + surface WindowNorth, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -1.04412000163844,13.8324614272806,0.001, !- X,Y,Z ==> Vertex 1 {m} + -1.04412000163844,13.8324614272806,1.2202, !- X,Y,Z ==> Vertex 2 {m} + 7.18547999836156,13.8324614272806,1.2202, !- X,Y,Z ==> Vertex 3 {m} + 7.18547999836156,13.8324614272806,0.001; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + surface WindowSouth, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.04512037094094,-13.8324613993777,0, !- X,Y,Z ==> Vertex 1 {m} + 1.04512037094094,-13.8324613993777,1.2202, !- X,Y,Z ==> Vertex 2 {m} + -7.18647962905906,-13.832461619147,1.2202, !- X,Y,Z ==> Vertex 3 {m} + -7.18647962905906,-13.832461619147,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WindowSouth, !- Name + Window, !- Surface Type + WindowConstruction 1, !- Construction Name + surface WindowSouth, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 1.04412037094094,-13.8324613994044,0.001, !- X,Y,Z ==> Vertex 1 {m} + 1.04412037094094,-13.8324613994044,1.2202, !- X,Y,Z ==> Vertex 2 {m} + -7.18547962905906,-13.8324616191203,1.2202, !- X,Y,Z ==> Vertex 3 {m} + -7.18547962905906,-13.8324616191203,0.001; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + surface WindowWest, !- Name + Wall, !- Surface Type + AdiabaticWallConstruction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -13.8324616608036,4.45499590137932,0, !- X,Y,Z ==> Vertex 1 {m} + -13.8324616608036,4.45499590137932,1.2202, !- X,Y,Z ==> Vertex 2 {m} + -13.8324618805996,9.94339590137932,1.2202, !- X,Y,Z ==> Vertex 3 {m} + -13.8324618805996,9.94339590137932,0; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WindowWest, !- Name + Window, !- Surface Type + WindowConstruction 3, !- Construction Name + surface WindowWest, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -13.8324616608436,4.45599590137932,0.001, !- X,Y,Z ==> Vertex 1 {m} + -13.8324616608436,4.45599590137932,1.2202, !- X,Y,Z ==> Vertex 2 {m} + -13.8324618805595,9.94239590137932,1.2202, !- X,Y,Z ==> Vertex 3 {m} + -13.8324618805595,9.94239590137932,0.001; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Wall:0, !- Name + Wall, !- Surface Type + Wall construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -9.21215040163844,13.8324613116327,0, !- X,Y,Z ==> Vertex 1 {m} + -9.21215040163844,13.8324613116327,2.4384, !- X,Y,Z ==> Vertex 2 {m} + -1.97315040163844,13.8324613116327,2.4384, !- X,Y,Z ==> Vertex 3 {m} + -1.97315040163844,13.8324613116327,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Wall:180, !- Name + Wall, !- Surface Type + Wall construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 9.21215077094093,-13.8324610656844,0, !- X,Y,Z ==> Vertex 1 {m} + 9.21215077094093,-13.8324610656844,2.4384, !- X,Y,Z ==> Vertex 2 {m} + 1.97315077094093,-13.832461258953,2.4384, !- X,Y,Z ==> Vertex 3 {m} + 1.97315077094093,-13.832461258953,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Wall:270, !- Name + Wall, !- Surface Type + Wall construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -13.8324612363972,-3.71203449862067,0, !- X,Y,Z ==> Vertex 1 {m} + -13.8324612363972,-3.71203449862067,2.4384, !- X,Y,Z ==> Vertex 2 {m} + -13.8324615263001,3.52696550137933,2.4384, !- X,Y,Z ==> Vertex 3 {m} + -13.8324615263001,3.52696550137933,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Wall:90, !- Name + Wall, !- Surface Type + Wall construction, !- Construction Name + living space, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 13.832461335502,3.71203412931817,0, !- X,Y,Z ==> Vertex 1 {m} + 13.832461335502,3.71203412931817,2.4384, !- X,Y,Z ==> Vertex 2 {m} + 13.8324614321363,-3.52696587068183,2.4384, !- X,Y,Z ==> Vertex 3 {m} + 13.8324614321363,-3.52696587068183,0; !- X,Y,Z ==> Vertex 4 {m} + + InternalMass, + furniture mass living space living, !- Name + furniture construction living space, !- Construction Name + living space, !- Zone or ZoneList Name + , !- Surface Area {m2} + 125.419104; !- Extended Field + + InternalMass, + living space Living Partition, !- Name + PartitionWallConstruction, !- Construction Name + living space, !- Zone or ZoneList Name + , !- Surface Area {m2} + 125.419104; !- Extended Field + + People, + occupants, !- Name + living space, !- Zone or ZoneList Name + occupants schedule, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 3, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.314170909090909, !- Fraction Radiant + 0.563030303030303, !- Sensible Heat Fraction + occupants activity schedule, !- Activity Level Schedule Name + 0, !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged; !- Mean Radiant Temperature Calculation Type + + Lights, + interior lighting, !- Name + living space, !- Zone or ZoneList Name + lighting schedule, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 237.287858616023, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + interior lighting; !- End-Use Subcategory + + ScheduleTypeLimits, + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + + Schedule:Day:Interval, + lighting schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0548505293079881, !- Value Until Time 4 + 06:00, !- Time 5 + 0.150503417627477, !- Value Until Time 5 + 07:00, !- Time 6 + 0.353340478582396, !- Value Until Time 6 + 08:00, !- Time 7 + 0.447143266915802, !- Value Until Time 7 + 09:00, !- Time 8 + 0.475187707859644, !- Value Until Time 8 + 10:00, !- Time 9 + 0.488459733868994, !- Value Until Time 9 + 11:00, !- Time 10 + 0.475178850084529, !- Value Until Time 10 + 12:00, !- Time 11 + 0.45677854570346, !- Value Until Time 11 + 13:00, !- Time 12 + 0.443497661918995, !- Value Until Time 12 + 14:00, !- Time 13 + 0.439589567078536, !- Value Until Time 13 + 15:00, !- Time 14 + 0.440884458482272, !- Value Until Time 14 + 16:00, !- Time 15 + 0.454008636080669, !- Value Until Time 15 + 17:00, !- Time 16 + 0.504822808865369, !- Value Until Time 16 + 18:00, !- Time 17 + 0.636442743327019, !- Value Until Time 17 + 19:00, !- Time 18 + 0.841479462203027, !- Value Until Time 18 + 20:00, !- Time 19 + 0.996098328662285, !- Value Until Time 19 + 21:00, !- Time 20 + 0.962575616852304, !- Value Until Time 20 + 22:00, !- Time 21 + 0.773108419391735, !- Value Until Time 21 + 23:00, !- Time 22 + 0.674739465630487, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Day:Interval, + lighting schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0545684112394379, !- Value Until Time 4 + 06:00, !- Time 5 + 0.149096652382691, !- Value Until Time 5 + 07:00, !- Time 6 + 0.350037782120869, !- Value Until Time 6 + 08:00, !- Time 7 + 0.442963789683634, !- Value Until Time 7 + 09:00, !- Time 8 + 0.468465911731104, !- Value Until Time 8 + 10:00, !- Time 9 + 0.4793336975684, !- Value Until Time 9 + 11:00, !- Time 10 + 0.46617695106947, !- Value Until Time 10 + 12:00, !- Time 11 + 0.44794863553161, !- Value Until Time 11 + 13:00, !- Time 12 + 0.43479188903268, !- Value Until Time 12 + 14:00, !- Time 13 + 0.430920323409176, !- Value Until Time 13 + 15:00, !- Time 14 + 0.431505458221858, !- Value Until Time 14 + 16:00, !- Time 15 + 0.439276315280207, !- Value Until Time 15 + 17:00, !- Time 16 + 0.471458282969571, !- Value Until Time 16 + 18:00, !- Time 17 + 0.564331759325521, !- Value Until Time 17 + 19:00, !- Time 18 + 0.73611664511757, !- Value Until Time 18 + 20:00, !- Time 19 + 0.918219523465001, !- Value Until Time 19 + 21:00, !- Time 20 + 0.974482280369358, !- Value Until Time 20 + 22:00, !- Time 21 + 0.854567392713844, !- Value Until Time 21 + 23:00, !- Time 22 + 0.517532525930061, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Jan1-Jan27, !- Name + lighting schedule allday1, !- Sunday Schedule:Day Name + lighting schedule allday1, !- Monday Schedule:Day Name + lighting schedule allday1, !- Tuesday Schedule:Day Name + lighting schedule allday1, !- Wednesday Schedule:Day Name + lighting schedule allday1, !- Thursday Schedule:Day Name + lighting schedule allday1, !- Friday Schedule:Day Name + lighting schedule allday1, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Jan28-Feb3, !- Name + lighting schedule allday1, !- Sunday Schedule:Day Name + lighting schedule allday1, !- Monday Schedule:Day Name + lighting schedule allday1, !- Tuesday Schedule:Day Name + lighting schedule allday1, !- Wednesday Schedule:Day Name + lighting schedule allday2, !- Thursday Schedule:Day Name + lighting schedule allday2, !- Friday Schedule:Day Name + lighting schedule allday2, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0537976503721666, !- Value Until Time 4 + 06:00, !- Time 5 + 0.145253298407914, !- Value Until Time 5 + 07:00, !- Time 6 + 0.341014647934173, !- Value Until Time 6 + 08:00, !- Time 7 + 0.431545245976879, !- Value Until Time 7 + 09:00, !- Time 8 + 0.450320985314924, !- Value Until Time 8 + 10:00, !- Time 9 + 0.454839626518517, !- Value Until Time 9 + 11:00, !- Time 10 + 0.442022029377696, !- Value Until Time 10 + 12:00, !- Time 11 + 0.424263596079687, !- Value Until Time 11 + 13:00, !- Time 12 + 0.411445998938866, !- Value Until Time 12 + 14:00, !- Time 13 + 0.407674232988191, !- Value Until Time 13 + 15:00, !- Time 14 + 0.407952629865843, !- Value Until Time 14 + 16:00, !- Time 15 + 0.413135478470844, !- Value Until Time 15 + 17:00, !- Time 16 + 0.435069275021683, !- Value Until Time 16 + 18:00, !- Time 17 + 0.502214284285284, !- Value Until Time 17 + 19:00, !- Time 18 + 0.640370823877187, !- Value Until Time 18 + 20:00, !- Time 19 + 0.818581275958844, !- Value Until Time 19 + 21:00, !- Time 20 + 0.92892273647281, !- Value Until Time 20 + 22:00, !- Time 21 + 0.882823122453402, !- Value Until Time 21 + 23:00, !- Time 22 + 0.54648505757253, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Feb4-Feb24, !- Name + lighting schedule allday2, !- Sunday Schedule:Day Name + lighting schedule allday2, !- Monday Schedule:Day Name + lighting schedule allday2, !- Tuesday Schedule:Day Name + lighting schedule allday2, !- Wednesday Schedule:Day Name + lighting schedule allday2, !- Thursday Schedule:Day Name + lighting schedule allday2, !- Friday Schedule:Day Name + lighting schedule allday2, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Feb25-Mar3, !- Name + lighting schedule allday2, !- Sunday Schedule:Day Name + lighting schedule allday2, !- Monday Schedule:Day Name + lighting schedule allday2, !- Tuesday Schedule:Day Name + lighting schedule allday2, !- Wednesday Schedule:Day Name + lighting schedule allday3, !- Thursday Schedule:Day Name + lighting schedule allday3, !- Friday Schedule:Day Name + lighting schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.052744771436345, !- Value Until Time 4 + 06:00, !- Time 5 + 0.140003179188351, !- Value Until Time 5 + 07:00, !- Time 6 + 0.32868881728595, !- Value Until Time 6 + 08:00, !- Time 7 + 0.415947225037956, !- Value Until Time 7 + 09:00, !- Time 8 + 0.426053569311475, !- Value Until Time 8 + 10:00, !- Time 9 + 0.422418132250583, !- Value Until Time 9 + 11:00, !- Time 10 + 0.410063821753407, !- Value Until Time 10 + 12:00, !- Time 11 + 0.392947259538458, !- Value Until Time 11 + 13:00, !- Time 12 + 0.380592949041282, !- Value Until Time 12 + 14:00, !- Time 13 + 0.37695751198039, !- Value Until Time 13 + 15:00, !- Time 14 + 0.376660031622233, !- Value Until Time 14 + 16:00, !- Time 15 + 0.377300552420036, !- Value Until Time 15 + 17:00, !- Time 16 + 0.381054358525559, !- Value Until Time 16 + 18:00, !- Time 17 + 0.397442131356291, !- Value Until Time 17 + 19:00, !- Time 18 + 0.448538191169282, !- Value Until Time 18 + 20:00, !- Time 19 + 0.559860831729609, !- Value Until Time 19 + 21:00, !- Time 20 + 0.721252437291489, !- Value Until Time 20 + 22:00, !- Time 21 + 0.855187098629428, !- Value Until Time 21 + 23:00, !- Time 22 + 0.605410010254001, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Mar4-Mar31, !- Name + lighting schedule allday3, !- Sunday Schedule:Day Name + lighting schedule allday3, !- Monday Schedule:Day Name + lighting schedule allday3, !- Tuesday Schedule:Day Name + lighting schedule allday3, !- Wednesday Schedule:Day Name + lighting schedule allday3, !- Thursday Schedule:Day Name + lighting schedule allday3, !- Friday Schedule:Day Name + lighting schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0516918925005234, !- Value Until Time 4 + 06:00, !- Time 5 + 0.134753059968788, !- Value Until Time 5 + 07:00, !- Time 6 + 0.316362986637727, !- Value Until Time 6 + 08:00, !- Time 7 + 0.400349204099032, !- Value Until Time 7 + 09:00, !- Time 8 + 0.402385459849299, !- Value Until Time 8 + 10:00, !- Time 9 + 0.391195251065195, !- Value Until Time 9 + 11:00, !- Time 10 + 0.379304227211663, !- Value Until Time 10 + 12:00, !- Time 11 + 0.362829536079775, !- Value Until Time 11 + 13:00, !- Time 12 + 0.350938512226242, !- Value Until Time 12 + 14:00, !- Time 13 + 0.347439404055134, !- Value Until Time 13 + 15:00, !- Time 14 + 0.347149297219897, !- Value Until Time 14 + 16:00, !- Time 15 + 0.347684145573138, !- Value Until Time 15 + 17:00, !- Time 16 + 0.350637326327548, !- Value Until Time 16 + 18:00, !- Time 17 + 0.363183704716566, !- Value Until Time 17 + 19:00, !- Time 18 + 0.402417903305008, !- Value Until Time 18 + 20:00, !- Time 19 + 0.491190094760679, !- Value Until Time 19 + 21:00, !- Time 20 + 0.631439152624096, !- Value Until Time 20 + 22:00, !- Time 21 + 0.772248316574811, !- Value Until Time 21 + 23:00, !- Time 22 + 0.579078515037426, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Apr1-Apr28, !- Name + lighting schedule allday4, !- Sunday Schedule:Day Name + lighting schedule allday4, !- Monday Schedule:Day Name + lighting schedule allday4, !- Tuesday Schedule:Day Name + lighting schedule allday4, !- Wednesday Schedule:Day Name + lighting schedule allday4, !- Thursday Schedule:Day Name + lighting schedule allday4, !- Friday Schedule:Day Name + lighting schedule allday4, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Apr29-May5, !- Name + lighting schedule allday4, !- Sunday Schedule:Day Name + lighting schedule allday4, !- Monday Schedule:Day Name + lighting schedule allday5, !- Tuesday Schedule:Day Name + lighting schedule allday5, !- Wednesday Schedule:Day Name + lighting schedule allday5, !- Thursday Schedule:Day Name + lighting schedule allday5, !- Friday Schedule:Day Name + lighting schedule allday5, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0509211316332521, !- Value Until Time 4 + 06:00, !- Time 5 + 0.130909705994011, !- Value Until Time 5 + 07:00, !- Time 6 + 0.30733985245103, !- Value Until Time 6 + 08:00, !- Time 7 + 0.388930660392277, !- Value Until Time 7 + 09:00, !- Time 8 + 0.385439146499949, !- Value Until Time 8 + 10:00, !- Time 9 + 0.369098406148974, !- Value Until Time 9 + 11:00, !- Time 10 + 0.357546531653551, !- Value Until Time 10 + 12:00, !- Time 11 + 0.341541722761514, !- Value Until Time 11 + 13:00, !- Time 12 + 0.329989848266091, !- Value Until Time 12 + 14:00, !- Time 13 + 0.326590539767811, !- Value Until Time 13 + 15:00, !- Time 14 + 0.326317868521187, !- Value Until Time 14 + 16:00, !- Time 15 + 0.32686340171009, !- Value Until Time 15 + 17:00, !- Time 16 + 0.329604206146784, !- Value Until Time 16 + 18:00, !- Time 17 + 0.340552724071831, !- Value Until Time 17 + 19:00, !- Time 18 + 0.373640014970614, !- Value Until Time 18 + 20:00, !- Time 19 + 0.448206765388673, !- Value Until Time 19 + 21:00, !- Time 20 + 0.570019656095813, !- Value Until Time 20 + 22:00, !- Time 21 + 0.704723927574059, !- Value Until Time 21 + 23:00, !- Time 22 + 0.551643186293296, !- Value Until Time 22 + 24:00, !- Time 23 + 0.248397578831761; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - May6-May26, !- Name + lighting schedule allday5, !- Sunday Schedule:Day Name + lighting schedule allday5, !- Monday Schedule:Day Name + lighting schedule allday5, !- Tuesday Schedule:Day Name + lighting schedule allday5, !- Wednesday Schedule:Day Name + lighting schedule allday5, !- Thursday Schedule:Day Name + lighting schedule allday5, !- Friday Schedule:Day Name + lighting schedule allday5, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - May27-Jun2, !- Name + lighting schedule allday5, !- Sunday Schedule:Day Name + lighting schedule allday5, !- Monday Schedule:Day Name + lighting schedule allday5, !- Tuesday Schedule:Day Name + lighting schedule allday5, !- Wednesday Schedule:Day Name + lighting schedule allday5, !- Thursday Schedule:Day Name + lighting schedule allday6, !- Friday Schedule:Day Name + lighting schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0506390135647019, !- Value Until Time 4 + 06:00, !- Time 5 + 0.129502940749224, !- Value Until Time 5 + 07:00, !- Time 6 + 0.304037155989504, !- Value Until Time 6 + 08:00, !- Time 7 + 0.384751183160109, !- Value Until Time 7 + 09:00, !- Time 8 + 0.379316656928395, !- Value Until Time 8 + 10:00, !- Time 9 + 0.361170982962351, !- Value Until Time 9 + 11:00, !- Time 10 + 0.349743245752463, !- Value Until Time 10 + 12:00, !- Time 11 + 0.333910425703636, !- Value Until Time 11 + 13:00, !- Time 12 + 0.322482688493747, !- Value Until Time 12 + 14:00, !- Time 13 + 0.319119909212422, !- Value Until Time 13 + 15:00, !- Time 14 + 0.318849040840008, !- Value Until Time 14 + 16:00, !- Time 15 + 0.319380916269395, !- Value Until Time 15 + 17:00, !- Time 16 + 0.322063760430011, !- Value Until Time 16 + 18:00, !- Time 17 + 0.332822052289174, !- Value Until Time 17 + 19:00, !- Time 18 + 0.365464595063093, !- Value Until Time 18 + 20:00, !- Time 19 + 0.439343451100766, !- Value Until Time 19 + 21:00, !- Time 20 + 0.560617542850604, !- Value Until Time 20 + 22:00, !- Time 21 + 0.695585680073726, !- Value Until Time 21 + 23:00, !- Time 22 + 0.547506420320013, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Jun3-Jun30, !- Name + lighting schedule allday6, !- Sunday Schedule:Day Name + lighting schedule allday6, !- Monday Schedule:Day Name + lighting schedule allday6, !- Tuesday Schedule:Day Name + lighting schedule allday6, !- Wednesday Schedule:Day Name + lighting schedule allday6, !- Thursday Schedule:Day Name + lighting schedule allday6, !- Friday Schedule:Day Name + lighting schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday8, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0509211316332521, !- Value Until Time 4 + 06:00, !- Time 5 + 0.130909705994011, !- Value Until Time 5 + 07:00, !- Time 6 + 0.30733985245103, !- Value Until Time 6 + 08:00, !- Time 7 + 0.388930660392277, !- Value Until Time 7 + 09:00, !- Time 8 + 0.385439146499949, !- Value Until Time 8 + 10:00, !- Time 9 + 0.369098406148974, !- Value Until Time 9 + 11:00, !- Time 10 + 0.357546531653551, !- Value Until Time 10 + 12:00, !- Time 11 + 0.341541722761514, !- Value Until Time 11 + 13:00, !- Time 12 + 0.329989848266091, !- Value Until Time 12 + 14:00, !- Time 13 + 0.326590539767811, !- Value Until Time 13 + 15:00, !- Time 14 + 0.326317575889368, !- Value Until Time 14 + 16:00, !- Time 15 + 0.326912359091747, !- Value Until Time 15 + 17:00, !- Time 16 + 0.330140197883059, !- Value Until Time 16 + 18:00, !- Time 17 + 0.343624122006987, !- Value Until Time 17 + 19:00, !- Time 18 + 0.385055895139025, !- Value Until Time 18 + 20:00, !- Time 19 + 0.47704424063142, !- Value Until Time 19 + 21:00, !- Time 20 + 0.619219238740813, !- Value Until Time 20 + 22:00, !- Time 21 + 0.757543962644755, !- Value Until Time 21 + 23:00, !- Time 22 + 0.569318381743293, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Jul1-Jul28, !- Name + lighting schedule allday7, !- Sunday Schedule:Day Name + lighting schedule allday7, !- Monday Schedule:Day Name + lighting schedule allday7, !- Tuesday Schedule:Day Name + lighting schedule allday7, !- Wednesday Schedule:Day Name + lighting schedule allday7, !- Thursday Schedule:Day Name + lighting schedule allday7, !- Friday Schedule:Day Name + lighting schedule allday7, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Jul29-Aug4, !- Name + lighting schedule allday7, !- Sunday Schedule:Day Name + lighting schedule allday7, !- Monday Schedule:Day Name + lighting schedule allday7, !- Tuesday Schedule:Day Name + lighting schedule allday8, !- Wednesday Schedule:Day Name + lighting schedule allday8, !- Thursday Schedule:Day Name + lighting schedule allday8, !- Friday Schedule:Day Name + lighting schedule allday8, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0516918925005235, !- Value Until Time 4 + 06:00, !- Time 5 + 0.134753059968788, !- Value Until Time 5 + 07:00, !- Time 6 + 0.316362986637727, !- Value Until Time 6 + 08:00, !- Time 7 + 0.400349204099032, !- Value Until Time 7 + 09:00, !- Time 8 + 0.402385459849299, !- Value Until Time 8 + 10:00, !- Time 9 + 0.391195251065195, !- Value Until Time 9 + 11:00, !- Time 10 + 0.379304227211663, !- Value Until Time 10 + 12:00, !- Time 11 + 0.362829536079775, !- Value Until Time 11 + 13:00, !- Time 12 + 0.350938512226242, !- Value Until Time 12 + 14:00, !- Time 13 + 0.347439404055134, !- Value Until Time 13 + 15:00, !- Time 14 + 0.34722143730575, !- Value Until Time 14 + 16:00, !- Time 15 + 0.348418718487159, !- Value Until Time 15 + 17:00, !- Time 16 + 0.354705679614567, !- Value Until Time 16 + 18:00, !- Time 17 + 0.379344126666108, !- Value Until Time 17 + 19:00, !- Time 18 + 0.447925117368735, !- Value Until Time 18 + 20:00, !- Time 19 + 0.579796892685269, !- Value Until Time 19 + 21:00, !- Time 20 + 0.743589460393696, !- Value Until Time 20 + 22:00, !- Time 21 + 0.845930126466994, !- Value Until Time 21 + 23:00, !- Time 22 + 0.582383675705355, !- Value Until Time 22 + 24:00, !- Time 23 + 0.248397578831761; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Aug5-Aug25, !- Name + lighting schedule allday8, !- Sunday Schedule:Day Name + lighting schedule allday8, !- Monday Schedule:Day Name + lighting schedule allday8, !- Tuesday Schedule:Day Name + lighting schedule allday8, !- Wednesday Schedule:Day Name + lighting schedule allday8, !- Thursday Schedule:Day Name + lighting schedule allday8, !- Friday Schedule:Day Name + lighting schedule allday8, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Aug26-Sep1, !- Name + lighting schedule allday8, !- Sunday Schedule:Day Name + lighting schedule allday8, !- Monday Schedule:Day Name + lighting schedule allday8, !- Tuesday Schedule:Day Name + lighting schedule allday8, !- Wednesday Schedule:Day Name + lighting schedule allday8, !- Thursday Schedule:Day Name + lighting schedule allday8, !- Friday Schedule:Day Name + lighting schedule allday9, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.052744771436345, !- Value Until Time 4 + 06:00, !- Time 5 + 0.140003179188351, !- Value Until Time 5 + 07:00, !- Time 6 + 0.32868881728595, !- Value Until Time 6 + 08:00, !- Time 7 + 0.415947225037955, !- Value Until Time 7 + 09:00, !- Time 8 + 0.426053569311475, !- Value Until Time 8 + 10:00, !- Time 9 + 0.422418132250583, !- Value Until Time 9 + 11:00, !- Time 10 + 0.410063821753407, !- Value Until Time 10 + 12:00, !- Time 11 + 0.392947259538458, !- Value Until Time 11 + 13:00, !- Time 12 + 0.380592949041282, !- Value Until Time 12 + 14:00, !- Time 13 + 0.37695751198039, !- Value Until Time 13 + 15:00, !- Time 14 + 0.376912668654098, !- Value Until Time 14 + 16:00, !- Time 15 + 0.379718685757143, !- Value Until Time 15 + 17:00, !- Time 16 + 0.393281629199303, !- Value Until Time 16 + 18:00, !- Time 17 + 0.440641733407462, !- Value Until Time 17 + 19:00, !- Time 18 + 0.553198708049517, !- Value Until Time 18 + 20:00, !- Time 19 + 0.726515233513421, !- Value Until Time 19 + 21:00, !- Time 20 + 0.874888902156756, !- Value Until Time 20 + 22:00, !- Time 21 + 0.886623274095023, !- Value Until Time 21 + 23:00, !- Time 22 + 0.562250710954033, !- Value Until Time 22 + 24:00, !- Time 23 + 0.24839757883176; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Sep2-Sep29, !- Name + lighting schedule allday9, !- Sunday Schedule:Day Name + lighting schedule allday9, !- Monday Schedule:Day Name + lighting schedule allday9, !- Tuesday Schedule:Day Name + lighting schedule allday9, !- Wednesday Schedule:Day Name + lighting schedule allday9, !- Thursday Schedule:Day Name + lighting schedule allday9, !- Friday Schedule:Day Name + lighting schedule allday9, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Sep30-Oct6, !- Name + lighting schedule allday9, !- Sunday Schedule:Day Name + lighting schedule allday10, !- Monday Schedule:Day Name + lighting schedule allday10, !- Tuesday Schedule:Day Name + lighting schedule allday10, !- Wednesday Schedule:Day Name + lighting schedule allday10, !- Thursday Schedule:Day Name + lighting schedule allday10, !- Friday Schedule:Day Name + lighting schedule allday10, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288737, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0537976503721666, !- Value Until Time 4 + 06:00, !- Time 5 + 0.145253298407914, !- Value Until Time 5 + 07:00, !- Time 6 + 0.341014647934173, !- Value Until Time 6 + 08:00, !- Time 7 + 0.431545245976879, !- Value Until Time 7 + 09:00, !- Time 8 + 0.450320985314924, !- Value Until Time 8 + 10:00, !- Time 9 + 0.454839626518517, !- Value Until Time 9 + 11:00, !- Time 10 + 0.442022029377696, !- Value Until Time 10 + 12:00, !- Time 11 + 0.424263596079687, !- Value Until Time 11 + 13:00, !- Time 12 + 0.411445998938866, !- Value Until Time 12 + 14:00, !- Time 13 + 0.407674232988191, !- Value Until Time 13 + 15:00, !- Time 14 + 0.411095638743563, !- Value Until Time 14 + 16:00, !- Time 15 + 0.434714768556816, !- Value Until Time 15 + 17:00, !- Time 16 + 0.506521350308708, !- Value Until Time 16 + 18:00, !- Time 17 + 0.658131460958639, !- Value Until Time 17 + 19:00, !- Time 18 + 0.850352967429085, !- Value Until Time 18 + 20:00, !- Time 19 + 0.95421373172946, !- Value Until Time 19 + 21:00, !- Time 20 + 0.879153228256593, !- Value Until Time 20 + 22:00, !- Time 21 + 0.691808401469215, !- Value Until Time 21 + 23:00, !- Time 22 + 0.602727377136004, !- Value Until Time 22 + 24:00, !- Time 23 + 0.248397578831761; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Oct7-Oct27, !- Name + lighting schedule allday10, !- Sunday Schedule:Day Name + lighting schedule allday10, !- Monday Schedule:Day Name + lighting schedule allday10, !- Tuesday Schedule:Day Name + lighting schedule allday10, !- Wednesday Schedule:Day Name + lighting schedule allday10, !- Thursday Schedule:Day Name + lighting schedule allday10, !- Friday Schedule:Day Name + lighting schedule allday10, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Oct28-Nov3, !- Name + lighting schedule allday10, !- Sunday Schedule:Day Name + lighting schedule allday10, !- Monday Schedule:Day Name + lighting schedule allday10, !- Tuesday Schedule:Day Name + lighting schedule allday10, !- Wednesday Schedule:Day Name + lighting schedule allday11, !- Thursday Schedule:Day Name + lighting schedule allday11, !- Friday Schedule:Day Name + lighting schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Day:Interval, + lighting schedule allday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.123339999072184, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0740039994433106, !- Value Until Time 2 + 04:00, !- Time 3 + 0.0493359996288738, !- Value Until Time 3 + 05:00, !- Time 4 + 0.0545684112394379, !- Value Until Time 4 + 06:00, !- Time 5 + 0.149096652382691, !- Value Until Time 5 + 07:00, !- Time 6 + 0.350037782120869, !- Value Until Time 6 + 08:00, !- Time 7 + 0.442963789683634, !- Value Until Time 7 + 09:00, !- Time 8 + 0.468465911731105, !- Value Until Time 8 + 10:00, !- Time 9 + 0.4793336975684, !- Value Until Time 9 + 11:00, !- Time 10 + 0.46617695106947, !- Value Until Time 10 + 12:00, !- Time 11 + 0.44794863553161, !- Value Until Time 11 + 13:00, !- Time 12 + 0.43479188903268, !- Value Until Time 12 + 14:00, !- Time 13 + 0.430920323409176, !- Value Until Time 13 + 15:00, !- Time 14 + 0.433881625239621, !- Value Until Time 14 + 16:00, !- Time 15 + 0.456688044793082, !- Value Until Time 15 + 17:00, !- Time 16 + 0.531613155257721, !- Value Until Time 16 + 18:00, !- Time 17 + 0.695538708857989, !- Value Until Time 17 + 19:00, !- Time 18 + 0.902035899694452, !- Value Until Time 18 + 20:00, !- Time 19 + 1, !- Value Until Time 19 + 21:00, !- Time 20 + 0.897458386263446, !- Value Until Time 20 + 22:00, !- Time 21 + 0.690416938532256, !- Value Until Time 21 + 23:00, !- Time 22 + 0.592033040472716, !- Value Until Time 22 + 24:00, !- Time 23 + 0.248397578831761; !- Value Until Time 23 + + Schedule:Week:Daily, + lighting schedule Week Rule - Nov4-Nov24, !- Name + lighting schedule allday11, !- Sunday Schedule:Day Name + lighting schedule allday11, !- Monday Schedule:Day Name + lighting schedule allday11, !- Tuesday Schedule:Day Name + lighting schedule allday11, !- Wednesday Schedule:Day Name + lighting schedule allday11, !- Thursday Schedule:Day Name + lighting schedule allday11, !- Friday Schedule:Day Name + lighting schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Nov25-Dec1, !- Name + lighting schedule allday11, !- Sunday Schedule:Day Name + lighting schedule allday11, !- Monday Schedule:Day Name + lighting schedule allday11, !- Tuesday Schedule:Day Name + lighting schedule allday11, !- Wednesday Schedule:Day Name + lighting schedule allday11, !- Thursday Schedule:Day Name + lighting schedule allday11, !- Friday Schedule:Day Name + lighting schedule allday12, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + lighting schedule Week Rule - Dec2-Dec31, !- Name + lighting schedule allday12, !- Sunday Schedule:Day Name + lighting schedule allday12, !- Monday Schedule:Day Name + lighting schedule allday12, !- Tuesday Schedule:Day Name + lighting schedule allday12, !- Wednesday Schedule:Day Name + lighting schedule allday12, !- Thursday Schedule:Day Name + lighting schedule allday12, !- Friday Schedule:Day Name + lighting schedule allday12, !- Saturday Schedule:Day Name + Schedule Day 16, !- Holiday Schedule:Day Name + Schedule Day 16, !- SummerDesignDay Schedule:Day Name + Schedule Day 16, !- WinterDesignDay Schedule:Day Name + Schedule Day 16, !- CustomDay1 Schedule:Day Name + Schedule Day 16; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + lighting schedule, !- Name + Fractional, !- Schedule Type Limits Name + lighting schedule Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 27, !- End Day 1 + lighting schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 28, !- Start Day 2 + 2, !- End Month 2 + 3, !- End Day 2 + lighting schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 + 2, !- Start Month 3 + 4, !- Start Day 3 + 2, !- End Month 3 + 24, !- End Day 3 + lighting schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 + 2, !- Start Month 4 + 25, !- Start Day 4 + 3, !- End Month 4 + 3, !- End Day 4 + lighting schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 5 + 3, !- Start Month 5 + 4, !- Start Day 5 + 3, !- End Month 5 + 31, !- End Day 5 + lighting schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 6 + 4, !- Start Month 6 + 1, !- Start Day 6 + 4, !- End Month 6 + 28, !- End Day 6 + lighting schedule Week Rule - Apr29-May5, !- Schedule:Week Name 7 + 4, !- Start Month 7 + 29, !- Start Day 7 + 5, !- End Month 7 + 5, !- End Day 7 + lighting schedule Week Rule - May6-May26, !- Schedule:Week Name 8 + 5, !- Start Month 8 + 6, !- Start Day 8 + 5, !- End Month 8 + 26, !- End Day 8 + lighting schedule Week Rule - May27-Jun2, !- Schedule:Week Name 9 + 5, !- Start Month 9 + 27, !- Start Day 9 + 6, !- End Month 9 + 2, !- End Day 9 + lighting schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 10 + 6, !- Start Month 10 + 3, !- Start Day 10 + 6, !- End Month 10 + 30, !- End Day 10 + lighting schedule Week Rule - Jul1-Jul28, !- Schedule:Week Name 11 + 7, !- Start Month 11 + 1, !- Start Day 11 + 7, !- End Month 11 + 28, !- End Day 11 + lighting schedule Week Rule - Jul29-Aug4, !- Schedule:Week Name 12 + 7, !- Start Month 12 + 29, !- Start Day 12 + 8, !- End Month 12 + 4, !- End Day 12 + lighting schedule Week Rule - Aug5-Aug25, !- Schedule:Week Name 13 + 8, !- Start Month 13 + 5, !- Start Day 13 + 8, !- End Month 13 + 25, !- End Day 13 + lighting schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 14 + 8, !- Start Month 14 + 26, !- Start Day 14 + 9, !- End Month 14 + 1, !- End Day 14 + lighting schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 15 + 9, !- Start Month 15 + 2, !- Start Day 15 + 9, !- End Month 15 + 29, !- End Day 15 + lighting schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 16 + 9, !- Start Month 16 + 30, !- Start Day 16 + 10, !- End Month 16 + 6, !- End Day 16 + lighting schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 17 + 10, !- Start Month 17 + 7, !- Start Day 17 + 10, !- End Month 17 + 27, !- End Day 17 + lighting schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 18 + 10, !- Start Month 18 + 28, !- Start Day 18 + 11, !- End Month 18 + 3, !- End Day 18 + lighting schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 19 + 11, !- Start Month 19 + 4, !- Start Day 19 + 11, !- End Month 19 + 24, !- End Day 19 + lighting schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 20 + 11, !- Start Month 20 + 25, !- Start Day 20 + 12, !- End Month 20 + 1, !- End Day 20 + lighting schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 21 + 12, !- Start Month 21 + 2, !- Start Day 21 + 12, !- End Month 21 + 31; !- End Day 21 + + Schedule:Day:Interval, + Schedule Day 16, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + ElectricEquipment, + clothes dryer, !- Name + living space, !- Zone or ZoneList Name + clothes dryer schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 80533.1207326169, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.015, !- Fraction Latent + 0.081, !- Fraction Radiant + 0.85, !- Fraction Lost + clothes dryer; !- End-Use Subcategory + + ElectricEquipment, + clothes washer, !- Name + living space, !- Zone or ZoneList Name + clothes washer schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 19448.4454267132, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.03, !- Fraction Latent + 0.162, !- Fraction Radiant + 0.7, !- Fraction Lost + clothes washer; !- End-Use Subcategory + + ElectricEquipment, + cooking range, !- Name + living space, !- Zone or ZoneList Name + cooking range, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 201.330571702405, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0799999999999999, !- Fraction Latent + 0.432, !- Fraction Radiant + 0.2, !- Fraction Lost + cooking range; !- End-Use Subcategory + + ElectricEquipment, + dishwasher, !- Name + living space, !- Zone or ZoneList Name + dishwasher schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 9828.32941160075, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.3, !- Fraction Latent + 0.18, !- Fraction Radiant + 0.4, !- Fraction Lost + dishwasher; !- End-Use Subcategory + + ElectricEquipment, + fridge, !- Name + living space, !- Zone or ZoneList Name + fridge, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 97.4834259275168, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.6, !- Fraction Radiant + 0, !- Fraction Lost + fridge; !- End-Use Subcategory + + ElectricEquipment, + mech vent house fan, !- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + mech vent; !- End-Use Subcategory + + ElectricEquipment, + mech vent house fan cfis,!- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0, !- Fraction Lost + mech vent; !- End-Use Subcategory + + ElectricEquipment, + misc plug loads, !- Name + living space, !- Zone or ZoneList Name + misc plug loads schedule,!- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 224.435610249806, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.045, !- Fraction Latent + 0.513, !- Fraction Radiant + 0.1, !- Fraction Lost + misc plug loads; !- End-Use Subcategory + + ElectricEquipment, + misc tv, !- Name + living space, !- Zone or ZoneList Name + misc tv schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 274.705334312761, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.6, !- Fraction Radiant + 0, !- Fraction Lost + misc tv; !- End-Use Subcategory + + ElectricEquipment, + whole house fan, !- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + whole house fan; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_RetCondToDZ equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupCondToDZ equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupLatLkToDZ equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0.17, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupSensLkToDZ equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.83, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + mech vent house fan latent load equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 1, !- Fraction Latent + 0, !- Fraction Radiant + 0, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + mech vent house fan sensible load equip, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + General; !- End-Use Subcategory + + OtherEquipment, + water heater EC adjustment, !- Name + Electricity, !- Fuel Type + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0.01, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 1, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + water heater EC adjustment; !- End-Use Subcategory + + OtherEquipment, + water latent, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + dhw fixtures schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 5740.21365641083, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 1, !- Fraction Latent + 0, !- Fraction Radiant + 0, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + water latent; !- End-Use Subcategory + + OtherEquipment, + water sensible, !- Name + None, !- Fuel Type + living space, !- Zone or ZoneList Name + dhw fixtures schedule, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + -5657.22261559525, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0, !- Fraction Latent + 0.6, !- Fraction Radiant + 0, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + water sensible; !- End-Use Subcategory + + ZoneInfiltration:DesignFlowRate, + infil flow, !- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0, !- 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} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + natural vent flow, !- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0, !- 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} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + whole house fan flow, !- Name + living space, !- Zone or ZoneList Name + Always On Discrete, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0, !- 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} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneControl:Thermostat, + living space Thermostat, !- Name + living space, !- Zone or ZoneList Name + living space Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + living space temperature setpoint, !- Control 1 Name + , !- Control 2 Object Type + , !- Control 2 Name + , !- Control 3 Object Type + , !- Control 3 Name + , !- Control 4 Object Type + , !- Control 4 Name + 0; !- Temperature Difference Between Cutout And Setpoint {deltaC} + + Schedule:Compact, + living space Thermostat Schedule, !- Name + living space Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + ScheduleTypeLimits, + living space Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ThermostatSetpoint:DualSetpoint, + living space temperature setpoint, !- Name + heating setpoint, !- Heating Setpoint Temperature Schedule Name + cooling setpoint; !- Cooling Setpoint Temperature Schedule Name + + ScheduleTypeLimits, + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + temperature; !- Unit Type + + Schedule:Day:Interval, + heating setpoint allday1,!- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 20; !- Value Until Time 1 + + Schedule:Week:Daily, + heating setpoint Week Rule - Jan1-Dec31, !- Name + heating setpoint allday1,!- Sunday Schedule:Day Name + heating setpoint allday1,!- Monday Schedule:Day Name + heating setpoint allday1,!- Tuesday Schedule:Day Name + heating setpoint allday1,!- Wednesday Schedule:Day Name + heating setpoint allday1,!- Thursday Schedule:Day Name + heating setpoint allday1,!- Friday Schedule:Day Name + heating setpoint allday1,!- Saturday Schedule:Day Name + Schedule Day 3, !- Holiday Schedule:Day Name + Schedule Day 3, !- SummerDesignDay Schedule:Day Name + Schedule Day 3, !- WinterDesignDay Schedule:Day Name + Schedule Day 3, !- CustomDay1 Schedule:Day Name + Schedule Day 3; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + heating setpoint, !- Name + Temperature, !- Schedule Type Limits Name + heating setpoint Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Day:Interval, + Schedule Day 3, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + cooling setpoint allday1,!- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 25.5555555555556; !- Value Until Time 1 + + Schedule:Week:Daily, + cooling setpoint Week Rule - Jan1-Dec31, !- Name + cooling setpoint allday1,!- Sunday Schedule:Day Name + cooling setpoint allday1,!- Monday Schedule:Day Name + cooling setpoint allday1,!- Tuesday Schedule:Day Name + cooling setpoint allday1,!- Wednesday Schedule:Day Name + cooling setpoint allday1,!- Thursday Schedule:Day Name + cooling setpoint allday1,!- Friday Schedule:Day Name + cooling setpoint allday1,!- Saturday Schedule:Day Name + Schedule Day 4, !- Holiday Schedule:Day Name + Schedule Day 4, !- SummerDesignDay Schedule:Day Name + Schedule Day 4, !- WinterDesignDay Schedule:Day Name + Schedule Day 4, !- CustomDay1 Schedule:Day Name + Schedule Day 4; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + cooling setpoint, !- Name + Temperature, !- Schedule Type Limits Name + cooling setpoint Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Day:Interval, + Schedule Day 4, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + ZoneHVAC:EquipmentConnections, + living space, !- Zone Name + living space Equipment List, !- Zone Conditioning Equipment List Name + living space Inlet Node List, !- Zone Air Inlet Node or NodeList Name + living space Exhaust Node List, !- Zone Air Exhaust Node or NodeList Name + Node 1, !- Zone Air Node Name + living space Return Node List; !- Zone Return Air Node or NodeList Name + + NodeList, + living space Inlet Node List, !- Name + Node 7, !- Node 1 Name + Node 11; !- Node 2 Name + + NodeList, + living space Exhaust Node List, !- Name + Node 10; !- Node 1 Name + + NodeList, + living space Return Node List, !- Name + Node 8; !- Node 1 Name + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + central ac and furnace terminal, !- Name + Always On Discrete, !- Availability Schedule Name + Node 9, !- Air Inlet Node Name + Node 7, !- Air Outlet Node Name + 0.942007096627203; !- Maximum Air Flow Rate {m3/s} + + ZoneHVAC:AirDistributionUnit, + ADU central ac and furnace terminal, !- Name + Node 7, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + central ac and furnace terminal; !- Air Terminal Name + + ZoneHVAC:IdealLoadsAirSystem, + ideal residual, !- Name + , !- Availability Schedule Name + Node 11, !- Zone Supply Air Node Name + Node 10, !- Zone Exhaust Air Node Name + , !- System Inlet Air Node Name + 50, !- Maximum Heating Supply Air Temperature {C} + 10, !- Minimum Cooling Supply Air Temperature {C} + 0.015, !- Maximum Heating Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.01, !- Minimum Cooling Supply Air Humidity Ratio {kgWater/kgDryAir} + NoLimit, !- Heating Limit + , !- Maximum Heating Air Flow Rate {m3/s} + , !- Maximum Sensible Heating Capacity {W} + NoLimit, !- Cooling Limit + , !- Maximum Cooling Air Flow Rate {m3/s} + , !- Maximum Total Cooling Capacity {W} + , !- Heating Availability Schedule Name + , !- Cooling Availability Schedule Name + None, !- Dehumidification Control Type + , !- Cooling Sensible Heat Ratio {dimensionless} + None, !- Humidification Control Type + , !- Design Specification Outdoor Air Object Name + , !- Outdoor Air Inlet Node Name + , !- Demand Controlled Ventilation Type + , !- Outdoor Air Economizer Type + , !- Heat Recovery Type + , !- Sensible Heat Recovery Effectiveness {dimensionless} + ; !- Latent Heat Recovery Effectiveness {dimensionless} + + ZoneHVAC:EquipmentList, + living space Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU central ac and furnace terminal, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + Sequential Fraction Schedule 1, !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + Sequential Fraction Schedule, !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment 2 Object Type + ideal residual, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + Sequential Fraction Schedule 2, !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + Sequential Fraction Schedule 3; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + SimulationControl, + No, !- Do Zone Sizing Calculation + No, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes + + ConvergenceLimits, + 0; !- Minimum System Timestep {minutes} + + RunPeriod, + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 1, !- End Month + 7, !- End Day of Month + , !- End Year + , !- 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 + No, !- Use Weather File Rain Indicators + No; !- Use Weather File Snow Indicators ! -RunPeriod, - Run Period 2, !- Name - 7, !- Begin Month - 1, !- Begin Day of Month - , !- Begin Year - 7, !- End Month - 7, !- End Day of Month - , !- End Year - , !- 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 - No, !- Use Weather File Rain Indicators - No; !- Use Weather File Snow Indicators - -ShadowCalculation, - PolygonClipping, !- Shading Calculation Method - Periodic, !- Shading Calculation Update Frequency Method - 20, !- Shading Calculation Update Frequency - 200, !- Maximum Figures in Shadow Overlap Calculations - SutherlandHodgman, !- Polygon Clipping Algorithm - 512, !- Pixel Counting Resolution - SimpleSkyDiffuseModeling, !- Sky Diffuse Modeling Algorithm - No, !- Output External Shading Calculation Results - No, !- Disable Self-Shading Within Shading Zone Groups - No; !- Disable Self-Shading From Shading Zone Groups to Other Zones - -SurfaceConvectionAlgorithm:Inside, - TARP; !- Algorithm - -SurfaceConvectionAlgorithm:Outside, - DOE-2; !- Algorithm - -ZoneCapacitanceMultiplier:ResearchSpecial, - Zone Capacitance Multiplier Research Special, !- Name - , !- Zone or ZoneList Name - , !- Temperature Capacity Multiplier - 15, !- Humidity Capacity Multiplier - , !- Carbon Dioxide Capacity Multiplier - ; !- Generic Contaminant Capacity Multiplier - -Sizing:Parameters, - 1.25, !- Heating Sizing Factor - 1.15; !- Cooling Sizing Factor - -Output:Table:SummaryReports, - AllSummary; !- Report Name 1 - -GlobalGeometryRules, - UpperLeftCorner, !- Starting Vertex Position - Counterclockwise, !- Vertex Entry Direction - Relative, !- Coordinate System - Relative, !- Daylighting Reference Point Coordinate System - Relative; !- Rectangular Surface Coordinate System - -Material, - asphalt or fiberglass shingles, !- Name - Rough, !- Roughness - 0.009525, !- Thickness {m} - 0.162714, !- Conductivity {W/m-K} - 1121.4, !- Density {kg/m3} - 1465.45, !- Specific Heat {J/kg-K} - 0.92, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - CeilingStudAndCavity, !- Name - Rough, !- Roughness - 0.1397, !- Thickness {m} - 0.0212586879621772, !- Conductivity {W/m-K} - 65.682, !- Density {kg/m3} - 1177.46609756098, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - Concrete 4.0 in., !- Name - Rough, !- Roughness - 0.1016, !- Thickness {m} - 1.803125, !- Conductivity {W/m-K} - 2242.8, !- Density {kg/m3} - 837.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - DoorMaterial, !- Name - Rough, !- Roughness - 0.04445, !- Thickness {m} - 0.0716541300028385, !- Conductivity {W/m-K} - 512.64, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - Drywall 0.5 in., !- Name - Rough, !- Roughness - 0.0127, !- Thickness {m} - 0.1602906, !- Conductivity {W/m-K} - 801, !- Density {kg/m3} - 837.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.1; !- Visible Absorptance - -Material, - Floor Covering, !- Name - Rough, !- Roughness - 0.0127, !- Thickness {m} - 0.02885, !- Conductivity {W/m-K} - 54.468, !- Density {kg/m3} - 1339.84, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.9, !- Solar Absorptance - 0.9; !- Visible Absorptance - -Material, - furniture material living space, !- Name - Rough, !- Roughness - 0.06096, !- Thickness {m} - 0.1154577, !- Conductivity {W/m-K} - 640.8, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.1; !- Visible Absorptance - -Material, - Radiant Barrier, !- Name - Rough, !- Roughness - 0.00021336, !- Thickness {m} - 235.0698, !- Conductivity {W/m-K} - 2700.972, !- Density {kg/m3} - 921.14, !- Specific Heat {J/kg-K} - 0.067, !- Thermal Absorptance - 0.05, !- Solar Absorptance - 0.05; !- Visible Absorptance - -Material, - RoofRigidIns, !- Name - Rough, !- Roughness - 0.00224211728711613, !- Thickness {m} - 0.029427, !- Conductivity {W/m-K} - 32.04, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - RoofSheathing, !- Name - Rough, !- Roughness - 0.0127, !- Thickness {m} - 0.1154577, !- Conductivity {W/m-K} - 512.64, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - SlabRigidIns, !- Name - Rough, !- Roughness - 0.025908, !- Thickness {m} - 0.029427, !- Conductivity {W/m-K} - 32.04, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallRigidIns, !- Name - Rough, !- Roughness - 0.051816, !- Thickness {m} - 0.029427, !- Conductivity {W/m-K} - 32.04, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallRigidIns 1, !- Name - Rough, !- Roughness - 0.5129784, !- Thickness {m} - 0.029427, !- Conductivity {W/m-K} - 32.04, !- Density {kg/m3} - 1214.23, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallStudAndCavity, !- Name - Rough, !- Roughness - 0.1397, !- Thickness {m} - 0.0823011851264537, !- Conductivity {W/m-K} - 139.0536, !- Density {kg/m3} - 1170.23755760369, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallStudAndCavity 1, !- Name - Rough, !- Roughness - 0.1397, !- Thickness {m} - 0.727959376833552, !- Conductivity {W/m-K} - 139.0536, !- Density {kg/m3} - 1170.23755760369, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallStudAndCavity 2, !- Name - Rough, !- Roughness - 0.0889, !- Thickness {m} - 0.380278417457636, !- Conductivity {W/m-K} - 52.34794524, !- Density {kg/m3} - 1209.88641434781, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - WallStudAndCavity 3, !- Name - Rough, !- Roughness - 0.0889, !- Thickness {m} - 0.391763531157105, !- Conductivity {W/m-K} - 83.034082224, !- Density {kg/m3} - 1211.67419087611, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - wood siding, !- Name - Rough, !- Roughness - 0.0254, !- Thickness {m} - 0.1024175, !- Conductivity {W/m-K} - 544.68, !- Density {kg/m3} - 1172.36, !- Specific Heat {J/kg-K} - 0.92, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -Material, - wood siding 1, !- Name - Rough, !- Roughness - 0.0254, !- Thickness {m} - 0.1024175, !- Conductivity {W/m-K} - 544.68, !- Density {kg/m3} - 1172.36, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.75, !- Solar Absorptance - 0.75; !- Visible Absorptance - -Material:NoMass, - Adiabatic, !- Name - Rough, !- Roughness - 176.1, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -WindowMaterial:Shade, - WindowCoolingShade, !- Name - 0.7, !- Solar Transmittance {dimensionless} - 0.29999, !- Solar Reflectance {dimensionless} - 0.7, !- Visible Transmittance {dimensionless} - 0.29999, !- Visible Reflectance {dimensionless} - 1e-05, !- Infrared Hemispherical Emissivity {dimensionless} - 0.7, !- Infrared Transmittance {dimensionless} - 0.0001, !- Thickness {m} - 10000, !- Conductivity {W/m-K} - 0.001, !- Shade to Glass Distance {m} - 0, !- Top Opening Multiplier - 0, !- Bottom Opening Multiplier - 0, !- Left-Side Opening Multiplier - 0, !- Right-Side Opening Multiplier - 0; !- Airflow Permeability {dimensionless} - -WindowMaterial:Shade, - WindowHeatingShade, !- Name - 0.85, !- Solar Transmittance {dimensionless} - 0.14999, !- Solar Reflectance {dimensionless} - 0.85, !- Visible Transmittance {dimensionless} - 0.14999, !- Visible Reflectance {dimensionless} - 1e-05, !- Infrared Hemispherical Emissivity {dimensionless} - 0.85, !- Infrared Transmittance {dimensionless} - 0.0001, !- Thickness {m} - 10000, !- Conductivity {W/m-K} - 0.001, !- Shade to Glass Distance {m} - 0, !- Top Opening Multiplier - 0, !- Bottom Opening Multiplier - 0, !- Left-Side Opening Multiplier - 0, !- Right-Side Opening Multiplier - 0; !- Airflow Permeability {dimensionless} - -WindowMaterial:SimpleGlazingSystem, - WindowMaterial, !- Name - 1.87374, !- U-Factor {W/m2-K} - 0.45; !- Solar Heat Gain Coefficient - -WindowShadingControl, - WindowCoolingShadingControl, !- Name - living space, !- Zone Name - 1, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - cooling season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowCoolingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowNorth; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowCoolingShadingControl 1, !- Name - living space, !- Zone Name - 2, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - cooling season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowCoolingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowSouth; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowCoolingShadingControl 2, !- Name - living space, !- Zone Name - 3, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - cooling season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowCoolingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowEast; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowCoolingShadingControl 3, !- Name - living space, !- Zone Name - 4, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - cooling season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowCoolingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowWest; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowHeatingShadingControl, !- Name - living space, !- Zone Name - 5, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - heating season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowHeatingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowNorth; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowHeatingShadingControl 1, !- Name - living space, !- Zone Name - 6, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - heating season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowHeatingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowSouth; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowHeatingShadingControl 2, !- Name - living space, !- Zone Name - 7, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - heating season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowHeatingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowEast; !- Fenestration Surface Name 1 - -WindowShadingControl, - WindowHeatingShadingControl 3, !- Name - living space, !- Zone Name - 8, !- Shading Control Sequence Number - InteriorShade, !- Shading Type - , !- Construction with Shading Name - OnIfScheduleAllows, !- Shading Control Type - heating season schedule, !- Schedule Name - , !- Setpoint {W/m2, W or deg C} - Yes, !- Shading Control Is Scheduled - No, !- Glare Control Is Active - WindowHeatingShade, !- Shading Device Material Name - FixedSlatAngle, !- Type of Slat Angle Control for Blinds - , !- Slat Angle Schedule Name - , !- Setpoint 2 {BasedOnField A5} - , !- Daylighting Control Object Name - Sequential, !- Multiple Surface Control Type - WindowWest; !- Fenestration Surface Name 1 - -Construction, - AdiabaticConst, !- Name - Adiabatic; !- Layer 1 - -Construction, - AdiabaticWallConstruction, !- Name - wood siding 1, !- Layer 1 - WallRigidIns 1, !- Layer 2 - WallStudAndCavity 2, !- Layer 3 - Drywall 0.5 in.; !- Layer 4 - -Construction, - AdiabaticWallConstruction 1, !- Name - wood siding 1, !- Layer 1 - WallRigidIns 1, !- Layer 2 - WallStudAndCavity 2, !- Layer 3 - Drywall 0.5 in.; !- Layer 4 - -Construction, - Door, !- Name - DoorMaterial; !- Layer 1 - -Construction, - Door 1, !- Name - DoorMaterial; !- Layer 1 - -Construction, - FloorBelowAttic construction, !- Name - CeilingStudAndCavity, !- Layer 1 - Drywall 0.5 in.; !- Layer 2 - -Construction, - FloorBelowAttic construction Reversed, !- Name - Drywall 0.5 in., !- Layer 1 - CeilingStudAndCavity; !- Layer 2 - -Construction, - furniture construction living space, !- Name - furniture material living space; !- Layer 1 - -Construction, - PartitionWallConstruction, !- Name - Drywall 0.5 in., !- Layer 1 - WallStudAndCavity 3, !- Layer 2 - Drywall 0.5 in.; !- Layer 3 - -Construction, - Roof construction, !- Name - asphalt or fiberglass shingles, !- Layer 1 - RoofRigidIns, !- Layer 2 - RoofSheathing, !- Layer 3 - Radiant Barrier; !- Layer 4 - -Construction, - Slab construction, !- Name - SlabRigidIns, !- Layer 1 - Concrete 4.0 in., !- Layer 2 - Floor Covering; !- Layer 3 - -Construction, - Wall construction, !- Name - wood siding, !- Layer 1 - WallRigidIns, !- Layer 2 - RoofSheathing, !- Layer 3 - WallStudAndCavity, !- Layer 4 - Drywall 0.5 in.; !- Layer 5 - -Construction, - WallAtticGable construction, !- Name - wood siding, !- Layer 1 - RoofSheathing, !- Layer 2 - WallStudAndCavity 1; !- Layer 3 - -Construction, - WindowConstruction, !- Name - WindowMaterial; !- Layer 1 - -Construction, - WindowConstruction 1, !- Name - WindowMaterial; !- Layer 1 - -Construction, - WindowConstruction 2, !- Name - WindowMaterial; !- Layer 1 - -Construction, - WindowConstruction 3, !- Name - WindowMaterial; !- Layer 1 - -ScheduleTypeLimits, - ActivityLevel, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - , !- Upper Limit Value {BasedOnField A3} - Continuous, !- Numeric Type - activitylevel; !- Unit Type - -ScheduleTypeLimits, - Fractional 1, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 1, !- Upper Limit Value {BasedOnField A3} - Continuous; !- Numeric Type - -ScheduleTypeLimits, - OnOff, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 1, !- Upper Limit Value {BasedOnField A3} - Discrete; !- Numeric Type - -ScheduleTypeLimits, - OnOff 1, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 1, !- Upper Limit Value {BasedOnField A3} - Discrete, !- Numeric Type - availability; !- Unit Type - -ScheduleTypeLimits, - OnOff 2, !- Name - 0, !- Lower Limit Value {BasedOnField A3} - 1, !- Upper Limit Value {BasedOnField A3} - Discrete, !- Numeric Type - availability; !- Unit Type - -ScheduleTypeLimits, - Schedule Type Limits 1, !- Name - , !- Lower Limit Value {BasedOnField A3} - , !- Upper Limit Value {BasedOnField A3} - , !- Numeric Type - temperature; !- Unit Type - -Schedule:Constant, - Always Off Discrete, !- Name - OnOff 2, !- Schedule Type Limits Name - 0; !- Hourly Value - -Schedule:Constant, - Always On Discrete, !- Name - OnOff 1, !- Schedule Type Limits Name - 1; !- Hourly Value - -Schedule:Constant, - dhw temp, !- Name - Temperature, !- Schedule Type Limits Name - 52.6666666666667; !- Hourly Value - -Schedule:Constant, - occupants activity schedule, !- Name - ActivityLevel, !- Schedule Type Limits Name - 117.228428068889; !- Hourly Value - -Schedule:Constant, - Schedule Constant 1, !- Name - Temperature, !- Schedule Type Limits Name - 40.5555555555556; !- Hourly Value - -Schedule:Constant, - Sequential Fraction Schedule, !- Name - Fractional, !- Schedule Type Limits Name - 1; !- Hourly Value - -Schedule:Constant, - Sequential Fraction Schedule 1, !- Name - Fractional, !- Schedule Type Limits Name - 1; !- Hourly Value - -Schedule:Constant, - Sequential Fraction Schedule 2, !- Name - Fractional, !- Schedule Type Limits Name - 1; !- Hourly Value - -Schedule:Constant, - Sequential Fraction Schedule 3, !- Name - Fractional, !- Schedule Type Limits Name - 1; !- Hourly Value - -Schedule:Constant, - under slab, !- Name - Schedule Type Limits 1, !- Schedule Type Limits Name - 0; !- Hourly Value - -Schedule:Constant, - WH Setpoint Temp, !- Name - Temperature, !- Schedule Type Limits Name - 52.6666666666667; !- Hourly Value - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 09:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 10:00, !- Time 2 {hh:mm} - 0.566666666666667, !- Value Until Time 2 - 16:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 17:00, !- Time 4 {hh:mm} - 0.3, !- Value Until Time 4 - 18:00, !- Time 5 {hh:mm} - 0.1, !- Value Until Time 5 - 24:00, !- Time 6 {hh:mm} - 0; !- Value Until Time 6 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 06:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 07:00, !- Time 2 {hh:mm} - 0.65, !- Value Until Time 2 - 11:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 12:00, !- Time 4 {hh:mm} - 0.566666666666667, !- Value Until Time 4 - 20:00, !- Time 5 {hh:mm} - 0, !- Value Until Time 5 - 23:00, !- Time 6 {hh:mm} - 0.4, !- Value Until Time 6 - 24:00, !- Time 7 {hh:mm} - 0; !- Value Until Time 7 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer exhaust schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 13:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 15:00, !- Time 2 {hh:mm} - 0.4, !- Value Until Time 2 - 24:00, !- Time 3 {hh:mm} - 0; !- Value Until Time 3 - -Schedule:Day:Interval, - clothes dryer schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 09:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 10:00, !- Time 2 {hh:mm} - 0.0302713833333333, !- Value Until Time 2 - 16:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 17:00, !- Time 4 {hh:mm} - 0.0058593, !- Value Until Time 4 - 24:00, !- Time 5 {hh:mm} - 0; !- Value Until Time 5 - -Schedule:Day:Interval, - clothes dryer schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 06:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 07:00, !- Time 2 {hh:mm} - 0.0211826, !- Value Until Time 2 - 11:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 12:00, !- Time 4 {hh:mm} - 0.0193903, !- Value Until Time 4 - 20:00, !- Time 5 {hh:mm} - 0, !- Value Until Time 5 - 21:00, !- Time 6 {hh:mm} - 0.00874706666666667, !- Value Until Time 6 - 22:00, !- Time 7 {hh:mm} - 0.00322948333333333, !- Value Until Time 7 - 23:00, !- Time 8 {hh:mm} - 0.0123919666666667, !- Value Until Time 8 - 24:00, !- Time 9 {hh:mm} - 0; !- Value Until Time 9 - -Schedule:Day:Interval, - clothes dryer schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes dryer schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 13:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 14:00, !- Time 2 {hh:mm} - 0.00380235, !- Value Until Time 2 - 15:00, !- Time 3 {hh:mm} - 0.00029145, !- Value Until Time 3 - 24:00, !- Time 4 {hh:mm} - 0; !- Value Until Time 4 - -Schedule:Day:Interval, - clothes washer schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 08:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 09:00, !- Time 2 {hh:mm} - 0.0302713833333333, !- Value Until Time 2 - 15:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 16:00, !- Time 4 {hh:mm} - 0.0058593, !- Value Until Time 4 - 24:00, !- Time 5 {hh:mm} - 0; !- Value Until Time 5 - -Schedule:Day:Interval, - clothes washer schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes washer schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes washer schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes washer schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.0211826, !- Value Until Time 2 - 10:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 11:00, !- Time 4 {hh:mm} - 0.0193903, !- Value Until Time 4 - 19:00, !- Time 5 {hh:mm} - 0, !- Value Until Time 5 - 20:00, !- Time 6 {hh:mm} - 0.00874706666666667, !- Value Until Time 6 - 21:00, !- Time 7 {hh:mm} - 0.00322948333333333, !- Value Until Time 7 - 22:00, !- Time 8 {hh:mm} - 0.0123919666666667, !- Value Until Time 8 - 24:00, !- Time 9 {hh:mm} - 0; !- Value Until Time 9 - -Schedule:Day:Interval, - clothes washer schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - clothes washer schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 12:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 13:00, !- Time 2 {hh:mm} - 0.00380235, !- Value Until Time 2 - 14:00, !- Time 3 {hh:mm} - 0.00029145, !- Value Until Time 3 - 24:00, !- Time 4 {hh:mm} - 0; !- Value Until Time 4 - -Schedule:Day:Interval, - cooking range allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0466666666666667, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0266666666666667, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0466666666666667, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0733333333333333, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.166666666666667, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.28, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.306666666666667, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.32, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.28, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.333333333333333, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.38, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.306666666666667, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.38, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.293333333333333, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.613333333333333, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 1, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.78, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.4, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.233333333333333, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.166666666666667, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.106666666666667, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0733333333333333; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0461561835308417, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0263749620176238, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0461561835308417, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0725311455484655, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.164843512610149, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.27693710118505, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.303312063202674, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.316499544211486, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.27693710118505, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.329687025220298, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.37584320875114, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.303312063202674, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.37584320875114, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.290124582193862, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.606624126405348, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.989061075660893, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.771467639015497, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.395624430264357, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.230780917654208, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.164843512610149, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.105499848070495, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0725311455484655; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0466666666666667, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0266666666666667, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0466666666666667, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0733333333333333, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.166666666666667, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.28, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.306666666666667, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.32, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.28, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.333333333333333, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.38, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.306666666666667, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.38, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.293333333333333, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.613333333333333, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 1, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.78, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.4, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.233333333333333, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.166666666666667, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.106666666666667, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0733333333333333; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0421573989668794, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0240899422667882, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0421573989668794, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0662473412336676, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.150562139167426, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.252944393801276, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.277034336068064, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.289079307201459, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.252944393801276, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.301124278334853, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.343281677301732, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.277034336068064, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.343281677301732, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.26498936493467, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.554068672136129, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.903372835004558, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.704630811303555, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.361349134001823, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.210786994834397, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.150562139167426, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0963597690671529, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0662473412336676; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0419872379216044, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0239927073837739, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0419872379216044, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0659799453053783, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.149954421148587, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.251923427529626, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.2759161349134, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.287912488605287, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.251923427529626, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.299908842297174, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.341896080218778, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.2759161349134, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.341896080218778, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.263919781221513, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.5518322698268, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.899726526891522, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.701786690975387, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.359890610756609, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.209936189608022, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.149954421148587, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0959708295350957, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0659799453053783; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0421573989668794, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0240899422667882, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0421573989668794, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0662473412336676, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.150562139167426, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.252944393801276, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.277034336068064, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.289079307201459, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.252944393801276, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.301124278334853, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.343281677301732, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.277034336068064, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.343281677301732, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.26498936493467, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.554068672136129, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.903372835004558, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.704630811303555, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.361349134001823, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.210786994834397, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.150562139167426, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0963597690671529, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0662473412336676; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0378608325736858, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0216347614706776, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0378608325736858, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0594955940443634, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.135217259191735, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.227164995442115, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.248799756912792, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.259617137648131, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.227164995442115, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.27043451838347, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.308295350957156, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.248799756912792, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.308295350957156, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.237982376177454, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.497599513825585, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.81130355515041, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.63281677301732, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.324521422060164, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.189304162868429, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.135217259191735, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0865390458827104, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0594955940443634; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0381160741415983, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.021780613795199, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0381160741415983, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0598966879367973, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.136128836219994, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.22869644484959, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.250477058644789, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.261367365542388, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.22869644484959, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.272257672439988, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.310373746581586, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.250477058644789, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.310373746581586, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.239586751747189, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.500954117289578, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.816773017319964, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.637082953509572, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.326709206927985, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.190580370707991, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.136128836219994, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0871224551807961, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0598966879367973; !- Value Until Time 22 - -Schedule:Day:Interval, - cooking range allday9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.0378608325736858, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.0216347614706776, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0378608325736858, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0594955940443634, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.135217259191735, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.227164995442115, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.248799756912792, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.259617137648131, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.227164995442115, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.27043451838347, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.308295350957156, !- Value Until Time 11 - 14:00, !- Time 12 {hh:mm} - 0.248799756912792, !- Value Until Time 12 - 15:00, !- Time 13 {hh:mm} - 0.308295350957156, !- Value Until Time 13 - 16:00, !- Time 14 {hh:mm} - 0.237982376177454, !- Value Until Time 14 - 17:00, !- Time 15 {hh:mm} - 0.497599513825585, !- Value Until Time 15 - 18:00, !- Time 16 {hh:mm} - 0.81130355515041, !- Value Until Time 16 - 19:00, !- Time 17 {hh:mm} - 0.63281677301732, !- Value Until Time 17 - 20:00, !- Time 18 {hh:mm} - 0.324521422060164, !- Value Until Time 18 - 21:00, !- Time 19 {hh:mm} - 0.189304162868429, !- Value Until Time 19 - 22:00, !- Time 20 {hh:mm} - 0.135217259191735, !- Value Until Time 20 - 23:00, !- Time 21 {hh:mm} - 0.0865390458827104, !- Value Until Time 21 - 24:00, !- Time 22 {hh:mm} - 0.0594955940443634; !- Value Until Time 22 - -Schedule:Day:Interval, - cooling season schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - cooling season schedule allday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - cooling season schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 1; !- Value Until Time 1 - -Schedule:Day:Interval, - dhw fixtures schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 06:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 07:00, !- Time 2 {hh:mm} - 0.00061978105, !- Value Until Time 2 - 08:00, !- Time 3 {hh:mm} - 0.00153186666666667, !- Value Until Time 3 - 11:00, !- Time 4 {hh:mm} - 0, !- Value Until Time 4 - 12:00, !- Time 5 {hh:mm} - 0.0008681315, !- Value Until Time 5 - 13:00, !- Time 6 {hh:mm} - 0.00548572655, !- Value Until Time 6 - 14:00, !- Time 7 {hh:mm} - 0, !- Value Until Time 7 - 15:00, !- Time 8 {hh:mm} - 0.00323736685, !- Value Until Time 8 - 16:00, !- Time 9 {hh:mm} - 0.00202197551666667, !- Value Until Time 9 - 17:00, !- Time 10 {hh:mm} - 0, !- Value Until Time 10 - 18:00, !- Time 11 {hh:mm} - 0.00710963961666667, !- Value Until Time 11 - 19:00, !- Time 12 {hh:mm} - 0.0369946104166667, !- Value Until Time 12 - 20:00, !- Time 13 {hh:mm} - 0.000608787116666667, !- Value Until Time 13 - 21:00, !- Time 14 {hh:mm} - 0, !- Value Until Time 14 - 22:00, !- Time 15 {hh:mm} - 0.00310989918333333, !- Value Until Time 15 - 23:00, !- Time 16 {hh:mm} - 0.000835156916666666, !- Value Until Time 16 - 24:00, !- Time 17 {hh:mm} - 0; !- Value Until Time 17 - -Schedule:Day:Interval, - dhw fixtures schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 07:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 08:00, !- Time 2 {hh:mm} - 0.00364615951666667, !- Value Until Time 2 - 09:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 10:00, !- Time 4 {hh:mm} - 0.00803737038333333, !- Value Until Time 4 - 11:00, !- Time 5 {hh:mm} - 0.00536704831666667, !- Value Until Time 5 - 12:00, !- Time 6 {hh:mm} - 0, !- Value Until Time 6 - 13:00, !- Time 7 {hh:mm} - 0.00204835808333333, !- Value Until Time 7 - 15:00, !- Time 8 {hh:mm} - 0, !- Value Until Time 8 - 16:00, !- Time 9 {hh:mm} - 0.0032879202, !- Value Until Time 9 - 17:00, !- Time 10 {hh:mm} - 0, !- Value Until Time 10 - 18:00, !- Time 11 {hh:mm} - 0.00238461675, !- Value Until Time 11 - 19:00, !- Time 12 {hh:mm} - 0, !- Value Until Time 12 - 20:00, !- Time 13 {hh:mm} - 0.000531872833333333, !- Value Until Time 13 - 23:00, !- Time 14 {hh:mm} - 0, !- Value Until Time 14 - 24:00, !- Time 15 {hh:mm} - 0.0223247701666667; !- Value Until Time 15 - -Schedule:Day:Interval, - dhw fixtures schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.00015164565, !- Value Until Time 1 - 03:00, !- Time 2 {hh:mm} - 0, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0.00138241838333333, !- Value Until Time 3 - 09:00, !- Time 4 {hh:mm} - 0, !- Value Until Time 4 - 10:00, !- Time 5 {hh:mm} - 0.0574311026333333, !- Value Until Time 5 - 11:00, !- Time 6 {hh:mm} - 0.0416817428, !- Value Until Time 6 - 12:00, !- Time 7 {hh:mm} - 0.00250110486666667, !- Value Until Time 7 - 13:00, !- Time 8 {hh:mm} - 0, !- Value Until Time 8 - 14:00, !- Time 9 {hh:mm} - 0.000281317833333333, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 7.69215e-05, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.000189014916666667, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.00127033213333333, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.0049714397, !- Value Until Time 14 - 22:00, !- Time 15 {hh:mm} - 0, !- Value Until Time 15 - 23:00, !- Time 16 {hh:mm} - 0.00190769195, !- Value Until Time 16 - 24:00, !- Time 17 {hh:mm} - 0.00246154545; !- Value Until Time 17 - -Schedule:Day:Interval, - dhw fixtures schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0025604476, !- Value Until Time 2 - 04:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 05:00, !- Time 4 {hh:mm} - 0.00265055316666667, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.00376923966666667, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.0487754419666667, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.0100132088666667, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.000153842983333333, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.0229934534666667, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.00345495445, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.00251648628333333, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.00269451448333333, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.000290107216666667, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.010905504, !- Value Until Time 17 - 22:00, !- Time 18 {hh:mm} - 0, !- Value Until Time 18 - 23:00, !- Time 19 {hh:mm} - 0.00556265526666667, !- Value Until Time 19 - 24:00, !- Time 20 {hh:mm} - 0; !- Value Until Time 20 - -Schedule:Day:Interval, - dhw fixtures schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.00110110055, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.040076999, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.000536267516666667, !- Value Until Time 4 - 10:00, !- Time 5 {hh:mm} - 0, !- Value Until Time 5 - 11:00, !- Time 6 {hh:mm} - 0.1118010915, !- Value Until Time 6 - 12:00, !- Time 7 {hh:mm} - 0, !- Value Until Time 7 - 13:00, !- Time 8 {hh:mm} - 0.00872749528333333, !- Value Until Time 8 - 14:00, !- Time 9 {hh:mm} - 0.00289890361666667, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.000606596983333333, !- Value Until Time 10 - 17:00, !- Time 11 {hh:mm} - 0, !- Value Until Time 11 - 18:00, !- Time 12 {hh:mm} - 0.00801538973333333, !- Value Until Time 12 - 19:00, !- Time 13 {hh:mm} - 0.0020637395, !- Value Until Time 13 - 20:00, !- Time 14 {hh:mm} - 0.00069230785, !- Value Until Time 14 - 21:00, !- Time 15 {hh:mm} - 0.00234725468333333, !- Value Until Time 15 - 22:00, !- Time 16 {hh:mm} - 0, !- Value Until Time 16 - 23:00, !- Time 17 {hh:mm} - 0.00240879476666667, !- Value Until Time 17 - 24:00, !- Time 18 {hh:mm} - 0; !- Value Until Time 18 - -Schedule:Day:Interval, - dhw fixtures schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.01126155315, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.0759504634, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.000912092816666667, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.000373627933333333, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.00957804803333333, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0, !- Value Until Time 9 - 13:00, !- Time 10 {hh:mm} - 0.0025846256, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.00929671581666667, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.00361759403333333, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.000263739066666667, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.0087560536, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.0223297038666667, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.00553627991666667, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.0526913189333333, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.00453627166666667, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.000353844633333333; !- Value Until Time 21 - -Schedule:Day:Interval, - dhw fixtures schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 03:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.01417311525, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.0526825224, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 7.25196e-05, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.02433412225, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.00233187325, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.0173202799166667, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.0006945052, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.00284396278333333, !- Value Until Time 11 - 16:00, !- Time 12 {hh:mm} - 0, !- Value Until Time 12 - 17:00, !- Time 13 {hh:mm} - 0.0240198298333333, !- Value Until Time 13 - 18:00, !- Time 14 {hh:mm} - 0.0134747553666667, !- Value Until Time 14 - 19:00, !- Time 15 {hh:mm} - 0.0008241702, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.00502198585, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.0001978043, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.0034571446; !- Value Until Time 19 - -Schedule:Day:Interval, - dishwasher schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - dishwasher schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - dishwasher schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 19:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 20:00, !- Time 2 {hh:mm} - 0.0564951166666667, !- Value Until Time 2 - 24:00, !- Time 3 {hh:mm} - 0; !- Value Until Time 3 - -Schedule:Day:Interval, - dishwasher schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - dishwasher schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - dishwasher schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 11:00, !- Time 1 {hh:mm} - 0, !- Value Until Time 1 - 12:00, !- Time 2 {hh:mm} - 0.0142977, !- Value Until Time 2 - 13:00, !- Time 3 {hh:mm} - 0.0401763333333333, !- Value Until Time 3 - 20:00, !- Time 4 {hh:mm} - 0, !- Value Until Time 4 - 21:00, !- Time 5 {hh:mm} - 0.0223281666666667, !- Value Until Time 5 - 22:00, !- Time 6 {hh:mm} - 0.04944225, !- Value Until Time 6 - 24:00, !- Time 7 {hh:mm} - 0; !- Value Until Time 7 - -Schedule:Day:Interval, - dishwasher schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - exterior lighting schedule weekday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.434958518013411, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.349857938402091, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.330946698488465, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.321491078531651, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.312035458574838, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.264757358790772, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.208023639049892, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.141834299352199, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.113467439481759, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.104011819524946, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.113467439481759, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.179656779179452, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.349857938402091, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.463325377883851, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.614615297192863, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.860461416070008, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.992840095465394, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.860461416070008, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.595704057279236; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.345039209001023, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.277531537674736, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.262529832935561, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.255028980565973, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.247528128196386, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.210023866348449, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.165018752130924, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.112512785543812, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0900102284350494, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.082509376065462, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0900102284350494, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.142516195022162, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.277531537674736, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.367541766109785, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.487555404023184, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.682577565632458, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.787589498806682, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.682577565632458, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.47255369928401; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.343993635640414, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.276690533015115, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.261734287987271, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.254256165473349, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.246778042959427, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.209387430389817, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.164518695306285, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.112171837708831, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0897374701670644, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.0822593476531424, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0897374701670644, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.142084327764519, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.276690533015115, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.36642800318218, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.486077963404932, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.680509148766905, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.785202863961814, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.680509148766905, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.471121718377088; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.434958518013411, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.349857938402091, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.330946698488465, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.321491078531651, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.312035458574838, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.264757358790772, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.208023639049892, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.141834299352199, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.113467439481759, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.104011819524946, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.113467439481759, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.179656779179452, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.349857938402091, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.463325377883851, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.614615297192863, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.860461416070008, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.992840095465394, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.860461416070008, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.595704057279236; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.438095238095238, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.352380952380952, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.333333333333333, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.323809523809524, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.314285714285714, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.266666666666667, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.20952380952381, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.142857142857143, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.114285714285714, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.104761904761905, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.114285714285714, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.180952380952381, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.352380952380952, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.466666666666667, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.619047619047619, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.866666666666667, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 1, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.866666666666667, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.6; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.346084782361632, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.278372542334356, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.26332537788385, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.255801795658598, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.248278213433345, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.21066030230708, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.165518808955563, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.112853733378793, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0902829867030344, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.0827594044777816, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0902829867030344, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.142948062279805, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.278372542334356, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.368655529037391, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.489032844641437, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.684645982498011, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.789976133651551, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.684645982498011, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.473985680190931; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.344690684547486, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.277251202788196, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.262264651286131, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.254771375535099, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.247278099784066, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.209811721028905, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.164852066522711, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.112399136265485, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0899193090123878, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.0824260332613555, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0899193090123878, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.142372239269614, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.277251202788196, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.367170511800583, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.4870629238171, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.681888093343941, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.786793953858393, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.681888093343941, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.472076372315036; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.346084782361632, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.278372542334356, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.26332537788385, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.255801795658598, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.248278213433345, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.21066030230708, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.165518808955563, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.112853733378793, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0902829867030344, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.0827594044777816, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0902829867030344, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.142948062279805, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.278372542334356, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.368655529037391, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.489032844641437, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.684645982498011, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.789976133651551, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.684645982498011, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.473985680190931; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.288229723074592, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.231836951168693, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.219305224078494, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.213039360533394, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.206773496988294, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.175444179262795, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.137848997992196, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.0939879531764973, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0751903625411979, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.068924498996098, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0751903625411979, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.119051407356897, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.231836951168693, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.307027313709891, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.407281130431488, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.570193582604084, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.657915672235481, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.570193582604084, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.394749403341289; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.286138576353373, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.230154941849453, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.217714134181915, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.211493730348146, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.205273326514377, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.174171307345532, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.136848884342918, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.0933060575065348, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0746448460052279, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.0684244421714589, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0746448460052279, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.118187672841611, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.230154941849453, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.30479978785468, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.404326249194984, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.566056748872978, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.653142402545744, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.566056748872978, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.391885441527446; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekday9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 05:00, !- Time 1 {hh:mm} - 0.288229723074592, !- Value Until Time 1 - 06:00, !- Time 2 {hh:mm} - 0.231836951168693, !- Value Until Time 2 - 07:00, !- Time 3 {hh:mm} - 0.219305224078494, !- Value Until Time 3 - 08:00, !- Time 4 {hh:mm} - 0.213039360533394, !- Value Until Time 4 - 09:00, !- Time 5 {hh:mm} - 0.206773496988294, !- Value Until Time 5 - 10:00, !- Time 6 {hh:mm} - 0.175444179262795, !- Value Until Time 6 - 11:00, !- Time 7 {hh:mm} - 0.137848997992196, !- Value Until Time 7 - 12:00, !- Time 8 {hh:mm} - 0.0939879531764973, !- Value Until Time 8 - 13:00, !- Time 9 {hh:mm} - 0.0751903625411979, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.068924498996098, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.0751903625411979, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.119051407356897, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.231836951168693, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.307027313709891, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.407281130431488, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.570193582604084, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.657915672235481, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.570193582604084, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.394749403341289; !- Value Until Time 19 - -Schedule:Day:Interval, - exterior lighting schedule weekend1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.434958518013411, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.425502898056597, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.434958518013411, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.425502898056597, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.416047278099784, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.387680418229344, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.340402318445278, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.283668598704398, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.226934878963519, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.151289919309012, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.113467439481759, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.104011819524946, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.113467439481759, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.179656779179452, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.359313558358904, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.453869757927037, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.567337197408797, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.784816456415502, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.926650755767701, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.803727696329128, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.557881577451983; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.345039209001023, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.337538356631435, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.345039209001023, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.337538356631435, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.330037504261848, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.307534947153086, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.270030685305148, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.225025571087624, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.180020456870099, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.120013637913399, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0900102284350494, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.082509376065462, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0900102284350494, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.142516195022162, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.285032390044323, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.360040913740198, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.450051142175247, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.622570746675759, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.73508353221957, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.637572451414934, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.44255028980566; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.343993635640414, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.336515513126492, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.343993635640414, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.336515513126492, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.32903739061257, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.306603023070804, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.269212410501193, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.224343675417661, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.179474940334129, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.119649960222753, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0897374701670644, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.0822593476531424, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0897374701670644, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.142084327764519, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.284168655529037, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.358949880668258, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.448687350835322, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.620684168655529, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.73285600636436, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.635640413683373, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.4412092283214; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.434958518013411, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.425502898056597, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.434958518013411, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.425502898056597, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.416047278099784, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.387680418229344, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.340402318445278, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.283668598704398, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.226934878963519, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.151289919309012, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.113467439481759, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.104011819524946, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.113467439481759, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.179656779179452, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.359313558358904, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.453869757927037, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.567337197408797, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.784816456415502, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.926650755767701, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.803727696329128, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.557881577451983; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.438095238095238, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.428571428571429, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.438095238095238, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.428571428571429, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.419047619047619, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.390476190476191, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.342857142857143, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.285714285714286, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.228571428571429, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.152380952380952, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.114285714285714, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.104761904761905, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.114285714285714, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.180952380952381, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.361904761904762, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.457142857142857, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.571428571428571, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.790476190476191, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.933333333333333, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.80952380952381, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.561904761904762; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.346084782361632, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.338561200136379, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.346084782361632, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.338561200136379, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.331037617911126, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.308466871235368, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.270848960109103, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.225707466757586, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.180565973406069, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.120377315604046, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0902829867030344, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.0827594044777816, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0902829867030344, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.142948062279805, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.285896124559609, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.361131946812138, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.451414933515172, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.624457324695988, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.737311058074781, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.639504489146494, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.443891351289919; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.344690684547486, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.337197408796454, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.344690684547486, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.337197408796454, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.329704133045422, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.307224305792325, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.269757927037163, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.224798272530969, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.179838618024776, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.119892412016517, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0899193090123878, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.0824260332613555, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0899193090123878, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.142372239269614, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.284744478539228, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.359677236049551, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.449596545061939, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.621941887335682, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.734341023601167, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.636928438837747, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.442103269310907; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.346084782361632, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.338561200136379, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.346084782361632, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.338561200136379, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.331037617911126, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.308466871235368, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.270848960109103, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.225707466757586, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.180565973406069, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.120377315604046, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0902829867030344, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.0827594044777816, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0902829867030344, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.142948062279805, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.285896124559609, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.361131946812138, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.451414933515172, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.624457324695988, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.737311058074781, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.639504489146494, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.443891351289919; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.288229723074592, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.281963859529492, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.288229723074592, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.281963859529492, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.275697995984392, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.256900405349093, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.225571087623594, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.187975906352995, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.150380725082396, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.100253816721597, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0751903625411979, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.068924498996098, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0751903625411979, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.119051407356897, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.238102814713793, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.300761450164791, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.375951812705989, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.520066674243285, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.614054627419783, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.532598401333485, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.369685949160889; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.286138576353373, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.279918172519604, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.286138576353373, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.279918172519604, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.273697768685836, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.255036557184529, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.223934538015684, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.18661211501307, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.149289692010456, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.0995264613403038, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0746448460052279, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.0684244421714589, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0746448460052279, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.118187672841611, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.236375345683222, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.298579384020911, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.373224230026139, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.516293518202826, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.609599575709361, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.528734325870364, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.36700382619237; !- Value Until Time 21 - -Schedule:Day:Interval, - exterior lighting schedule weekend9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 02:00, !- Time 1 {hh:mm} - 0.288229723074592, !- Value Until Time 1 - 04:00, !- Time 2 {hh:mm} - 0.281963859529492, !- Value Until Time 2 - 05:00, !- Time 3 {hh:mm} - 0.288229723074592, !- Value Until Time 3 - 06:00, !- Time 4 {hh:mm} - 0.281963859529492, !- Value Until Time 4 - 07:00, !- Time 5 {hh:mm} - 0.275697995984392, !- Value Until Time 5 - 08:00, !- Time 6 {hh:mm} - 0.256900405349093, !- Value Until Time 6 - 09:00, !- Time 7 {hh:mm} - 0.225571087623594, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.187975906352995, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.150380725082396, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.100253816721597, !- Value Until Time 10 - 13:00, !- Time 11 {hh:mm} - 0.0751903625411979, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.068924498996098, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.0751903625411979, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.119051407356897, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.238102814713793, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.300761450164791, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.375951812705989, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.520066674243285, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.614054627419783, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.532598401333485, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.369685949160889; !- Value Until Time 21 - -Schedule:Day:Interval, - fridge allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.610948905109489, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.595675182481752, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.580401459854014, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.565127737226277, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.54985401459854, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.580401459854014, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.610948905109489, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.626222627737226, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.610948905109489, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.641496350364963, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.626222627737226, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.672043795620438, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.733138686131387, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.763686131386861, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.733138686131387, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.717864963503649, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.702591240875912, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.672043795620438, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.626222627737226; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.67956204379562, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.66257299270073, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.645583941605839, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.628594890510949, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.611605839416058, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.645583941605839, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.67956204379562, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.696551094890511, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.67956204379562, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.713540145985401, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.696551094890511, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.747518248175182, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.815474452554744, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.849452554744526, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.815474452554744, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.798485401459854, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.781496350364963, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.747518248175182, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.696551094890511; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.675182481751825, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.658302919708029, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.641423357664234, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.624543795620438, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.607664233576642, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.641423357664234, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.675182481751825, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.69206204379562, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.675182481751825, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.708941605839416, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.69206204379562, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.742700729927007, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.81021897810219, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.843978102189781, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.81021897810219, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.793339416058394, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.776459854014598, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.742700729927007, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.69206204379562; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.610948905109489, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.595675182481752, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.580401459854014, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.565127737226277, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.54985401459854, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.580401459854014, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.610948905109489, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.626222627737226, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.610948905109489, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.641496350364963, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.626222627737226, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.672043795620438, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.733138686131387, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.763686131386861, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.733138686131387, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.717864963503649, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.702591240875912, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.672043795620438, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.626222627737226; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.60948905109489, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.594251824817518, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.579014598540146, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.563777372262774, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.548540145985401, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.579014598540146, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.60948905109489, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.624726277372263, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.60948905109489, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.639963503649635, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.624726277372263, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.670437956204379, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.731386861313868, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.761861313868613, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.731386861313868, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.716149635036496, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.700912408759124, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.670437956204379, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.624726277372263; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.791240875912409, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.771459854014598, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.751678832116788, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.731897810218978, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.712116788321168, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.751678832116788, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.791240875912409, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.811021897810219, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.791240875912409, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.830802919708029, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.811021897810219, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.87036496350365, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.949489051094891, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 0.989051094890511, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.949489051094891, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.92970802919708, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.90992700729927, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.87036496350365, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.811021897810219; !- Value Until Time 19 - -Schedule:Day:Interval, - fridge allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.8, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.78, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.76, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.74, !- Value Until Time 4 - 06:00, !- Time 5 {hh:mm} - 0.72, !- Value Until Time 5 - 07:00, !- Time 6 {hh:mm} - 0.76, !- Value Until Time 6 - 08:00, !- Time 7 {hh:mm} - 0.8, !- Value Until Time 7 - 10:00, !- Time 8 {hh:mm} - 0.82, !- Value Until Time 8 - 12:00, !- Time 9 {hh:mm} - 0.8, !- Value Until Time 9 - 15:00, !- Time 10 {hh:mm} - 0.84, !- Value Until Time 10 - 16:00, !- Time 11 {hh:mm} - 0.82, !- Value Until Time 11 - 17:00, !- Time 12 {hh:mm} - 0.88, !- Value Until Time 12 - 18:00, !- Time 13 {hh:mm} - 0.96, !- Value Until Time 13 - 19:00, !- Time 14 {hh:mm} - 1, !- Value Until Time 14 - 20:00, !- Time 15 {hh:mm} - 0.96, !- Value Until Time 15 - 21:00, !- Time 16 {hh:mm} - 0.94, !- Value Until Time 16 - 22:00, !- Time 17 {hh:mm} - 0.92, !- Value Until Time 17 - 23:00, !- Time 18 {hh:mm} - 0.88, !- Value Until Time 18 - 24:00, !- Time 19 {hh:mm} - 0.82; !- Value Until Time 19 - -Schedule:Day:Interval, - heating season schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 1; !- Value Until Time 1 - -Schedule:Day:Interval, - heating season schedule allday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 1; !- Value Until Time 1 - -Schedule:Day:Interval, - heating season schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - misc plug loads schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.655649119646958, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.618183455667132, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.599450623677219, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.580717791687306, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.599450623677219, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.618183455667132, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.693114783626784, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.78677894357635, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.805511775566263, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.824244607556176, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.842977439546089, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.824244607556176, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.861710271536002, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.899175935515829, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.974107263475481, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.992840095465394, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.936641599495655, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.880443103525915, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.842977439546089, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.749313279596524, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.674381951636871; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.520106272796866, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.490385914351331, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.475525735128563, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.460665555905795, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.475525735128563, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.490385914351331, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.549826631242401, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.624127527356239, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.638987706579006, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.653847885801774, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.668708065024542, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.653847885801774, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.683568244247309, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.713288602692845, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.772729319583915, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.787589498806683, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.74300896113838, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.698428423470077, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.668708065024542, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.594407168910704, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.534966452019633; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.51853019318233, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.488899896429054, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.474084748052416, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.459269599675778, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.474084748052416, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.488899896429054, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.548160489935606, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.622236231818796, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.637051380195434, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.651866528572072, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.66668167694871, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.651866528572072, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.681496825325348, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.711127122078624, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.770387715585176, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.785202863961814, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.7407574188319, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.696311973701986, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.66668167694871, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.59260593506552, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.533345341558968; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.655649119646958, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.618183455667132, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.599450623677219, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.580717791687306, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.599450623677219, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.618183455667132, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.693114783626784, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.78677894357635, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.805511775566263, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.824244607556176, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.842977439546089, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.824244607556176, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.861710271536002, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.899175935515829, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.974107263475481, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.992840095465394, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.936641599495655, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.880443103525915, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.842977439546089, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.749313279596524, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.674381951636871; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.660377358490566, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.622641509433962, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.60377358490566, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.584905660377359, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.60377358490566, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.622641509433962, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.69811320754717, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.792452830188679, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.811320754716981, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.830188679245283, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.849056603773585, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.830188679245283, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.867924528301887, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.905660377358491, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.981132075471698, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 1, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.943396226415094, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.886792452830189, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.849056603773585, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.754716981132075, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.679245283018868; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.521682352411402, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.491871932273607, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.47696672220471, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.462061512135813, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.47696672220471, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.491871932273607, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.551492772549196, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.626018822893682, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.640924032962579, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.655829243031477, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.670734453100374, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.655829243031477, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.685639663169271, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.715450083307065, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.775070923582654, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.789976133651551, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.74526050344486, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.700544873238168, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.670734453100374, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.596208402755888, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.536587562480299; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.519580912925354, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.489890575043905, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.475045406103181, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.460200237162456, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.475045406103181, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.489890575043905, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.549271250806803, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.623497095510425, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.638342264451149, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.653187433391873, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.668032602332598, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.653187433391873, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.682877771273322, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.712568109154771, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.771948784917668, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.786793953858393, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.74225844703622, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.697722940214047, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.668032602332598, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.593806757628976, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.534426081866078; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.521682352411402, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.491871932273607, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.47696672220471, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.462061512135813, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.47696672220471, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.491871932273607, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.551492772549196, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.626018822893682, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.640924032962579, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.655829243031477, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.670734453100374, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.655829243031477, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.685639663169271, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.715450083307065, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.775070923582654, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.789976133651551, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.74526050344486, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.700544873238168, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.670734453100374, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.596208402755888, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.536587562480299; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.434472613740412, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.40964560724096, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.397232103991234, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.384818600741508, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.397232103991234, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.40964560724096, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.459299620239864, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.521367136488495, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.533780639738221, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.546194142987947, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.558607646237673, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.546194142987947, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.571021149487399, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.595848155986851, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.645502168985755, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.657915672235481, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.620675162486303, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.583434652737125, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.558607646237673, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.496540129989042, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.446886116990138; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.43132045451134, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.406673571396407, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.39435012983894, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.382026688281473, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.39435012983894, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.406673571396407, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.455967337626274, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.517584545413608, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.529907986971075, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.542231428528542, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.554554870086009, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.542231428528542, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.566878311643476, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.591525194758409, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.640818960988277, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.653142402545744, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.616172077873343, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.579201753200943, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.554554870086009, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.492937662298675, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.443643896068807; !- Value Until Time 21 - -Schedule:Day:Interval, - misc plug loads schedule allday9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.434472613740412, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.40964560724096, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.397232103991234, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.384818600741508, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.397232103991234, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.40964560724096, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.459299620239864, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.521367136488495, !- Value Until Time 8 - 11:00, !- Time 9 {hh:mm} - 0.533780639738221, !- Value Until Time 9 - 12:00, !- Time 10 {hh:mm} - 0.546194142987947, !- Value Until Time 10 - 14:00, !- Time 11 {hh:mm} - 0.558607646237673, !- Value Until Time 11 - 15:00, !- Time 12 {hh:mm} - 0.546194142987947, !- Value Until Time 12 - 16:00, !- Time 13 {hh:mm} - 0.571021149487399, !- Value Until Time 13 - 17:00, !- Time 14 {hh:mm} - 0.595848155986851, !- Value Until Time 14 - 18:00, !- Time 15 {hh:mm} - 0.645502168985755, !- Value Until Time 15 - 19:00, !- Time 16 {hh:mm} - 0.657915672235481, !- Value Until Time 16 - 20:00, !- Time 17 {hh:mm} - 0.620675162486303, !- Value Until Time 17 - 21:00, !- Time 18 {hh:mm} - 0.583434652737125, !- Value Until Time 18 - 22:00, !- Time 19 {hh:mm} - 0.558607646237673, !- Value Until Time 19 - 23:00, !- Time 20 {hh:mm} - 0.496540129989042, !- Value Until Time 20 - 24:00, !- Time 21 {hh:mm} - 0.446886116990138; !- Value Until Time 21 - -Schedule:Day:Interval, - misc tv schedule weekday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.101928374655647, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0495867768595041, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0247933884297521, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0192837465564738, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0303030303030303, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0495867768595041, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0798898071625344, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.110192837465565, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.134986225895317, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.159779614325069, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.179063360881543, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.198347107438017, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.209366391184573, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.236914600550964, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.25068870523416, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.28099173553719, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.349862258953168, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.429752066115703, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.578512396694215, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.809917355371901, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 1, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.947658402203857, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.573002754820937, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.247933884297521; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0777237474287127, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0378115528031575, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0189057764015788, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0147044927567835, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.023107060046374, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0378115528031575, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0609186128495315, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0840256728959056, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.102931449297484, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.121837225699063, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.136541718455847, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.15124621121263, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.159648778502221, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.180655196726197, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.191158405838185, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.214265465884559, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.2667815114445, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.327700124294032, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.441134782703504, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.617588695784906, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.762532981530343, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.722620786904788, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.436933499058709, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.189057764015788; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0770962200561625, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0375062692165115, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0187531346082557, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0145857713619767, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0229204978545348, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0375062692165115, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0604267670710463, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0833472649255811, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.102100399533837, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.120853534142093, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.135439305504069, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.150025076866046, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.158359803358604, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.179196619589999, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.189615027705697, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.212535525560232, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.26462756613872, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.325054333209766, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.437573140859301, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.612602397203021, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.756376429199648, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.716786478359997, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.433405777613022, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.187531346082557; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.101928374655647, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0495867768595041, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0247933884297521, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0192837465564738, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0303030303030303, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0495867768595041, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0798898071625344, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.110192837465565, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.134986225895317, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.159779614325069, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.179063360881543, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.198347107438017, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.209366391184573, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.236914600550964, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.25068870523416, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.28099173553719, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.349862258953168, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.429752066115703, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.578512396694215, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.809917355371901, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 1, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.947658402203857, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.573002754820937, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.247933884297521; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.10121120051559, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0492378813319087, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0246189406659543, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0191480649624089, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0300898163694997, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0492378813319087, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0793276977014084, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.109417514070908, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.134036454736863, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.158655395402817, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.177803460365226, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.196951525327635, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.207893276734726, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.235247655252453, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.248924844511316, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.279014660880816, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.347400607175133, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.426728304876542, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.574441948872268, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.804218728421175, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.992963940193492, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.94099062100981, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.568971073168723, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.246189406659543; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0861505435743862, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0419110752524041, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0209555376262021, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.016298751487046, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0256123237653581, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0419110752524041, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0675233990177622, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0931357227831203, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.114091260409322, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.135046798035524, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.15134554952257, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.167644301009616, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.176957873287928, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.200241803983709, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.211883769331599, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.237496093096957, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.295705919836407, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.363229318854169, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.488962544611381, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.684547562455934, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.845206684256816, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.800967215934834, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.484305758472225, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.209555376262021; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0868677177144436, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0422599707799996, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0211299853899998, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0164344330811109, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0258255376988886, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0422599707799996, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0680855084788882, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0939110461777768, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.115041031567777, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.136171016957776, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.152605450038887, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.169039883119998, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.178430987737776, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.20190874928222, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.213647630054442, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.239473167753331, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.298167571614441, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.36625308009333, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.493032992433328, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.69024618940666, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.852242744063325, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.807634997128881, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.488337440124439, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.211299853899998; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0861505435743862, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0419110752524041, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0209555376262021, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.016298751487046, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0256123237653581, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0419110752524041, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0675233990177622, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0931357227831203, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.114091260409322, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.135046798035524, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.15134554952257, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.167644301009616, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.176957873287928, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.200241803983709, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.211883769331599, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.237496093096957, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.295705919836407, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.363229318854169, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.488962544611381, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.684547562455934, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.845206684256816, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.800967215934834, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.484305758472225, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.209555376262021; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0890192401346155, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0433066573627859, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.021653328681393, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0168414778633056, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0264651794994803, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0433066573627859, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0697718368622662, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0962370163617465, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.117890345043139, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.139543673724532, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.156385151587838, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.173226629451144, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.182850331087318, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.206909585177755, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.218939212222973, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.245404391722454, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.305552526948545, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.375324363810811, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.505244335899169, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.707342070258837, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.87335092348285, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.82763834071102, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.500432485081082, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.21653328681393; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.089288180437137, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0434374931856342, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0217187465928171, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.01689235846108, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0265451347245542, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0434374931856342, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0699826279101885, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0965277626347427, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.11824650922756, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.139965255820377, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.156857614281457, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.173749972742537, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.183402749006011, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.207534689664697, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.21960065999404, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.246145794718594, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.306475646365308, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.376458274275497, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.506770753832399, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.709479055365359, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.87598944591029, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.830138758658788, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.501944365700662, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.217187465928171; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday8, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0860608968068791, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0418674633114547, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0209337316557273, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0162817912877879, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0255856720236667, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0418674633114547, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0674531353351214, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0930388073587882, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.113972539014516, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.134906270670243, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.151188061958031, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.167469853245819, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.176773733981698, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.200033435821395, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.211663286741243, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.23724895876491, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.295398213364152, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.362851348699274, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.488453738633638, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.683835234087093, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.844327176781003, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.800133743285578, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.483801798265699, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.209337316557273; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekday9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0890192401346155, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0433066573627859, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.021653328681393, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0168414778633056, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0264651794994803, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0433066573627859, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0697718368622662, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0962370163617465, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.117890345043139, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.139543673724532, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.156385151587838, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.173226629451144, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.182850331087318, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.206909585177755, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.218939212222973, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.245404391722454, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.305552526948545, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.375324363810811, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.505244335899169, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.707342070258837, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.87335092348285, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.82763834071102, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.500432485081082, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.21653328681393; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0936057406645642, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0468028703322821, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.025528838363063, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0170192255753753, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.023401435166141, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0297836447569068, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0510576767261259, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0914783374676423, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.151045626981456, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.19997590051066, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.238269158055254, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.261670593221395, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.280817221993693, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.331874898719819, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.378677769052101, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.416971026596695, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.438245058565914, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.453136880944368, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.5339782024274, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.702043054984231, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.825432440405703, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.761610344498045, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.480793122504353, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.219122529282957; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0713774645173062, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0356887322586531, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0194665812319926, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0129777208213284, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0178443661293266, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0227110114373247, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0389331624639852, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0697552494146402, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.11517727228929, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.152488219650609, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.181688091498598, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.199532457627924, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.214132393551919, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.253065556015904, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.288754288274557, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.317954160122546, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.334176311149206, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.345531816867869, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.407175990769179, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.535330983879797, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.629419459834427, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.580753006754446, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.366620613202527, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.167088155574603; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0708011758764514, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0354005879382257, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0193094116026686, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0128729410684457, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0177002939691128, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.02252764686978, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0386188232053371, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0691920582428956, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.114247351982456, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.151257057554237, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.18022117495824, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.197921468927353, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.212403527629354, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.251022350834691, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.286422938772917, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.31538705617692, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.331478232512477, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.342742055947367, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.403888526022484, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.531008819073385, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.624337641819617, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.576064112812945, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.363660585183591, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.165739116256238; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0936057406645642, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0468028703322821, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.025528838363063, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0170192255753753, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.023401435166141, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0297836447569068, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0510576767261259, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0914783374676423, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.151045626981456, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.19997590051066, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.238269158055254, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.261670593221395, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.280817221993693, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.331874898719819, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.378677769052101, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.416971026596695, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.438245058565914, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.453136880944368, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.5339782024274, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.702043054984231, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.825432440405703, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.761610344498045, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.480793122504353, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.219122529282957; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend2, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0929471250750158, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0464735625375079, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0253492159295498, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0168994772863665, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.023236781268754, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0295740852511414, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0506984318590995, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.09083469041422, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.149982860916503, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.198568858114806, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.236592682009131, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.259829463277885, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.278841375225047, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.329539807084147, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.376013369621655, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.41403719351598, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.435161540123938, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.449948582749508, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.530221099859749, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.697103438062619, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.819624648388776, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.756251608564901, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.477410233339854, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.217580770061969; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend3, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0791161976944997, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0395580988472499, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0215771448257727, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0143847632171818, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0197790494236249, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0251733356300681, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0431542896515453, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.077318102292352, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.127664773552488, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.169020967801886, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.201386685040545, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.22116573446417, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.237348593083499, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.280502882735044, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.320060981582294, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.352426698820953, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.370407652842431, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.382994320657465, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.451321945939078, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.593371482708748, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.697661016033316, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.643718153968884, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.406369560885385, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.185203826421215; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend4, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0797748132840481, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0398874066420241, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0217567672592858, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0145045115061906, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.019943703321012, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0253828951358335, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0435135345185717, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0779617493457743, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.128727539617441, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.170428010197739, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.203063161086668, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.22300686440768, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.239324439852144, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.282837974370716, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.32272538101274, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.355360531901669, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.373491171284407, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.386182618852324, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.455079048506729, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.598311099630361, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.703468808050242, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.649076889902028, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.409752450049884, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.186745585642204; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0791161976944997, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0395580988472499, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0215771448257727, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0143847632171818, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0197790494236249, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0251733356300681, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0431542896515453, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.077318102292352, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.127664773552488, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.169020967801886, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.201386685040545, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.22116573446417, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.237348593083499, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.280502882735044, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.320060981582294, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.352426698820953, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.370407652842431, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.382994320657465, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.451321945939078, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.593371482708748, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.697661016033316, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.643718153968884, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.406369560885385, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.185203826421215; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0817506600526933, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0408753300263466, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0222956345598254, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.014863756373217, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0204376650131733, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0260115736531297, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0445912691196509, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0798926905060411, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.1319158378123, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.174649137385299, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.208092589225037, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.228530254238211, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.24525198015808, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.289843249277731, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.330718579304077, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.364162031143815, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.382741726610337, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.395747513436902, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.466350356209682, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.6131299503952, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.720892184101023, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.665153097701459, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.419901117543379, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.191370863305168; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0819976408987739, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0409988204493869, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0223629929723929, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0149086619815953, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0204994102246935, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0260901584677917, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0447259859447858, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0801340581510745, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.132314375086658, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.175176778283744, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.208721267742334, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.229220677967027, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.245992922696322, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.290718908641107, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.331717729090494, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.365262218549084, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.383898046026078, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.396943125259974, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.467759269672551, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.614982306740804, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.72307010610737, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.667162623676388, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.421169700980066, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.191949023013039; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend8, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0790338707458062, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0395169353729031, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0215546920215835, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.0143697946810557, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0197584676864515, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0251471406918474, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.043109384043167, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0772376464106742, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.127531927794369, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.168845087502404, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.201177125534779, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.220935593221231, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.237101612237419, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.280210996280586, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.319727931653489, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.352059969685864, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.370022213037183, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.382595783383107, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.450852308118122, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.592754030593546, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.6969350420312, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.643048311977241, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.405946699739823, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.185011106518592; !- Value Until Time 24 - -Schedule:Day:Interval, - misc tv schedule weekend9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 01:00, !- Time 1 {hh:mm} - 0.0817506600526933, !- Value Until Time 1 - 02:00, !- Time 2 {hh:mm} - 0.0408753300263466, !- Value Until Time 2 - 03:00, !- Time 3 {hh:mm} - 0.0222956345598254, !- Value Until Time 3 - 04:00, !- Time 4 {hh:mm} - 0.014863756373217, !- Value Until Time 4 - 05:00, !- Time 5 {hh:mm} - 0.0204376650131733, !- Value Until Time 5 - 06:00, !- Time 6 {hh:mm} - 0.0260115736531297, !- Value Until Time 6 - 07:00, !- Time 7 {hh:mm} - 0.0445912691196509, !- Value Until Time 7 - 08:00, !- Time 8 {hh:mm} - 0.0798926905060411, !- Value Until Time 8 - 09:00, !- Time 9 {hh:mm} - 0.1319158378123, !- Value Until Time 9 - 10:00, !- Time 10 {hh:mm} - 0.174649137385299, !- Value Until Time 10 - 11:00, !- Time 11 {hh:mm} - 0.208092589225037, !- Value Until Time 11 - 12:00, !- Time 12 {hh:mm} - 0.228530254238211, !- Value Until Time 12 - 13:00, !- Time 13 {hh:mm} - 0.24525198015808, !- Value Until Time 13 - 14:00, !- Time 14 {hh:mm} - 0.289843249277731, !- Value Until Time 14 - 15:00, !- Time 15 {hh:mm} - 0.330718579304077, !- Value Until Time 15 - 16:00, !- Time 16 {hh:mm} - 0.364162031143815, !- Value Until Time 16 - 17:00, !- Time 17 {hh:mm} - 0.382741726610337, !- Value Until Time 17 - 18:00, !- Time 18 {hh:mm} - 0.395747513436902, !- Value Until Time 18 - 19:00, !- Time 19 {hh:mm} - 0.466350356209682, !- Value Until Time 19 - 20:00, !- Time 20 {hh:mm} - 0.6131299503952, !- Value Until Time 20 - 21:00, !- Time 21 {hh:mm} - 0.720892184101023, !- Value Until Time 21 - 22:00, !- Time 22 {hh:mm} - 0.665153097701459, !- Value Until Time 22 - 23:00, !- Time 23 {hh:mm} - 0.419901117543379, !- Value Until Time 23 - 24:00, !- Time 24 {hh:mm} - 0.191370863305168; !- Value Until Time 24 - -Schedule:Day:Interval, - natural vent avail schedule day, !- Name - OnOff, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 1; !- Value Until Time 1 - -Schedule:Day:Interval, - occupants schedule allday1, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 07:00, !- Time 1 {hh:mm} - 1, !- Value Until Time 1 - 08:00, !- Time 2 {hh:mm} - 0.8831, !- Value Until Time 2 - 09:00, !- Time 3 {hh:mm} - 0.40861, !- Value Until Time 3 - 16:00, !- Time 4 {hh:mm} - 0.24189, !- Value Until Time 4 - 17:00, !- Time 5 {hh:mm} - 0.29498, !- Value Until Time 5 - 18:00, !- Time 6 {hh:mm} - 0.5531, !- Value Until Time 6 - 21:00, !- Time 7 {hh:mm} - 0.89693, !- Value Until Time 7 - 24:00, !- Time 8 {hh:mm} - 1; !- Value Until Time 8 - -Schedule:Day:Interval, - Schedule Day 10, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 11, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 12, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 13, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 14, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 15, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 17, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 18, !- Name - OnOff, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 19, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 5, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 6, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 7, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 8, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Day:Interval, - Schedule Day 9, !- Name - Fractional, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24:00, !- Time 1 {hh:mm} - 0; !- Value Until Time 1 - -Schedule:Week:Daily, - clothes dryer exhaust schedule Week Rule - Jan1-Jan6, !- Name - clothes dryer exhaust schedule allday1, !- Sunday Schedule:Day Name - clothes dryer exhaust schedule allday1, !- Monday Schedule:Day Name - clothes dryer exhaust schedule allday2, !- Tuesday Schedule:Day Name - clothes dryer exhaust schedule allday3, !- Wednesday Schedule:Day Name - clothes dryer exhaust schedule allday4, !- Thursday Schedule:Day Name - clothes dryer exhaust schedule allday5, !- Friday Schedule:Day Name - clothes dryer exhaust schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 19, !- Holiday Schedule:Day Name - Schedule Day 19, !- SummerDesignDay Schedule:Day Name - Schedule Day 19, !- WinterDesignDay Schedule:Day Name - Schedule Day 19, !- CustomDay1 Schedule:Day Name - Schedule Day 19; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - clothes dryer exhaust schedule Week Rule - Jan7-Dec31, !- Name - clothes dryer exhaust schedule allday7, !- Sunday Schedule:Day Name - clothes dryer exhaust schedule allday1, !- Monday Schedule:Day Name - clothes dryer exhaust schedule allday2, !- Tuesday Schedule:Day Name - clothes dryer exhaust schedule allday3, !- Wednesday Schedule:Day Name - clothes dryer exhaust schedule allday4, !- Thursday Schedule:Day Name - clothes dryer exhaust schedule allday5, !- Friday Schedule:Day Name - clothes dryer exhaust schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 19, !- Holiday Schedule:Day Name - Schedule Day 19, !- SummerDesignDay Schedule:Day Name - Schedule Day 19, !- WinterDesignDay Schedule:Day Name - Schedule Day 19, !- CustomDay1 Schedule:Day Name - Schedule Day 19; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - clothes dryer exhaust schedule, !- Name - Fractional, !- Schedule Type Limits Name - clothes dryer exhaust schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - clothes dryer exhaust schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 12, !- End Month 2 - 31; !- End Day 2 - -Schedule:Week:Daily, - clothes dryer schedule Week Rule - Jan1-Jan6, !- Name - clothes dryer schedule allday1, !- Sunday Schedule:Day Name - clothes dryer schedule allday1, !- Monday Schedule:Day Name - clothes dryer schedule allday2, !- Tuesday Schedule:Day Name - clothes dryer schedule allday3, !- Wednesday Schedule:Day Name - clothes dryer schedule allday4, !- Thursday Schedule:Day Name - clothes dryer schedule allday5, !- Friday Schedule:Day Name - clothes dryer schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 9, !- Holiday Schedule:Day Name - Schedule Day 9, !- SummerDesignDay Schedule:Day Name - Schedule Day 9, !- WinterDesignDay Schedule:Day Name - Schedule Day 9, !- CustomDay1 Schedule:Day Name - Schedule Day 9; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - clothes dryer schedule Week Rule - Jan7-Dec31, !- Name - clothes dryer schedule allday7, !- Sunday Schedule:Day Name - clothes dryer schedule allday1, !- Monday Schedule:Day Name - clothes dryer schedule allday2, !- Tuesday Schedule:Day Name - clothes dryer schedule allday3, !- Wednesday Schedule:Day Name - clothes dryer schedule allday4, !- Thursday Schedule:Day Name - clothes dryer schedule allday5, !- Friday Schedule:Day Name - clothes dryer schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 9, !- Holiday Schedule:Day Name - Schedule Day 9, !- SummerDesignDay Schedule:Day Name - Schedule Day 9, !- WinterDesignDay Schedule:Day Name - Schedule Day 9, !- CustomDay1 Schedule:Day Name - Schedule Day 9; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - clothes dryer schedule, !- Name - Fractional, !- Schedule Type Limits Name - clothes dryer schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - clothes dryer schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 12, !- End Month 2 - 31; !- End Day 2 - -Schedule:Week:Daily, - clothes washer schedule Week Rule - Jan1-Jan6, !- Name - clothes washer schedule allday1, !- Sunday Schedule:Day Name - clothes washer schedule allday1, !- Monday Schedule:Day Name - clothes washer schedule allday2, !- Tuesday Schedule:Day Name - clothes washer schedule allday3, !- Wednesday Schedule:Day Name - clothes washer schedule allday4, !- Thursday Schedule:Day Name - clothes washer schedule allday5, !- Friday Schedule:Day Name - clothes washer schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 8, !- Holiday Schedule:Day Name - Schedule Day 8, !- SummerDesignDay Schedule:Day Name - Schedule Day 8, !- WinterDesignDay Schedule:Day Name - Schedule Day 8, !- CustomDay1 Schedule:Day Name - Schedule Day 8; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - clothes washer schedule Week Rule - Jan7-Dec31, !- Name - clothes washer schedule allday7, !- Sunday Schedule:Day Name - clothes washer schedule allday1, !- Monday Schedule:Day Name - clothes washer schedule allday2, !- Tuesday Schedule:Day Name - clothes washer schedule allday3, !- Wednesday Schedule:Day Name - clothes washer schedule allday4, !- Thursday Schedule:Day Name - clothes washer schedule allday5, !- Friday Schedule:Day Name - clothes washer schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 8, !- Holiday Schedule:Day Name - Schedule Day 8, !- SummerDesignDay Schedule:Day Name - Schedule Day 8, !- WinterDesignDay Schedule:Day Name - Schedule Day 8, !- CustomDay1 Schedule:Day Name - Schedule Day 8; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - clothes washer schedule, !- Name - Fractional, !- Schedule Type Limits Name - clothes washer schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - clothes washer schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 12, !- End Month 2 - 31; !- End Day 2 - -Schedule:Week:Daily, - cooking range Week Rule - Jan1-Feb24, !- Name - cooking range allday1, !- Sunday Schedule:Day Name - cooking range allday1, !- Monday Schedule:Day Name - cooking range allday1, !- Tuesday Schedule:Day Name - cooking range allday1, !- Wednesday Schedule:Day Name - cooking range allday1, !- Thursday Schedule:Day Name - cooking range allday1, !- Friday Schedule:Day Name - cooking range allday1, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Feb25-Mar3, !- Name - cooking range allday1, !- Sunday Schedule:Day Name - cooking range allday1, !- Monday Schedule:Day Name - cooking range allday1, !- Tuesday Schedule:Day Name - cooking range allday1, !- Wednesday Schedule:Day Name - cooking range allday3, !- Thursday Schedule:Day Name - cooking range allday3, !- Friday Schedule:Day Name - cooking range allday3, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Mar4-Mar31, !- Name - cooking range allday3, !- Sunday Schedule:Day Name - cooking range allday3, !- Monday Schedule:Day Name - cooking range allday3, !- Tuesday Schedule:Day Name - cooking range allday3, !- Wednesday Schedule:Day Name - cooking range allday3, !- Thursday Schedule:Day Name - cooking range allday3, !- Friday Schedule:Day Name - cooking range allday3, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Apr1-Apr28, !- Name - cooking range allday4, !- Sunday Schedule:Day Name - cooking range allday4, !- Monday Schedule:Day Name - cooking range allday4, !- Tuesday Schedule:Day Name - cooking range allday4, !- Wednesday Schedule:Day Name - cooking range allday4, !- Thursday Schedule:Day Name - cooking range allday4, !- Friday Schedule:Day Name - cooking range allday4, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Apr29-May5, !- Name - cooking range allday4, !- Sunday Schedule:Day Name - cooking range allday4, !- Monday Schedule:Day Name - cooking range allday5, !- Tuesday Schedule:Day Name - cooking range allday5, !- Wednesday Schedule:Day Name - cooking range allday5, !- Thursday Schedule:Day Name - cooking range allday5, !- Friday Schedule:Day Name - cooking range allday5, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - May6-May26, !- Name - cooking range allday5, !- Sunday Schedule:Day Name - cooking range allday5, !- Monday Schedule:Day Name - cooking range allday5, !- Tuesday Schedule:Day Name - cooking range allday5, !- Wednesday Schedule:Day Name - cooking range allday5, !- Thursday Schedule:Day Name - cooking range allday5, !- Friday Schedule:Day Name - cooking range allday5, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - May27-Jun2, !- Name - cooking range allday5, !- Sunday Schedule:Day Name - cooking range allday5, !- Monday Schedule:Day Name - cooking range allday5, !- Tuesday Schedule:Day Name - cooking range allday5, !- Wednesday Schedule:Day Name - cooking range allday5, !- Thursday Schedule:Day Name - cooking range allday6, !- Friday Schedule:Day Name - cooking range allday6, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Jun3-Jun30, !- Name - cooking range allday6, !- Sunday Schedule:Day Name - cooking range allday6, !- Monday Schedule:Day Name - cooking range allday6, !- Tuesday Schedule:Day Name - cooking range allday6, !- Wednesday Schedule:Day Name - cooking range allday6, !- Thursday Schedule:Day Name - cooking range allday6, !- Friday Schedule:Day Name - cooking range allday6, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Jul1-Aug25, !- Name - cooking range allday7, !- Sunday Schedule:Day Name - cooking range allday7, !- Monday Schedule:Day Name - cooking range allday7, !- Tuesday Schedule:Day Name - cooking range allday7, !- Wednesday Schedule:Day Name - cooking range allday7, !- Thursday Schedule:Day Name - cooking range allday7, !- Friday Schedule:Day Name - cooking range allday7, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Aug26-Sep1, !- Name - cooking range allday7, !- Sunday Schedule:Day Name - cooking range allday7, !- Monday Schedule:Day Name - cooking range allday7, !- Tuesday Schedule:Day Name - cooking range allday7, !- Wednesday Schedule:Day Name - cooking range allday7, !- Thursday Schedule:Day Name - cooking range allday7, !- Friday Schedule:Day Name - cooking range allday9, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Sep2-Sep29, !- Name - cooking range allday9, !- Sunday Schedule:Day Name - cooking range allday9, !- Monday Schedule:Day Name - cooking range allday9, !- Tuesday Schedule:Day Name - cooking range allday9, !- Wednesday Schedule:Day Name - cooking range allday9, !- Thursday Schedule:Day Name - cooking range allday9, !- Friday Schedule:Day Name - cooking range allday9, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Sep30-Oct6, !- Name - cooking range allday9, !- Sunday Schedule:Day Name - cooking range allday10, !- Monday Schedule:Day Name - cooking range allday10, !- Tuesday Schedule:Day Name - cooking range allday10, !- Wednesday Schedule:Day Name - cooking range allday10, !- Thursday Schedule:Day Name - cooking range allday10, !- Friday Schedule:Day Name - cooking range allday10, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Oct7-Nov24, !- Name - cooking range allday10, !- Sunday Schedule:Day Name - cooking range allday10, !- Monday Schedule:Day Name - cooking range allday10, !- Tuesday Schedule:Day Name - cooking range allday10, !- Wednesday Schedule:Day Name - cooking range allday10, !- Thursday Schedule:Day Name - cooking range allday10, !- Friday Schedule:Day Name - cooking range allday10, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Nov25-Dec1, !- Name - cooking range allday10, !- Sunday Schedule:Day Name - cooking range allday10, !- Monday Schedule:Day Name - cooking range allday10, !- Tuesday Schedule:Day Name - cooking range allday10, !- Wednesday Schedule:Day Name - cooking range allday10, !- Thursday Schedule:Day Name - cooking range allday10, !- Friday Schedule:Day Name - cooking range allday12, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooking range Week Rule - Dec2-Dec31, !- Name - cooking range allday12, !- Sunday Schedule:Day Name - cooking range allday12, !- Monday Schedule:Day Name - cooking range allday12, !- Tuesday Schedule:Day Name - cooking range allday12, !- Wednesday Schedule:Day Name - cooking range allday12, !- Thursday Schedule:Day Name - cooking range allday12, !- Friday Schedule:Day Name - cooking range allday12, !- Saturday Schedule:Day Name - Schedule Day 12, !- Holiday Schedule:Day Name - Schedule Day 12, !- SummerDesignDay Schedule:Day Name - Schedule Day 12, !- WinterDesignDay Schedule:Day Name - Schedule Day 12, !- CustomDay1 Schedule:Day Name - Schedule Day 12; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - cooking range, !- Name - Fractional, !- Schedule Type Limits Name - cooking range Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 2, !- End Month 1 - 24, !- End Day 1 - cooking range Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 - 2, !- Start Month 2 - 25, !- Start Day 2 - 3, !- End Month 2 - 3, !- End Day 2 - cooking range Week Rule - Mar4-Mar31, !- Schedule:Week Name 3 - 3, !- Start Month 3 - 4, !- Start Day 3 - 3, !- End Month 3 - 31, !- End Day 3 - cooking range Week Rule - Apr1-Apr28, !- Schedule:Week Name 4 - 4, !- Start Month 4 - 1, !- Start Day 4 - 4, !- End Month 4 - 28, !- End Day 4 - cooking range Week Rule - Apr29-May5, !- Schedule:Week Name 5 - 4, !- Start Month 5 - 29, !- Start Day 5 - 5, !- End Month 5 - 5, !- End Day 5 - cooking range Week Rule - May6-May26, !- Schedule:Week Name 6 - 5, !- Start Month 6 - 6, !- Start Day 6 - 5, !- End Month 6 - 26, !- End Day 6 - cooking range Week Rule - May27-Jun2, !- Schedule:Week Name 7 - 5, !- Start Month 7 - 27, !- Start Day 7 - 6, !- End Month 7 - 2, !- End Day 7 - cooking range Week Rule - Jun3-Jun30, !- Schedule:Week Name 8 - 6, !- Start Month 8 - 3, !- Start Day 8 - 6, !- End Month 8 - 30, !- End Day 8 - cooking range Week Rule - Jul1-Aug25, !- Schedule:Week Name 9 - 7, !- Start Month 9 - 1, !- Start Day 9 - 8, !- End Month 9 - 25, !- End Day 9 - cooking range Week Rule - Aug26-Sep1, !- Schedule:Week Name 10 - 8, !- Start Month 10 - 26, !- Start Day 10 - 9, !- End Month 10 - 1, !- End Day 10 - cooking range Week Rule - Sep2-Sep29, !- Schedule:Week Name 11 - 9, !- Start Month 11 - 2, !- Start Day 11 - 9, !- End Month 11 - 29, !- End Day 11 - cooking range Week Rule - Sep30-Oct6, !- Schedule:Week Name 12 - 9, !- Start Month 12 - 30, !- Start Day 12 - 10, !- End Month 12 - 6, !- End Day 12 - cooking range Week Rule - Oct7-Nov24, !- Schedule:Week Name 13 - 10, !- Start Month 13 - 7, !- Start Day 13 - 11, !- End Month 13 - 24, !- End Day 13 - cooking range Week Rule - Nov25-Dec1, !- Schedule:Week Name 14 - 11, !- Start Month 14 - 25, !- Start Day 14 - 12, !- End Month 14 - 1, !- End Day 14 - cooking range Week Rule - Dec2-Dec31, !- Schedule:Week Name 15 - 12, !- Start Month 15 - 2, !- Start Day 15 - 12, !- End Month 15 - 31; !- End Day 15 - -Schedule:Week:Daily, - cooling season schedule Week Rule - Jan1-Feb24, !- Name - cooling season schedule allday1, !- Sunday Schedule:Day Name - cooling season schedule allday1, !- Monday Schedule:Day Name - cooling season schedule allday1, !- Tuesday Schedule:Day Name - cooling season schedule allday1, !- Wednesday Schedule:Day Name - cooling season schedule allday1, !- Thursday Schedule:Day Name - cooling season schedule allday1, !- Friday Schedule:Day Name - cooling season schedule allday1, !- Saturday Schedule:Day Name - Schedule Day 5, !- Holiday Schedule:Day Name - Schedule Day 5, !- SummerDesignDay Schedule:Day Name - Schedule Day 5, !- WinterDesignDay Schedule:Day Name - Schedule Day 5, !- CustomDay1 Schedule:Day Name - Schedule Day 5; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooling season schedule Week Rule - Feb25-Mar3, !- Name - cooling season schedule allday1, !- Sunday Schedule:Day Name - cooling season schedule allday1, !- Monday Schedule:Day Name - cooling season schedule allday1, !- Tuesday Schedule:Day Name - cooling season schedule allday1, !- Wednesday Schedule:Day Name - cooling season schedule allday3, !- Thursday Schedule:Day Name - cooling season schedule allday3, !- Friday Schedule:Day Name - cooling season schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 5, !- Holiday Schedule:Day Name - Schedule Day 5, !- SummerDesignDay Schedule:Day Name - Schedule Day 5, !- WinterDesignDay Schedule:Day Name - Schedule Day 5, !- CustomDay1 Schedule:Day Name - Schedule Day 5; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooling season schedule Week Rule - Mar4-Oct27, !- Name - cooling season schedule allday3, !- Sunday Schedule:Day Name - cooling season schedule allday3, !- Monday Schedule:Day Name - cooling season schedule allday3, !- Tuesday Schedule:Day Name - cooling season schedule allday3, !- Wednesday Schedule:Day Name - cooling season schedule allday3, !- Thursday Schedule:Day Name - cooling season schedule allday3, !- Friday Schedule:Day Name - cooling season schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 5, !- Holiday Schedule:Day Name - Schedule Day 5, !- SummerDesignDay Schedule:Day Name - Schedule Day 5, !- WinterDesignDay Schedule:Day Name - Schedule Day 5, !- CustomDay1 Schedule:Day Name - Schedule Day 5; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooling season schedule Week Rule - Oct28-Nov3, !- Name - cooling season schedule allday3, !- Sunday Schedule:Day Name - cooling season schedule allday3, !- Monday Schedule:Day Name - cooling season schedule allday3, !- Tuesday Schedule:Day Name - cooling season schedule allday3, !- Wednesday Schedule:Day Name - cooling season schedule allday11, !- Thursday Schedule:Day Name - cooling season schedule allday11, !- Friday Schedule:Day Name - cooling season schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 5, !- Holiday Schedule:Day Name - Schedule Day 5, !- SummerDesignDay Schedule:Day Name - Schedule Day 5, !- WinterDesignDay Schedule:Day Name - Schedule Day 5, !- CustomDay1 Schedule:Day Name - Schedule Day 5; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - cooling season schedule Week Rule - Nov4-Dec31, !- Name - cooling season schedule allday11, !- Sunday Schedule:Day Name - cooling season schedule allday11, !- Monday Schedule:Day Name - cooling season schedule allday11, !- Tuesday Schedule:Day Name - cooling season schedule allday11, !- Wednesday Schedule:Day Name - cooling season schedule allday11, !- Thursday Schedule:Day Name - cooling season schedule allday11, !- Friday Schedule:Day Name - cooling season schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 5, !- Holiday Schedule:Day Name - Schedule Day 5, !- SummerDesignDay Schedule:Day Name - Schedule Day 5, !- WinterDesignDay Schedule:Day Name - Schedule Day 5, !- CustomDay1 Schedule:Day Name - Schedule Day 5; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - cooling season schedule, !- Name - Fractional, !- Schedule Type Limits Name - cooling season schedule Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 2, !- End Month 1 - 24, !- End Day 1 - cooling season schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 - 2, !- Start Month 2 - 25, !- Start Day 2 - 3, !- End Month 2 - 3, !- End Day 2 - cooling season schedule Week Rule - Mar4-Oct27, !- Schedule:Week Name 3 - 3, !- Start Month 3 - 4, !- Start Day 3 - 10, !- End Month 3 - 27, !- End Day 3 - cooling season schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 4 - 10, !- Start Month 4 - 28, !- Start Day 4 - 11, !- End Month 4 - 3, !- End Day 4 - cooling season schedule Week Rule - Nov4-Dec31, !- Schedule:Week Name 5 - 11, !- Start Month 5 - 4, !- Start Day 5 - 12, !- End Month 5 - 31; !- End Day 5 - -Schedule:Week:Daily, - dhw fixtures schedule Week Rule - Jan1-Jan6, !- Name - dhw fixtures schedule allday1, !- Sunday Schedule:Day Name - dhw fixtures schedule allday1, !- Monday Schedule:Day Name - dhw fixtures schedule allday2, !- Tuesday Schedule:Day Name - dhw fixtures schedule allday3, !- Wednesday Schedule:Day Name - dhw fixtures schedule allday4, !- Thursday Schedule:Day Name - dhw fixtures schedule allday5, !- Friday Schedule:Day Name - dhw fixtures schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 13, !- Holiday Schedule:Day Name - Schedule Day 13, !- SummerDesignDay Schedule:Day Name - Schedule Day 13, !- WinterDesignDay Schedule:Day Name - Schedule Day 13, !- CustomDay1 Schedule:Day Name - Schedule Day 13; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - dhw fixtures schedule Week Rule - Jan7-Dec31, !- Name - dhw fixtures schedule allday7, !- Sunday Schedule:Day Name - dhw fixtures schedule allday1, !- Monday Schedule:Day Name - dhw fixtures schedule allday2, !- Tuesday Schedule:Day Name - dhw fixtures schedule allday3, !- Wednesday Schedule:Day Name - dhw fixtures schedule allday4, !- Thursday Schedule:Day Name - dhw fixtures schedule allday5, !- Friday Schedule:Day Name - dhw fixtures schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 13, !- Holiday Schedule:Day Name - Schedule Day 13, !- SummerDesignDay Schedule:Day Name - Schedule Day 13, !- WinterDesignDay Schedule:Day Name - Schedule Day 13, !- CustomDay1 Schedule:Day Name - Schedule Day 13; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - dhw fixtures schedule, !- Name - Fractional, !- Schedule Type Limits Name - dhw fixtures schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - dhw fixtures schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 12, !- End Month 2 - 31; !- End Day 2 - -Schedule:Week:Daily, - dishwasher schedule Week Rule - Jan1-Jan6, !- Name - dishwasher schedule allday1, !- Sunday Schedule:Day Name - dishwasher schedule allday1, !- Monday Schedule:Day Name - dishwasher schedule allday2, !- Tuesday Schedule:Day Name - dishwasher schedule allday3, !- Wednesday Schedule:Day Name - dishwasher schedule allday4, !- Thursday Schedule:Day Name - dishwasher schedule allday5, !- Friday Schedule:Day Name - dishwasher schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 10, !- Holiday Schedule:Day Name - Schedule Day 10, !- SummerDesignDay Schedule:Day Name - Schedule Day 10, !- WinterDesignDay Schedule:Day Name - Schedule Day 10, !- CustomDay1 Schedule:Day Name - Schedule Day 10; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - dishwasher schedule Week Rule - Jan7-Dec31, !- Name - dishwasher schedule allday7, !- Sunday Schedule:Day Name - dishwasher schedule allday1, !- Monday Schedule:Day Name - dishwasher schedule allday2, !- Tuesday Schedule:Day Name - dishwasher schedule allday3, !- Wednesday Schedule:Day Name - dishwasher schedule allday4, !- Thursday Schedule:Day Name - dishwasher schedule allday5, !- Friday Schedule:Day Name - dishwasher schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 10, !- Holiday Schedule:Day Name - Schedule Day 10, !- SummerDesignDay Schedule:Day Name - Schedule Day 10, !- WinterDesignDay Schedule:Day Name - Schedule Day 10, !- CustomDay1 Schedule:Day Name - Schedule Day 10; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - dishwasher schedule, !- Name - Fractional, !- Schedule Type Limits Name - dishwasher schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - dishwasher schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 12, !- End Month 2 - 31; !- End Day 2 - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Jan1-Jan6, !- Name - exterior lighting schedule weekday1, !- Sunday Schedule:Day Name - exterior lighting schedule weekday1, !- Monday Schedule:Day Name - exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday1, !- Thursday Schedule:Day Name - exterior lighting schedule weekday1, !- Friday Schedule:Day Name - exterior lighting schedule weekend1, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Jan7-Jan27, !- Name - exterior lighting schedule weekend1, !- Sunday Schedule:Day Name - exterior lighting schedule weekday1, !- Monday Schedule:Day Name - exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday1, !- Thursday Schedule:Day Name - exterior lighting schedule weekday1, !- Friday Schedule:Day Name - exterior lighting schedule weekend1, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Jan28-Feb3, !- Name - exterior lighting schedule weekend1, !- Sunday Schedule:Day Name - exterior lighting schedule weekday1, !- Monday Schedule:Day Name - exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday2, !- Thursday Schedule:Day Name - exterior lighting schedule weekday2, !- Friday Schedule:Day Name - exterior lighting schedule weekend2, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Feb4-Feb24, !- Name - exterior lighting schedule weekend2, !- Sunday Schedule:Day Name - exterior lighting schedule weekday2, !- Monday Schedule:Day Name - exterior lighting schedule weekday2, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday2, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday2, !- Thursday Schedule:Day Name - exterior lighting schedule weekday2, !- Friday Schedule:Day Name - exterior lighting schedule weekend2, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Feb25-Mar3, !- Name - exterior lighting schedule weekend2, !- Sunday Schedule:Day Name - exterior lighting schedule weekday2, !- Monday Schedule:Day Name - exterior lighting schedule weekday2, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday2, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday3, !- Thursday Schedule:Day Name - exterior lighting schedule weekday3, !- Friday Schedule:Day Name - exterior lighting schedule weekend3, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Mar4-Mar31, !- Name - exterior lighting schedule weekend3, !- Sunday Schedule:Day Name - exterior lighting schedule weekday3, !- Monday Schedule:Day Name - exterior lighting schedule weekday3, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday3, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday3, !- Thursday Schedule:Day Name - exterior lighting schedule weekday3, !- Friday Schedule:Day Name - exterior lighting schedule weekend3, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Apr1-Apr28, !- Name - exterior lighting schedule weekend4, !- Sunday Schedule:Day Name - exterior lighting schedule weekday4, !- Monday Schedule:Day Name - exterior lighting schedule weekday4, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday4, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday4, !- Thursday Schedule:Day Name - exterior lighting schedule weekday4, !- Friday Schedule:Day Name - exterior lighting schedule weekend4, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Apr29-May5, !- Name - exterior lighting schedule weekend4, !- Sunday Schedule:Day Name - exterior lighting schedule weekday4, !- Monday Schedule:Day Name - exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday5, !- Thursday Schedule:Day Name - exterior lighting schedule weekday5, !- Friday Schedule:Day Name - exterior lighting schedule weekend5, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - May6-May26, !- Name - exterior lighting schedule weekend5, !- Sunday Schedule:Day Name - exterior lighting schedule weekday5, !- Monday Schedule:Day Name - exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday5, !- Thursday Schedule:Day Name - exterior lighting schedule weekday5, !- Friday Schedule:Day Name - exterior lighting schedule weekend5, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - May27-Jun2, !- Name - exterior lighting schedule weekend5, !- Sunday Schedule:Day Name - exterior lighting schedule weekday5, !- Monday Schedule:Day Name - exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday5, !- Thursday Schedule:Day Name - exterior lighting schedule weekday6, !- Friday Schedule:Day Name - exterior lighting schedule weekend6, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Jun3-Jun30, !- Name - exterior lighting schedule weekend6, !- Sunday Schedule:Day Name - exterior lighting schedule weekday6, !- Monday Schedule:Day Name - exterior lighting schedule weekday6, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday6, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday6, !- Thursday Schedule:Day Name - exterior lighting schedule weekday6, !- Friday Schedule:Day Name - exterior lighting schedule weekend6, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Jul1-Aug25, !- Name - exterior lighting schedule weekend7, !- Sunday Schedule:Day Name - exterior lighting schedule weekday7, !- Monday Schedule:Day Name - exterior lighting schedule weekday7, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday7, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday7, !- Thursday Schedule:Day Name - exterior lighting schedule weekday7, !- Friday Schedule:Day Name - exterior lighting schedule weekend7, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Aug26-Sep1, !- Name - exterior lighting schedule weekend7, !- Sunday Schedule:Day Name - exterior lighting schedule weekday7, !- Monday Schedule:Day Name - exterior lighting schedule weekday7, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday7, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday7, !- Thursday Schedule:Day Name - exterior lighting schedule weekday7, !- Friday Schedule:Day Name - exterior lighting schedule weekend9, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Sep2-Sep29, !- Name - exterior lighting schedule weekend9, !- Sunday Schedule:Day Name - exterior lighting schedule weekday9, !- Monday Schedule:Day Name - exterior lighting schedule weekday9, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday9, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday9, !- Thursday Schedule:Day Name - exterior lighting schedule weekday9, !- Friday Schedule:Day Name - exterior lighting schedule weekend9, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Sep30-Oct6, !- Name - exterior lighting schedule weekend9, !- Sunday Schedule:Day Name - exterior lighting schedule weekday10, !- Monday Schedule:Day Name - exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday10, !- Thursday Schedule:Day Name - exterior lighting schedule weekday10, !- Friday Schedule:Day Name - exterior lighting schedule weekend10, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Oct7-Oct27, !- Name - exterior lighting schedule weekend10, !- Sunday Schedule:Day Name - exterior lighting schedule weekday10, !- Monday Schedule:Day Name - exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday10, !- Thursday Schedule:Day Name - exterior lighting schedule weekday10, !- Friday Schedule:Day Name - exterior lighting schedule weekend10, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Oct28-Nov3, !- Name - exterior lighting schedule weekend10, !- Sunday Schedule:Day Name - exterior lighting schedule weekday10, !- Monday Schedule:Day Name - exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday11, !- Thursday Schedule:Day Name - exterior lighting schedule weekday11, !- Friday Schedule:Day Name - exterior lighting schedule weekend11, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Nov4-Nov24, !- Name - exterior lighting schedule weekend11, !- Sunday Schedule:Day Name - exterior lighting schedule weekday11, !- Monday Schedule:Day Name - exterior lighting schedule weekday11, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday11, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday11, !- Thursday Schedule:Day Name - exterior lighting schedule weekday11, !- Friday Schedule:Day Name - exterior lighting schedule weekend11, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Nov25-Dec1, !- Name - exterior lighting schedule weekend11, !- Sunday Schedule:Day Name - exterior lighting schedule weekday11, !- Monday Schedule:Day Name - exterior lighting schedule weekday11, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday11, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday11, !- Thursday Schedule:Day Name - exterior lighting schedule weekday11, !- Friday Schedule:Day Name - exterior lighting schedule weekend12, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - exterior lighting schedule Week Rule - Dec2-Dec31, !- Name - exterior lighting schedule weekend12, !- Sunday Schedule:Day Name - exterior lighting schedule weekday12, !- Monday Schedule:Day Name - exterior lighting schedule weekday12, !- Tuesday Schedule:Day Name - exterior lighting schedule weekday12, !- Wednesday Schedule:Day Name - exterior lighting schedule weekday12, !- Thursday Schedule:Day Name - exterior lighting schedule weekday12, !- Friday Schedule:Day Name - exterior lighting schedule weekend12, !- Saturday Schedule:Day Name - Schedule Day 17, !- Holiday Schedule:Day Name - Schedule Day 17, !- SummerDesignDay Schedule:Day Name - Schedule Day 17, !- WinterDesignDay Schedule:Day Name - Schedule Day 17, !- CustomDay1 Schedule:Day Name - Schedule Day 17; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - exterior lighting schedule, !- Name - Fractional, !- Schedule Type Limits Name - exterior lighting schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - exterior lighting schedule Week Rule - Jan7-Jan27, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 1, !- End Month 2 - 27, !- End Day 2 - exterior lighting schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 3 - 1, !- Start Month 3 - 28, !- Start Day 3 - 2, !- End Month 3 - 3, !- End Day 3 - exterior lighting schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 4 - 2, !- Start Month 4 - 4, !- Start Day 4 - 2, !- End Month 4 - 24, !- End Day 4 - exterior lighting schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 5 - 2, !- Start Month 5 - 25, !- Start Day 5 - 3, !- End Month 5 - 3, !- End Day 5 - exterior lighting schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 6 - 3, !- Start Month 6 - 4, !- Start Day 6 - 3, !- End Month 6 - 31, !- End Day 6 - exterior lighting schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 7 - 4, !- Start Month 7 - 1, !- Start Day 7 - 4, !- End Month 7 - 28, !- End Day 7 - exterior lighting schedule Week Rule - Apr29-May5, !- Schedule:Week Name 8 - 4, !- Start Month 8 - 29, !- Start Day 8 - 5, !- End Month 8 - 5, !- End Day 8 - exterior lighting schedule Week Rule - May6-May26, !- Schedule:Week Name 9 - 5, !- Start Month 9 - 6, !- Start Day 9 - 5, !- End Month 9 - 26, !- End Day 9 - exterior lighting schedule Week Rule - May27-Jun2, !- Schedule:Week Name 10 - 5, !- Start Month 10 - 27, !- Start Day 10 - 6, !- End Month 10 - 2, !- End Day 10 - exterior lighting schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 11 - 6, !- Start Month 11 - 3, !- Start Day 11 - 6, !- End Month 11 - 30, !- End Day 11 - exterior lighting schedule Week Rule - Jul1-Aug25, !- Schedule:Week Name 12 - 7, !- Start Month 12 - 1, !- Start Day 12 - 8, !- End Month 12 - 25, !- End Day 12 - exterior lighting schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 13 - 8, !- Start Month 13 - 26, !- Start Day 13 - 9, !- End Month 13 - 1, !- End Day 13 - exterior lighting schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 14 - 9, !- Start Month 14 - 2, !- Start Day 14 - 9, !- End Month 14 - 29, !- End Day 14 - exterior lighting schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 15 - 9, !- Start Month 15 - 30, !- Start Day 15 - 10, !- End Month 15 - 6, !- End Day 15 - exterior lighting schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 16 - 10, !- Start Month 16 - 7, !- Start Day 16 - 10, !- End Month 16 - 27, !- End Day 16 - exterior lighting schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 17 - 10, !- Start Month 17 - 28, !- Start Day 17 - 11, !- End Month 17 - 3, !- End Day 17 - exterior lighting schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 18 - 11, !- Start Month 18 - 4, !- Start Day 18 - 11, !- End Month 18 - 24, !- End Day 18 - exterior lighting schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 19 - 11, !- Start Month 19 - 25, !- Start Day 19 - 12, !- End Month 19 - 1, !- End Day 19 - exterior lighting schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 20 - 12, !- Start Month 20 - 2, !- Start Day 20 - 12, !- End Month 20 - 31; !- End Day 20 - -Schedule:Week:Daily, - fridge Week Rule - Jan1-Jan27, !- Name - fridge allday1, !- Sunday Schedule:Day Name - fridge allday1, !- Monday Schedule:Day Name - fridge allday1, !- Tuesday Schedule:Day Name - fridge allday1, !- Wednesday Schedule:Day Name - fridge allday1, !- Thursday Schedule:Day Name - fridge allday1, !- Friday Schedule:Day Name - fridge allday1, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Jan28-Feb3, !- Name - fridge allday1, !- Sunday Schedule:Day Name - fridge allday1, !- Monday Schedule:Day Name - fridge allday1, !- Tuesday Schedule:Day Name - fridge allday1, !- Wednesday Schedule:Day Name - fridge allday2, !- Thursday Schedule:Day Name - fridge allday2, !- Friday Schedule:Day Name - fridge allday2, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Feb4-Feb24, !- Name - fridge allday2, !- Sunday Schedule:Day Name - fridge allday2, !- Monday Schedule:Day Name - fridge allday2, !- Tuesday Schedule:Day Name - fridge allday2, !- Wednesday Schedule:Day Name - fridge allday2, !- Thursday Schedule:Day Name - fridge allday2, !- Friday Schedule:Day Name - fridge allday2, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Feb25-Mar3, !- Name - fridge allday2, !- Sunday Schedule:Day Name - fridge allday2, !- Monday Schedule:Day Name - fridge allday2, !- Tuesday Schedule:Day Name - fridge allday2, !- Wednesday Schedule:Day Name - fridge allday3, !- Thursday Schedule:Day Name - fridge allday3, !- Friday Schedule:Day Name - fridge allday3, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Mar4-May26, !- Name - fridge allday3, !- Sunday Schedule:Day Name - fridge allday3, !- Monday Schedule:Day Name - fridge allday3, !- Tuesday Schedule:Day Name - fridge allday3, !- Wednesday Schedule:Day Name - fridge allday3, !- Thursday Schedule:Day Name - fridge allday3, !- Friday Schedule:Day Name - fridge allday3, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - May27-Jun2, !- Name - fridge allday3, !- Sunday Schedule:Day Name - fridge allday3, !- Monday Schedule:Day Name - fridge allday3, !- Tuesday Schedule:Day Name - fridge allday3, !- Wednesday Schedule:Day Name - fridge allday3, !- Thursday Schedule:Day Name - fridge allday6, !- Friday Schedule:Day Name - fridge allday6, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Jun3-Sep29, !- Name - fridge allday6, !- Sunday Schedule:Day Name - fridge allday6, !- Monday Schedule:Day Name - fridge allday6, !- Tuesday Schedule:Day Name - fridge allday6, !- Wednesday Schedule:Day Name - fridge allday6, !- Thursday Schedule:Day Name - fridge allday6, !- Friday Schedule:Day Name - fridge allday6, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Sep30-Oct6, !- Name - fridge allday6, !- Sunday Schedule:Day Name - fridge allday10, !- Monday Schedule:Day Name - fridge allday10, !- Tuesday Schedule:Day Name - fridge allday10, !- Wednesday Schedule:Day Name - fridge allday10, !- Thursday Schedule:Day Name - fridge allday10, !- Friday Schedule:Day Name - fridge allday10, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Oct7-Oct27, !- Name - fridge allday10, !- Sunday Schedule:Day Name - fridge allday10, !- Monday Schedule:Day Name - fridge allday10, !- Tuesday Schedule:Day Name - fridge allday10, !- Wednesday Schedule:Day Name - fridge allday10, !- Thursday Schedule:Day Name - fridge allday10, !- Friday Schedule:Day Name - fridge allday10, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Oct28-Nov3, !- Name - fridge allday10, !- Sunday Schedule:Day Name - fridge allday10, !- Monday Schedule:Day Name - fridge allday10, !- Tuesday Schedule:Day Name - fridge allday10, !- Wednesday Schedule:Day Name - fridge allday11, !- Thursday Schedule:Day Name - fridge allday11, !- Friday Schedule:Day Name - fridge allday11, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Nov4-Nov24, !- Name - fridge allday11, !- Sunday Schedule:Day Name - fridge allday11, !- Monday Schedule:Day Name - fridge allday11, !- Tuesday Schedule:Day Name - fridge allday11, !- Wednesday Schedule:Day Name - fridge allday11, !- Thursday Schedule:Day Name - fridge allday11, !- Friday Schedule:Day Name - fridge allday11, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Nov25-Dec1, !- Name - fridge allday11, !- Sunday Schedule:Day Name - fridge allday11, !- Monday Schedule:Day Name - fridge allday11, !- Tuesday Schedule:Day Name - fridge allday11, !- Wednesday Schedule:Day Name - fridge allday11, !- Thursday Schedule:Day Name - fridge allday11, !- Friday Schedule:Day Name - fridge allday12, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - fridge Week Rule - Dec2-Dec31, !- Name - fridge allday12, !- Sunday Schedule:Day Name - fridge allday12, !- Monday Schedule:Day Name - fridge allday12, !- Tuesday Schedule:Day Name - fridge allday12, !- Wednesday Schedule:Day Name - fridge allday12, !- Thursday Schedule:Day Name - fridge allday12, !- Friday Schedule:Day Name - fridge allday12, !- Saturday Schedule:Day Name - Schedule Day 11, !- Holiday Schedule:Day Name - Schedule Day 11, !- SummerDesignDay Schedule:Day Name - Schedule Day 11, !- WinterDesignDay Schedule:Day Name - Schedule Day 11, !- CustomDay1 Schedule:Day Name - Schedule Day 11; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - fridge, !- Name - Fractional, !- Schedule Type Limits Name - fridge Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 27, !- End Day 1 - fridge Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 28, !- Start Day 2 - 2, !- End Month 2 - 3, !- End Day 2 - fridge Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 - 2, !- Start Month 3 - 4, !- Start Day 3 - 2, !- End Month 3 - 24, !- End Day 3 - fridge Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 - 2, !- Start Month 4 - 25, !- Start Day 4 - 3, !- End Month 4 - 3, !- End Day 4 - fridge Week Rule - Mar4-May26, !- Schedule:Week Name 5 - 3, !- Start Month 5 - 4, !- Start Day 5 - 5, !- End Month 5 - 26, !- End Day 5 - fridge Week Rule - May27-Jun2, !- Schedule:Week Name 6 - 5, !- Start Month 6 - 27, !- Start Day 6 - 6, !- End Month 6 - 2, !- End Day 6 - fridge Week Rule - Jun3-Sep29, !- Schedule:Week Name 7 - 6, !- Start Month 7 - 3, !- Start Day 7 - 9, !- End Month 7 - 29, !- End Day 7 - fridge Week Rule - Sep30-Oct6, !- Schedule:Week Name 8 - 9, !- Start Month 8 - 30, !- Start Day 8 - 10, !- End Month 8 - 6, !- End Day 8 - fridge Week Rule - Oct7-Oct27, !- Schedule:Week Name 9 - 10, !- Start Month 9 - 7, !- Start Day 9 - 10, !- End Month 9 - 27, !- End Day 9 - fridge Week Rule - Oct28-Nov3, !- Schedule:Week Name 10 - 10, !- Start Month 10 - 28, !- Start Day 10 - 11, !- End Month 10 - 3, !- End Day 10 - fridge Week Rule - Nov4-Nov24, !- Schedule:Week Name 11 - 11, !- Start Month 11 - 4, !- Start Day 11 - 11, !- End Month 11 - 24, !- End Day 11 - fridge Week Rule - Nov25-Dec1, !- Schedule:Week Name 12 - 11, !- Start Month 12 - 25, !- Start Day 12 - 12, !- End Month 12 - 1, !- End Day 12 - fridge Week Rule - Dec2-Dec31, !- Schedule:Week Name 13 - 12, !- Start Month 13 - 2, !- Start Day 13 - 12, !- End Month 13 - 31; !- End Day 13 - -Schedule:Week:Daily, - heating season schedule Week Rule - Jan1-Feb24, !- Name - heating season schedule allday1, !- Sunday Schedule:Day Name - heating season schedule allday1, !- Monday Schedule:Day Name - heating season schedule allday1, !- Tuesday Schedule:Day Name - heating season schedule allday1, !- Wednesday Schedule:Day Name - heating season schedule allday1, !- Thursday Schedule:Day Name - heating season schedule allday1, !- Friday Schedule:Day Name - heating season schedule allday1, !- Saturday Schedule:Day Name - Schedule Day 6, !- Holiday Schedule:Day Name - Schedule Day 6, !- SummerDesignDay Schedule:Day Name - Schedule Day 6, !- WinterDesignDay Schedule:Day Name - Schedule Day 6, !- CustomDay1 Schedule:Day Name - Schedule Day 6; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - heating season schedule Week Rule - Feb25-Mar3, !- Name - heating season schedule allday1, !- Sunday Schedule:Day Name - heating season schedule allday1, !- Monday Schedule:Day Name - heating season schedule allday1, !- Tuesday Schedule:Day Name - heating season schedule allday1, !- Wednesday Schedule:Day Name - heating season schedule allday3, !- Thursday Schedule:Day Name - heating season schedule allday3, !- Friday Schedule:Day Name - heating season schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 6, !- Holiday Schedule:Day Name - Schedule Day 6, !- SummerDesignDay Schedule:Day Name - Schedule Day 6, !- WinterDesignDay Schedule:Day Name - Schedule Day 6, !- CustomDay1 Schedule:Day Name - Schedule Day 6; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - heating season schedule Week Rule - Mar4-Oct27, !- Name - heating season schedule allday3, !- Sunday Schedule:Day Name - heating season schedule allday3, !- Monday Schedule:Day Name - heating season schedule allday3, !- Tuesday Schedule:Day Name - heating season schedule allday3, !- Wednesday Schedule:Day Name - heating season schedule allday3, !- Thursday Schedule:Day Name - heating season schedule allday3, !- Friday Schedule:Day Name - heating season schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 6, !- Holiday Schedule:Day Name - Schedule Day 6, !- SummerDesignDay Schedule:Day Name - Schedule Day 6, !- WinterDesignDay Schedule:Day Name - Schedule Day 6, !- CustomDay1 Schedule:Day Name - Schedule Day 6; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - heating season schedule Week Rule - Oct28-Nov3, !- Name - heating season schedule allday3, !- Sunday Schedule:Day Name - heating season schedule allday3, !- Monday Schedule:Day Name - heating season schedule allday3, !- Tuesday Schedule:Day Name - heating season schedule allday3, !- Wednesday Schedule:Day Name - heating season schedule allday11, !- Thursday Schedule:Day Name - heating season schedule allday11, !- Friday Schedule:Day Name - heating season schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 6, !- Holiday Schedule:Day Name - Schedule Day 6, !- SummerDesignDay Schedule:Day Name - Schedule Day 6, !- WinterDesignDay Schedule:Day Name - Schedule Day 6, !- CustomDay1 Schedule:Day Name - Schedule Day 6; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - heating season schedule Week Rule - Nov4-Dec31, !- Name - heating season schedule allday11, !- Sunday Schedule:Day Name - heating season schedule allday11, !- Monday Schedule:Day Name - heating season schedule allday11, !- Tuesday Schedule:Day Name - heating season schedule allday11, !- Wednesday Schedule:Day Name - heating season schedule allday11, !- Thursday Schedule:Day Name - heating season schedule allday11, !- Friday Schedule:Day Name - heating season schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 6, !- Holiday Schedule:Day Name - Schedule Day 6, !- SummerDesignDay Schedule:Day Name - Schedule Day 6, !- WinterDesignDay Schedule:Day Name - Schedule Day 6, !- CustomDay1 Schedule:Day Name - Schedule Day 6; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - heating season schedule, !- Name - Fractional, !- Schedule Type Limits Name - heating season schedule Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 2, !- End Month 1 - 24, !- End Day 1 - heating season schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 - 2, !- Start Month 2 - 25, !- Start Day 2 - 3, !- End Month 2 - 3, !- End Day 2 - heating season schedule Week Rule - Mar4-Oct27, !- Schedule:Week Name 3 - 3, !- Start Month 3 - 4, !- Start Day 3 - 10, !- End Month 3 - 27, !- End Day 3 - heating season schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 4 - 10, !- Start Month 4 - 28, !- Start Day 4 - 11, !- End Month 4 - 3, !- End Day 4 - heating season schedule Week Rule - Nov4-Dec31, !- Schedule:Week Name 5 - 11, !- Start Month 5 - 4, !- Start Day 5 - 12, !- End Month 5 - 31; !- End Day 5 - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Jan1-Jan27, !- Name - misc plug loads schedule allday1, !- Sunday Schedule:Day Name - misc plug loads schedule allday1, !- Monday Schedule:Day Name - misc plug loads schedule allday1, !- Tuesday Schedule:Day Name - misc plug loads schedule allday1, !- Wednesday Schedule:Day Name - misc plug loads schedule allday1, !- Thursday Schedule:Day Name - misc plug loads schedule allday1, !- Friday Schedule:Day Name - misc plug loads schedule allday1, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Jan28-Feb3, !- Name - misc plug loads schedule allday1, !- Sunday Schedule:Day Name - misc plug loads schedule allday1, !- Monday Schedule:Day Name - misc plug loads schedule allday1, !- Tuesday Schedule:Day Name - misc plug loads schedule allday1, !- Wednesday Schedule:Day Name - misc plug loads schedule allday2, !- Thursday Schedule:Day Name - misc plug loads schedule allday2, !- Friday Schedule:Day Name - misc plug loads schedule allday2, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Feb4-Feb24, !- Name - misc plug loads schedule allday2, !- Sunday Schedule:Day Name - misc plug loads schedule allday2, !- Monday Schedule:Day Name - misc plug loads schedule allday2, !- Tuesday Schedule:Day Name - misc plug loads schedule allday2, !- Wednesday Schedule:Day Name - misc plug loads schedule allday2, !- Thursday Schedule:Day Name - misc plug loads schedule allday2, !- Friday Schedule:Day Name - misc plug loads schedule allday2, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Feb25-Mar3, !- Name - misc plug loads schedule allday2, !- Sunday Schedule:Day Name - misc plug loads schedule allday2, !- Monday Schedule:Day Name - misc plug loads schedule allday2, !- Tuesday Schedule:Day Name - misc plug loads schedule allday2, !- Wednesday Schedule:Day Name - misc plug loads schedule allday3, !- Thursday Schedule:Day Name - misc plug loads schedule allday3, !- Friday Schedule:Day Name - misc plug loads schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Mar4-Mar31, !- Name - misc plug loads schedule allday3, !- Sunday Schedule:Day Name - misc plug loads schedule allday3, !- Monday Schedule:Day Name - misc plug loads schedule allday3, !- Tuesday Schedule:Day Name - misc plug loads schedule allday3, !- Wednesday Schedule:Day Name - misc plug loads schedule allday3, !- Thursday Schedule:Day Name - misc plug loads schedule allday3, !- Friday Schedule:Day Name - misc plug loads schedule allday3, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Apr1-Apr28, !- Name - misc plug loads schedule allday4, !- Sunday Schedule:Day Name - misc plug loads schedule allday4, !- Monday Schedule:Day Name - misc plug loads schedule allday4, !- Tuesday Schedule:Day Name - misc plug loads schedule allday4, !- Wednesday Schedule:Day Name - misc plug loads schedule allday4, !- Thursday Schedule:Day Name - misc plug loads schedule allday4, !- Friday Schedule:Day Name - misc plug loads schedule allday4, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Apr29-May5, !- Name - misc plug loads schedule allday4, !- Sunday Schedule:Day Name - misc plug loads schedule allday4, !- Monday Schedule:Day Name - misc plug loads schedule allday5, !- Tuesday Schedule:Day Name - misc plug loads schedule allday5, !- Wednesday Schedule:Day Name - misc plug loads schedule allday5, !- Thursday Schedule:Day Name - misc plug loads schedule allday5, !- Friday Schedule:Day Name - misc plug loads schedule allday5, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - May6-May26, !- Name - misc plug loads schedule allday5, !- Sunday Schedule:Day Name - misc plug loads schedule allday5, !- Monday Schedule:Day Name - misc plug loads schedule allday5, !- Tuesday Schedule:Day Name - misc plug loads schedule allday5, !- Wednesday Schedule:Day Name - misc plug loads schedule allday5, !- Thursday Schedule:Day Name - misc plug loads schedule allday5, !- Friday Schedule:Day Name - misc plug loads schedule allday5, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - May27-Jun2, !- Name - misc plug loads schedule allday5, !- Sunday Schedule:Day Name - misc plug loads schedule allday5, !- Monday Schedule:Day Name - misc plug loads schedule allday5, !- Tuesday Schedule:Day Name - misc plug loads schedule allday5, !- Wednesday Schedule:Day Name - misc plug loads schedule allday5, !- Thursday Schedule:Day Name - misc plug loads schedule allday6, !- Friday Schedule:Day Name - misc plug loads schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Jun3-Jun30, !- Name - misc plug loads schedule allday6, !- Sunday Schedule:Day Name - misc plug loads schedule allday6, !- Monday Schedule:Day Name - misc plug loads schedule allday6, !- Tuesday Schedule:Day Name - misc plug loads schedule allday6, !- Wednesday Schedule:Day Name - misc plug loads schedule allday6, !- Thursday Schedule:Day Name - misc plug loads schedule allday6, !- Friday Schedule:Day Name - misc plug loads schedule allday6, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Jul1-Aug25, !- Name - misc plug loads schedule allday7, !- Sunday Schedule:Day Name - misc plug loads schedule allday7, !- Monday Schedule:Day Name - misc plug loads schedule allday7, !- Tuesday Schedule:Day Name - misc plug loads schedule allday7, !- Wednesday Schedule:Day Name - misc plug loads schedule allday7, !- Thursday Schedule:Day Name - misc plug loads schedule allday7, !- Friday Schedule:Day Name - misc plug loads schedule allday7, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Aug26-Sep1, !- Name - misc plug loads schedule allday7, !- Sunday Schedule:Day Name - misc plug loads schedule allday7, !- Monday Schedule:Day Name - misc plug loads schedule allday7, !- Tuesday Schedule:Day Name - misc plug loads schedule allday7, !- Wednesday Schedule:Day Name - misc plug loads schedule allday7, !- Thursday Schedule:Day Name - misc plug loads schedule allday7, !- Friday Schedule:Day Name - misc plug loads schedule allday9, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Sep2-Sep29, !- Name - misc plug loads schedule allday9, !- Sunday Schedule:Day Name - misc plug loads schedule allday9, !- Monday Schedule:Day Name - misc plug loads schedule allday9, !- Tuesday Schedule:Day Name - misc plug loads schedule allday9, !- Wednesday Schedule:Day Name - misc plug loads schedule allday9, !- Thursday Schedule:Day Name - misc plug loads schedule allday9, !- Friday Schedule:Day Name - misc plug loads schedule allday9, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Sep30-Oct6, !- Name - misc plug loads schedule allday9, !- Sunday Schedule:Day Name - misc plug loads schedule allday10, !- Monday Schedule:Day Name - misc plug loads schedule allday10, !- Tuesday Schedule:Day Name - misc plug loads schedule allday10, !- Wednesday Schedule:Day Name - misc plug loads schedule allday10, !- Thursday Schedule:Day Name - misc plug loads schedule allday10, !- Friday Schedule:Day Name - misc plug loads schedule allday10, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Oct7-Oct27, !- Name - misc plug loads schedule allday10, !- Sunday Schedule:Day Name - misc plug loads schedule allday10, !- Monday Schedule:Day Name - misc plug loads schedule allday10, !- Tuesday Schedule:Day Name - misc plug loads schedule allday10, !- Wednesday Schedule:Day Name - misc plug loads schedule allday10, !- Thursday Schedule:Day Name - misc plug loads schedule allday10, !- Friday Schedule:Day Name - misc plug loads schedule allday10, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Oct28-Nov3, !- Name - misc plug loads schedule allday10, !- Sunday Schedule:Day Name - misc plug loads schedule allday10, !- Monday Schedule:Day Name - misc plug loads schedule allday10, !- Tuesday Schedule:Day Name - misc plug loads schedule allday10, !- Wednesday Schedule:Day Name - misc plug loads schedule allday11, !- Thursday Schedule:Day Name - misc plug loads schedule allday11, !- Friday Schedule:Day Name - misc plug loads schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Nov4-Nov24, !- Name - misc plug loads schedule allday11, !- Sunday Schedule:Day Name - misc plug loads schedule allday11, !- Monday Schedule:Day Name - misc plug loads schedule allday11, !- Tuesday Schedule:Day Name - misc plug loads schedule allday11, !- Wednesday Schedule:Day Name - misc plug loads schedule allday11, !- Thursday Schedule:Day Name - misc plug loads schedule allday11, !- Friday Schedule:Day Name - misc plug loads schedule allday11, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Nov25-Dec1, !- Name - misc plug loads schedule allday11, !- Sunday Schedule:Day Name - misc plug loads schedule allday11, !- Monday Schedule:Day Name - misc plug loads schedule allday11, !- Tuesday Schedule:Day Name - misc plug loads schedule allday11, !- Wednesday Schedule:Day Name - misc plug loads schedule allday11, !- Thursday Schedule:Day Name - misc plug loads schedule allday11, !- Friday Schedule:Day Name - misc plug loads schedule allday12, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc plug loads schedule Week Rule - Dec2-Dec31, !- Name - misc plug loads schedule allday12, !- Sunday Schedule:Day Name - misc plug loads schedule allday12, !- Monday Schedule:Day Name - misc plug loads schedule allday12, !- Tuesday Schedule:Day Name - misc plug loads schedule allday12, !- Wednesday Schedule:Day Name - misc plug loads schedule allday12, !- Thursday Schedule:Day Name - misc plug loads schedule allday12, !- Friday Schedule:Day Name - misc plug loads schedule allday12, !- Saturday Schedule:Day Name - Schedule Day 14, !- Holiday Schedule:Day Name - Schedule Day 14, !- SummerDesignDay Schedule:Day Name - Schedule Day 14, !- WinterDesignDay Schedule:Day Name - Schedule Day 14, !- CustomDay1 Schedule:Day Name - Schedule Day 14; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - misc plug loads schedule, !- Name - Fractional, !- Schedule Type Limits Name - misc plug loads schedule Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 27, !- End Day 1 - misc plug loads schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 28, !- Start Day 2 - 2, !- End Month 2 - 3, !- End Day 2 - misc plug loads schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 - 2, !- Start Month 3 - 4, !- Start Day 3 - 2, !- End Month 3 - 24, !- End Day 3 - misc plug loads schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 - 2, !- Start Month 4 - 25, !- Start Day 4 - 3, !- End Month 4 - 3, !- End Day 4 - misc plug loads schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 5 - 3, !- Start Month 5 - 4, !- Start Day 5 - 3, !- End Month 5 - 31, !- End Day 5 - misc plug loads schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 6 - 4, !- Start Month 6 - 1, !- Start Day 6 - 4, !- End Month 6 - 28, !- End Day 6 - misc plug loads schedule Week Rule - Apr29-May5, !- Schedule:Week Name 7 - 4, !- Start Month 7 - 29, !- Start Day 7 - 5, !- End Month 7 - 5, !- End Day 7 - misc plug loads schedule Week Rule - May6-May26, !- Schedule:Week Name 8 - 5, !- Start Month 8 - 6, !- Start Day 8 - 5, !- End Month 8 - 26, !- End Day 8 - misc plug loads schedule Week Rule - May27-Jun2, !- Schedule:Week Name 9 - 5, !- Start Month 9 - 27, !- Start Day 9 - 6, !- End Month 9 - 2, !- End Day 9 - misc plug loads schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 10 - 6, !- Start Month 10 - 3, !- Start Day 10 - 6, !- End Month 10 - 30, !- End Day 10 - misc plug loads schedule Week Rule - Jul1-Aug25, !- Schedule:Week Name 11 - 7, !- Start Month 11 - 1, !- Start Day 11 - 8, !- End Month 11 - 25, !- End Day 11 - misc plug loads schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 12 - 8, !- Start Month 12 - 26, !- Start Day 12 - 9, !- End Month 12 - 1, !- End Day 12 - misc plug loads schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 13 - 9, !- Start Month 13 - 2, !- Start Day 13 - 9, !- End Month 13 - 29, !- End Day 13 - misc plug loads schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 14 - 9, !- Start Month 14 - 30, !- Start Day 14 - 10, !- End Month 14 - 6, !- End Day 14 - misc plug loads schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 15 - 10, !- Start Month 15 - 7, !- Start Day 15 - 10, !- End Month 15 - 27, !- End Day 15 - misc plug loads schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 16 - 10, !- Start Month 16 - 28, !- Start Day 16 - 11, !- End Month 16 - 3, !- End Day 16 - misc plug loads schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 17 - 11, !- Start Month 17 - 4, !- Start Day 17 - 11, !- End Month 17 - 24, !- End Day 17 - misc plug loads schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 18 - 11, !- Start Month 18 - 25, !- Start Day 18 - 12, !- End Month 18 - 1, !- End Day 18 - misc plug loads schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 19 - 12, !- Start Month 19 - 2, !- Start Day 19 - 12, !- End Month 19 - 31; !- End Day 19 - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jan1-Jan6, !- Name - misc tv schedule weekday1, !- Sunday Schedule:Day Name - misc tv schedule weekday1, !- Monday Schedule:Day Name - misc tv schedule weekday1, !- Tuesday Schedule:Day Name - misc tv schedule weekday1, !- Wednesday Schedule:Day Name - misc tv schedule weekday1, !- Thursday Schedule:Day Name - misc tv schedule weekday1, !- Friday Schedule:Day Name - misc tv schedule weekend1, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jan7-Jan27, !- Name - misc tv schedule weekend1, !- Sunday Schedule:Day Name - misc tv schedule weekday1, !- Monday Schedule:Day Name - misc tv schedule weekday1, !- Tuesday Schedule:Day Name - misc tv schedule weekday1, !- Wednesday Schedule:Day Name - misc tv schedule weekday1, !- Thursday Schedule:Day Name - misc tv schedule weekday1, !- Friday Schedule:Day Name - misc tv schedule weekend1, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jan28-Feb3, !- Name - misc tv schedule weekend1, !- Sunday Schedule:Day Name - misc tv schedule weekday1, !- Monday Schedule:Day Name - misc tv schedule weekday1, !- Tuesday Schedule:Day Name - misc tv schedule weekday1, !- Wednesday Schedule:Day Name - misc tv schedule weekday2, !- Thursday Schedule:Day Name - misc tv schedule weekday2, !- Friday Schedule:Day Name - misc tv schedule weekend2, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Feb4-Feb24, !- Name - misc tv schedule weekend2, !- Sunday Schedule:Day Name - misc tv schedule weekday2, !- Monday Schedule:Day Name - misc tv schedule weekday2, !- Tuesday Schedule:Day Name - misc tv schedule weekday2, !- Wednesday Schedule:Day Name - misc tv schedule weekday2, !- Thursday Schedule:Day Name - misc tv schedule weekday2, !- Friday Schedule:Day Name - misc tv schedule weekend2, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Feb25-Mar3, !- Name - misc tv schedule weekend2, !- Sunday Schedule:Day Name - misc tv schedule weekday2, !- Monday Schedule:Day Name - misc tv schedule weekday2, !- Tuesday Schedule:Day Name - misc tv schedule weekday2, !- Wednesday Schedule:Day Name - misc tv schedule weekday3, !- Thursday Schedule:Day Name - misc tv schedule weekday3, !- Friday Schedule:Day Name - misc tv schedule weekend3, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Mar4-Mar31, !- Name - misc tv schedule weekend3, !- Sunday Schedule:Day Name - misc tv schedule weekday3, !- Monday Schedule:Day Name - misc tv schedule weekday3, !- Tuesday Schedule:Day Name - misc tv schedule weekday3, !- Wednesday Schedule:Day Name - misc tv schedule weekday3, !- Thursday Schedule:Day Name - misc tv schedule weekday3, !- Friday Schedule:Day Name - misc tv schedule weekend3, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Apr1-Apr28, !- Name - misc tv schedule weekend4, !- Sunday Schedule:Day Name - misc tv schedule weekday4, !- Monday Schedule:Day Name - misc tv schedule weekday4, !- Tuesday Schedule:Day Name - misc tv schedule weekday4, !- Wednesday Schedule:Day Name - misc tv schedule weekday4, !- Thursday Schedule:Day Name - misc tv schedule weekday4, !- Friday Schedule:Day Name - misc tv schedule weekend4, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Apr29-May5, !- Name - misc tv schedule weekend4, !- Sunday Schedule:Day Name - misc tv schedule weekday4, !- Monday Schedule:Day Name - misc tv schedule weekday5, !- Tuesday Schedule:Day Name - misc tv schedule weekday5, !- Wednesday Schedule:Day Name - misc tv schedule weekday5, !- Thursday Schedule:Day Name - misc tv schedule weekday5, !- Friday Schedule:Day Name - misc tv schedule weekend5, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - May6-May26, !- Name - misc tv schedule weekend5, !- Sunday Schedule:Day Name - misc tv schedule weekday5, !- Monday Schedule:Day Name - misc tv schedule weekday5, !- Tuesday Schedule:Day Name - misc tv schedule weekday5, !- Wednesday Schedule:Day Name - misc tv schedule weekday5, !- Thursday Schedule:Day Name - misc tv schedule weekday5, !- Friday Schedule:Day Name - misc tv schedule weekend5, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - May27-Jun2, !- Name - misc tv schedule weekend5, !- Sunday Schedule:Day Name - misc tv schedule weekday5, !- Monday Schedule:Day Name - misc tv schedule weekday5, !- Tuesday Schedule:Day Name - misc tv schedule weekday5, !- Wednesday Schedule:Day Name - misc tv schedule weekday5, !- Thursday Schedule:Day Name - misc tv schedule weekday6, !- Friday Schedule:Day Name - misc tv schedule weekend6, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jun3-Jun30, !- Name - misc tv schedule weekend6, !- Sunday Schedule:Day Name - misc tv schedule weekday6, !- Monday Schedule:Day Name - misc tv schedule weekday6, !- Tuesday Schedule:Day Name - misc tv schedule weekday6, !- Wednesday Schedule:Day Name - misc tv schedule weekday6, !- Thursday Schedule:Day Name - misc tv schedule weekday6, !- Friday Schedule:Day Name - misc tv schedule weekend6, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jul1-Jul28, !- Name - misc tv schedule weekend7, !- Sunday Schedule:Day Name - misc tv schedule weekday7, !- Monday Schedule:Day Name - misc tv schedule weekday7, !- Tuesday Schedule:Day Name - misc tv schedule weekday7, !- Wednesday Schedule:Day Name - misc tv schedule weekday7, !- Thursday Schedule:Day Name - misc tv schedule weekday7, !- Friday Schedule:Day Name - misc tv schedule weekend7, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Jul29-Aug4, !- Name - misc tv schedule weekend7, !- Sunday Schedule:Day Name - misc tv schedule weekday7, !- Monday Schedule:Day Name - misc tv schedule weekday7, !- Tuesday Schedule:Day Name - misc tv schedule weekday8, !- Wednesday Schedule:Day Name - misc tv schedule weekday8, !- Thursday Schedule:Day Name - misc tv schedule weekday8, !- Friday Schedule:Day Name - misc tv schedule weekend8, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Aug5-Aug25, !- Name - misc tv schedule weekend8, !- Sunday Schedule:Day Name - misc tv schedule weekday8, !- Monday Schedule:Day Name - misc tv schedule weekday8, !- Tuesday Schedule:Day Name - misc tv schedule weekday8, !- Wednesday Schedule:Day Name - misc tv schedule weekday8, !- Thursday Schedule:Day Name - misc tv schedule weekday8, !- Friday Schedule:Day Name - misc tv schedule weekend8, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Aug26-Sep1, !- Name - misc tv schedule weekend8, !- Sunday Schedule:Day Name - misc tv schedule weekday8, !- Monday Schedule:Day Name - misc tv schedule weekday8, !- Tuesday Schedule:Day Name - misc tv schedule weekday8, !- Wednesday Schedule:Day Name - misc tv schedule weekday8, !- Thursday Schedule:Day Name - misc tv schedule weekday8, !- Friday Schedule:Day Name - misc tv schedule weekend9, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Sep2-Sep29, !- Name - misc tv schedule weekend9, !- Sunday Schedule:Day Name - misc tv schedule weekday9, !- Monday Schedule:Day Name - misc tv schedule weekday9, !- Tuesday Schedule:Day Name - misc tv schedule weekday9, !- Wednesday Schedule:Day Name - misc tv schedule weekday9, !- Thursday Schedule:Day Name - misc tv schedule weekday9, !- Friday Schedule:Day Name - misc tv schedule weekend9, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Sep30-Oct6, !- Name - misc tv schedule weekend9, !- Sunday Schedule:Day Name - misc tv schedule weekday10, !- Monday Schedule:Day Name - misc tv schedule weekday10, !- Tuesday Schedule:Day Name - misc tv schedule weekday10, !- Wednesday Schedule:Day Name - misc tv schedule weekday10, !- Thursday Schedule:Day Name - misc tv schedule weekday10, !- Friday Schedule:Day Name - misc tv schedule weekend10, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Oct7-Oct27, !- Name - misc tv schedule weekend10, !- Sunday Schedule:Day Name - misc tv schedule weekday10, !- Monday Schedule:Day Name - misc tv schedule weekday10, !- Tuesday Schedule:Day Name - misc tv schedule weekday10, !- Wednesday Schedule:Day Name - misc tv schedule weekday10, !- Thursday Schedule:Day Name - misc tv schedule weekday10, !- Friday Schedule:Day Name - misc tv schedule weekend10, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Oct28-Nov3, !- Name - misc tv schedule weekend10, !- Sunday Schedule:Day Name - misc tv schedule weekday10, !- Monday Schedule:Day Name - misc tv schedule weekday10, !- Tuesday Schedule:Day Name - misc tv schedule weekday10, !- Wednesday Schedule:Day Name - misc tv schedule weekday11, !- Thursday Schedule:Day Name - misc tv schedule weekday11, !- Friday Schedule:Day Name - misc tv schedule weekend11, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Nov4-Nov24, !- Name - misc tv schedule weekend11, !- Sunday Schedule:Day Name - misc tv schedule weekday11, !- Monday Schedule:Day Name - misc tv schedule weekday11, !- Tuesday Schedule:Day Name - misc tv schedule weekday11, !- Wednesday Schedule:Day Name - misc tv schedule weekday11, !- Thursday Schedule:Day Name - misc tv schedule weekday11, !- Friday Schedule:Day Name - misc tv schedule weekend11, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Nov25-Dec1, !- Name - misc tv schedule weekend11, !- Sunday Schedule:Day Name - misc tv schedule weekday11, !- Monday Schedule:Day Name - misc tv schedule weekday11, !- Tuesday Schedule:Day Name - misc tv schedule weekday11, !- Wednesday Schedule:Day Name - misc tv schedule weekday11, !- Thursday Schedule:Day Name - misc tv schedule weekday11, !- Friday Schedule:Day Name - misc tv schedule weekend12, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Week:Daily, - misc tv schedule Week Rule - Dec2-Dec31, !- Name - misc tv schedule weekend12, !- Sunday Schedule:Day Name - misc tv schedule weekday12, !- Monday Schedule:Day Name - misc tv schedule weekday12, !- Tuesday Schedule:Day Name - misc tv schedule weekday12, !- Wednesday Schedule:Day Name - misc tv schedule weekday12, !- Thursday Schedule:Day Name - misc tv schedule weekday12, !- Friday Schedule:Day Name - misc tv schedule weekend12, !- Saturday Schedule:Day Name - Schedule Day 15, !- Holiday Schedule:Day Name - Schedule Day 15, !- SummerDesignDay Schedule:Day Name - Schedule Day 15, !- WinterDesignDay Schedule:Day Name - Schedule Day 15, !- CustomDay1 Schedule:Day Name - Schedule Day 15; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - misc tv schedule, !- Name - Fractional, !- Schedule Type Limits Name - misc tv schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 1, !- End Month 1 - 6, !- End Day 1 - misc tv schedule Week Rule - Jan7-Jan27, !- Schedule:Week Name 2 - 1, !- Start Month 2 - 7, !- Start Day 2 - 1, !- End Month 2 - 27, !- End Day 2 - misc tv schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 3 - 1, !- Start Month 3 - 28, !- Start Day 3 - 2, !- End Month 3 - 3, !- End Day 3 - misc tv schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 4 - 2, !- Start Month 4 - 4, !- Start Day 4 - 2, !- End Month 4 - 24, !- End Day 4 - misc tv schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 5 - 2, !- Start Month 5 - 25, !- Start Day 5 - 3, !- End Month 5 - 3, !- End Day 5 - misc tv schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 6 - 3, !- Start Month 6 - 4, !- Start Day 6 - 3, !- End Month 6 - 31, !- End Day 6 - misc tv schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 7 - 4, !- Start Month 7 - 1, !- Start Day 7 - 4, !- End Month 7 - 28, !- End Day 7 - misc tv schedule Week Rule - Apr29-May5, !- Schedule:Week Name 8 - 4, !- Start Month 8 - 29, !- Start Day 8 - 5, !- End Month 8 - 5, !- End Day 8 - misc tv schedule Week Rule - May6-May26, !- Schedule:Week Name 9 - 5, !- Start Month 9 - 6, !- Start Day 9 - 5, !- End Month 9 - 26, !- End Day 9 - misc tv schedule Week Rule - May27-Jun2, !- Schedule:Week Name 10 - 5, !- Start Month 10 - 27, !- Start Day 10 - 6, !- End Month 10 - 2, !- End Day 10 - misc tv schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 11 - 6, !- Start Month 11 - 3, !- Start Day 11 - 6, !- End Month 11 - 30, !- End Day 11 - misc tv schedule Week Rule - Jul1-Jul28, !- Schedule:Week Name 12 - 7, !- Start Month 12 - 1, !- Start Day 12 - 7, !- End Month 12 - 28, !- End Day 12 - misc tv schedule Week Rule - Jul29-Aug4, !- Schedule:Week Name 13 - 7, !- Start Month 13 - 29, !- Start Day 13 - 8, !- End Month 13 - 4, !- End Day 13 - misc tv schedule Week Rule - Aug5-Aug25, !- Schedule:Week Name 14 - 8, !- Start Month 14 - 5, !- Start Day 14 - 8, !- End Month 14 - 25, !- End Day 14 - misc tv schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 15 - 8, !- Start Month 15 - 26, !- Start Day 15 - 9, !- End Month 15 - 1, !- End Day 15 - misc tv schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 16 - 9, !- Start Month 16 - 2, !- Start Day 16 - 9, !- End Month 16 - 29, !- End Day 16 - misc tv schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 17 - 9, !- Start Month 17 - 30, !- Start Day 17 - 10, !- End Month 17 - 6, !- End Day 17 - misc tv schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 18 - 10, !- Start Month 18 - 7, !- Start Day 18 - 10, !- End Month 18 - 27, !- End Day 18 - misc tv schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 19 - 10, !- Start Month 19 - 28, !- Start Day 19 - 11, !- End Month 19 - 3, !- End Day 19 - misc tv schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 20 - 11, !- Start Month 20 - 4, !- Start Day 20 - 11, !- End Month 20 - 24, !- End Day 20 - misc tv schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 21 - 11, !- Start Month 21 - 25, !- Start Day 21 - 12, !- End Month 21 - 1, !- End Day 21 - misc tv schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 22 - 12, !- Start Month 22 - 2, !- Start Day 22 - 12, !- End Month 22 - 31; !- End Day 22 - -Schedule:Week:Daily, - natural vent avail schedule Week Rule - Jan1-Dec31, !- Name - natural vent avail schedule day, !- Sunday Schedule:Day Name - natural vent avail schedule day, !- Monday Schedule:Day Name - natural vent avail schedule day, !- Tuesday Schedule:Day Name - natural vent avail schedule day, !- Wednesday Schedule:Day Name - natural vent avail schedule day, !- Thursday Schedule:Day Name - natural vent avail schedule day, !- Friday Schedule:Day Name - natural vent avail schedule day, !- Saturday Schedule:Day Name - Schedule Day 18, !- Holiday Schedule:Day Name - Schedule Day 18, !- SummerDesignDay Schedule:Day Name - Schedule Day 18, !- WinterDesignDay Schedule:Day Name - Schedule Day 18, !- CustomDay1 Schedule:Day Name - Schedule Day 18; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - natural vent avail schedule, !- Name - OnOff, !- Schedule Type Limits Name - natural vent avail schedule Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 12, !- End Month 1 - 31; !- End Day 1 - -Schedule:Week:Daily, - occupants schedule Week Rule - Jan1-Dec31, !- Name - occupants schedule allday1, !- Sunday Schedule:Day Name - occupants schedule allday1, !- Monday Schedule:Day Name - occupants schedule allday1, !- Tuesday Schedule:Day Name - occupants schedule allday1, !- Wednesday Schedule:Day Name - occupants schedule allday1, !- Thursday Schedule:Day Name - occupants schedule allday1, !- Friday Schedule:Day Name - occupants schedule allday1, !- Saturday Schedule:Day Name - Schedule Day 7, !- Holiday Schedule:Day Name - Schedule Day 7, !- SummerDesignDay Schedule:Day Name - Schedule Day 7, !- WinterDesignDay Schedule:Day Name - Schedule Day 7, !- CustomDay1 Schedule:Day Name - Schedule Day 7; !- CustomDay2 Schedule:Day Name - -Schedule:Year, - occupants schedule, !- Name - Fractional, !- Schedule Type Limits Name - occupants schedule Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 - 1, !- Start Month 1 - 1, !- Start Day 1 - 12, !- End Month 1 - 31; !- End Day 1 - -Schedule:Compact, - mains temperature schedule, !- Name - Temperature, !- Schedule Type Limits Name - Through: 01/03, !- Field 1 - For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 15.7038888888889, !- Field 4 - Through: 01/04, !- Field 5 - For: AllDays, !- Field 6 - Until: 24:00, !- Field 7 - 15.6511111111111, !- Field 8 - Through: 01/05, !- Field 9 - For: AllDays, !- Field 10 - Until: 24:00, !- Field 11 - 15.6011111111111, !- Field 12 - Through: 01/06, !- Field 13 - For: AllDays, !- Field 14 - Until: 24:00, !- Field 15 - 15.5527777777778, !- Field 16 - Through: 01/07, !- Field 17 - For: AllDays, !- Field 18 - Until: 24:00, !- Field 19 - 15.5061111111111, !- Field 20 - Through: 01/08, !- Field 21 - For: AllDays, !- Field 22 - Until: 24:00, !- Field 23 - 15.4616666666667, !- Field 24 - Through: 01/09, !- Field 25 - For: AllDays, !- Field 26 - Until: 24:00, !- Field 27 - 15.4188888888889, !- Field 28 - Through: 01/10, !- Field 29 - For: AllDays, !- Field 30 - Until: 24:00, !- Field 31 - 15.3783333333333, !- Field 32 - Through: 01/11, !- Field 33 - For: AllDays, !- Field 34 - Until: 24:00, !- Field 35 - 15.3394444444444, !- Field 36 - Through: 01/12, !- Field 37 - For: AllDays, !- Field 38 - Until: 24:00, !- Field 39 - 15.3027777777778, !- Field 40 - Through: 01/13, !- Field 41 - For: AllDays, !- Field 42 - Until: 24:00, !- Field 43 - 15.2683333333333, !- Field 44 - Through: 01/14, !- Field 45 - For: AllDays, !- Field 46 - Until: 24:00, !- Field 47 - 15.2355555555556, !- Field 48 - Through: 01/15, !- Field 49 - For: AllDays, !- Field 50 - Until: 24:00, !- Field 51 - 15.205, !- Field 52 - Through: 01/16, !- Field 53 - For: AllDays, !- Field 54 - Until: 24:00, !- Field 55 - 15.1761111111111, !- Field 56 - Through: 01/17, !- Field 57 - For: AllDays, !- Field 58 - Until: 24:00, !- Field 59 - 15.15, !- Field 60 - Through: 01/18, !- Field 61 - For: AllDays, !- Field 62 - Until: 24:00, !- Field 63 - 15.125, !- Field 64 - Through: 01/19, !- Field 65 - For: AllDays, !- Field 66 - Until: 24:00, !- Field 67 - 15.1027777777778, !- Field 68 - Through: 01/20, !- Field 69 - For: AllDays, !- Field 70 - Until: 24:00, !- Field 71 - 15.0822222222222, !- Field 72 - Through: 01/21, !- Field 73 - For: AllDays, !- Field 74 - Until: 24:00, !- Field 75 - 15.0638888888889, !- Field 76 - Through: 01/22, !- Field 77 - For: AllDays, !- Field 78 - Until: 24:00, !- Field 79 - 15.0477777777778, !- Field 80 - Through: 01/23, !- Field 81 - For: AllDays, !- Field 82 - Until: 24:00, !- Field 83 - 15.0338888888889, !- Field 84 - Through: 01/24, !- Field 85 - For: AllDays, !- Field 86 - Until: 24:00, !- Field 87 - 15.0216666666667, !- Field 88 - Through: 01/25, !- Field 89 - For: AllDays, !- Field 90 - Until: 24:00, !- Field 91 - 15.0116666666667, !- Field 92 - Through: 01/26, !- Field 93 - For: AllDays, !- Field 94 - Until: 24:00, !- Field 95 - 15.0038888888889, !- Field 96 - Through: 01/27, !- Field 97 - For: AllDays, !- Field 98 - Until: 24:00, !- Field 99 - 14.9977777777778, !- Field 100 - Through: 01/28, !- Field 101 - For: AllDays, !- Field 102 - Until: 24:00, !- Field 103 - 14.9938888888889, !- Field 104 - Through: 01/29, !- Field 105 - For: AllDays, !- Field 106 - Until: 24:00, !- Field 107 - 14.9922222222222, !- Field 108 - Through: 01/30, !- Field 109 - For: AllDays, !- Field 110 - Until: 24:00, !- Field 111 - 14.9927777777778, !- Field 112 - Through: 01/31, !- Field 113 - For: AllDays, !- Field 114 - Until: 24:00, !- Field 115 - 14.9955555555556, !- Field 116 - Through: 02/01, !- Field 117 - For: AllDays, !- Field 118 - Until: 24:00, !- Field 119 - 15, !- Field 120 - Through: 02/02, !- Field 121 - For: AllDays, !- Field 122 - Until: 24:00, !- Field 123 - 15.0066666666667, !- Field 124 - Through: 02/03, !- Field 125 - For: AllDays, !- Field 126 - Until: 24:00, !- Field 127 - 15.0155555555556, !- Field 128 - Through: 02/04, !- Field 129 - For: AllDays, !- Field 130 - Until: 24:00, !- Field 131 - 15.0266666666667, !- Field 132 - Through: 02/05, !- Field 133 - For: AllDays, !- Field 134 - Until: 24:00, !- Field 135 - 15.0394444444444, !- Field 136 - Through: 02/06, !- Field 137 - For: AllDays, !- Field 138 - Until: 24:00, !- Field 139 - 15.055, !- Field 140 - Through: 02/07, !- Field 141 - For: AllDays, !- Field 142 - Until: 24:00, !- Field 143 - 15.0716666666667, !- Field 144 - Through: 02/08, !- Field 145 - For: AllDays, !- Field 146 - Until: 24:00, !- Field 147 - 15.0911111111111, !- Field 148 - Through: 02/09, !- Field 149 - For: AllDays, !- Field 150 - Until: 24:00, !- Field 151 - 15.1122222222222, !- Field 152 - Through: 02/10, !- Field 153 - For: AllDays, !- Field 154 - Until: 24:00, !- Field 155 - 15.1361111111111, !- Field 156 - Through: 02/11, !- Field 157 - For: AllDays, !- Field 158 - Until: 24:00, !- Field 159 - 15.1611111111111, !- Field 160 - Through: 02/12, !- Field 161 - For: AllDays, !- Field 162 - Until: 24:00, !- Field 163 - 15.1888888888889, !- Field 164 - Through: 02/13, !- Field 165 - For: AllDays, !- Field 166 - Until: 24:00, !- Field 167 - 15.2183333333333, !- Field 168 - Through: 02/14, !- Field 169 - For: AllDays, !- Field 170 - Until: 24:00, !- Field 171 - 15.25, !- Field 172 - Through: 02/15, !- Field 173 - For: AllDays, !- Field 174 - Until: 24:00, !- Field 175 - 15.2833333333333, !- Field 176 - Through: 02/16, !- Field 177 - For: AllDays, !- Field 178 - Until: 24:00, !- Field 179 - 15.3188888888889, !- Field 180 - Through: 02/17, !- Field 181 - For: AllDays, !- Field 182 - Until: 24:00, !- Field 183 - 15.3566666666667, !- Field 184 - Through: 02/18, !- Field 185 - For: AllDays, !- Field 186 - Until: 24:00, !- Field 187 - 15.3961111111111, !- Field 188 - Through: 02/19, !- Field 189 - For: AllDays, !- Field 190 - Until: 24:00, !- Field 191 - 15.4372222222222, !- Field 192 - Through: 02/20, !- Field 193 - For: AllDays, !- Field 194 - Until: 24:00, !- Field 195 - 15.4811111111111, !- Field 196 - Through: 02/21, !- Field 197 - For: AllDays, !- Field 198 - Until: 24:00, !- Field 199 - 15.5261111111111, !- Field 200 - Through: 02/22, !- Field 201 - For: AllDays, !- Field 202 - Until: 24:00, !- Field 203 - 15.5738888888889, !- Field 204 - Through: 02/23, !- Field 205 - For: AllDays, !- Field 206 - Until: 24:00, !- Field 207 - 15.6227777777778, !- Field 208 - Through: 02/24, !- Field 209 - For: AllDays, !- Field 210 - Until: 24:00, !- Field 211 - 15.6744444444444, !- Field 212 - Through: 02/25, !- Field 213 - For: AllDays, !- Field 214 - Until: 24:00, !- Field 215 - 15.7272222222222, !- Field 216 - Through: 02/26, !- Field 217 - For: AllDays, !- Field 218 - Until: 24:00, !- Field 219 - 15.7822222222222, !- Field 220 - Through: 02/27, !- Field 221 - For: AllDays, !- Field 222 - Until: 24:00, !- Field 223 - 15.8388888888889, !- Field 224 - Through: 02/28, !- Field 225 - For: AllDays, !- Field 226 - Until: 24:00, !- Field 227 - 15.8977777777778, !- Field 228 - Through: 03/01, !- Field 229 - For: AllDays, !- Field 230 - Until: 24:00, !- Field 231 - 15.9583333333333, !- Field 232 - Through: 03/02, !- Field 233 - For: AllDays, !- Field 234 - Until: 24:00, !- Field 235 - 16.0205555555556, !- Field 236 - Through: 03/03, !- Field 237 - For: AllDays, !- Field 238 - Until: 24:00, !- Field 239 - 16.085, !- Field 240 - Through: 03/04, !- Field 241 - For: AllDays, !- Field 242 - Until: 24:00, !- Field 243 - 16.1505555555556, !- Field 244 - Through: 03/05, !- Field 245 - For: AllDays, !- Field 246 - Until: 24:00, !- Field 247 - 16.2183333333333, !- Field 248 - Through: 03/06, !- Field 249 - For: AllDays, !- Field 250 - Until: 24:00, !- Field 251 - 16.2877777777778, !- Field 252 - Through: 03/07, !- Field 253 - For: AllDays, !- Field 254 - Until: 24:00, !- Field 255 - 16.3588888888889, !- Field 256 - Through: 03/08, !- Field 257 - For: AllDays, !- Field 258 - Until: 24:00, !- Field 259 - 16.4316666666667, !- Field 260 - Through: 03/09, !- Field 261 - For: AllDays, !- Field 262 - Until: 24:00, !- Field 263 - 16.5061111111111, !- Field 264 - Through: 03/10, !- Field 265 - For: AllDays, !- Field 266 - Until: 24:00, !- Field 267 - 16.5816666666667, !- Field 268 - Through: 03/11, !- Field 269 - For: AllDays, !- Field 270 - Until: 24:00, !- Field 271 - 16.6594444444444, !- Field 272 - Through: 03/12, !- Field 273 - For: AllDays, !- Field 274 - Until: 24:00, !- Field 275 - 16.7388888888889, !- Field 276 - Through: 03/13, !- Field 277 - For: AllDays, !- Field 278 - Until: 24:00, !- Field 279 - 16.82, !- Field 280 - Through: 03/14, !- Field 281 - For: AllDays, !- Field 282 - Until: 24:00, !- Field 283 - 16.9022222222222, !- Field 284 - Through: 03/15, !- Field 285 - For: AllDays, !- Field 286 - Until: 24:00, !- Field 287 - 16.9861111111111, !- Field 288 - Through: 03/16, !- Field 289 - For: AllDays, !- Field 290 - Until: 24:00, !- Field 291 - 17.0716666666667, !- Field 292 - Through: 03/17, !- Field 293 - For: AllDays, !- Field 294 - Until: 24:00, !- Field 295 - 17.1588888888889, !- Field 296 - Through: 03/18, !- Field 297 - For: AllDays, !- Field 298 - Until: 24:00, !- Field 299 - 17.2472222222222, !- Field 300 - Through: 03/19, !- Field 301 - For: AllDays, !- Field 302 - Until: 24:00, !- Field 303 - 17.3366666666667, !- Field 304 - Through: 03/20, !- Field 305 - For: AllDays, !- Field 306 - Until: 24:00, !- Field 307 - 17.4283333333333, !- Field 308 - Through: 03/21, !- Field 309 - For: AllDays, !- Field 310 - Until: 24:00, !- Field 311 - 17.5205555555556, !- Field 312 - Through: 03/22, !- Field 313 - For: AllDays, !- Field 314 - Until: 24:00, !- Field 315 - 17.6144444444444, !- Field 316 - Through: 03/23, !- Field 317 - For: AllDays, !- Field 318 - Until: 24:00, !- Field 319 - 17.71, !- Field 320 - Through: 03/24, !- Field 321 - For: AllDays, !- Field 322 - Until: 24:00, !- Field 323 - 17.8066666666667, !- Field 324 - Through: 03/25, !- Field 325 - For: AllDays, !- Field 326 - Until: 24:00, !- Field 327 - 17.9044444444444, !- Field 328 - Through: 03/26, !- Field 329 - For: AllDays, !- Field 330 - Until: 24:00, !- Field 331 - 18.0033333333333, !- Field 332 - Through: 03/27, !- Field 333 - For: AllDays, !- Field 334 - Until: 24:00, !- Field 335 - 18.1038888888889, !- Field 336 - Through: 03/28, !- Field 337 - For: AllDays, !- Field 338 - Until: 24:00, !- Field 339 - 18.205, !- Field 340 - Through: 03/29, !- Field 341 - For: AllDays, !- Field 342 - Until: 24:00, !- Field 343 - 18.3077777777778, !- Field 344 - Through: 03/30, !- Field 345 - For: AllDays, !- Field 346 - Until: 24:00, !- Field 347 - 18.4111111111111, !- Field 348 - Through: 03/31, !- Field 349 - For: AllDays, !- Field 350 - Until: 24:00, !- Field 351 - 18.5161111111111, !- Field 352 - Through: 04/01, !- Field 353 - For: AllDays, !- Field 354 - Until: 24:00, !- Field 355 - 18.6216666666667, !- Field 356 - Through: 04/02, !- Field 357 - For: AllDays, !- Field 358 - Until: 24:00, !- Field 359 - 18.7288888888889, !- Field 360 - Through: 04/03, !- Field 361 - For: AllDays, !- Field 362 - Until: 24:00, !- Field 363 - 18.8366666666667, !- Field 364 - Through: 04/04, !- Field 365 - For: AllDays, !- Field 366 - Until: 24:00, !- Field 367 - 18.9455555555556, !- Field 368 - Through: 04/05, !- Field 369 - For: AllDays, !- Field 370 - Until: 24:00, !- Field 371 - 19.055, !- Field 372 - Through: 04/06, !- Field 373 - For: AllDays, !- Field 374 - Until: 24:00, !- Field 375 - 19.1655555555556, !- Field 376 - Through: 04/07, !- Field 377 - For: AllDays, !- Field 378 - Until: 24:00, !- Field 379 - 19.2772222222222, !- Field 380 - Through: 04/08, !- Field 381 - For: AllDays, !- Field 382 - Until: 24:00, !- Field 383 - 19.3894444444444, !- Field 384 - Through: 04/09, !- Field 385 - For: AllDays, !- Field 386 - Until: 24:00, !- Field 387 - 19.5027777777778, !- Field 388 - Through: 04/10, !- Field 389 - For: AllDays, !- Field 390 - Until: 24:00, !- Field 391 - 19.6166666666667, !- Field 392 - Through: 04/11, !- Field 393 - For: AllDays, !- Field 394 - Until: 24:00, !- Field 395 - 19.7311111111111, !- Field 396 - Through: 04/12, !- Field 397 - For: AllDays, !- Field 398 - Until: 24:00, !- Field 399 - 19.8461111111111, !- Field 400 - Through: 04/13, !- Field 401 - For: AllDays, !- Field 402 - Until: 24:00, !- Field 403 - 19.9622222222222, !- Field 404 - Through: 04/14, !- Field 405 - For: AllDays, !- Field 406 - Until: 24:00, !- Field 407 - 20.0788888888889, !- Field 408 - Through: 04/15, !- Field 409 - For: AllDays, !- Field 410 - Until: 24:00, !- Field 411 - 20.1955555555556, !- Field 412 - Through: 04/16, !- Field 413 - For: AllDays, !- Field 414 - Until: 24:00, !- Field 415 - 20.3133333333333, !- Field 416 - Through: 04/17, !- Field 417 - For: AllDays, !- Field 418 - Until: 24:00, !- Field 419 - 20.4316666666667, !- Field 420 - Through: 04/18, !- Field 421 - For: AllDays, !- Field 422 - Until: 24:00, !- Field 423 - 20.5505555555556, !- Field 424 - Through: 04/19, !- Field 425 - For: AllDays, !- Field 426 - Until: 24:00, !- Field 427 - 20.6694444444444, !- Field 428 - Through: 04/20, !- Field 429 - For: AllDays, !- Field 430 - Until: 24:00, !- Field 431 - 20.7888888888889, !- Field 432 - Through: 04/21, !- Field 433 - For: AllDays, !- Field 434 - Until: 24:00, !- Field 435 - 20.9088888888889, !- Field 436 - Through: 04/22, !- Field 437 - For: AllDays, !- Field 438 - Until: 24:00, !- Field 439 - 21.0294444444444, !- Field 440 - Through: 04/23, !- Field 441 - For: AllDays, !- Field 442 - Until: 24:00, !- Field 443 - 21.15, !- Field 444 - Through: 04/24, !- Field 445 - For: AllDays, !- Field 446 - Until: 24:00, !- Field 447 - 21.2705555555556, !- Field 448 - Through: 04/25, !- Field 449 - For: AllDays, !- Field 450 - Until: 24:00, !- Field 451 - 21.3916666666667, !- Field 452 - Through: 04/26, !- Field 453 - For: AllDays, !- Field 454 - Until: 24:00, !- Field 455 - 21.5133333333333, !- Field 456 - Through: 04/27, !- Field 457 - For: AllDays, !- Field 458 - Until: 24:00, !- Field 459 - 21.6344444444444, !- Field 460 - Through: 04/28, !- Field 461 - For: AllDays, !- Field 462 - Until: 24:00, !- Field 463 - 21.7561111111111, !- Field 464 - Through: 04/29, !- Field 465 - For: AllDays, !- Field 466 - Until: 24:00, !- Field 467 - 21.8777777777778, !- Field 468 - Through: 04/30, !- Field 469 - For: AllDays, !- Field 470 - Until: 24:00, !- Field 471 - 21.9994444444444, !- Field 472 - Through: 05/01, !- Field 473 - For: AllDays, !- Field 474 - Until: 24:00, !- Field 475 - 22.1211111111111, !- Field 476 - Through: 05/02, !- Field 477 - For: AllDays, !- Field 478 - Until: 24:00, !- Field 479 - 22.2427777777778, !- Field 480 - Through: 05/03, !- Field 481 - For: AllDays, !- Field 482 - Until: 24:00, !- Field 483 - 22.3644444444444, !- Field 484 - Through: 05/04, !- Field 485 - For: AllDays, !- Field 486 - Until: 24:00, !- Field 487 - 22.4861111111111, !- Field 488 - Through: 05/05, !- Field 489 - For: AllDays, !- Field 490 - Until: 24:00, !- Field 491 - 22.6077777777778, !- Field 492 - Through: 05/06, !- Field 493 - For: AllDays, !- Field 494 - Until: 24:00, !- Field 495 - 22.7288888888889, !- Field 496 - Through: 05/07, !- Field 497 - For: AllDays, !- Field 498 - Until: 24:00, !- Field 499 - 22.85, !- Field 500 - Through: 05/08, !- Field 501 - For: AllDays, !- Field 502 - Until: 24:00, !- Field 503 - 22.9711111111111, !- Field 504 - Through: 05/09, !- Field 505 - For: AllDays, !- Field 506 - Until: 24:00, !- Field 507 - 23.0916666666667, !- Field 508 - Through: 05/10, !- Field 509 - For: AllDays, !- Field 510 - Until: 24:00, !- Field 511 - 23.2122222222222, !- Field 512 - Through: 05/11, !- Field 513 - For: AllDays, !- Field 514 - Until: 24:00, !- Field 515 - 23.3322222222222, !- Field 516 - Through: 05/12, !- Field 517 - For: AllDays, !- Field 518 - Until: 24:00, !- Field 519 - 23.4516666666667, !- Field 520 - Through: 05/13, !- Field 521 - For: AllDays, !- Field 522 - Until: 24:00, !- Field 523 - 23.5705555555556, !- Field 524 - Through: 05/14, !- Field 525 - For: AllDays, !- Field 526 - Until: 24:00, !- Field 527 - 23.6894444444444, !- Field 528 - Through: 05/15, !- Field 529 - For: AllDays, !- Field 530 - Until: 24:00, !- Field 531 - 23.8077777777778, !- Field 532 - Through: 05/16, !- Field 533 - For: AllDays, !- Field 534 - Until: 24:00, !- Field 535 - 23.9255555555556, !- Field 536 - Through: 05/17, !- Field 537 - For: AllDays, !- Field 538 - Until: 24:00, !- Field 539 - 24.0427777777778, !- Field 540 - Through: 05/18, !- Field 541 - For: AllDays, !- Field 542 - Until: 24:00, !- Field 543 - 24.1594444444444, !- Field 544 - Through: 05/19, !- Field 545 - For: AllDays, !- Field 546 - Until: 24:00, !- Field 547 - 24.2755555555556, !- Field 548 - Through: 05/20, !- Field 549 - For: AllDays, !- Field 550 - Until: 24:00, !- Field 551 - 24.3905555555556, !- Field 552 - Through: 05/21, !- Field 553 - For: AllDays, !- Field 554 - Until: 24:00, !- Field 555 - 24.5055555555556, !- Field 556 - Through: 05/22, !- Field 557 - For: AllDays, !- Field 558 - Until: 24:00, !- Field 559 - 24.6194444444444, !- Field 560 - Through: 05/23, !- Field 561 - For: AllDays, !- Field 562 - Until: 24:00, !- Field 563 - 24.7322222222222, !- Field 564 - Through: 05/24, !- Field 565 - For: AllDays, !- Field 566 - Until: 24:00, !- Field 567 - 24.845, !- Field 568 - Through: 05/25, !- Field 569 - For: AllDays, !- Field 570 - Until: 24:00, !- Field 571 - 24.9561111111111, !- Field 572 - Through: 05/26, !- Field 573 - For: AllDays, !- Field 574 - Until: 24:00, !- Field 575 - 25.0672222222222, !- Field 576 - Through: 05/27, !- Field 577 - For: AllDays, !- Field 578 - Until: 24:00, !- Field 579 - 25.1766666666667, !- Field 580 - Through: 05/28, !- Field 581 - For: AllDays, !- Field 582 - Until: 24:00, !- Field 583 - 25.2855555555556, !- Field 584 - Through: 05/29, !- Field 585 - For: AllDays, !- Field 586 - Until: 24:00, !- Field 587 - 25.3938888888889, !- Field 588 - Through: 05/30, !- Field 589 - For: AllDays, !- Field 590 - Until: 24:00, !- Field 591 - 25.5005555555556, !- Field 592 - Through: 05/31, !- Field 593 - For: AllDays, !- Field 594 - Until: 24:00, !- Field 595 - 25.6066666666667, !- Field 596 - Through: 06/01, !- Field 597 - For: AllDays, !- Field 598 - Until: 24:00, !- Field 599 - 25.7116666666667, !- Field 600 - Through: 06/02, !- Field 601 - For: AllDays, !- Field 602 - Until: 24:00, !- Field 603 - 25.8155555555556, !- Field 604 - Through: 06/03, !- Field 605 - For: AllDays, !- Field 606 - Until: 24:00, !- Field 607 - 25.9177777777778, !- Field 608 - Through: 06/04, !- Field 609 - For: AllDays, !- Field 610 - Until: 24:00, !- Field 611 - 26.0194444444444, !- Field 612 - Through: 06/05, !- Field 613 - For: AllDays, !- Field 614 - Until: 24:00, !- Field 615 - 26.12, !- Field 616 - Through: 06/06, !- Field 617 - For: AllDays, !- Field 618 - Until: 24:00, !- Field 619 - 26.2194444444444, !- Field 620 - Through: 06/07, !- Field 621 - For: AllDays, !- Field 622 - Until: 24:00, !- Field 623 - 26.3172222222222, !- Field 624 - Through: 06/08, !- Field 625 - For: AllDays, !- Field 626 - Until: 24:00, !- Field 627 - 26.4138888888889, !- Field 628 - Through: 06/09, !- Field 629 - For: AllDays, !- Field 630 - Until: 24:00, !- Field 631 - 26.5094444444444, !- Field 632 - Through: 06/10, !- Field 633 - For: AllDays, !- Field 634 - Until: 24:00, !- Field 635 - 26.6033333333333, !- Field 636 - Through: 06/11, !- Field 637 - For: AllDays, !- Field 638 - Until: 24:00, !- Field 639 - 26.6961111111111, !- Field 640 - Through: 06/12, !- Field 641 - For: AllDays, !- Field 642 - Until: 24:00, !- Field 643 - 26.7877777777778, !- Field 644 - Through: 06/13, !- Field 645 - For: AllDays, !- Field 646 - Until: 24:00, !- Field 647 - 26.8772222222222, !- Field 648 - Through: 06/14, !- Field 649 - For: AllDays, !- Field 650 - Until: 24:00, !- Field 651 - 26.9661111111111, !- Field 652 - Through: 06/15, !- Field 653 - For: AllDays, !- Field 654 - Until: 24:00, !- Field 655 - 27.0533333333333, !- Field 656 - Through: 06/16, !- Field 657 - For: AllDays, !- Field 658 - Until: 24:00, !- Field 659 - 27.1388888888889, !- Field 660 - Through: 06/17, !- Field 661 - For: AllDays, !- Field 662 - Until: 24:00, !- Field 663 - 27.2227777777778, !- Field 664 - Through: 06/18, !- Field 665 - For: AllDays, !- Field 666 - Until: 24:00, !- Field 667 - 27.3055555555556, !- Field 668 - Through: 06/19, !- Field 669 - For: AllDays, !- Field 670 - Until: 24:00, !- Field 671 - 27.3866666666667, !- Field 672 - Through: 06/20, !- Field 673 - For: AllDays, !- Field 674 - Until: 24:00, !- Field 675 - 27.4661111111111, !- Field 676 - Through: 06/21, !- Field 677 - For: AllDays, !- Field 678 - Until: 24:00, !- Field 679 - 27.5438888888889, !- Field 680 - Through: 06/22, !- Field 681 - For: AllDays, !- Field 682 - Until: 24:00, !- Field 683 - 27.62, !- Field 684 - Through: 06/23, !- Field 685 - For: AllDays, !- Field 686 - Until: 24:00, !- Field 687 - 27.695, !- Field 688 - Through: 06/24, !- Field 689 - For: AllDays, !- Field 690 - Until: 24:00, !- Field 691 - 27.7677777777778, !- Field 692 - Through: 06/25, !- Field 693 - For: AllDays, !- Field 694 - Until: 24:00, !- Field 695 - 27.8388888888889, !- Field 696 - Through: 06/26, !- Field 697 - For: AllDays, !- Field 698 - Until: 24:00, !- Field 699 - 27.9088888888889, !- Field 700 - Through: 06/27, !- Field 701 - For: AllDays, !- Field 702 - Until: 24:00, !- Field 703 - 27.9766666666667, !- Field 704 - Through: 06/28, !- Field 705 - For: AllDays, !- Field 706 - Until: 24:00, !- Field 707 - 28.0427777777778, !- Field 708 - Through: 06/29, !- Field 709 - For: AllDays, !- Field 710 - Until: 24:00, !- Field 711 - 28.1066666666667, !- Field 712 - Through: 06/30, !- Field 713 - For: AllDays, !- Field 714 - Until: 24:00, !- Field 715 - 28.1694444444444, !- Field 716 - Through: 07/01, !- Field 717 - For: AllDays, !- Field 718 - Until: 24:00, !- Field 719 - 28.23, !- Field 720 - Through: 07/02, !- Field 721 - For: AllDays, !- Field 722 - Until: 24:00, !- Field 723 - 28.2888888888889, !- Field 724 - Through: 07/03, !- Field 725 - For: AllDays, !- Field 726 - Until: 24:00, !- Field 727 - 28.3461111111111, !- Field 728 - Through: 07/04, !- Field 729 - For: AllDays, !- Field 730 - Until: 24:00, !- Field 731 - 28.4011111111111, !- Field 732 - Through: 07/05, !- Field 733 - For: AllDays, !- Field 734 - Until: 24:00, !- Field 735 - 28.4544444444444, !- Field 736 - Through: 07/06, !- Field 737 - For: AllDays, !- Field 738 - Until: 24:00, !- Field 739 - 28.5061111111111, !- Field 740 - Through: 07/07, !- Field 741 - For: AllDays, !- Field 742 - Until: 24:00, !- Field 743 - 28.5555555555556, !- Field 744 - Through: 07/08, !- Field 745 - For: AllDays, !- Field 746 - Until: 24:00, !- Field 747 - 28.6027777777778, !- Field 748 - Through: 07/09, !- Field 749 - For: AllDays, !- Field 750 - Until: 24:00, !- Field 751 - 28.6488888888889, !- Field 752 - Through: 07/10, !- Field 753 - For: AllDays, !- Field 754 - Until: 24:00, !- Field 755 - 28.6922222222222, !- Field 756 - Through: 07/11, !- Field 757 - For: AllDays, !- Field 758 - Until: 24:00, !- Field 759 - 28.7338888888889, !- Field 760 - Through: 07/12, !- Field 761 - For: AllDays, !- Field 762 - Until: 24:00, !- Field 763 - 28.7738888888889, !- Field 764 - Through: 07/13, !- Field 765 - For: AllDays, !- Field 766 - Until: 24:00, !- Field 767 - 28.8116666666667, !- Field 768 - Through: 07/14, !- Field 769 - For: AllDays, !- Field 770 - Until: 24:00, !- Field 771 - 28.8472222222222, !- Field 772 - Through: 07/15, !- Field 773 - For: AllDays, !- Field 774 - Until: 24:00, !- Field 775 - 28.8811111111111, !- Field 776 - Through: 07/16, !- Field 777 - For: AllDays, !- Field 778 - Until: 24:00, !- Field 779 - 28.9127777777778, !- Field 780 - Through: 07/17, !- Field 781 - For: AllDays, !- Field 782 - Until: 24:00, !- Field 783 - 28.9427777777778, !- Field 784 - Through: 07/18, !- Field 785 - For: AllDays, !- Field 786 - Until: 24:00, !- Field 787 - 28.9705555555556, !- Field 788 - Through: 07/19, !- Field 789 - For: AllDays, !- Field 790 - Until: 24:00, !- Field 791 - 28.9961111111111, !- Field 792 - Through: 07/20, !- Field 793 - For: AllDays, !- Field 794 - Until: 24:00, !- Field 795 - 29.0194444444444, !- Field 796 - Through: 07/21, !- Field 797 - For: AllDays, !- Field 798 - Until: 24:00, !- Field 799 - 29.0411111111111, !- Field 800 - Through: 07/22, !- Field 801 - For: AllDays, !- Field 802 - Until: 24:00, !- Field 803 - 29.0605555555556, !- Field 804 - Through: 07/23, !- Field 805 - For: AllDays, !- Field 806 - Until: 24:00, !- Field 807 - 29.0777777777778, !- Field 808 - Through: 07/24, !- Field 809 - For: AllDays, !- Field 810 - Until: 24:00, !- Field 811 - 29.0933333333333, !- Field 812 - Through: 07/25, !- Field 813 - For: AllDays, !- Field 814 - Until: 24:00, !- Field 815 - 29.1066666666667, !- Field 816 - Through: 07/26, !- Field 817 - For: AllDays, !- Field 818 - Until: 24:00, !- Field 819 - 29.1177777777778, !- Field 820 - Through: 07/27, !- Field 821 - For: AllDays, !- Field 822 - Until: 24:00, !- Field 823 - 29.1266666666667, !- Field 824 - Through: 07/28, !- Field 825 - For: AllDays, !- Field 826 - Until: 24:00, !- Field 827 - 29.1338888888889, !- Field 828 - Through: 07/29, !- Field 829 - For: AllDays, !- Field 830 - Until: 24:00, !- Field 831 - 29.1388888888889, !- Field 832 - Through: 07/30, !- Field 833 - For: AllDays, !- Field 834 - Until: 24:00, !- Field 835 - 29.1416666666667, !- Field 836 - Through: 07/31, !- Field 837 - For: AllDays, !- Field 838 - Until: 24:00, !- Field 839 - 29.1422222222222, !- Field 840 - Through: 08/01, !- Field 841 - For: AllDays, !- Field 842 - Until: 24:00, !- Field 843 - 29.1405555555556, !- Field 844 - Through: 08/02, !- Field 845 - For: AllDays, !- Field 846 - Until: 24:00, !- Field 847 - 29.1372222222222, !- Field 848 - Through: 08/03, !- Field 849 - For: AllDays, !- Field 850 - Until: 24:00, !- Field 851 - 29.1316666666667, !- Field 852 - Through: 08/04, !- Field 853 - For: AllDays, !- Field 854 - Until: 24:00, !- Field 855 - 29.1238888888889, !- Field 856 - Through: 08/05, !- Field 857 - For: AllDays, !- Field 858 - Until: 24:00, !- Field 859 - 29.1144444444444, !- Field 860 - Through: 08/06, !- Field 861 - For: AllDays, !- Field 862 - Until: 24:00, !- Field 863 - 29.1022222222222, !- Field 864 - Through: 08/07, !- Field 865 - For: AllDays, !- Field 866 - Until: 24:00, !- Field 867 - 29.0883333333333, !- Field 868 - Through: 08/08, !- Field 869 - For: AllDays, !- Field 870 - Until: 24:00, !- Field 871 - 29.0727777777778, !- Field 872 - Through: 08/09, !- Field 873 - For: AllDays, !- Field 874 - Until: 24:00, !- Field 875 - 29.0544444444444, !- Field 876 - Through: 08/10, !- Field 877 - For: AllDays, !- Field 878 - Until: 24:00, !- Field 879 - 29.0344444444444, !- Field 880 - Through: 08/11, !- Field 881 - For: AllDays, !- Field 882 - Until: 24:00, !- Field 883 - 29.0122222222222, !- Field 884 - Through: 08/12, !- Field 885 - For: AllDays, !- Field 886 - Until: 24:00, !- Field 887 - 28.9877777777778, !- Field 888 - Through: 08/13, !- Field 889 - For: AllDays, !- Field 890 - Until: 24:00, !- Field 891 - 28.9616666666667, !- Field 892 - Through: 08/14, !- Field 893 - For: AllDays, !- Field 894 - Until: 24:00, !- Field 895 - 28.9333333333333, !- Field 896 - Through: 08/15, !- Field 897 - For: AllDays, !- Field 898 - Until: 24:00, !- Field 899 - 28.9027777777778, !- Field 900 - Through: 08/16, !- Field 901 - For: AllDays, !- Field 902 - Until: 24:00, !- Field 903 - 28.87, !- Field 904 - Through: 08/17, !- Field 905 - For: AllDays, !- Field 906 - Until: 24:00, !- Field 907 - 28.8355555555556, !- Field 908 - Through: 08/18, !- Field 909 - For: AllDays, !- Field 910 - Until: 24:00, !- Field 911 - 28.7994444444444, !- Field 912 - Through: 08/19, !- Field 913 - For: AllDays, !- Field 914 - Until: 24:00, !- Field 915 - 28.7611111111111, !- Field 916 - Through: 08/20, !- Field 917 - For: AllDays, !- Field 918 - Until: 24:00, !- Field 919 - 28.7205555555556, !- Field 920 - Through: 08/21, !- Field 921 - For: AllDays, !- Field 922 - Until: 24:00, !- Field 923 - 28.6783333333333, !- Field 924 - Through: 08/22, !- Field 925 - For: AllDays, !- Field 926 - Until: 24:00, !- Field 927 - 28.6338888888889, !- Field 928 - Through: 08/23, !- Field 929 - For: AllDays, !- Field 930 - Until: 24:00, !- Field 931 - 28.5872222222222, !- Field 932 - Through: 08/24, !- Field 933 - For: AllDays, !- Field 934 - Until: 24:00, !- Field 935 - 28.5394444444444, !- Field 936 - Through: 08/25, !- Field 937 - For: AllDays, !- Field 938 - Until: 24:00, !- Field 939 - 28.4888888888889, !- Field 940 - Through: 08/26, !- Field 941 - For: AllDays, !- Field 942 - Until: 24:00, !- Field 943 - 28.4372222222222, !- Field 944 - Through: 08/27, !- Field 945 - For: AllDays, !- Field 946 - Until: 24:00, !- Field 947 - 28.3833333333333, !- Field 948 - Through: 08/28, !- Field 949 - For: AllDays, !- Field 950 - Until: 24:00, !- Field 951 - 28.3272222222222, !- Field 952 - Through: 08/29, !- Field 953 - For: AllDays, !- Field 954 - Until: 24:00, !- Field 955 - 28.2694444444444, !- Field 956 - Through: 08/30, !- Field 957 - For: AllDays, !- Field 958 - Until: 24:00, !- Field 959 - 28.21, !- Field 960 - Through: 08/31, !- Field 961 - For: AllDays, !- Field 962 - Until: 24:00, !- Field 963 - 28.1488888888889, !- Field 964 - Through: 09/01, !- Field 965 - For: AllDays, !- Field 966 - Until: 24:00, !- Field 967 - 28.0855555555556, !- Field 968 - Through: 09/02, !- Field 969 - For: AllDays, !- Field 970 - Until: 24:00, !- Field 971 - 28.0211111111111, !- Field 972 - Through: 09/03, !- Field 973 - For: AllDays, !- Field 974 - Until: 24:00, !- Field 975 - 27.9544444444444, !- Field 976 - Through: 09/04, !- Field 977 - For: AllDays, !- Field 978 - Until: 24:00, !- Field 979 - 27.8855555555556, !- Field 980 - Through: 09/05, !- Field 981 - For: AllDays, !- Field 982 - Until: 24:00, !- Field 983 - 27.8155555555556, !- Field 984 - Through: 09/06, !- Field 985 - For: AllDays, !- Field 986 - Until: 24:00, !- Field 987 - 27.7438888888889, !- Field 988 - Through: 09/07, !- Field 989 - For: AllDays, !- Field 990 - Until: 24:00, !- Field 991 - 27.6705555555556, !- Field 992 - Through: 09/08, !- Field 993 - For: AllDays, !- Field 994 - Until: 24:00, !- Field 995 - 27.595, !- Field 996 - Through: 09/09, !- Field 997 - For: AllDays, !- Field 998 - Until: 24:00, !- Field 999 - 27.5183333333333, !- Field 1000 - Through: 09/10, !- Field 1001 - For: AllDays, !- Field 1002 - Until: 24:00, !- Field 1003 - 27.44, !- Field 1004 - Through: 09/11, !- Field 1005 - For: AllDays, !- Field 1006 - Until: 24:00, !- Field 1007 - 27.36, !- Field 1008 - Through: 09/12, !- Field 1009 - For: AllDays, !- Field 1010 - Until: 24:00, !- Field 1011 - 27.2783333333333, !- Field 1012 - Through: 09/13, !- Field 1013 - For: AllDays, !- Field 1014 - Until: 24:00, !- Field 1015 - 27.1955555555556, !- Field 1016 - Through: 09/14, !- Field 1017 - For: AllDays, !- Field 1018 - Until: 24:00, !- Field 1019 - 27.1105555555556, !- Field 1020 - Through: 09/15, !- Field 1021 - For: AllDays, !- Field 1022 - Until: 24:00, !- Field 1023 - 27.0244444444444, !- Field 1024 - Through: 09/16, !- Field 1025 - For: AllDays, !- Field 1026 - Until: 24:00, !- Field 1027 - 26.9366666666667, !- Field 1028 - Through: 09/17, !- Field 1029 - For: AllDays, !- Field 1030 - Until: 24:00, !- Field 1031 - 26.8477777777778, !- Field 1032 - Through: 09/18, !- Field 1033 - For: AllDays, !- Field 1034 - Until: 24:00, !- Field 1035 - 26.7572222222222, !- Field 1036 - Through: 09/19, !- Field 1037 - For: AllDays, !- Field 1038 - Until: 24:00, !- Field 1039 - 26.6655555555556, !- Field 1040 - Through: 09/20, !- Field 1041 - For: AllDays, !- Field 1042 - Until: 24:00, !- Field 1043 - 26.5722222222222, !- Field 1044 - Through: 09/21, !- Field 1045 - For: AllDays, !- Field 1046 - Until: 24:00, !- Field 1047 - 26.4777777777778, !- Field 1048 - Through: 09/22, !- Field 1049 - For: AllDays, !- Field 1050 - Until: 24:00, !- Field 1051 - 26.3822222222222, !- Field 1052 - Through: 09/23, !- Field 1053 - For: AllDays, !- Field 1054 - Until: 24:00, !- Field 1055 - 26.285, !- Field 1056 - Through: 09/24, !- Field 1057 - For: AllDays, !- Field 1058 - Until: 24:00, !- Field 1059 - 26.1866666666667, !- Field 1060 - Through: 09/25, !- Field 1061 - For: AllDays, !- Field 1062 - Until: 24:00, !- Field 1063 - 26.0866666666667, !- Field 1064 - Through: 09/26, !- Field 1065 - For: AllDays, !- Field 1066 - Until: 24:00, !- Field 1067 - 25.9861111111111, !- Field 1068 - Through: 09/27, !- Field 1069 - For: AllDays, !- Field 1070 - Until: 24:00, !- Field 1071 - 25.8844444444444, !- Field 1072 - Through: 09/28, !- Field 1073 - For: AllDays, !- Field 1074 - Until: 24:00, !- Field 1075 - 25.7811111111111, !- Field 1076 - Through: 09/29, !- Field 1077 - For: AllDays, !- Field 1078 - Until: 24:00, !- Field 1079 - 25.6766666666667, !- Field 1080 - Through: 09/30, !- Field 1081 - For: AllDays, !- Field 1082 - Until: 24:00, !- Field 1083 - 25.5716666666667, !- Field 1084 - Through: 10/01, !- Field 1085 - For: AllDays, !- Field 1086 - Until: 24:00, !- Field 1087 - 25.4655555555556, !- Field 1088 - Through: 10/02, !- Field 1089 - For: AllDays, !- Field 1090 - Until: 24:00, !- Field 1091 - 25.3583333333333, !- Field 1092 - Through: 10/03, !- Field 1093 - For: AllDays, !- Field 1094 - Until: 24:00, !- Field 1095 - 25.25, !- Field 1096 - Through: 10/04, !- Field 1097 - For: AllDays, !- Field 1098 - Until: 24:00, !- Field 1099 - 25.1405555555556, !- Field 1100 - Through: 10/05, !- Field 1101 - For: AllDays, !- Field 1102 - Until: 24:00, !- Field 1103 - 25.0305555555556, !- Field 1104 - Through: 10/06, !- Field 1105 - For: AllDays, !- Field 1106 - Until: 24:00, !- Field 1107 - 24.9194444444444, !- Field 1108 - Through: 10/07, !- Field 1109 - For: AllDays, !- Field 1110 - Until: 24:00, !- Field 1111 - 24.8077777777778, !- Field 1112 - Through: 10/08, !- Field 1113 - For: AllDays, !- Field 1114 - Until: 24:00, !- Field 1115 - 24.695, !- Field 1116 - Through: 10/09, !- Field 1117 - For: AllDays, !- Field 1118 - Until: 24:00, !- Field 1119 - 24.5816666666667, !- Field 1120 - Through: 10/10, !- Field 1121 - For: AllDays, !- Field 1122 - Until: 24:00, !- Field 1123 - 24.4672222222222, !- Field 1124 - Through: 10/11, !- Field 1125 - For: AllDays, !- Field 1126 - Until: 24:00, !- Field 1127 - 24.3527777777778, !- Field 1128 - Through: 10/12, !- Field 1129 - For: AllDays, !- Field 1130 - Until: 24:00, !- Field 1131 - 24.2372222222222, !- Field 1132 - Through: 10/13, !- Field 1133 - For: AllDays, !- Field 1134 - Until: 24:00, !- Field 1135 - 24.1205555555556, !- Field 1136 - Through: 10/14, !- Field 1137 - For: AllDays, !- Field 1138 - Until: 24:00, !- Field 1139 - 24.0038888888889, !- Field 1140 - Through: 10/15, !- Field 1141 - For: AllDays, !- Field 1142 - Until: 24:00, !- Field 1143 - 23.8866666666667, !- Field 1144 - Through: 10/16, !- Field 1145 - For: AllDays, !- Field 1146 - Until: 24:00, !- Field 1147 - 23.7688888888889, !- Field 1148 - Through: 10/17, !- Field 1149 - For: AllDays, !- Field 1150 - Until: 24:00, !- Field 1151 - 23.6505555555556, !- Field 1152 - Through: 10/18, !- Field 1153 - For: AllDays, !- Field 1154 - Until: 24:00, !- Field 1155 - 23.5316666666667, !- Field 1156 - Through: 10/19, !- Field 1157 - For: AllDays, !- Field 1158 - Until: 24:00, !- Field 1159 - 23.4122222222222, !- Field 1160 - Through: 10/20, !- Field 1161 - For: AllDays, !- Field 1162 - Until: 24:00, !- Field 1163 - 23.2922222222222, !- Field 1164 - Through: 10/21, !- Field 1165 - For: AllDays, !- Field 1166 - Until: 24:00, !- Field 1167 - 23.1722222222222, !- Field 1168 - Through: 10/22, !- Field 1169 - For: AllDays, !- Field 1170 - Until: 24:00, !- Field 1171 - 23.0516666666667, !- Field 1172 - Through: 10/23, !- Field 1173 - For: AllDays, !- Field 1174 - Until: 24:00, !- Field 1175 - 22.9311111111111, !- Field 1176 - Through: 10/24, !- Field 1177 - For: AllDays, !- Field 1178 - Until: 24:00, !- Field 1179 - 22.81, !- Field 1180 - Through: 10/25, !- Field 1181 - For: AllDays, !- Field 1182 - Until: 24:00, !- Field 1183 - 22.6888888888889, !- Field 1184 - Through: 10/26, !- Field 1185 - For: AllDays, !- Field 1186 - Until: 24:00, !- Field 1187 - 22.5677777777778, !- Field 1188 - Through: 10/27, !- Field 1189 - For: AllDays, !- Field 1190 - Until: 24:00, !- Field 1191 - 22.4461111111111, !- Field 1192 - Through: 10/28, !- Field 1193 - For: AllDays, !- Field 1194 - Until: 24:00, !- Field 1195 - 22.3244444444444, !- Field 1196 - Through: 10/29, !- Field 1197 - For: AllDays, !- Field 1198 - Until: 24:00, !- Field 1199 - 22.2027777777778, !- Field 1200 - Through: 10/30, !- Field 1201 - For: AllDays, !- Field 1202 - Until: 24:00, !- Field 1203 - 22.0811111111111, !- Field 1204 - Through: 10/31, !- Field 1205 - For: AllDays, !- Field 1206 - Until: 24:00, !- Field 1207 - 21.9594444444444, !- Field 1208 - Through: 11/01, !- Field 1209 - For: AllDays, !- Field 1210 - Until: 24:00, !- Field 1211 - 21.8377777777778, !- Field 1212 - Through: 11/02, !- Field 1213 - For: AllDays, !- Field 1214 - Until: 24:00, !- Field 1215 - 21.7161111111111, !- Field 1216 - Through: 11/03, !- Field 1217 - For: AllDays, !- Field 1218 - Until: 24:00, !- Field 1219 - 21.5944444444444, !- Field 1220 - Through: 11/04, !- Field 1221 - For: AllDays, !- Field 1222 - Until: 24:00, !- Field 1223 - 21.4727777777778, !- Field 1224 - Through: 11/05, !- Field 1225 - For: AllDays, !- Field 1226 - Until: 24:00, !- Field 1227 - 21.3516666666667, !- Field 1228 - Through: 11/06, !- Field 1229 - For: AllDays, !- Field 1230 - Until: 24:00, !- Field 1231 - 21.2305555555556, !- Field 1232 - Through: 11/07, !- Field 1233 - For: AllDays, !- Field 1234 - Until: 24:00, !- Field 1235 - 21.11, !- Field 1236 - Through: 11/08, !- Field 1237 - For: AllDays, !- Field 1238 - Until: 24:00, !- Field 1239 - 20.9894444444444, !- Field 1240 - Through: 11/09, !- Field 1241 - For: AllDays, !- Field 1242 - Until: 24:00, !- Field 1243 - 20.8694444444444, !- Field 1244 - Through: 11/10, !- Field 1245 - For: AllDays, !- Field 1246 - Until: 24:00, !- Field 1247 - 20.7494444444444, !- Field 1248 - Through: 11/11, !- Field 1249 - For: AllDays, !- Field 1250 - Until: 24:00, !- Field 1251 - 20.63, !- Field 1252 - Through: 11/12, !- Field 1253 - For: AllDays, !- Field 1254 - Until: 24:00, !- Field 1255 - 20.5111111111111, !- Field 1256 - Through: 11/13, !- Field 1257 - For: AllDays, !- Field 1258 - Until: 24:00, !- Field 1259 - 20.3927777777778, !- Field 1260 - Through: 11/14, !- Field 1261 - For: AllDays, !- Field 1262 - Until: 24:00, !- Field 1263 - 20.2744444444444, !- Field 1264 - Through: 11/15, !- Field 1265 - For: AllDays, !- Field 1266 - Until: 24:00, !- Field 1267 - 20.1572222222222, !- Field 1268 - Through: 11/16, !- Field 1269 - For: AllDays, !- Field 1270 - Until: 24:00, !- Field 1271 - 20.04, !- Field 1272 - Through: 11/17, !- Field 1273 - For: AllDays, !- Field 1274 - Until: 24:00, !- Field 1275 - 19.9238888888889, !- Field 1276 - Through: 11/18, !- Field 1277 - For: AllDays, !- Field 1278 - Until: 24:00, !- Field 1279 - 19.8077777777778, !- Field 1280 - Through: 11/19, !- Field 1281 - For: AllDays, !- Field 1282 - Until: 24:00, !- Field 1283 - 19.6927777777778, !- Field 1284 - Through: 11/20, !- Field 1285 - For: AllDays, !- Field 1286 - Until: 24:00, !- Field 1287 - 19.5788888888889, !- Field 1288 - Through: 11/21, !- Field 1289 - For: AllDays, !- Field 1290 - Until: 24:00, !- Field 1291 - 19.465, !- Field 1292 - Through: 11/22, !- Field 1293 - For: AllDays, !- Field 1294 - Until: 24:00, !- Field 1295 - 19.3522222222222, !- Field 1296 - Through: 11/23, !- Field 1297 - For: AllDays, !- Field 1298 - Until: 24:00, !- Field 1299 - 19.24, !- Field 1300 - Through: 11/24, !- Field 1301 - For: AllDays, !- Field 1302 - Until: 24:00, !- Field 1303 - 19.1288888888889, !- Field 1304 - Through: 11/25, !- Field 1305 - For: AllDays, !- Field 1306 - Until: 24:00, !- Field 1307 - 19.0188888888889, !- Field 1308 - Through: 11/26, !- Field 1309 - For: AllDays, !- Field 1310 - Until: 24:00, !- Field 1311 - 18.9094444444444, !- Field 1312 - Through: 11/27, !- Field 1313 - For: AllDays, !- Field 1314 - Until: 24:00, !- Field 1315 - 18.8005555555556, !- Field 1316 - Through: 11/28, !- Field 1317 - For: AllDays, !- Field 1318 - Until: 24:00, !- Field 1319 - 18.6933333333333, !- Field 1320 - Through: 11/29, !- Field 1321 - For: AllDays, !- Field 1322 - Until: 24:00, !- Field 1323 - 18.5866666666667, !- Field 1324 - Through: 11/30, !- Field 1325 - For: AllDays, !- Field 1326 - Until: 24:00, !- Field 1327 - 18.4811111111111, !- Field 1328 - Through: 12/01, !- Field 1329 - For: AllDays, !- Field 1330 - Until: 24:00, !- Field 1331 - 18.3766666666667, !- Field 1332 - Through: 12/02, !- Field 1333 - For: AllDays, !- Field 1334 - Until: 24:00, !- Field 1335 - 18.2733333333333, !- Field 1336 - Through: 12/03, !- Field 1337 - For: AllDays, !- Field 1338 - Until: 24:00, !- Field 1339 - 18.1711111111111, !- Field 1340 - Through: 12/04, !- Field 1341 - For: AllDays, !- Field 1342 - Until: 24:00, !- Field 1343 - 18.0705555555556, !- Field 1344 - Through: 12/05, !- Field 1345 - For: AllDays, !- Field 1346 - Until: 24:00, !- Field 1347 - 17.9705555555556, !- Field 1348 - Through: 12/06, !- Field 1349 - For: AllDays, !- Field 1350 - Until: 24:00, !- Field 1351 - 17.8716666666667, !- Field 1352 - Through: 12/07, !- Field 1353 - For: AllDays, !- Field 1354 - Until: 24:00, !- Field 1355 - 17.7744444444444, !- Field 1356 - Through: 12/08, !- Field 1357 - For: AllDays, !- Field 1358 - Until: 24:00, !- Field 1359 - 17.6783333333333, !- Field 1360 - Through: 12/09, !- Field 1361 - For: AllDays, !- Field 1362 - Until: 24:00, !- Field 1363 - 17.5833333333333, !- Field 1364 - Through: 12/10, !- Field 1365 - For: AllDays, !- Field 1366 - Until: 24:00, !- Field 1367 - 17.49, !- Field 1368 - Through: 12/11, !- Field 1369 - For: AllDays, !- Field 1370 - Until: 24:00, !- Field 1371 - 17.3977777777778, !- Field 1372 - Through: 12/12, !- Field 1373 - For: AllDays, !- Field 1374 - Until: 24:00, !- Field 1375 - 17.3072222222222, !- Field 1376 - Through: 12/13, !- Field 1377 - For: AllDays, !- Field 1378 - Until: 24:00, !- Field 1379 - 17.2177777777778, !- Field 1380 - Through: 12/14, !- Field 1381 - For: AllDays, !- Field 1382 - Until: 24:00, !- Field 1383 - 17.1294444444444, !- Field 1384 - Through: 12/15, !- Field 1385 - For: AllDays, !- Field 1386 - Until: 24:00, !- Field 1387 - 17.0433333333333, !- Field 1388 - Through: 12/16, !- Field 1389 - For: AllDays, !- Field 1390 - Until: 24:00, !- Field 1391 - 16.9583333333333, !- Field 1392 - Through: 12/17, !- Field 1393 - For: AllDays, !- Field 1394 - Until: 24:00, !- Field 1395 - 16.875, !- Field 1396 - Through: 12/18, !- Field 1397 - For: AllDays, !- Field 1398 - Until: 24:00, !- Field 1399 - 16.7927777777778, !- Field 1400 - Through: 12/19, !- Field 1401 - For: AllDays, !- Field 1402 - Until: 24:00, !- Field 1403 - 16.7127777777778, !- Field 1404 - Through: 12/20, !- Field 1405 - For: AllDays, !- Field 1406 - Until: 24:00, !- Field 1407 - 16.6338888888889, !- Field 1408 - Through: 12/21, !- Field 1409 - For: AllDays, !- Field 1410 - Until: 24:00, !- Field 1411 - 16.5566666666667, !- Field 1412 - Through: 12/22, !- Field 1413 - For: AllDays, !- Field 1414 - Until: 24:00, !- Field 1415 - 16.4811111111111, !- Field 1416 - Through: 12/23, !- Field 1417 - For: AllDays, !- Field 1418 - Until: 24:00, !- Field 1419 - 16.4072222222222, !- Field 1420 - Through: 12/24, !- Field 1421 - For: AllDays, !- Field 1422 - Until: 24:00, !- Field 1423 - 16.335, !- Field 1424 - Through: 12/25, !- Field 1425 - For: AllDays, !- Field 1426 - Until: 24:00, !- Field 1427 - 16.2644444444444, !- Field 1428 - Through: 12/26, !- Field 1429 - For: AllDays, !- Field 1430 - Until: 24:00, !- Field 1431 - 16.1955555555556, !- Field 1432 - Through: 12/27, !- Field 1433 - For: AllDays, !- Field 1434 - Until: 24:00, !- Field 1435 - 16.1288888888889, !- Field 1436 - Through: 12/28, !- Field 1437 - For: AllDays, !- Field 1438 - Until: 24:00, !- Field 1439 - 16.0633333333333, !- Field 1440 - Through: 12/29, !- Field 1441 - For: AllDays, !- Field 1442 - Until: 24:00, !- Field 1443 - 16, !- Field 1444 - Through: 12/30, !- Field 1445 - For: AllDays, !- Field 1446 - Until: 24:00, !- Field 1447 - 15.9383333333333, !- Field 1448 - Through: 12/31, !- Field 1449 - For: AllDays, !- Field 1450 - Until: 24:00, !- Field 1451 - 15.8783333333333, !- Field 1452 - Through: 01/01, !- Field 1453 - For: AllDays, !- Field 1454 - Until: 24:00, !- Field 1455 - 15.82; !- Field 1456 - -OutdoorAir:Node, - Model Outdoor Air Node; !- Name - -AirLoopHVAC, - central ac and furnace airloop, !- Name - , !- Controller List Name - central ac and furnace airloopAvailability Manager List, !- Availability Manager List Name - 0.942007096627203, !- Design Supply Air Flow Rate {m3/s} - central ac and furnace airloop Supply Branches, !- Branch List Name - , !- Connector List Name - Node 3, !- Supply Side Inlet Node Name - Node 6, !- Demand Side Outlet Node Name - central ac and furnace airloop Demand Inlet Nodes, !- Demand Side Inlet Node Names - central ac and furnace airloop Supply Outlet Nodes, !- Supply Side Outlet Node Names - 1; !- Design Return Air Flow Fraction of Supply Air Flow - -NodeList, - central ac and furnace airloop Supply Outlet Nodes, !- Name - Node 4; !- Node Name 1 - -NodeList, - central ac and furnace airloop Demand Inlet Nodes, !- Name - Node 5; !- Node Name 1 - -Sizing:System, - central ac and furnace airloop, !- AirLoop Name - Sensible, !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} - 12.8, !- Central Cooling Design Supply Air Temperature {C} - 16.7, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Type of Zone Sum to Use - Yes, !- 100% Outdoor Air in Cooling - Yes, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - DesignDay, !- Cooling Supply Air Flow Rate Method - 0, !- Cooling Supply Air Flow Rate {m3/s} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - DesignDay, !- Heating Supply Air Flow Rate Method - 0, !- Heating Supply Air Flow Rate {m3/s} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - ZoneSum, !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - CoolingDesignCapacity, !- Cooling Design Capacity Method - Autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - Autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff; !- Central Cooling Capacity Control Method - -AvailabilityManagerAssignmentList, - central ac and furnace airloopAvailability Manager List, !- Name - AvailabilityManager:Scheduled, !- Availability Manager Object Type 1 - central ac and furnace airloop Availability Manager; !- Availability Manager Name 1 - -AvailabilityManager:Scheduled, - central ac and furnace airloop Availability Manager, !- Name - Always On Discrete; !- Schedule Name - -BranchList, - central ac and furnace airloop Supply Branches, !- Name - central ac and furnace airloop Main Branch; !- Branch Name 1 - -Branch, - central ac and furnace airloop Main Branch, !- Name - , !- Pressure Drop Curve Name - AirLoopHVAC:UnitarySystem, !- Component Object Type 1 - central ac and furnace unitary system, !- Component Name 1 - Node 3, !- Component Inlet Node Name 1 - Node 4; !- Component Outlet Node Name 1 - -AirLoopHVAC:UnitarySystem, - central ac and furnace unitary system, !- Name - Load, !- Control Type - living space, !- Controlling Zone or Thermostat Location - None, !- Dehumidification Control Type - Always On Discrete, !- Availability Schedule Name - Node 3, !- Air Inlet Node Name - Node 4, !- Air Outlet Node Name - Fan:OnOff, !- Supply Fan Object Type - central ac and furnace supply fan, !- Supply Fan Name - BlowThrough, !- Fan Placement - Always Off Discrete, !- Supply Air Fan Operating Mode Schedule Name - Coil:Heating:Fuel, !- Heating Coil Object Type - central ac and furnace htg coil, !- Heating Coil Name - 1, !- DX Heating Coil Sizing Ratio - Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type - central ac and furnace clg coil, !- Cooling Coil Name - No, !- Use DOAS DX Cooling Coil - 2, !- Minimum Supply Air Temperature {C} - SensibleOnlyLoadControl, !- Latent Load Control - , !- Supplemental Heating Coil Object Type - , !- Supplemental Heating Coil Name - SupplyAirFlowRate, !- Cooling Supply Air Flow Rate Method - 0.942007096627203, !- 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 of Capacity {m3/s-W} - SupplyAirFlowRate, !- Heating Supply Air Flow Rate Method - 0.55857644402728, !- 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 Supply Air Flow Rate Per Unit of Capacity {m3/s-W} - , !- No Load Supply Air Flow Rate Method - 0, !- No Load Supply Air Flow Rate {m3/s} - , !- No Load Supply Air Flow Rate Per Floor Area {m3/s-m2} - , !- No Load Fraction of Autosized Cooling Supply Air Flow Rate - , !- No Load Fraction of Autosized Heating Supply Air Flow Rate - , !- No Load Supply Air Flow Rate Per Unit of Capacity During Cooling Operation {m3/s-W} - , !- No Load Supply Air Flow Rate Per Unit of Capacity During Heating Operation {m3/s-W} - 48.8888888888889, !- Maximum Supply Air Temperature {C} - 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} - , !- Outdoor Dry-Bulb Temperature Sensor Node Name - 2.5, !- Maximum Cycling Rate {cycles/hr} - 60, !- Heat Pump Time Constant {s} - 0.01, !- Fraction of On-Cycle Power Use - 60, !- Heat Pump Fan Delay Time {s} - 0, !- Ancillary On-Cycle Electric Power {W} - 0; !- Ancillary Off-Cycle Electric Power {W} - -Fan:OnOff, - central ac and furnace supply fan, !- Name - Always On Discrete, !- Availability Schedule Name - 0.75, !- Fan Total Efficiency - 595.93500092512, !- Pressure Rise {Pa} - 0.942011816101635, !- Maximum Flow Rate {m3/s} - 1, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - Node 3, !- Air Inlet Node Name - central ac and furnace unitary system Fan - Cooling Coil Node, !- Air Outlet Node Name - Fan On Off Power Curve, !- Fan Power Ratio Function of Speed Ratio Curve Name - Fan On Off Efficiency Curve, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name - supply fan; !- End-Use Subcategory - -Curve:Exponent, - Fan On Off Power Curve, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 Constant - 0, !- Coefficient3 Constant - 0, !- Minimum Value of x {BasedOnField A2} - 1; !- Maximum Value of x {BasedOnField A2} - -Curve:Cubic, - Fan On Off Efficiency Curve, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Coefficient4 x**3 - 0, !- Minimum Value of x {BasedOnField A2} - 1; !- Maximum Value of x {BasedOnField A2} - -Coil:Heating:Fuel, - central ac and furnace htg coil, !- Name - Always On Discrete, !- Availability Schedule Name - NaturalGas, !- Fuel Type - 0.92, !- Burner Efficiency - 18756.5484910222, !- Nominal Capacity {W} - central ac and furnace unitary system Cooling Coil - Heating Coil Node, !- Air Inlet Node Name - Node 4, !- Air Outlet Node Name - , !- Temperature Setpoint Node Name - 0, !- Parasitic Electric Load {W} - , !- Part Load Fraction Correlation Curve Name - 0; !- Parasitic Fuel Load {W} - -Curve:Biquadratic, - Cool-Cap-fT1, !- Name - 1.557359706, !- Coefficient1 Constant - -0.0744481692, !- Coefficient2 x - 0.00309859668, !- Coefficient3 x**2 - 0.0014595786, !- Coefficient4 y - -4.1148e-05, !- Coefficient5 y**2 - -0.00042671448, !- Coefficient6 x*y - 13.88, !- Minimum Value of x {BasedOnField A2} - 23.88, !- Maximum Value of x {BasedOnField A2} - 18.33, !- Minimum Value of y {BasedOnField A3} - 51.66; !- Maximum Value of y {BasedOnField A3} - -Curve:Quadratic, - Cool-Cap-fFF1, !- Name - 0.718664047, !- Coefficient1 Constant - 0.41797409, !- Coefficient2 x - -0.136638137, !- Coefficient3 x**2 - 0, !- Minimum Value of x {BasedOnField A2} - 2, !- Maximum Value of x {BasedOnField A2} - 0, !- Minimum Curve Output {BasedOnField A3} - 2; !- Maximum Curve Output {BasedOnField A3} - -Curve:Biquadratic, - Cool-eir-fT1, !- Name - -0.350447695, !- Coefficient1 Constant - 0.116809893, !- Coefficient2 x - -0.00339950844, !- Coefficient3 x**2 - -0.001226088, !- Coefficient4 y - 0.0006008094, !- Coefficient5 y**2 - -0.000466884, !- Coefficient6 x*y - 13.88, !- Minimum Value of x {BasedOnField A2} - 23.88, !- Maximum Value of x {BasedOnField A2} - 18.33, !- Minimum Value of y {BasedOnField A3} - 51.66; !- Maximum Value of y {BasedOnField A3} - -Curve:Quadratic, - Cool-eir-fFF1, !- Name - 1.143487507, !- Coefficient1 Constant - -0.13943972, !- Coefficient2 x - -0.004047787, !- Coefficient3 x**2 - 0, !- Minimum Value of x {BasedOnField A2} - 2, !- Maximum Value of x {BasedOnField A2} - 0, !- Minimum Curve Output {BasedOnField A3} - 2; !- Maximum Curve Output {BasedOnField A3} - -Curve:Quadratic, - Cool-PLF-fPLR1, !- Name - 0.93, !- Coefficient1 Constant - 0.07, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x {BasedOnField A2} - 1, !- Maximum Value of x {BasedOnField A2} - 0.7, !- Minimum Curve Output {BasedOnField A3} - 1; !- Maximum Curve Output {BasedOnField A3} - -Coil:Cooling:DX:SingleSpeed, - central ac and furnace clg coil, !- Name - Always On Discrete, !- Availability Schedule Name - 14067.4113682667, !- Gross Rated Total Cooling Capacity {W} - 0.740612186094823, !- Gross Rated Sensible Heat Ratio - 4.03878394144749, !- Gross Rated Cooling COP {W/W} - 0.744166728437762, !- Rated Air Flow Rate {m3/s} - 773.3912012006, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} - central ac and furnace unitary system Fan - Cooling Coil Node, !- Air Inlet Node Name - central ac and furnace unitary system Cooling Coil - Heating Coil Node, !- Air Outlet Node Name - Cool-Cap-fT1, !- Total Cooling Capacity Function of Temperature Curve Name - Cool-Cap-fFF1, !- Total Cooling Capacity Function of Flow Fraction Curve Name - Cool-eir-fT1, !- Energy Input Ratio Function of Temperature Curve Name - Cool-eir-fFF1, !- Energy Input Ratio Function of Flow Fraction Curve Name - Cool-PLF-fPLR1, !- Part Load Fraction Correlation Curve Name - -25, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} - 1000, !- Nominal Time for Condensate Removal to Begin {s} - 1.5, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} - 3, !- Maximum Cycling Rate {cycles/hr} - 45, !- Latent Capacity Time Constant {s} - , !- Condenser Air Inlet Node Name - AirCooled, !- Condenser Type - 0, !- Evaporative Condenser Effectiveness {dimensionless} - Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} - Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} - 50, !- Crankcase Heater Capacity {W} - 10, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} - , !- Supply Water Storage Tank Name - , !- Condensate Collection Water Storage Tank Name - 0, !- Basin Heater Capacity {W/K} - 10; !- Basin Heater Setpoint Temperature {C} - -AirLoopHVAC:SupplyPath, - central ac and furnace airloop Node 5 Supply Path, !- Name - Node 5, !- Supply Air Path Inlet Node Name - AirLoopHVAC:ZoneSplitter, !- Component Object Type 1 - central ac and furnace zone splitter; !- Component Name 1 - -AirLoopHVAC:ZoneSplitter, - central ac and furnace zone splitter, !- Name - Node 5, !- Inlet Node Name - Node 9; !- Outlet Node Name 1 - -AirLoopHVAC:ReturnPath, - central ac and furnace airloop Return Path, !- Name - Node 6, !- Return Air Path Outlet Node Name - AirLoopHVAC:ReturnPlenum, !- Component Object Type 1 - Air Loop HVAC Return Plenum 1, !- Component Name 1 - AirLoopHVAC:ZoneMixer, !- Component Object Type 2 - central ac and furnace zone mixer; !- Component Name 2 - -AirLoopHVAC:ReturnPlenum, - Air Loop HVAC Return Plenum 1, !- Name - central ac and furnace airloop ret air zone, !- Zone Name - Node 24, !- Zone Node Name - Node 26, !- Outlet Node Name - , !- Induced Air Outlet Node or NodeList Name - Node 8; !- Inlet Node Name 1 - -AirLoopHVAC:ZoneMixer, - central ac and furnace zone mixer, !- Name - Node 6, !- Outlet Node Name - Node 26; !- Inlet Node Name 1 - -PlantLoop, - dhw loop, !- Name - Water, !- Fluid Type - , !- User Defined Fluid Type - dhw loop Operation Schemes, !- Plant Equipment Operation Scheme Name - Node 13, !- Loop Temperature Setpoint Node Name - 100, !- Maximum Loop Temperature {C} - 0, !- Minimum Loop Temperature {C} - 0.01, !- Maximum Loop Flow Rate {m3/s} - 0, !- Minimum Loop Flow Rate {m3/s} - 0.003, !- Plant Loop Volume {m3} - Node 12, !- Plant Side Inlet Node Name - Node 13, !- Plant Side Outlet Node Name - dhw loop Supply Branches, !- Plant Side Branch List Name - dhw loop Supply Connector List, !- Plant Side Connector List Name - Node 15, !- Demand Side Inlet Node Name - Node 16, !- Demand Side Outlet Node Name - dhw loop Demand Branches, !- Demand Side Branch List Name - dhw loop Demand Connector List, !- Demand Side Connector List Name - Optimal, !- Load Distribution Scheme - , !- Availability Manager List Name - SingleSetpoint, !- Plant Loop Demand Calculation Scheme - ; !- Common Pipe Simulation - -Sizing:Plant, - dhw loop, !- Plant or Condenser Loop Name - Heating, !- Loop Type - 52.6666666666667, !- Design Loop Exit Temperature {C} - 5.55555555555556, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -BranchList, - dhw loop Supply Branches, !- Name - dhw loop Supply Inlet Branch, !- Branch Name 1 - dhw loop Supply Branch 1, !- Branch Name 2 - dhw loop Supply Branch 2, !- Branch Name 3 - dhw loop Supply Outlet Branch; !- Branch Name 4 - -ConnectorList, - dhw loop Supply Connector List, !- Name - Connector:Splitter, !- Connector Object Type 1 - dhw loop Supply Splitter, !- Connector Name 1 - Connector:Mixer, !- Connector Object Type 2 - dhw loop Supply Mixer; !- Connector Name 2 - -Connector:Splitter, - dhw loop Supply Splitter, !- Name - dhw loop Supply Inlet Branch, !- Inlet Branch Name - dhw loop Supply Branch 1, !- Outlet Branch Name 1 - dhw loop Supply Branch 2; !- Outlet Branch Name 2 - -Connector:Mixer, - dhw loop Supply Mixer, !- Name - dhw loop Supply Outlet Branch, !- Outlet Branch Name - dhw loop Supply Branch 1, !- Inlet Branch Name 1 - dhw loop Supply Branch 2; !- Inlet Branch Name 2 - -Branch, - dhw loop Supply Inlet Branch, !- Name - , !- Pressure Drop Curve Name - Pump:VariableSpeed, !- Component Object Type 1 - Pump Variable Speed 1, !- Component Name 1 - Node 12, !- Component Inlet Node Name 1 - Node 20; !- Component Outlet Node Name 1 - -Pump:VariableSpeed, - Pump Variable Speed 1, !- Name - Node 12, !- Inlet Node Name - Node 20, !- Outlet Node Name - 0.01, !- Design Maximum Flow Rate {m3/s} - 1, !- Design Pump Head {Pa} - 0, !- Design Power Consumption {W} - 1, !- Motor Efficiency - 0, !- Fraction of Motor Inefficiencies to Fluid Stream - 0, !- Coefficient 1 of the Part Load Performance Curve - 1, !- Coefficient 2 of the Part Load Performance Curve - 0, !- Coefficient 3 of the Part Load Performance Curve - 0, !- Coefficient 4 of the Part Load Performance Curve - 0, !- Design Minimum Flow Rate {m3/s} - Intermittent, !- Pump Control Type - , !- Pump Flow Rate Schedule Name - , !- Pump Curve Name - , !- Impeller Diameter {m} - , !- VFD Control Type - , !- Pump RPM Schedule Name - , !- Minimum Pressure Schedule {Pa} - , !- Maximum Pressure Schedule {Pa} - , !- Minimum RPM Schedule {rev/min} - , !- Maximum RPM Schedule {rev/min} - , !- Zone Name - 0.5, !- Skin Loss Radiative Fraction - PowerPerFlowPerPressure, !- Design Power Sizing Method - 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} - 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} - 0, !- Design Minimum Flow Rate Fraction - General; !- End-Use Subcategory - -Branch, - dhw loop Supply Branch 1, !- Name - , !- Pressure Drop Curve Name - Pipe:Adiabatic, !- Component Object Type 1 - Pipe Adiabatic 1, !- Component Name 1 - Node 14, !- Component Inlet Node Name 1 - Node 18; !- Component Outlet Node Name 1 - -Pipe:Adiabatic, - Pipe Adiabatic 1, !- Name - Node 14, !- Inlet Node Name - Node 18; !- Outlet Node Name - -Branch, - dhw loop Supply Branch 2, !- Name - , !- Pressure Drop Curve Name - WaterHeater:Mixed, !- Component Object Type 1 - water heater, !- Component Name 1 - Node 21, !- Component Inlet Node Name 1 - Node 22; !- Component Outlet Node Name 1 - -WaterHeater:Mixed, - water heater, !- Name - 0.136274824222915, !- Tank Volume {m3} - WH Setpoint Temp, !- Setpoint Temperature Schedule Name - 2, !- Deadband Temperature Difference {deltaC} - 99, !- Maximum Temperature Limit {C} - Cycle, !- Heater Control Type - 5500.06477392209, !- Heater Maximum Capacity {W} - 0, !- Heater Minimum Capacity {W} - 0, !- Heater Ignition Minimum Flow Rate {m3/s} - 0, !- Heater Ignition Delay {s} - Electricity, !- Heater Fuel Type - 1, !- Heater Thermal Efficiency - , !- Part Load Factor Curve Name - 0, !- Off Cycle Parasitic Fuel Consumption Rate {W} - Electricity, !- Off Cycle Parasitic Fuel Type - 0, !- Off Cycle Parasitic Heat Fraction to Tank - 0, !- On Cycle Parasitic Fuel Consumption Rate {W} - Electricity, !- On Cycle Parasitic Fuel Type - 0, !- On Cycle Parasitic Heat Fraction to Tank - Zone, !- Ambient Temperature Indicator - , !- Ambient Temperature Schedule Name - living space, !- Ambient Temperature Zone Name - , !- Ambient Temperature Outdoor Air Node Name - 0.704227539803499, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} - 1, !- Off Cycle Loss Fraction to Zone - 0.704227539803499, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} - 1, !- On Cycle Loss Fraction to Zone - , !- Peak Use Flow Rate {m3/s} - , !- Use Flow Rate Fraction Schedule Name - , !- Cold Water Supply Temperature Schedule Name - Node 21, !- Use Side Inlet Node Name - Node 22, !- Use Side Outlet Node Name - 1, !- Use Side Effectiveness - , !- Source Side Inlet Node Name - , !- Source Side Outlet Node Name - 1, !- 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} - IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode - , !- Indirect Alternate Setpoint Temperature Schedule Name - General; !- End-Use Subcategory - -Branch, - dhw loop Supply Outlet Branch, !- Name - , !- Pressure Drop Curve Name - Pipe:Adiabatic, !- Component Object Type 1 - Pipe Adiabatic 2, !- Component Name 1 - Node 19, !- Component Inlet Node Name 1 - Node 13; !- Component Outlet Node Name 1 - -Pipe:Adiabatic, - Pipe Adiabatic 2, !- Name - Node 19, !- Inlet Node Name - Node 13; !- Outlet Node Name - -SetpointManager:Scheduled, - Setpoint Manager Scheduled 1, !- Name - Temperature, !- Control Variable - dhw temp, !- Schedule Name - Node 13; !- Setpoint Node or NodeList Name - -BranchList, - dhw loop Demand Branches, !- Name - dhw loop Demand Inlet Branch, !- Branch Name 1 - dhw loop Demand Branch 1, !- Branch Name 2 - dhw loop Demand Bypass Branch, !- Branch Name 3 - dhw loop Demand Outlet Branch; !- Branch Name 4 - -ConnectorList, - dhw loop Demand Connector List, !- Name - Connector:Splitter, !- Connector Object Type 1 - dhw loop Demand Splitter, !- Connector Name 1 - Connector:Mixer, !- Connector Object Type 2 - dhw loop Demand Mixer; !- Connector Name 2 - -Connector:Splitter, - dhw loop Demand Splitter, !- Name - dhw loop Demand Inlet Branch, !- Inlet Branch Name - dhw loop Demand Branch 1, !- Outlet Branch Name 1 - dhw loop Demand Bypass Branch; !- Outlet Branch Name 2 - -Connector:Mixer, - dhw loop Demand Mixer, !- Name - dhw loop Demand Outlet Branch, !- Outlet Branch Name - dhw loop Demand Branch 1, !- Inlet Branch Name 1 - dhw loop Demand Bypass Branch; !- Inlet Branch Name 2 - -Branch, - dhw loop Demand Inlet Branch, !- Name - , !- Pressure Drop Curve Name - Pipe:Adiabatic, !- Component Object Type 1 - dhw loop Demand Inlet Pipe, !- Component Name 1 - Node 15, !- Component Inlet Node Name 1 - dhw loop Demand Inlet Pipe Node; !- Component Outlet Node Name 1 - -Pipe:Adiabatic, - dhw loop Demand Inlet Pipe, !- Name - Node 15, !- Inlet Node Name - dhw loop Demand Inlet Pipe Node; !- Outlet Node Name - -Branch, - dhw loop Demand Branch 1, !- Name - , !- Pressure Drop Curve Name - WaterUse:Connections, !- Component Object Type 1 - Water Use Connections 1, !- Component Name 1 - Node 17, !- Component Inlet Node Name 1 - Node 23; !- Component Outlet Node Name 1 - -WaterUse:Connections, - Water Use Connections 1, !- Name - Node 17, !- Inlet Node Name - Node 23, !- 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} - dhw fixtures, !- Water Use Equipment Name 1 - dhw distribution waste, !- Water Use Equipment Name 2 - clothes washer, !- Water Use Equipment Name 3 - dishwasher; !- Water Use Equipment Name 4 - -WaterUse:Equipment, - dhw fixtures, !- Name - dhw fixtures, !- End-Use Subcategory - 0.000368893708162033, !- Peak Flow Rate {m3/s} - dhw fixtures schedule, !- Flow Rate Fraction Schedule Name - Schedule Constant 1; !- Target Temperature Schedule Name - -WaterUse:Equipment, - dhw distribution waste, !- Name - dhw distribution waste, !- End-Use Subcategory - 9.08962936681751e-05, !- Peak Flow Rate {m3/s} - dhw fixtures schedule, !- Flow Rate Fraction Schedule Name - Schedule Constant 1; !- Target Temperature Schedule Name - -WaterUse:Equipment, - clothes washer, !- Name - clothes washer, !- End-Use Subcategory - 0.000258778138086567, !- Peak Flow Rate {m3/s} - clothes washer schedule, !- Flow Rate Fraction Schedule Name - WH Setpoint Temp; !- Target Temperature Schedule Name - -WaterUse:Equipment, - dishwasher, !- Name - dishwasher, !- End-Use Subcategory - 0.000110436313142217, !- Peak Flow Rate {m3/s} - dishwasher schedule, !- Flow Rate Fraction Schedule Name - WH Setpoint Temp; !- Target Temperature Schedule Name - -Branch, - dhw loop Demand Bypass Branch, !- Name - , !- Pressure Drop Curve Name - Pipe:Adiabatic, !- Component Object Type 1 - dhw loop Demand Bypass Pipe, !- Component Name 1 - dhw loop Demand Bypass Pipe Inlet Node, !- Component Inlet Node Name 1 - dhw loop Demand Bypass Pipe Outlet Node; !- Component Outlet Node Name 1 - -Pipe:Adiabatic, - dhw loop Demand Bypass Pipe, !- Name - dhw loop Demand Bypass Pipe Inlet Node, !- Inlet Node Name - dhw loop Demand Bypass Pipe Outlet Node; !- Outlet Node Name - -Branch, - dhw loop Demand Outlet Branch, !- Name - , !- Pressure Drop Curve Name - Pipe:Adiabatic, !- Component Object Type 1 - dhw loop Demand Outlet Pipe, !- Component Name 1 - dhw loop Demand Outlet Pipe Node, !- Component Inlet Node Name 1 - Node 16; !- Component Outlet Node Name 1 - -Pipe:Adiabatic, - dhw loop Demand Outlet Pipe, !- Name - dhw loop Demand Outlet Pipe Node, !- Inlet Node Name - Node 16; !- Outlet Node Name - -PlantEquipmentOperationSchemes, - dhw loop Operation Schemes, !- Name - PlantEquipmentOperation:HeatingLoad, !- Control Scheme Object Type 1 - dhw loop Heating Operation Scheme, !- Control Scheme Name 1 - Always On Discrete; !- Control Scheme Schedule Name 1 - -PlantEquipmentOperation:HeatingLoad, - dhw loop Heating Operation Scheme, !- Name - 0, !- Load Range Lower Limit 1 {W} - 1000000000, !- Load Range Upper Limit 1 {W} - dhw loop Heating Equipment List; !- Range Equipment List Name 1 - -PlantEquipmentList, - dhw loop Heating Equipment List, !- Name - WaterHeater:Mixed, !- Equipment Object Type 1 - water heater; !- Equipment Name 1 - -RunPeriodControl:DaylightSavingTime, - Mar 12, !- Start Date - Nov 5; !- End Date - -Output:Diagnostics, - DisplayAdvancedReportVariables; !- Key 1 - - Site:Location, - PHOENIX_AZ_USA TMY2-23183, !- Name - 33.43000, !- Latitude {deg} - -112.0200, !- Longitude {deg} - -7.000000, !- Time Zone {hr} - 339.0000; !- Elevation {m} + RunPeriod, + Run Period 2, !- Name + 7, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 7, !- End Month + 7, !- End Day of Month + , !- End Year + , !- 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 + No, !- Use Weather File Rain Indicators + No; !- Use Weather File Snow Indicators + + ShadowCalculation, + PolygonClipping, !- Shading Calculation Method + Periodic, !- Shading Calculation Update Frequency Method + 20, !- Shading Calculation Update Frequency + 200, !- Maximum Figures in Shadow Overlap Calculations + SutherlandHodgman, !- Polygon Clipping Algorithm + 512, !- Pixel Counting Resolution + SimpleSkyDiffuseModeling,!- Sky Diffuse Modeling Algorithm + No, !- Output External Shading Calculation Results + No, !- Disable Self-Shading Within Shading Zone Groups + No; !- Disable Self-Shading From Shading Zone Groups to Other Zones + + SurfaceConvectionAlgorithm:Inside,TARP; + + SurfaceConvectionAlgorithm:Outside,DOE-2; + + ZoneCapacitanceMultiplier:ResearchSpecial, + Zone Capacitance Multiplier Research Special, !- Name + , !- Zone or ZoneList Name + , !- Temperature Capacity Multiplier + 15, !- Humidity Capacity Multiplier + , !- Carbon Dioxide Capacity Multiplier + ; !- Generic Contaminant Capacity Multiplier + + Sizing:Parameters, + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + + Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative, !- Daylighting Reference Point Coordinate System + Relative; !- Rectangular Surface Coordinate System + + Material, + asphalt or fiberglass shingles, !- Name + Rough, !- Roughness + 0.009525, !- Thickness {m} + 0.162714, !- Conductivity {W/m-K} + 1121.4, !- Density {kg/m3} + 1465.45, !- Specific Heat {J/kg-K} + 0.92, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + CeilingStudAndCavity, !- Name + Rough, !- Roughness + 0.1397, !- Thickness {m} + 0.0212586879621772, !- Conductivity {W/m-K} + 65.682, !- Density {kg/m3} + 1177.46609756098, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + Concrete 4.0 in., !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.803125, !- Conductivity {W/m-K} + 2242.8, !- Density {kg/m3} + 837.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + DoorMaterial, !- Name + Rough, !- Roughness + 0.04445, !- Thickness {m} + 0.0716541300028385, !- Conductivity {W/m-K} + 512.64, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + Drywall 0.5 in., !- Name + Rough, !- Roughness + 0.0127, !- Thickness {m} + 0.1602906, !- Conductivity {W/m-K} + 801, !- Density {kg/m3} + 837.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.1; !- Visible Absorptance + + Material, + Floor Covering, !- Name + Rough, !- Roughness + 0.0127, !- Thickness {m} + 0.02885, !- Conductivity {W/m-K} + 54.468, !- Density {kg/m3} + 1339.84, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.9, !- Solar Absorptance + 0.9; !- Visible Absorptance + + Material, + furniture material living space, !- Name + Rough, !- Roughness + 0.06096, !- Thickness {m} + 0.1154577, !- Conductivity {W/m-K} + 640.8, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.1; !- Visible Absorptance + + Material, + Radiant Barrier, !- Name + Rough, !- Roughness + 0.00021336, !- Thickness {m} + 235.0698, !- Conductivity {W/m-K} + 2700.972, !- Density {kg/m3} + 921.14, !- Specific Heat {J/kg-K} + 0.067, !- Thermal Absorptance + 0.05, !- Solar Absorptance + 0.05; !- Visible Absorptance + + Material, + RoofRigidIns, !- Name + Rough, !- Roughness + 0.00224211728711613, !- Thickness {m} + 0.029427, !- Conductivity {W/m-K} + 32.04, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + RoofSheathing, !- Name + Rough, !- Roughness + 0.0127, !- Thickness {m} + 0.1154577, !- Conductivity {W/m-K} + 512.64, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + SlabRigidIns, !- Name + Rough, !- Roughness + 0.025908, !- Thickness {m} + 0.029427, !- Conductivity {W/m-K} + 32.04, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallRigidIns, !- Name + Rough, !- Roughness + 0.051816, !- Thickness {m} + 0.029427, !- Conductivity {W/m-K} + 32.04, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallRigidIns 1, !- Name + Rough, !- Roughness + 0.5129784, !- Thickness {m} + 0.029427, !- Conductivity {W/m-K} + 32.04, !- Density {kg/m3} + 1214.23, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallStudAndCavity, !- Name + Rough, !- Roughness + 0.1397, !- Thickness {m} + 0.0823011851264537, !- Conductivity {W/m-K} + 139.0536, !- Density {kg/m3} + 1170.23755760369, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallStudAndCavity 1, !- Name + Rough, !- Roughness + 0.1397, !- Thickness {m} + 0.727959376833552, !- Conductivity {W/m-K} + 139.0536, !- Density {kg/m3} + 1170.23755760369, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallStudAndCavity 2, !- Name + Rough, !- Roughness + 0.0889, !- Thickness {m} + 0.380278417457636, !- Conductivity {W/m-K} + 52.34794524, !- Density {kg/m3} + 1209.88641434781, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + WallStudAndCavity 3, !- Name + Rough, !- Roughness + 0.0889, !- Thickness {m} + 0.391763531157105, !- Conductivity {W/m-K} + 83.034082224, !- Density {kg/m3} + 1211.67419087611, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + wood siding, !- Name + Rough, !- Roughness + 0.0254, !- Thickness {m} + 0.1024175, !- Conductivity {W/m-K} + 544.68, !- Density {kg/m3} + 1172.36, !- Specific Heat {J/kg-K} + 0.92, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + wood siding 1, !- Name + Rough, !- Roughness + 0.0254, !- Thickness {m} + 0.1024175, !- Conductivity {W/m-K} + 544.68, !- Density {kg/m3} + 1172.36, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.75, !- Solar Absorptance + 0.75; !- Visible Absorptance + + Material:NoMass, + Adiabatic, !- Name + Rough, !- Roughness + 176.1, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + WindowMaterial:Shade, + WindowCoolingShade, !- Name + 0.7, !- Solar Transmittance {dimensionless} + 0.29999, !- Solar Reflectance {dimensionless} + 0.7, !- Visible Transmittance {dimensionless} + 0.29999, !- Visible Reflectance {dimensionless} + 1e-05, !- Infrared Hemispherical Emissivity {dimensionless} + 0.7, !- Infrared Transmittance {dimensionless} + 0.0001, !- Thickness {m} + 10000, !- Conductivity {W/m-K} + 0.001, !- Shade to Glass Distance {m} + 0, !- Top Opening Multiplier + 0, !- Bottom Opening Multiplier + 0, !- Left-Side Opening Multiplier + 0, !- Right-Side Opening Multiplier + 0; !- Airflow Permeability {dimensionless} + + WindowMaterial:Shade, + WindowHeatingShade, !- Name + 0.85, !- Solar Transmittance {dimensionless} + 0.14999, !- Solar Reflectance {dimensionless} + 0.85, !- Visible Transmittance {dimensionless} + 0.14999, !- Visible Reflectance {dimensionless} + 1e-05, !- Infrared Hemispherical Emissivity {dimensionless} + 0.85, !- Infrared Transmittance {dimensionless} + 0.0001, !- Thickness {m} + 10000, !- Conductivity {W/m-K} + 0.001, !- Shade to Glass Distance {m} + 0, !- Top Opening Multiplier + 0, !- Bottom Opening Multiplier + 0, !- Left-Side Opening Multiplier + 0, !- Right-Side Opening Multiplier + 0; !- Airflow Permeability {dimensionless} + + WindowMaterial:SimpleGlazingSystem, + WindowMaterial, !- Name + 1.87374, !- U-Factor {W/m2-K} + 0.45; !- Solar Heat Gain Coefficient + + WindowShadingControl, + WindowCoolingShadingControl, !- Name + living space, !- Zone Name + 1, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + cooling season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowCoolingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowNorth; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowCoolingShadingControl 1, !- Name + living space, !- Zone Name + 2, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + cooling season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowCoolingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowSouth; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowCoolingShadingControl 2, !- Name + living space, !- Zone Name + 3, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + cooling season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowCoolingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowEast; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowCoolingShadingControl 3, !- Name + living space, !- Zone Name + 4, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + cooling season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowCoolingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowWest; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowHeatingShadingControl, !- Name + living space, !- Zone Name + 5, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + heating season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowHeatingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowNorth; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowHeatingShadingControl 1, !- Name + living space, !- Zone Name + 6, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + heating season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowHeatingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowSouth; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowHeatingShadingControl 2, !- Name + living space, !- Zone Name + 7, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + heating season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowHeatingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowEast; !- Fenestration Surface 1 Name + + WindowShadingControl, + WindowHeatingShadingControl 3, !- Name + living space, !- Zone Name + 8, !- Shading Control Sequence Number + InteriorShade, !- Shading Type + , !- Construction with Shading Name + OnIfScheduleAllows, !- Shading Control Type + heating season schedule, !- Schedule Name + , !- Setpoint {W/m2, W or deg C} + Yes, !- Shading Control Is Scheduled + No, !- Glare Control Is Active + WindowHeatingShade, !- Shading Device Material Name + FixedSlatAngle, !- Type of Slat Angle Control for Blinds + , !- Slat Angle Schedule Name + , !- Setpoint 2 {W/m2 or deg C} + , !- Daylighting Control Object Name + Sequential, !- Multiple Surface Control Type + WindowWest; !- Fenestration Surface 1 Name + + Construction, + AdiabaticConst, !- Name + Adiabatic; !- Outside Layer + + Construction, + AdiabaticWallConstruction, !- Name + wood siding 1, !- Outside Layer + WallRigidIns 1, !- Layer 2 + WallStudAndCavity 2, !- Layer 3 + Drywall 0.5 in.; !- Layer 4 + + Construction, + AdiabaticWallConstruction 1, !- Name + wood siding 1, !- Outside Layer + WallRigidIns 1, !- Layer 2 + WallStudAndCavity 2, !- Layer 3 + Drywall 0.5 in.; !- Layer 4 + + Construction, + Door, !- Name + DoorMaterial; !- Outside Layer + + Construction, + Door 1, !- Name + DoorMaterial; !- Outside Layer + + Construction, + FloorBelowAttic construction, !- Name + CeilingStudAndCavity, !- Outside Layer + Drywall 0.5 in.; !- Layer 2 + + Construction, + FloorBelowAttic construction Reversed, !- Name + Drywall 0.5 in., !- Outside Layer + CeilingStudAndCavity; !- Layer 2 + + Construction, + furniture construction living space, !- Name + furniture material living space; !- Outside Layer + + Construction, + PartitionWallConstruction, !- Name + Drywall 0.5 in., !- Outside Layer + WallStudAndCavity 3, !- Layer 2 + Drywall 0.5 in.; !- Layer 3 + + Construction, + Roof construction, !- Name + asphalt or fiberglass shingles, !- Outside Layer + RoofRigidIns, !- Layer 2 + RoofSheathing, !- Layer 3 + Radiant Barrier; !- Layer 4 + + Construction, + Slab construction, !- Name + SlabRigidIns, !- Outside Layer + Concrete 4.0 in., !- Layer 2 + Floor Covering; !- Layer 3 + + Construction, + Wall construction, !- Name + wood siding, !- Outside Layer + WallRigidIns, !- Layer 2 + RoofSheathing, !- Layer 3 + WallStudAndCavity, !- Layer 4 + Drywall 0.5 in.; !- Layer 5 + + Construction, + WallAtticGable construction, !- Name + wood siding, !- Outside Layer + RoofSheathing, !- Layer 2 + WallStudAndCavity 1; !- Layer 3 + + Construction, + WindowConstruction, !- Name + WindowMaterial; !- Outside Layer + + Construction, + WindowConstruction 1, !- Name + WindowMaterial; !- Outside Layer + + Construction, + WindowConstruction 2, !- Name + WindowMaterial; !- Outside Layer + + Construction, + WindowConstruction 3, !- Name + WindowMaterial; !- Outside Layer + + ScheduleTypeLimits, + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + activitylevel; !- Unit Type + + ScheduleTypeLimits, + Fractional 1, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete; !- Numeric Type + + ScheduleTypeLimits, + OnOff 1, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + availability; !- Unit Type + + ScheduleTypeLimits, + OnOff 2, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + availability; !- Unit Type + + ScheduleTypeLimits, + Schedule Type Limits 1, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + , !- Numeric Type + temperature; !- Unit Type + + Schedule:Constant,Always Off Discrete,OnOff 2,0; + + Schedule:Constant,Always On Discrete,OnOff 1,1; + + Schedule:Constant,dhw temp,Temperature,52.6666666666667; + + Schedule:Constant,occupants activity schedule,ActivityLevel,117.228428068889; + + Schedule:Constant,Schedule Constant 1,Temperature,40.5555555555556; + + Schedule:Constant,Sequential Fraction Schedule,Fractional,1; + + Schedule:Constant,Sequential Fraction Schedule 1,Fractional,1; + + Schedule:Constant,Sequential Fraction Schedule 2,Fractional,1; + + Schedule:Constant,Sequential Fraction Schedule 3,Fractional,1; + + Schedule:Constant,under slab,Schedule Type Limits 1,0; + + Schedule:Constant,WH Setpoint Temp,Temperature,52.6666666666667; + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 09:00, !- Time 1 + 0, !- Value Until Time 1 + 10:00, !- Time 2 + 0.566666666666667, !- Value Until Time 2 + 16:00, !- Time 3 + 0, !- Value Until Time 3 + 17:00, !- Time 4 + 0.3, !- Value Until Time 4 + 18:00, !- Time 5 + 0.1, !- Value Until Time 5 + 24:00, !- Time 6 + 0; !- Value Until Time 6 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 06:00, !- Time 1 + 0, !- Value Until Time 1 + 07:00, !- Time 2 + 0.65, !- Value Until Time 2 + 11:00, !- Time 3 + 0, !- Value Until Time 3 + 12:00, !- Time 4 + 0.566666666666667, !- Value Until Time 4 + 20:00, !- Time 5 + 0, !- Value Until Time 5 + 23:00, !- Time 6 + 0.4, !- Value Until Time 6 + 24:00, !- Time 7 + 0; !- Value Until Time 7 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer exhaust schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 13:00, !- Time 1 + 0, !- Value Until Time 1 + 15:00, !- Time 2 + 0.4, !- Value Until Time 2 + 24:00, !- Time 3 + 0; !- Value Until Time 3 + + Schedule:Day:Interval, + clothes dryer schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 09:00, !- Time 1 + 0, !- Value Until Time 1 + 10:00, !- Time 2 + 0.0302713833333333, !- Value Until Time 2 + 16:00, !- Time 3 + 0, !- Value Until Time 3 + 17:00, !- Time 4 + 0.0058593, !- Value Until Time 4 + 24:00, !- Time 5 + 0; !- Value Until Time 5 + + Schedule:Day:Interval, + clothes dryer schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 06:00, !- Time 1 + 0, !- Value Until Time 1 + 07:00, !- Time 2 + 0.0211826, !- Value Until Time 2 + 11:00, !- Time 3 + 0, !- Value Until Time 3 + 12:00, !- Time 4 + 0.0193903, !- Value Until Time 4 + 20:00, !- Time 5 + 0, !- Value Until Time 5 + 21:00, !- Time 6 + 0.00874706666666667, !- Value Until Time 6 + 22:00, !- Time 7 + 0.00322948333333333, !- Value Until Time 7 + 23:00, !- Time 8 + 0.0123919666666667, !- Value Until Time 8 + 24:00, !- Time 9 + 0; !- Value Until Time 9 + + Schedule:Day:Interval, + clothes dryer schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes dryer schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 13:00, !- Time 1 + 0, !- Value Until Time 1 + 14:00, !- Time 2 + 0.00380235, !- Value Until Time 2 + 15:00, !- Time 3 + 0.00029145, !- Value Until Time 3 + 24:00, !- Time 4 + 0; !- Value Until Time 4 + + Schedule:Day:Interval, + clothes washer schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 08:00, !- Time 1 + 0, !- Value Until Time 1 + 09:00, !- Time 2 + 0.0302713833333333, !- Value Until Time 2 + 15:00, !- Time 3 + 0, !- Value Until Time 3 + 16:00, !- Time 4 + 0.0058593, !- Value Until Time 4 + 24:00, !- Time 5 + 0; !- Value Until Time 5 + + Schedule:Day:Interval, + clothes washer schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes washer schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes washer schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes washer schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0, !- Value Until Time 1 + 06:00, !- Time 2 + 0.0211826, !- Value Until Time 2 + 10:00, !- Time 3 + 0, !- Value Until Time 3 + 11:00, !- Time 4 + 0.0193903, !- Value Until Time 4 + 19:00, !- Time 5 + 0, !- Value Until Time 5 + 20:00, !- Time 6 + 0.00874706666666667, !- Value Until Time 6 + 21:00, !- Time 7 + 0.00322948333333333, !- Value Until Time 7 + 22:00, !- Time 8 + 0.0123919666666667, !- Value Until Time 8 + 24:00, !- Time 9 + 0; !- Value Until Time 9 + + Schedule:Day:Interval, + clothes washer schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + clothes washer schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 12:00, !- Time 1 + 0, !- Value Until Time 1 + 13:00, !- Time 2 + 0.00380235, !- Value Until Time 2 + 14:00, !- Time 3 + 0.00029145, !- Value Until Time 3 + 24:00, !- Time 4 + 0; !- Value Until Time 4 + + Schedule:Day:Interval, + cooking range allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0466666666666667, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0266666666666667, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0466666666666667, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0733333333333333, !- Value Until Time 4 + 07:00, !- Time 5 + 0.166666666666667, !- Value Until Time 5 + 08:00, !- Time 6 + 0.28, !- Value Until Time 6 + 09:00, !- Time 7 + 0.306666666666667, !- Value Until Time 7 + 10:00, !- Time 8 + 0.32, !- Value Until Time 8 + 11:00, !- Time 9 + 0.28, !- Value Until Time 9 + 12:00, !- Time 10 + 0.333333333333333, !- Value Until Time 10 + 13:00, !- Time 11 + 0.38, !- Value Until Time 11 + 14:00, !- Time 12 + 0.306666666666667, !- Value Until Time 12 + 15:00, !- Time 13 + 0.38, !- Value Until Time 13 + 16:00, !- Time 14 + 0.293333333333333, !- Value Until Time 14 + 17:00, !- Time 15 + 0.613333333333333, !- Value Until Time 15 + 18:00, !- Time 16 + 1, !- Value Until Time 16 + 19:00, !- Time 17 + 0.78, !- Value Until Time 17 + 20:00, !- Time 18 + 0.4, !- Value Until Time 18 + 21:00, !- Time 19 + 0.233333333333333, !- Value Until Time 19 + 22:00, !- Time 20 + 0.166666666666667, !- Value Until Time 20 + 23:00, !- Time 21 + 0.106666666666667, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0733333333333333; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0461561835308417, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0263749620176238, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0461561835308417, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0725311455484655, !- Value Until Time 4 + 07:00, !- Time 5 + 0.164843512610149, !- Value Until Time 5 + 08:00, !- Time 6 + 0.27693710118505, !- Value Until Time 6 + 09:00, !- Time 7 + 0.303312063202674, !- Value Until Time 7 + 10:00, !- Time 8 + 0.316499544211486, !- Value Until Time 8 + 11:00, !- Time 9 + 0.27693710118505, !- Value Until Time 9 + 12:00, !- Time 10 + 0.329687025220298, !- Value Until Time 10 + 13:00, !- Time 11 + 0.37584320875114, !- Value Until Time 11 + 14:00, !- Time 12 + 0.303312063202674, !- Value Until Time 12 + 15:00, !- Time 13 + 0.37584320875114, !- Value Until Time 13 + 16:00, !- Time 14 + 0.290124582193862, !- Value Until Time 14 + 17:00, !- Time 15 + 0.606624126405348, !- Value Until Time 15 + 18:00, !- Time 16 + 0.989061075660893, !- Value Until Time 16 + 19:00, !- Time 17 + 0.771467639015497, !- Value Until Time 17 + 20:00, !- Time 18 + 0.395624430264357, !- Value Until Time 18 + 21:00, !- Time 19 + 0.230780917654208, !- Value Until Time 19 + 22:00, !- Time 20 + 0.164843512610149, !- Value Until Time 20 + 23:00, !- Time 21 + 0.105499848070495, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0725311455484655; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0466666666666667, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0266666666666667, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0466666666666667, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0733333333333333, !- Value Until Time 4 + 07:00, !- Time 5 + 0.166666666666667, !- Value Until Time 5 + 08:00, !- Time 6 + 0.28, !- Value Until Time 6 + 09:00, !- Time 7 + 0.306666666666667, !- Value Until Time 7 + 10:00, !- Time 8 + 0.32, !- Value Until Time 8 + 11:00, !- Time 9 + 0.28, !- Value Until Time 9 + 12:00, !- Time 10 + 0.333333333333333, !- Value Until Time 10 + 13:00, !- Time 11 + 0.38, !- Value Until Time 11 + 14:00, !- Time 12 + 0.306666666666667, !- Value Until Time 12 + 15:00, !- Time 13 + 0.38, !- Value Until Time 13 + 16:00, !- Time 14 + 0.293333333333333, !- Value Until Time 14 + 17:00, !- Time 15 + 0.613333333333333, !- Value Until Time 15 + 18:00, !- Time 16 + 1, !- Value Until Time 16 + 19:00, !- Time 17 + 0.78, !- Value Until Time 17 + 20:00, !- Time 18 + 0.4, !- Value Until Time 18 + 21:00, !- Time 19 + 0.233333333333333, !- Value Until Time 19 + 22:00, !- Time 20 + 0.166666666666667, !- Value Until Time 20 + 23:00, !- Time 21 + 0.106666666666667, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0733333333333333; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0421573989668794, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0240899422667882, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0421573989668794, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0662473412336676, !- Value Until Time 4 + 07:00, !- Time 5 + 0.150562139167426, !- Value Until Time 5 + 08:00, !- Time 6 + 0.252944393801276, !- Value Until Time 6 + 09:00, !- Time 7 + 0.277034336068064, !- Value Until Time 7 + 10:00, !- Time 8 + 0.289079307201459, !- Value Until Time 8 + 11:00, !- Time 9 + 0.252944393801276, !- Value Until Time 9 + 12:00, !- Time 10 + 0.301124278334853, !- Value Until Time 10 + 13:00, !- Time 11 + 0.343281677301732, !- Value Until Time 11 + 14:00, !- Time 12 + 0.277034336068064, !- Value Until Time 12 + 15:00, !- Time 13 + 0.343281677301732, !- Value Until Time 13 + 16:00, !- Time 14 + 0.26498936493467, !- Value Until Time 14 + 17:00, !- Time 15 + 0.554068672136129, !- Value Until Time 15 + 18:00, !- Time 16 + 0.903372835004558, !- Value Until Time 16 + 19:00, !- Time 17 + 0.704630811303555, !- Value Until Time 17 + 20:00, !- Time 18 + 0.361349134001823, !- Value Until Time 18 + 21:00, !- Time 19 + 0.210786994834397, !- Value Until Time 19 + 22:00, !- Time 20 + 0.150562139167426, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0963597690671529, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0662473412336676; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0419872379216044, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0239927073837739, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0419872379216044, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0659799453053783, !- Value Until Time 4 + 07:00, !- Time 5 + 0.149954421148587, !- Value Until Time 5 + 08:00, !- Time 6 + 0.251923427529626, !- Value Until Time 6 + 09:00, !- Time 7 + 0.2759161349134, !- Value Until Time 7 + 10:00, !- Time 8 + 0.287912488605287, !- Value Until Time 8 + 11:00, !- Time 9 + 0.251923427529626, !- Value Until Time 9 + 12:00, !- Time 10 + 0.299908842297174, !- Value Until Time 10 + 13:00, !- Time 11 + 0.341896080218778, !- Value Until Time 11 + 14:00, !- Time 12 + 0.2759161349134, !- Value Until Time 12 + 15:00, !- Time 13 + 0.341896080218778, !- Value Until Time 13 + 16:00, !- Time 14 + 0.263919781221513, !- Value Until Time 14 + 17:00, !- Time 15 + 0.5518322698268, !- Value Until Time 15 + 18:00, !- Time 16 + 0.899726526891522, !- Value Until Time 16 + 19:00, !- Time 17 + 0.701786690975387, !- Value Until Time 17 + 20:00, !- Time 18 + 0.359890610756609, !- Value Until Time 18 + 21:00, !- Time 19 + 0.209936189608022, !- Value Until Time 19 + 22:00, !- Time 20 + 0.149954421148587, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0959708295350957, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0659799453053783; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0421573989668794, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0240899422667882, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0421573989668794, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0662473412336676, !- Value Until Time 4 + 07:00, !- Time 5 + 0.150562139167426, !- Value Until Time 5 + 08:00, !- Time 6 + 0.252944393801276, !- Value Until Time 6 + 09:00, !- Time 7 + 0.277034336068064, !- Value Until Time 7 + 10:00, !- Time 8 + 0.289079307201459, !- Value Until Time 8 + 11:00, !- Time 9 + 0.252944393801276, !- Value Until Time 9 + 12:00, !- Time 10 + 0.301124278334853, !- Value Until Time 10 + 13:00, !- Time 11 + 0.343281677301732, !- Value Until Time 11 + 14:00, !- Time 12 + 0.277034336068064, !- Value Until Time 12 + 15:00, !- Time 13 + 0.343281677301732, !- Value Until Time 13 + 16:00, !- Time 14 + 0.26498936493467, !- Value Until Time 14 + 17:00, !- Time 15 + 0.554068672136129, !- Value Until Time 15 + 18:00, !- Time 16 + 0.903372835004558, !- Value Until Time 16 + 19:00, !- Time 17 + 0.704630811303555, !- Value Until Time 17 + 20:00, !- Time 18 + 0.361349134001823, !- Value Until Time 18 + 21:00, !- Time 19 + 0.210786994834397, !- Value Until Time 19 + 22:00, !- Time 20 + 0.150562139167426, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0963597690671529, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0662473412336676; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0378608325736858, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0216347614706776, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0378608325736858, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0594955940443634, !- Value Until Time 4 + 07:00, !- Time 5 + 0.135217259191735, !- Value Until Time 5 + 08:00, !- Time 6 + 0.227164995442115, !- Value Until Time 6 + 09:00, !- Time 7 + 0.248799756912792, !- Value Until Time 7 + 10:00, !- Time 8 + 0.259617137648131, !- Value Until Time 8 + 11:00, !- Time 9 + 0.227164995442115, !- Value Until Time 9 + 12:00, !- Time 10 + 0.27043451838347, !- Value Until Time 10 + 13:00, !- Time 11 + 0.308295350957156, !- Value Until Time 11 + 14:00, !- Time 12 + 0.248799756912792, !- Value Until Time 12 + 15:00, !- Time 13 + 0.308295350957156, !- Value Until Time 13 + 16:00, !- Time 14 + 0.237982376177454, !- Value Until Time 14 + 17:00, !- Time 15 + 0.497599513825585, !- Value Until Time 15 + 18:00, !- Time 16 + 0.81130355515041, !- Value Until Time 16 + 19:00, !- Time 17 + 0.63281677301732, !- Value Until Time 17 + 20:00, !- Time 18 + 0.324521422060164, !- Value Until Time 18 + 21:00, !- Time 19 + 0.189304162868429, !- Value Until Time 19 + 22:00, !- Time 20 + 0.135217259191735, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0865390458827104, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0594955940443634; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0381160741415983, !- Value Until Time 1 + 04:00, !- Time 2 + 0.021780613795199, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0381160741415983, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0598966879367973, !- Value Until Time 4 + 07:00, !- Time 5 + 0.136128836219994, !- Value Until Time 5 + 08:00, !- Time 6 + 0.22869644484959, !- Value Until Time 6 + 09:00, !- Time 7 + 0.250477058644789, !- Value Until Time 7 + 10:00, !- Time 8 + 0.261367365542388, !- Value Until Time 8 + 11:00, !- Time 9 + 0.22869644484959, !- Value Until Time 9 + 12:00, !- Time 10 + 0.272257672439988, !- Value Until Time 10 + 13:00, !- Time 11 + 0.310373746581586, !- Value Until Time 11 + 14:00, !- Time 12 + 0.250477058644789, !- Value Until Time 12 + 15:00, !- Time 13 + 0.310373746581586, !- Value Until Time 13 + 16:00, !- Time 14 + 0.239586751747189, !- Value Until Time 14 + 17:00, !- Time 15 + 0.500954117289578, !- Value Until Time 15 + 18:00, !- Time 16 + 0.816773017319964, !- Value Until Time 16 + 19:00, !- Time 17 + 0.637082953509572, !- Value Until Time 17 + 20:00, !- Time 18 + 0.326709206927985, !- Value Until Time 18 + 21:00, !- Time 19 + 0.190580370707991, !- Value Until Time 19 + 22:00, !- Time 20 + 0.136128836219994, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0871224551807961, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0598966879367973; !- Value Until Time 22 + + Schedule:Day:Interval, + cooking range allday9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.0378608325736858, !- Value Until Time 1 + 04:00, !- Time 2 + 0.0216347614706776, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0378608325736858, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0594955940443634, !- Value Until Time 4 + 07:00, !- Time 5 + 0.135217259191735, !- Value Until Time 5 + 08:00, !- Time 6 + 0.227164995442115, !- Value Until Time 6 + 09:00, !- Time 7 + 0.248799756912792, !- Value Until Time 7 + 10:00, !- Time 8 + 0.259617137648131, !- Value Until Time 8 + 11:00, !- Time 9 + 0.227164995442115, !- Value Until Time 9 + 12:00, !- Time 10 + 0.27043451838347, !- Value Until Time 10 + 13:00, !- Time 11 + 0.308295350957156, !- Value Until Time 11 + 14:00, !- Time 12 + 0.248799756912792, !- Value Until Time 12 + 15:00, !- Time 13 + 0.308295350957156, !- Value Until Time 13 + 16:00, !- Time 14 + 0.237982376177454, !- Value Until Time 14 + 17:00, !- Time 15 + 0.497599513825585, !- Value Until Time 15 + 18:00, !- Time 16 + 0.81130355515041, !- Value Until Time 16 + 19:00, !- Time 17 + 0.63281677301732, !- Value Until Time 17 + 20:00, !- Time 18 + 0.324521422060164, !- Value Until Time 18 + 21:00, !- Time 19 + 0.189304162868429, !- Value Until Time 19 + 22:00, !- Time 20 + 0.135217259191735, !- Value Until Time 20 + 23:00, !- Time 21 + 0.0865390458827104, !- Value Until Time 21 + 24:00, !- Time 22 + 0.0594955940443634; !- Value Until Time 22 + + Schedule:Day:Interval, + cooling season schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + cooling season schedule allday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + cooling season schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + dhw fixtures schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 06:00, !- Time 1 + 0, !- Value Until Time 1 + 07:00, !- Time 2 + 0.00061978105, !- Value Until Time 2 + 08:00, !- Time 3 + 0.00153186666666667, !- Value Until Time 3 + 11:00, !- Time 4 + 0, !- Value Until Time 4 + 12:00, !- Time 5 + 0.0008681315, !- Value Until Time 5 + 13:00, !- Time 6 + 0.00548572655, !- Value Until Time 6 + 14:00, !- Time 7 + 0, !- Value Until Time 7 + 15:00, !- Time 8 + 0.00323736685, !- Value Until Time 8 + 16:00, !- Time 9 + 0.00202197551666667, !- Value Until Time 9 + 17:00, !- Time 10 + 0, !- Value Until Time 10 + 18:00, !- Time 11 + 0.00710963961666667, !- Value Until Time 11 + 19:00, !- Time 12 + 0.0369946104166667, !- Value Until Time 12 + 20:00, !- Time 13 + 0.000608787116666667, !- Value Until Time 13 + 21:00, !- Time 14 + 0, !- Value Until Time 14 + 22:00, !- Time 15 + 0.00310989918333333, !- Value Until Time 15 + 23:00, !- Time 16 + 0.000835156916666666, !- Value Until Time 16 + 24:00, !- Time 17 + 0; !- Value Until Time 17 + + Schedule:Day:Interval, + dhw fixtures schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 07:00, !- Time 1 + 0, !- Value Until Time 1 + 08:00, !- Time 2 + 0.00364615951666667, !- Value Until Time 2 + 09:00, !- Time 3 + 0, !- Value Until Time 3 + 10:00, !- Time 4 + 0.00803737038333333, !- Value Until Time 4 + 11:00, !- Time 5 + 0.00536704831666667, !- Value Until Time 5 + 12:00, !- Time 6 + 0, !- Value Until Time 6 + 13:00, !- Time 7 + 0.00204835808333333, !- Value Until Time 7 + 15:00, !- Time 8 + 0, !- Value Until Time 8 + 16:00, !- Time 9 + 0.0032879202, !- Value Until Time 9 + 17:00, !- Time 10 + 0, !- Value Until Time 10 + 18:00, !- Time 11 + 0.00238461675, !- Value Until Time 11 + 19:00, !- Time 12 + 0, !- Value Until Time 12 + 20:00, !- Time 13 + 0.000531872833333333, !- Value Until Time 13 + 23:00, !- Time 14 + 0, !- Value Until Time 14 + 24:00, !- Time 15 + 0.0223247701666667; !- Value Until Time 15 + + Schedule:Day:Interval, + dhw fixtures schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.00015164565, !- Value Until Time 1 + 03:00, !- Time 2 + 0, !- Value Until Time 2 + 04:00, !- Time 3 + 0.00138241838333333, !- Value Until Time 3 + 09:00, !- Time 4 + 0, !- Value Until Time 4 + 10:00, !- Time 5 + 0.0574311026333333, !- Value Until Time 5 + 11:00, !- Time 6 + 0.0416817428, !- Value Until Time 6 + 12:00, !- Time 7 + 0.00250110486666667, !- Value Until Time 7 + 13:00, !- Time 8 + 0, !- Value Until Time 8 + 14:00, !- Time 9 + 0.000281317833333333, !- Value Until Time 9 + 15:00, !- Time 10 + 7.69215e-05, !- Value Until Time 10 + 16:00, !- Time 11 + 0, !- Value Until Time 11 + 17:00, !- Time 12 + 0.000189014916666667, !- Value Until Time 12 + 18:00, !- Time 13 + 0.00127033213333333, !- Value Until Time 13 + 19:00, !- Time 14 + 0.0049714397, !- Value Until Time 14 + 22:00, !- Time 15 + 0, !- Value Until Time 15 + 23:00, !- Time 16 + 0.00190769195, !- Value Until Time 16 + 24:00, !- Time 17 + 0.00246154545; !- Value Until Time 17 + + Schedule:Day:Interval, + dhw fixtures schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0025604476, !- Value Until Time 2 + 04:00, !- Time 3 + 0, !- Value Until Time 3 + 05:00, !- Time 4 + 0.00265055316666667, !- Value Until Time 4 + 07:00, !- Time 5 + 0, !- Value Until Time 5 + 08:00, !- Time 6 + 0.00376923966666667, !- Value Until Time 6 + 09:00, !- Time 7 + 0.0487754419666667, !- Value Until Time 7 + 10:00, !- Time 8 + 0.0100132088666667, !- Value Until Time 8 + 11:00, !- Time 9 + 0.000153842983333333, !- Value Until Time 9 + 12:00, !- Time 10 + 0.0229934534666667, !- Value Until Time 10 + 14:00, !- Time 11 + 0, !- Value Until Time 11 + 15:00, !- Time 12 + 0.00345495445, !- Value Until Time 12 + 16:00, !- Time 13 + 0.00251648628333333, !- Value Until Time 13 + 17:00, !- Time 14 + 0, !- Value Until Time 14 + 18:00, !- Time 15 + 0.00269451448333333, !- Value Until Time 15 + 19:00, !- Time 16 + 0.000290107216666667, !- Value Until Time 16 + 20:00, !- Time 17 + 0.010905504, !- Value Until Time 17 + 22:00, !- Time 18 + 0, !- Value Until Time 18 + 23:00, !- Time 19 + 0.00556265526666667, !- Value Until Time 19 + 24:00, !- Time 20 + 0; !- Value Until Time 20 + + Schedule:Day:Interval, + dhw fixtures schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.00110110055, !- Value Until Time 1 + 06:00, !- Time 2 + 0, !- Value Until Time 2 + 07:00, !- Time 3 + 0.040076999, !- Value Until Time 3 + 08:00, !- Time 4 + 0.000536267516666667, !- Value Until Time 4 + 10:00, !- Time 5 + 0, !- Value Until Time 5 + 11:00, !- Time 6 + 0.1118010915, !- Value Until Time 6 + 12:00, !- Time 7 + 0, !- Value Until Time 7 + 13:00, !- Time 8 + 0.00872749528333333, !- Value Until Time 8 + 14:00, !- Time 9 + 0.00289890361666667, !- Value Until Time 9 + 15:00, !- Time 10 + 0.000606596983333333, !- Value Until Time 10 + 17:00, !- Time 11 + 0, !- Value Until Time 11 + 18:00, !- Time 12 + 0.00801538973333333, !- Value Until Time 12 + 19:00, !- Time 13 + 0.0020637395, !- Value Until Time 13 + 20:00, !- Time 14 + 0.00069230785, !- Value Until Time 14 + 21:00, !- Time 15 + 0.00234725468333333, !- Value Until Time 15 + 22:00, !- Time 16 + 0, !- Value Until Time 16 + 23:00, !- Time 17 + 0.00240879476666667, !- Value Until Time 17 + 24:00, !- Time 18 + 0; !- Value Until Time 18 + + Schedule:Day:Interval, + dhw fixtures schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0.01126155315, !- Value Until Time 2 + 05:00, !- Time 3 + 0, !- Value Until Time 3 + 06:00, !- Time 4 + 0.0759504634, !- Value Until Time 4 + 07:00, !- Time 5 + 0.000912092816666667, !- Value Until Time 5 + 08:00, !- Time 6 + 0, !- Value Until Time 6 + 09:00, !- Time 7 + 0.000373627933333333, !- Value Until Time 7 + 10:00, !- Time 8 + 0.00957804803333333, !- Value Until Time 8 + 12:00, !- Time 9 + 0, !- Value Until Time 9 + 13:00, !- Time 10 + 0.0025846256, !- Value Until Time 10 + 14:00, !- Time 11 + 0.00929671581666667, !- Value Until Time 11 + 15:00, !- Time 12 + 0, !- Value Until Time 12 + 16:00, !- Time 13 + 0.00361759403333333, !- Value Until Time 13 + 17:00, !- Time 14 + 0.000263739066666667, !- Value Until Time 14 + 18:00, !- Time 15 + 0.0087560536, !- Value Until Time 15 + 19:00, !- Time 16 + 0.0223297038666667, !- Value Until Time 16 + 20:00, !- Time 17 + 0.00553627991666667, !- Value Until Time 17 + 21:00, !- Time 18 + 0, !- Value Until Time 18 + 22:00, !- Time 19 + 0.0526913189333333, !- Value Until Time 19 + 23:00, !- Time 20 + 0.00453627166666667, !- Value Until Time 20 + 24:00, !- Time 21 + 0.000353844633333333; !- Value Until Time 21 + + Schedule:Day:Interval, + dhw fixtures schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 03:00, !- Time 1 + 0, !- Value Until Time 1 + 04:00, !- Time 2 + 0.01417311525, !- Value Until Time 2 + 05:00, !- Time 3 + 0.0526825224, !- Value Until Time 3 + 06:00, !- Time 4 + 7.25196e-05, !- Value Until Time 4 + 07:00, !- Time 5 + 0.02433412225, !- Value Until Time 5 + 08:00, !- Time 6 + 0.00233187325, !- Value Until Time 6 + 09:00, !- Time 7 + 0, !- Value Until Time 7 + 10:00, !- Time 8 + 0.0173202799166667, !- Value Until Time 8 + 11:00, !- Time 9 + 0, !- Value Until Time 9 + 12:00, !- Time 10 + 0.0006945052, !- Value Until Time 10 + 13:00, !- Time 11 + 0.00284396278333333, !- Value Until Time 11 + 16:00, !- Time 12 + 0, !- Value Until Time 12 + 17:00, !- Time 13 + 0.0240198298333333, !- Value Until Time 13 + 18:00, !- Time 14 + 0.0134747553666667, !- Value Until Time 14 + 19:00, !- Time 15 + 0.0008241702, !- Value Until Time 15 + 21:00, !- Time 16 + 0, !- Value Until Time 16 + 22:00, !- Time 17 + 0.00502198585, !- Value Until Time 17 + 23:00, !- Time 18 + 0.0001978043, !- Value Until Time 18 + 24:00, !- Time 19 + 0.0034571446; !- Value Until Time 19 + + Schedule:Day:Interval, + dishwasher schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + dishwasher schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + dishwasher schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 19:00, !- Time 1 + 0, !- Value Until Time 1 + 20:00, !- Time 2 + 0.0564951166666667, !- Value Until Time 2 + 24:00, !- Time 3 + 0; !- Value Until Time 3 + + Schedule:Day:Interval, + dishwasher schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + dishwasher schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + dishwasher schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 11:00, !- Time 1 + 0, !- Value Until Time 1 + 12:00, !- Time 2 + 0.0142977, !- Value Until Time 2 + 13:00, !- Time 3 + 0.0401763333333333, !- Value Until Time 3 + 20:00, !- Time 4 + 0, !- Value Until Time 4 + 21:00, !- Time 5 + 0.0223281666666667, !- Value Until Time 5 + 22:00, !- Time 6 + 0.04944225, !- Value Until Time 6 + 24:00, !- Time 7 + 0; !- Value Until Time 7 + + Schedule:Day:Interval, + dishwasher schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + exterior lighting schedule weekday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.434958518013411, !- Value Until Time 1 + 06:00, !- Time 2 + 0.349857938402091, !- Value Until Time 2 + 07:00, !- Time 3 + 0.330946698488465, !- Value Until Time 3 + 08:00, !- Time 4 + 0.321491078531651, !- Value Until Time 4 + 09:00, !- Time 5 + 0.312035458574838, !- Value Until Time 5 + 10:00, !- Time 6 + 0.264757358790772, !- Value Until Time 6 + 11:00, !- Time 7 + 0.208023639049892, !- Value Until Time 7 + 12:00, !- Time 8 + 0.141834299352199, !- Value Until Time 8 + 13:00, !- Time 9 + 0.113467439481759, !- Value Until Time 9 + 15:00, !- Time 10 + 0.104011819524946, !- Value Until Time 10 + 16:00, !- Time 11 + 0.113467439481759, !- Value Until Time 11 + 17:00, !- Time 12 + 0.179656779179452, !- Value Until Time 12 + 18:00, !- Time 13 + 0.349857938402091, !- Value Until Time 13 + 19:00, !- Time 14 + 0.463325377883851, !- Value Until Time 14 + 20:00, !- Time 15 + 0.614615297192863, !- Value Until Time 15 + 21:00, !- Time 16 + 0.860461416070008, !- Value Until Time 16 + 22:00, !- Time 17 + 0.992840095465394, !- Value Until Time 17 + 23:00, !- Time 18 + 0.860461416070008, !- Value Until Time 18 + 24:00, !- Time 19 + 0.595704057279236; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.345039209001023, !- Value Until Time 1 + 06:00, !- Time 2 + 0.277531537674736, !- Value Until Time 2 + 07:00, !- Time 3 + 0.262529832935561, !- Value Until Time 3 + 08:00, !- Time 4 + 0.255028980565973, !- Value Until Time 4 + 09:00, !- Time 5 + 0.247528128196386, !- Value Until Time 5 + 10:00, !- Time 6 + 0.210023866348449, !- Value Until Time 6 + 11:00, !- Time 7 + 0.165018752130924, !- Value Until Time 7 + 12:00, !- Time 8 + 0.112512785543812, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0900102284350494, !- Value Until Time 9 + 15:00, !- Time 10 + 0.082509376065462, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0900102284350494, !- Value Until Time 11 + 17:00, !- Time 12 + 0.142516195022162, !- Value Until Time 12 + 18:00, !- Time 13 + 0.277531537674736, !- Value Until Time 13 + 19:00, !- Time 14 + 0.367541766109785, !- Value Until Time 14 + 20:00, !- Time 15 + 0.487555404023184, !- Value Until Time 15 + 21:00, !- Time 16 + 0.682577565632458, !- Value Until Time 16 + 22:00, !- Time 17 + 0.787589498806682, !- Value Until Time 17 + 23:00, !- Time 18 + 0.682577565632458, !- Value Until Time 18 + 24:00, !- Time 19 + 0.47255369928401; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.343993635640414, !- Value Until Time 1 + 06:00, !- Time 2 + 0.276690533015115, !- Value Until Time 2 + 07:00, !- Time 3 + 0.261734287987271, !- Value Until Time 3 + 08:00, !- Time 4 + 0.254256165473349, !- Value Until Time 4 + 09:00, !- Time 5 + 0.246778042959427, !- Value Until Time 5 + 10:00, !- Time 6 + 0.209387430389817, !- Value Until Time 6 + 11:00, !- Time 7 + 0.164518695306285, !- Value Until Time 7 + 12:00, !- Time 8 + 0.112171837708831, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0897374701670644, !- Value Until Time 9 + 15:00, !- Time 10 + 0.0822593476531424, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0897374701670644, !- Value Until Time 11 + 17:00, !- Time 12 + 0.142084327764519, !- Value Until Time 12 + 18:00, !- Time 13 + 0.276690533015115, !- Value Until Time 13 + 19:00, !- Time 14 + 0.36642800318218, !- Value Until Time 14 + 20:00, !- Time 15 + 0.486077963404932, !- Value Until Time 15 + 21:00, !- Time 16 + 0.680509148766905, !- Value Until Time 16 + 22:00, !- Time 17 + 0.785202863961814, !- Value Until Time 17 + 23:00, !- Time 18 + 0.680509148766905, !- Value Until Time 18 + 24:00, !- Time 19 + 0.471121718377088; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.434958518013411, !- Value Until Time 1 + 06:00, !- Time 2 + 0.349857938402091, !- Value Until Time 2 + 07:00, !- Time 3 + 0.330946698488465, !- Value Until Time 3 + 08:00, !- Time 4 + 0.321491078531651, !- Value Until Time 4 + 09:00, !- Time 5 + 0.312035458574838, !- Value Until Time 5 + 10:00, !- Time 6 + 0.264757358790772, !- Value Until Time 6 + 11:00, !- Time 7 + 0.208023639049892, !- Value Until Time 7 + 12:00, !- Time 8 + 0.141834299352199, !- Value Until Time 8 + 13:00, !- Time 9 + 0.113467439481759, !- Value Until Time 9 + 15:00, !- Time 10 + 0.104011819524946, !- Value Until Time 10 + 16:00, !- Time 11 + 0.113467439481759, !- Value Until Time 11 + 17:00, !- Time 12 + 0.179656779179452, !- Value Until Time 12 + 18:00, !- Time 13 + 0.349857938402091, !- Value Until Time 13 + 19:00, !- Time 14 + 0.463325377883851, !- Value Until Time 14 + 20:00, !- Time 15 + 0.614615297192863, !- Value Until Time 15 + 21:00, !- Time 16 + 0.860461416070008, !- Value Until Time 16 + 22:00, !- Time 17 + 0.992840095465394, !- Value Until Time 17 + 23:00, !- Time 18 + 0.860461416070008, !- Value Until Time 18 + 24:00, !- Time 19 + 0.595704057279236; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.438095238095238, !- Value Until Time 1 + 06:00, !- Time 2 + 0.352380952380952, !- Value Until Time 2 + 07:00, !- Time 3 + 0.333333333333333, !- Value Until Time 3 + 08:00, !- Time 4 + 0.323809523809524, !- Value Until Time 4 + 09:00, !- Time 5 + 0.314285714285714, !- Value Until Time 5 + 10:00, !- Time 6 + 0.266666666666667, !- Value Until Time 6 + 11:00, !- Time 7 + 0.20952380952381, !- Value Until Time 7 + 12:00, !- Time 8 + 0.142857142857143, !- Value Until Time 8 + 13:00, !- Time 9 + 0.114285714285714, !- Value Until Time 9 + 15:00, !- Time 10 + 0.104761904761905, !- Value Until Time 10 + 16:00, !- Time 11 + 0.114285714285714, !- Value Until Time 11 + 17:00, !- Time 12 + 0.180952380952381, !- Value Until Time 12 + 18:00, !- Time 13 + 0.352380952380952, !- Value Until Time 13 + 19:00, !- Time 14 + 0.466666666666667, !- Value Until Time 14 + 20:00, !- Time 15 + 0.619047619047619, !- Value Until Time 15 + 21:00, !- Time 16 + 0.866666666666667, !- Value Until Time 16 + 22:00, !- Time 17 + 1, !- Value Until Time 17 + 23:00, !- Time 18 + 0.866666666666667, !- Value Until Time 18 + 24:00, !- Time 19 + 0.6; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.346084782361632, !- Value Until Time 1 + 06:00, !- Time 2 + 0.278372542334356, !- Value Until Time 2 + 07:00, !- Time 3 + 0.26332537788385, !- Value Until Time 3 + 08:00, !- Time 4 + 0.255801795658598, !- Value Until Time 4 + 09:00, !- Time 5 + 0.248278213433345, !- Value Until Time 5 + 10:00, !- Time 6 + 0.21066030230708, !- Value Until Time 6 + 11:00, !- Time 7 + 0.165518808955563, !- Value Until Time 7 + 12:00, !- Time 8 + 0.112853733378793, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0902829867030344, !- Value Until Time 9 + 15:00, !- Time 10 + 0.0827594044777816, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0902829867030344, !- Value Until Time 11 + 17:00, !- Time 12 + 0.142948062279805, !- Value Until Time 12 + 18:00, !- Time 13 + 0.278372542334356, !- Value Until Time 13 + 19:00, !- Time 14 + 0.368655529037391, !- Value Until Time 14 + 20:00, !- Time 15 + 0.489032844641437, !- Value Until Time 15 + 21:00, !- Time 16 + 0.684645982498011, !- Value Until Time 16 + 22:00, !- Time 17 + 0.789976133651551, !- Value Until Time 17 + 23:00, !- Time 18 + 0.684645982498011, !- Value Until Time 18 + 24:00, !- Time 19 + 0.473985680190931; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.344690684547486, !- Value Until Time 1 + 06:00, !- Time 2 + 0.277251202788196, !- Value Until Time 2 + 07:00, !- Time 3 + 0.262264651286131, !- Value Until Time 3 + 08:00, !- Time 4 + 0.254771375535099, !- Value Until Time 4 + 09:00, !- Time 5 + 0.247278099784066, !- Value Until Time 5 + 10:00, !- Time 6 + 0.209811721028905, !- Value Until Time 6 + 11:00, !- Time 7 + 0.164852066522711, !- Value Until Time 7 + 12:00, !- Time 8 + 0.112399136265485, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0899193090123878, !- Value Until Time 9 + 15:00, !- Time 10 + 0.0824260332613555, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0899193090123878, !- Value Until Time 11 + 17:00, !- Time 12 + 0.142372239269614, !- Value Until Time 12 + 18:00, !- Time 13 + 0.277251202788196, !- Value Until Time 13 + 19:00, !- Time 14 + 0.367170511800583, !- Value Until Time 14 + 20:00, !- Time 15 + 0.4870629238171, !- Value Until Time 15 + 21:00, !- Time 16 + 0.681888093343941, !- Value Until Time 16 + 22:00, !- Time 17 + 0.786793953858393, !- Value Until Time 17 + 23:00, !- Time 18 + 0.681888093343941, !- Value Until Time 18 + 24:00, !- Time 19 + 0.472076372315036; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.346084782361632, !- Value Until Time 1 + 06:00, !- Time 2 + 0.278372542334356, !- Value Until Time 2 + 07:00, !- Time 3 + 0.26332537788385, !- Value Until Time 3 + 08:00, !- Time 4 + 0.255801795658598, !- Value Until Time 4 + 09:00, !- Time 5 + 0.248278213433345, !- Value Until Time 5 + 10:00, !- Time 6 + 0.21066030230708, !- Value Until Time 6 + 11:00, !- Time 7 + 0.165518808955563, !- Value Until Time 7 + 12:00, !- Time 8 + 0.112853733378793, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0902829867030344, !- Value Until Time 9 + 15:00, !- Time 10 + 0.0827594044777816, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0902829867030344, !- Value Until Time 11 + 17:00, !- Time 12 + 0.142948062279805, !- Value Until Time 12 + 18:00, !- Time 13 + 0.278372542334356, !- Value Until Time 13 + 19:00, !- Time 14 + 0.368655529037391, !- Value Until Time 14 + 20:00, !- Time 15 + 0.489032844641437, !- Value Until Time 15 + 21:00, !- Time 16 + 0.684645982498011, !- Value Until Time 16 + 22:00, !- Time 17 + 0.789976133651551, !- Value Until Time 17 + 23:00, !- Time 18 + 0.684645982498011, !- Value Until Time 18 + 24:00, !- Time 19 + 0.473985680190931; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.288229723074592, !- Value Until Time 1 + 06:00, !- Time 2 + 0.231836951168693, !- Value Until Time 2 + 07:00, !- Time 3 + 0.219305224078494, !- Value Until Time 3 + 08:00, !- Time 4 + 0.213039360533394, !- Value Until Time 4 + 09:00, !- Time 5 + 0.206773496988294, !- Value Until Time 5 + 10:00, !- Time 6 + 0.175444179262795, !- Value Until Time 6 + 11:00, !- Time 7 + 0.137848997992196, !- Value Until Time 7 + 12:00, !- Time 8 + 0.0939879531764973, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0751903625411979, !- Value Until Time 9 + 15:00, !- Time 10 + 0.068924498996098, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0751903625411979, !- Value Until Time 11 + 17:00, !- Time 12 + 0.119051407356897, !- Value Until Time 12 + 18:00, !- Time 13 + 0.231836951168693, !- Value Until Time 13 + 19:00, !- Time 14 + 0.307027313709891, !- Value Until Time 14 + 20:00, !- Time 15 + 0.407281130431488, !- Value Until Time 15 + 21:00, !- Time 16 + 0.570193582604084, !- Value Until Time 16 + 22:00, !- Time 17 + 0.657915672235481, !- Value Until Time 17 + 23:00, !- Time 18 + 0.570193582604084, !- Value Until Time 18 + 24:00, !- Time 19 + 0.394749403341289; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.286138576353373, !- Value Until Time 1 + 06:00, !- Time 2 + 0.230154941849453, !- Value Until Time 2 + 07:00, !- Time 3 + 0.217714134181915, !- Value Until Time 3 + 08:00, !- Time 4 + 0.211493730348146, !- Value Until Time 4 + 09:00, !- Time 5 + 0.205273326514377, !- Value Until Time 5 + 10:00, !- Time 6 + 0.174171307345532, !- Value Until Time 6 + 11:00, !- Time 7 + 0.136848884342918, !- Value Until Time 7 + 12:00, !- Time 8 + 0.0933060575065348, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0746448460052279, !- Value Until Time 9 + 15:00, !- Time 10 + 0.0684244421714589, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0746448460052279, !- Value Until Time 11 + 17:00, !- Time 12 + 0.118187672841611, !- Value Until Time 12 + 18:00, !- Time 13 + 0.230154941849453, !- Value Until Time 13 + 19:00, !- Time 14 + 0.30479978785468, !- Value Until Time 14 + 20:00, !- Time 15 + 0.404326249194984, !- Value Until Time 15 + 21:00, !- Time 16 + 0.566056748872978, !- Value Until Time 16 + 22:00, !- Time 17 + 0.653142402545744, !- Value Until Time 17 + 23:00, !- Time 18 + 0.566056748872978, !- Value Until Time 18 + 24:00, !- Time 19 + 0.391885441527446; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekday9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 05:00, !- Time 1 + 0.288229723074592, !- Value Until Time 1 + 06:00, !- Time 2 + 0.231836951168693, !- Value Until Time 2 + 07:00, !- Time 3 + 0.219305224078494, !- Value Until Time 3 + 08:00, !- Time 4 + 0.213039360533394, !- Value Until Time 4 + 09:00, !- Time 5 + 0.206773496988294, !- Value Until Time 5 + 10:00, !- Time 6 + 0.175444179262795, !- Value Until Time 6 + 11:00, !- Time 7 + 0.137848997992196, !- Value Until Time 7 + 12:00, !- Time 8 + 0.0939879531764973, !- Value Until Time 8 + 13:00, !- Time 9 + 0.0751903625411979, !- Value Until Time 9 + 15:00, !- Time 10 + 0.068924498996098, !- Value Until Time 10 + 16:00, !- Time 11 + 0.0751903625411979, !- Value Until Time 11 + 17:00, !- Time 12 + 0.119051407356897, !- Value Until Time 12 + 18:00, !- Time 13 + 0.231836951168693, !- Value Until Time 13 + 19:00, !- Time 14 + 0.307027313709891, !- Value Until Time 14 + 20:00, !- Time 15 + 0.407281130431488, !- Value Until Time 15 + 21:00, !- Time 16 + 0.570193582604084, !- Value Until Time 16 + 22:00, !- Time 17 + 0.657915672235481, !- Value Until Time 17 + 23:00, !- Time 18 + 0.570193582604084, !- Value Until Time 18 + 24:00, !- Time 19 + 0.394749403341289; !- Value Until Time 19 + + Schedule:Day:Interval, + exterior lighting schedule weekend1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.434958518013411, !- Value Until Time 1 + 04:00, !- Time 2 + 0.425502898056597, !- Value Until Time 2 + 05:00, !- Time 3 + 0.434958518013411, !- Value Until Time 3 + 06:00, !- Time 4 + 0.425502898056597, !- Value Until Time 4 + 07:00, !- Time 5 + 0.416047278099784, !- Value Until Time 5 + 08:00, !- Time 6 + 0.387680418229344, !- Value Until Time 6 + 09:00, !- Time 7 + 0.340402318445278, !- Value Until Time 7 + 10:00, !- Time 8 + 0.283668598704398, !- Value Until Time 8 + 11:00, !- Time 9 + 0.226934878963519, !- Value Until Time 9 + 12:00, !- Time 10 + 0.151289919309012, !- Value Until Time 10 + 13:00, !- Time 11 + 0.113467439481759, !- Value Until Time 11 + 15:00, !- Time 12 + 0.104011819524946, !- Value Until Time 12 + 16:00, !- Time 13 + 0.113467439481759, !- Value Until Time 13 + 17:00, !- Time 14 + 0.179656779179452, !- Value Until Time 14 + 18:00, !- Time 15 + 0.359313558358904, !- Value Until Time 15 + 19:00, !- Time 16 + 0.453869757927037, !- Value Until Time 16 + 20:00, !- Time 17 + 0.567337197408797, !- Value Until Time 17 + 21:00, !- Time 18 + 0.784816456415502, !- Value Until Time 18 + 22:00, !- Time 19 + 0.926650755767701, !- Value Until Time 19 + 23:00, !- Time 20 + 0.803727696329128, !- Value Until Time 20 + 24:00, !- Time 21 + 0.557881577451983; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.345039209001023, !- Value Until Time 1 + 04:00, !- Time 2 + 0.337538356631435, !- Value Until Time 2 + 05:00, !- Time 3 + 0.345039209001023, !- Value Until Time 3 + 06:00, !- Time 4 + 0.337538356631435, !- Value Until Time 4 + 07:00, !- Time 5 + 0.330037504261848, !- Value Until Time 5 + 08:00, !- Time 6 + 0.307534947153086, !- Value Until Time 6 + 09:00, !- Time 7 + 0.270030685305148, !- Value Until Time 7 + 10:00, !- Time 8 + 0.225025571087624, !- Value Until Time 8 + 11:00, !- Time 9 + 0.180020456870099, !- Value Until Time 9 + 12:00, !- Time 10 + 0.120013637913399, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0900102284350494, !- Value Until Time 11 + 15:00, !- Time 12 + 0.082509376065462, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0900102284350494, !- Value Until Time 13 + 17:00, !- Time 14 + 0.142516195022162, !- Value Until Time 14 + 18:00, !- Time 15 + 0.285032390044323, !- Value Until Time 15 + 19:00, !- Time 16 + 0.360040913740198, !- Value Until Time 16 + 20:00, !- Time 17 + 0.450051142175247, !- Value Until Time 17 + 21:00, !- Time 18 + 0.622570746675759, !- Value Until Time 18 + 22:00, !- Time 19 + 0.73508353221957, !- Value Until Time 19 + 23:00, !- Time 20 + 0.637572451414934, !- Value Until Time 20 + 24:00, !- Time 21 + 0.44255028980566; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.343993635640414, !- Value Until Time 1 + 04:00, !- Time 2 + 0.336515513126492, !- Value Until Time 2 + 05:00, !- Time 3 + 0.343993635640414, !- Value Until Time 3 + 06:00, !- Time 4 + 0.336515513126492, !- Value Until Time 4 + 07:00, !- Time 5 + 0.32903739061257, !- Value Until Time 5 + 08:00, !- Time 6 + 0.306603023070804, !- Value Until Time 6 + 09:00, !- Time 7 + 0.269212410501193, !- Value Until Time 7 + 10:00, !- Time 8 + 0.224343675417661, !- Value Until Time 8 + 11:00, !- Time 9 + 0.179474940334129, !- Value Until Time 9 + 12:00, !- Time 10 + 0.119649960222753, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0897374701670644, !- Value Until Time 11 + 15:00, !- Time 12 + 0.0822593476531424, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0897374701670644, !- Value Until Time 13 + 17:00, !- Time 14 + 0.142084327764519, !- Value Until Time 14 + 18:00, !- Time 15 + 0.284168655529037, !- Value Until Time 15 + 19:00, !- Time 16 + 0.358949880668258, !- Value Until Time 16 + 20:00, !- Time 17 + 0.448687350835322, !- Value Until Time 17 + 21:00, !- Time 18 + 0.620684168655529, !- Value Until Time 18 + 22:00, !- Time 19 + 0.73285600636436, !- Value Until Time 19 + 23:00, !- Time 20 + 0.635640413683373, !- Value Until Time 20 + 24:00, !- Time 21 + 0.4412092283214; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.434958518013411, !- Value Until Time 1 + 04:00, !- Time 2 + 0.425502898056597, !- Value Until Time 2 + 05:00, !- Time 3 + 0.434958518013411, !- Value Until Time 3 + 06:00, !- Time 4 + 0.425502898056597, !- Value Until Time 4 + 07:00, !- Time 5 + 0.416047278099784, !- Value Until Time 5 + 08:00, !- Time 6 + 0.387680418229344, !- Value Until Time 6 + 09:00, !- Time 7 + 0.340402318445278, !- Value Until Time 7 + 10:00, !- Time 8 + 0.283668598704398, !- Value Until Time 8 + 11:00, !- Time 9 + 0.226934878963519, !- Value Until Time 9 + 12:00, !- Time 10 + 0.151289919309012, !- Value Until Time 10 + 13:00, !- Time 11 + 0.113467439481759, !- Value Until Time 11 + 15:00, !- Time 12 + 0.104011819524946, !- Value Until Time 12 + 16:00, !- Time 13 + 0.113467439481759, !- Value Until Time 13 + 17:00, !- Time 14 + 0.179656779179452, !- Value Until Time 14 + 18:00, !- Time 15 + 0.359313558358904, !- Value Until Time 15 + 19:00, !- Time 16 + 0.453869757927037, !- Value Until Time 16 + 20:00, !- Time 17 + 0.567337197408797, !- Value Until Time 17 + 21:00, !- Time 18 + 0.784816456415502, !- Value Until Time 18 + 22:00, !- Time 19 + 0.926650755767701, !- Value Until Time 19 + 23:00, !- Time 20 + 0.803727696329128, !- Value Until Time 20 + 24:00, !- Time 21 + 0.557881577451983; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.438095238095238, !- Value Until Time 1 + 04:00, !- Time 2 + 0.428571428571429, !- Value Until Time 2 + 05:00, !- Time 3 + 0.438095238095238, !- Value Until Time 3 + 06:00, !- Time 4 + 0.428571428571429, !- Value Until Time 4 + 07:00, !- Time 5 + 0.419047619047619, !- Value Until Time 5 + 08:00, !- Time 6 + 0.390476190476191, !- Value Until Time 6 + 09:00, !- Time 7 + 0.342857142857143, !- Value Until Time 7 + 10:00, !- Time 8 + 0.285714285714286, !- Value Until Time 8 + 11:00, !- Time 9 + 0.228571428571429, !- Value Until Time 9 + 12:00, !- Time 10 + 0.152380952380952, !- Value Until Time 10 + 13:00, !- Time 11 + 0.114285714285714, !- Value Until Time 11 + 15:00, !- Time 12 + 0.104761904761905, !- Value Until Time 12 + 16:00, !- Time 13 + 0.114285714285714, !- Value Until Time 13 + 17:00, !- Time 14 + 0.180952380952381, !- Value Until Time 14 + 18:00, !- Time 15 + 0.361904761904762, !- Value Until Time 15 + 19:00, !- Time 16 + 0.457142857142857, !- Value Until Time 16 + 20:00, !- Time 17 + 0.571428571428571, !- Value Until Time 17 + 21:00, !- Time 18 + 0.790476190476191, !- Value Until Time 18 + 22:00, !- Time 19 + 0.933333333333333, !- Value Until Time 19 + 23:00, !- Time 20 + 0.80952380952381, !- Value Until Time 20 + 24:00, !- Time 21 + 0.561904761904762; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.346084782361632, !- Value Until Time 1 + 04:00, !- Time 2 + 0.338561200136379, !- Value Until Time 2 + 05:00, !- Time 3 + 0.346084782361632, !- Value Until Time 3 + 06:00, !- Time 4 + 0.338561200136379, !- Value Until Time 4 + 07:00, !- Time 5 + 0.331037617911126, !- Value Until Time 5 + 08:00, !- Time 6 + 0.308466871235368, !- Value Until Time 6 + 09:00, !- Time 7 + 0.270848960109103, !- Value Until Time 7 + 10:00, !- Time 8 + 0.225707466757586, !- Value Until Time 8 + 11:00, !- Time 9 + 0.180565973406069, !- Value Until Time 9 + 12:00, !- Time 10 + 0.120377315604046, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0902829867030344, !- Value Until Time 11 + 15:00, !- Time 12 + 0.0827594044777816, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0902829867030344, !- Value Until Time 13 + 17:00, !- Time 14 + 0.142948062279805, !- Value Until Time 14 + 18:00, !- Time 15 + 0.285896124559609, !- Value Until Time 15 + 19:00, !- Time 16 + 0.361131946812138, !- Value Until Time 16 + 20:00, !- Time 17 + 0.451414933515172, !- Value Until Time 17 + 21:00, !- Time 18 + 0.624457324695988, !- Value Until Time 18 + 22:00, !- Time 19 + 0.737311058074781, !- Value Until Time 19 + 23:00, !- Time 20 + 0.639504489146494, !- Value Until Time 20 + 24:00, !- Time 21 + 0.443891351289919; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.344690684547486, !- Value Until Time 1 + 04:00, !- Time 2 + 0.337197408796454, !- Value Until Time 2 + 05:00, !- Time 3 + 0.344690684547486, !- Value Until Time 3 + 06:00, !- Time 4 + 0.337197408796454, !- Value Until Time 4 + 07:00, !- Time 5 + 0.329704133045422, !- Value Until Time 5 + 08:00, !- Time 6 + 0.307224305792325, !- Value Until Time 6 + 09:00, !- Time 7 + 0.269757927037163, !- Value Until Time 7 + 10:00, !- Time 8 + 0.224798272530969, !- Value Until Time 8 + 11:00, !- Time 9 + 0.179838618024776, !- Value Until Time 9 + 12:00, !- Time 10 + 0.119892412016517, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0899193090123878, !- Value Until Time 11 + 15:00, !- Time 12 + 0.0824260332613555, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0899193090123878, !- Value Until Time 13 + 17:00, !- Time 14 + 0.142372239269614, !- Value Until Time 14 + 18:00, !- Time 15 + 0.284744478539228, !- Value Until Time 15 + 19:00, !- Time 16 + 0.359677236049551, !- Value Until Time 16 + 20:00, !- Time 17 + 0.449596545061939, !- Value Until Time 17 + 21:00, !- Time 18 + 0.621941887335682, !- Value Until Time 18 + 22:00, !- Time 19 + 0.734341023601167, !- Value Until Time 19 + 23:00, !- Time 20 + 0.636928438837747, !- Value Until Time 20 + 24:00, !- Time 21 + 0.442103269310907; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.346084782361632, !- Value Until Time 1 + 04:00, !- Time 2 + 0.338561200136379, !- Value Until Time 2 + 05:00, !- Time 3 + 0.346084782361632, !- Value Until Time 3 + 06:00, !- Time 4 + 0.338561200136379, !- Value Until Time 4 + 07:00, !- Time 5 + 0.331037617911126, !- Value Until Time 5 + 08:00, !- Time 6 + 0.308466871235368, !- Value Until Time 6 + 09:00, !- Time 7 + 0.270848960109103, !- Value Until Time 7 + 10:00, !- Time 8 + 0.225707466757586, !- Value Until Time 8 + 11:00, !- Time 9 + 0.180565973406069, !- Value Until Time 9 + 12:00, !- Time 10 + 0.120377315604046, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0902829867030344, !- Value Until Time 11 + 15:00, !- Time 12 + 0.0827594044777816, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0902829867030344, !- Value Until Time 13 + 17:00, !- Time 14 + 0.142948062279805, !- Value Until Time 14 + 18:00, !- Time 15 + 0.285896124559609, !- Value Until Time 15 + 19:00, !- Time 16 + 0.361131946812138, !- Value Until Time 16 + 20:00, !- Time 17 + 0.451414933515172, !- Value Until Time 17 + 21:00, !- Time 18 + 0.624457324695988, !- Value Until Time 18 + 22:00, !- Time 19 + 0.737311058074781, !- Value Until Time 19 + 23:00, !- Time 20 + 0.639504489146494, !- Value Until Time 20 + 24:00, !- Time 21 + 0.443891351289919; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.288229723074592, !- Value Until Time 1 + 04:00, !- Time 2 + 0.281963859529492, !- Value Until Time 2 + 05:00, !- Time 3 + 0.288229723074592, !- Value Until Time 3 + 06:00, !- Time 4 + 0.281963859529492, !- Value Until Time 4 + 07:00, !- Time 5 + 0.275697995984392, !- Value Until Time 5 + 08:00, !- Time 6 + 0.256900405349093, !- Value Until Time 6 + 09:00, !- Time 7 + 0.225571087623594, !- Value Until Time 7 + 10:00, !- Time 8 + 0.187975906352995, !- Value Until Time 8 + 11:00, !- Time 9 + 0.150380725082396, !- Value Until Time 9 + 12:00, !- Time 10 + 0.100253816721597, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0751903625411979, !- Value Until Time 11 + 15:00, !- Time 12 + 0.068924498996098, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0751903625411979, !- Value Until Time 13 + 17:00, !- Time 14 + 0.119051407356897, !- Value Until Time 14 + 18:00, !- Time 15 + 0.238102814713793, !- Value Until Time 15 + 19:00, !- Time 16 + 0.300761450164791, !- Value Until Time 16 + 20:00, !- Time 17 + 0.375951812705989, !- Value Until Time 17 + 21:00, !- Time 18 + 0.520066674243285, !- Value Until Time 18 + 22:00, !- Time 19 + 0.614054627419783, !- Value Until Time 19 + 23:00, !- Time 20 + 0.532598401333485, !- Value Until Time 20 + 24:00, !- Time 21 + 0.369685949160889; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.286138576353373, !- Value Until Time 1 + 04:00, !- Time 2 + 0.279918172519604, !- Value Until Time 2 + 05:00, !- Time 3 + 0.286138576353373, !- Value Until Time 3 + 06:00, !- Time 4 + 0.279918172519604, !- Value Until Time 4 + 07:00, !- Time 5 + 0.273697768685836, !- Value Until Time 5 + 08:00, !- Time 6 + 0.255036557184529, !- Value Until Time 6 + 09:00, !- Time 7 + 0.223934538015684, !- Value Until Time 7 + 10:00, !- Time 8 + 0.18661211501307, !- Value Until Time 8 + 11:00, !- Time 9 + 0.149289692010456, !- Value Until Time 9 + 12:00, !- Time 10 + 0.0995264613403038, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0746448460052279, !- Value Until Time 11 + 15:00, !- Time 12 + 0.0684244421714589, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0746448460052279, !- Value Until Time 13 + 17:00, !- Time 14 + 0.118187672841611, !- Value Until Time 14 + 18:00, !- Time 15 + 0.236375345683222, !- Value Until Time 15 + 19:00, !- Time 16 + 0.298579384020911, !- Value Until Time 16 + 20:00, !- Time 17 + 0.373224230026139, !- Value Until Time 17 + 21:00, !- Time 18 + 0.516293518202826, !- Value Until Time 18 + 22:00, !- Time 19 + 0.609599575709361, !- Value Until Time 19 + 23:00, !- Time 20 + 0.528734325870364, !- Value Until Time 20 + 24:00, !- Time 21 + 0.36700382619237; !- Value Until Time 21 + + Schedule:Day:Interval, + exterior lighting schedule weekend9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 02:00, !- Time 1 + 0.288229723074592, !- Value Until Time 1 + 04:00, !- Time 2 + 0.281963859529492, !- Value Until Time 2 + 05:00, !- Time 3 + 0.288229723074592, !- Value Until Time 3 + 06:00, !- Time 4 + 0.281963859529492, !- Value Until Time 4 + 07:00, !- Time 5 + 0.275697995984392, !- Value Until Time 5 + 08:00, !- Time 6 + 0.256900405349093, !- Value Until Time 6 + 09:00, !- Time 7 + 0.225571087623594, !- Value Until Time 7 + 10:00, !- Time 8 + 0.187975906352995, !- Value Until Time 8 + 11:00, !- Time 9 + 0.150380725082396, !- Value Until Time 9 + 12:00, !- Time 10 + 0.100253816721597, !- Value Until Time 10 + 13:00, !- Time 11 + 0.0751903625411979, !- Value Until Time 11 + 15:00, !- Time 12 + 0.068924498996098, !- Value Until Time 12 + 16:00, !- Time 13 + 0.0751903625411979, !- Value Until Time 13 + 17:00, !- Time 14 + 0.119051407356897, !- Value Until Time 14 + 18:00, !- Time 15 + 0.238102814713793, !- Value Until Time 15 + 19:00, !- Time 16 + 0.300761450164791, !- Value Until Time 16 + 20:00, !- Time 17 + 0.375951812705989, !- Value Until Time 17 + 21:00, !- Time 18 + 0.520066674243285, !- Value Until Time 18 + 22:00, !- Time 19 + 0.614054627419783, !- Value Until Time 19 + 23:00, !- Time 20 + 0.532598401333485, !- Value Until Time 20 + 24:00, !- Time 21 + 0.369685949160889; !- Value Until Time 21 + + Schedule:Day:Interval, + fridge allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.610948905109489, !- Value Until Time 1 + 02:00, !- Time 2 + 0.595675182481752, !- Value Until Time 2 + 03:00, !- Time 3 + 0.580401459854014, !- Value Until Time 3 + 04:00, !- Time 4 + 0.565127737226277, !- Value Until Time 4 + 06:00, !- Time 5 + 0.54985401459854, !- Value Until Time 5 + 07:00, !- Time 6 + 0.580401459854014, !- Value Until Time 6 + 08:00, !- Time 7 + 0.610948905109489, !- Value Until Time 7 + 10:00, !- Time 8 + 0.626222627737226, !- Value Until Time 8 + 12:00, !- Time 9 + 0.610948905109489, !- Value Until Time 9 + 15:00, !- Time 10 + 0.641496350364963, !- Value Until Time 10 + 16:00, !- Time 11 + 0.626222627737226, !- Value Until Time 11 + 17:00, !- Time 12 + 0.672043795620438, !- Value Until Time 12 + 18:00, !- Time 13 + 0.733138686131387, !- Value Until Time 13 + 19:00, !- Time 14 + 0.763686131386861, !- Value Until Time 14 + 20:00, !- Time 15 + 0.733138686131387, !- Value Until Time 15 + 21:00, !- Time 16 + 0.717864963503649, !- Value Until Time 16 + 22:00, !- Time 17 + 0.702591240875912, !- Value Until Time 17 + 23:00, !- Time 18 + 0.672043795620438, !- Value Until Time 18 + 24:00, !- Time 19 + 0.626222627737226; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.67956204379562, !- Value Until Time 1 + 02:00, !- Time 2 + 0.66257299270073, !- Value Until Time 2 + 03:00, !- Time 3 + 0.645583941605839, !- Value Until Time 3 + 04:00, !- Time 4 + 0.628594890510949, !- Value Until Time 4 + 06:00, !- Time 5 + 0.611605839416058, !- Value Until Time 5 + 07:00, !- Time 6 + 0.645583941605839, !- Value Until Time 6 + 08:00, !- Time 7 + 0.67956204379562, !- Value Until Time 7 + 10:00, !- Time 8 + 0.696551094890511, !- Value Until Time 8 + 12:00, !- Time 9 + 0.67956204379562, !- Value Until Time 9 + 15:00, !- Time 10 + 0.713540145985401, !- Value Until Time 10 + 16:00, !- Time 11 + 0.696551094890511, !- Value Until Time 11 + 17:00, !- Time 12 + 0.747518248175182, !- Value Until Time 12 + 18:00, !- Time 13 + 0.815474452554744, !- Value Until Time 13 + 19:00, !- Time 14 + 0.849452554744526, !- Value Until Time 14 + 20:00, !- Time 15 + 0.815474452554744, !- Value Until Time 15 + 21:00, !- Time 16 + 0.798485401459854, !- Value Until Time 16 + 22:00, !- Time 17 + 0.781496350364963, !- Value Until Time 17 + 23:00, !- Time 18 + 0.747518248175182, !- Value Until Time 18 + 24:00, !- Time 19 + 0.696551094890511; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.675182481751825, !- Value Until Time 1 + 02:00, !- Time 2 + 0.658302919708029, !- Value Until Time 2 + 03:00, !- Time 3 + 0.641423357664234, !- Value Until Time 3 + 04:00, !- Time 4 + 0.624543795620438, !- Value Until Time 4 + 06:00, !- Time 5 + 0.607664233576642, !- Value Until Time 5 + 07:00, !- Time 6 + 0.641423357664234, !- Value Until Time 6 + 08:00, !- Time 7 + 0.675182481751825, !- Value Until Time 7 + 10:00, !- Time 8 + 0.69206204379562, !- Value Until Time 8 + 12:00, !- Time 9 + 0.675182481751825, !- Value Until Time 9 + 15:00, !- Time 10 + 0.708941605839416, !- Value Until Time 10 + 16:00, !- Time 11 + 0.69206204379562, !- Value Until Time 11 + 17:00, !- Time 12 + 0.742700729927007, !- Value Until Time 12 + 18:00, !- Time 13 + 0.81021897810219, !- Value Until Time 13 + 19:00, !- Time 14 + 0.843978102189781, !- Value Until Time 14 + 20:00, !- Time 15 + 0.81021897810219, !- Value Until Time 15 + 21:00, !- Time 16 + 0.793339416058394, !- Value Until Time 16 + 22:00, !- Time 17 + 0.776459854014598, !- Value Until Time 17 + 23:00, !- Time 18 + 0.742700729927007, !- Value Until Time 18 + 24:00, !- Time 19 + 0.69206204379562; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.610948905109489, !- Value Until Time 1 + 02:00, !- Time 2 + 0.595675182481752, !- Value Until Time 2 + 03:00, !- Time 3 + 0.580401459854014, !- Value Until Time 3 + 04:00, !- Time 4 + 0.565127737226277, !- Value Until Time 4 + 06:00, !- Time 5 + 0.54985401459854, !- Value Until Time 5 + 07:00, !- Time 6 + 0.580401459854014, !- Value Until Time 6 + 08:00, !- Time 7 + 0.610948905109489, !- Value Until Time 7 + 10:00, !- Time 8 + 0.626222627737226, !- Value Until Time 8 + 12:00, !- Time 9 + 0.610948905109489, !- Value Until Time 9 + 15:00, !- Time 10 + 0.641496350364963, !- Value Until Time 10 + 16:00, !- Time 11 + 0.626222627737226, !- Value Until Time 11 + 17:00, !- Time 12 + 0.672043795620438, !- Value Until Time 12 + 18:00, !- Time 13 + 0.733138686131387, !- Value Until Time 13 + 19:00, !- Time 14 + 0.763686131386861, !- Value Until Time 14 + 20:00, !- Time 15 + 0.733138686131387, !- Value Until Time 15 + 21:00, !- Time 16 + 0.717864963503649, !- Value Until Time 16 + 22:00, !- Time 17 + 0.702591240875912, !- Value Until Time 17 + 23:00, !- Time 18 + 0.672043795620438, !- Value Until Time 18 + 24:00, !- Time 19 + 0.626222627737226; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.60948905109489, !- Value Until Time 1 + 02:00, !- Time 2 + 0.594251824817518, !- Value Until Time 2 + 03:00, !- Time 3 + 0.579014598540146, !- Value Until Time 3 + 04:00, !- Time 4 + 0.563777372262774, !- Value Until Time 4 + 06:00, !- Time 5 + 0.548540145985401, !- Value Until Time 5 + 07:00, !- Time 6 + 0.579014598540146, !- Value Until Time 6 + 08:00, !- Time 7 + 0.60948905109489, !- Value Until Time 7 + 10:00, !- Time 8 + 0.624726277372263, !- Value Until Time 8 + 12:00, !- Time 9 + 0.60948905109489, !- Value Until Time 9 + 15:00, !- Time 10 + 0.639963503649635, !- Value Until Time 10 + 16:00, !- Time 11 + 0.624726277372263, !- Value Until Time 11 + 17:00, !- Time 12 + 0.670437956204379, !- Value Until Time 12 + 18:00, !- Time 13 + 0.731386861313868, !- Value Until Time 13 + 19:00, !- Time 14 + 0.761861313868613, !- Value Until Time 14 + 20:00, !- Time 15 + 0.731386861313868, !- Value Until Time 15 + 21:00, !- Time 16 + 0.716149635036496, !- Value Until Time 16 + 22:00, !- Time 17 + 0.700912408759124, !- Value Until Time 17 + 23:00, !- Time 18 + 0.670437956204379, !- Value Until Time 18 + 24:00, !- Time 19 + 0.624726277372263; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.791240875912409, !- Value Until Time 1 + 02:00, !- Time 2 + 0.771459854014598, !- Value Until Time 2 + 03:00, !- Time 3 + 0.751678832116788, !- Value Until Time 3 + 04:00, !- Time 4 + 0.731897810218978, !- Value Until Time 4 + 06:00, !- Time 5 + 0.712116788321168, !- Value Until Time 5 + 07:00, !- Time 6 + 0.751678832116788, !- Value Until Time 6 + 08:00, !- Time 7 + 0.791240875912409, !- Value Until Time 7 + 10:00, !- Time 8 + 0.811021897810219, !- Value Until Time 8 + 12:00, !- Time 9 + 0.791240875912409, !- Value Until Time 9 + 15:00, !- Time 10 + 0.830802919708029, !- Value Until Time 10 + 16:00, !- Time 11 + 0.811021897810219, !- Value Until Time 11 + 17:00, !- Time 12 + 0.87036496350365, !- Value Until Time 12 + 18:00, !- Time 13 + 0.949489051094891, !- Value Until Time 13 + 19:00, !- Time 14 + 0.989051094890511, !- Value Until Time 14 + 20:00, !- Time 15 + 0.949489051094891, !- Value Until Time 15 + 21:00, !- Time 16 + 0.92970802919708, !- Value Until Time 16 + 22:00, !- Time 17 + 0.90992700729927, !- Value Until Time 17 + 23:00, !- Time 18 + 0.87036496350365, !- Value Until Time 18 + 24:00, !- Time 19 + 0.811021897810219; !- Value Until Time 19 + + Schedule:Day:Interval, + fridge allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.8, !- Value Until Time 1 + 02:00, !- Time 2 + 0.78, !- Value Until Time 2 + 03:00, !- Time 3 + 0.76, !- Value Until Time 3 + 04:00, !- Time 4 + 0.74, !- Value Until Time 4 + 06:00, !- Time 5 + 0.72, !- Value Until Time 5 + 07:00, !- Time 6 + 0.76, !- Value Until Time 6 + 08:00, !- Time 7 + 0.8, !- Value Until Time 7 + 10:00, !- Time 8 + 0.82, !- Value Until Time 8 + 12:00, !- Time 9 + 0.8, !- Value Until Time 9 + 15:00, !- Time 10 + 0.84, !- Value Until Time 10 + 16:00, !- Time 11 + 0.82, !- Value Until Time 11 + 17:00, !- Time 12 + 0.88, !- Value Until Time 12 + 18:00, !- Time 13 + 0.96, !- Value Until Time 13 + 19:00, !- Time 14 + 1, !- Value Until Time 14 + 20:00, !- Time 15 + 0.96, !- Value Until Time 15 + 21:00, !- Time 16 + 0.94, !- Value Until Time 16 + 22:00, !- Time 17 + 0.92, !- Value Until Time 17 + 23:00, !- Time 18 + 0.88, !- Value Until Time 18 + 24:00, !- Time 19 + 0.82; !- Value Until Time 19 + + Schedule:Day:Interval, + heating season schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + heating season schedule allday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + heating season schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + misc plug loads schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.655649119646958, !- Value Until Time 1 + 02:00, !- Time 2 + 0.618183455667132, !- Value Until Time 2 + 03:00, !- Time 3 + 0.599450623677219, !- Value Until Time 3 + 04:00, !- Time 4 + 0.580717791687306, !- Value Until Time 4 + 05:00, !- Time 5 + 0.599450623677219, !- Value Until Time 5 + 06:00, !- Time 6 + 0.618183455667132, !- Value Until Time 6 + 07:00, !- Time 7 + 0.693114783626784, !- Value Until Time 7 + 08:00, !- Time 8 + 0.78677894357635, !- Value Until Time 8 + 11:00, !- Time 9 + 0.805511775566263, !- Value Until Time 9 + 12:00, !- Time 10 + 0.824244607556176, !- Value Until Time 10 + 14:00, !- Time 11 + 0.842977439546089, !- Value Until Time 11 + 15:00, !- Time 12 + 0.824244607556176, !- Value Until Time 12 + 16:00, !- Time 13 + 0.861710271536002, !- Value Until Time 13 + 17:00, !- Time 14 + 0.899175935515829, !- Value Until Time 14 + 18:00, !- Time 15 + 0.974107263475481, !- Value Until Time 15 + 19:00, !- Time 16 + 0.992840095465394, !- Value Until Time 16 + 20:00, !- Time 17 + 0.936641599495655, !- Value Until Time 17 + 21:00, !- Time 18 + 0.880443103525915, !- Value Until Time 18 + 22:00, !- Time 19 + 0.842977439546089, !- Value Until Time 19 + 23:00, !- Time 20 + 0.749313279596524, !- Value Until Time 20 + 24:00, !- Time 21 + 0.674381951636871; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.520106272796866, !- Value Until Time 1 + 02:00, !- Time 2 + 0.490385914351331, !- Value Until Time 2 + 03:00, !- Time 3 + 0.475525735128563, !- Value Until Time 3 + 04:00, !- Time 4 + 0.460665555905795, !- Value Until Time 4 + 05:00, !- Time 5 + 0.475525735128563, !- Value Until Time 5 + 06:00, !- Time 6 + 0.490385914351331, !- Value Until Time 6 + 07:00, !- Time 7 + 0.549826631242401, !- Value Until Time 7 + 08:00, !- Time 8 + 0.624127527356239, !- Value Until Time 8 + 11:00, !- Time 9 + 0.638987706579006, !- Value Until Time 9 + 12:00, !- Time 10 + 0.653847885801774, !- Value Until Time 10 + 14:00, !- Time 11 + 0.668708065024542, !- Value Until Time 11 + 15:00, !- Time 12 + 0.653847885801774, !- Value Until Time 12 + 16:00, !- Time 13 + 0.683568244247309, !- Value Until Time 13 + 17:00, !- Time 14 + 0.713288602692845, !- Value Until Time 14 + 18:00, !- Time 15 + 0.772729319583915, !- Value Until Time 15 + 19:00, !- Time 16 + 0.787589498806683, !- Value Until Time 16 + 20:00, !- Time 17 + 0.74300896113838, !- Value Until Time 17 + 21:00, !- Time 18 + 0.698428423470077, !- Value Until Time 18 + 22:00, !- Time 19 + 0.668708065024542, !- Value Until Time 19 + 23:00, !- Time 20 + 0.594407168910704, !- Value Until Time 20 + 24:00, !- Time 21 + 0.534966452019633; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.51853019318233, !- Value Until Time 1 + 02:00, !- Time 2 + 0.488899896429054, !- Value Until Time 2 + 03:00, !- Time 3 + 0.474084748052416, !- Value Until Time 3 + 04:00, !- Time 4 + 0.459269599675778, !- Value Until Time 4 + 05:00, !- Time 5 + 0.474084748052416, !- Value Until Time 5 + 06:00, !- Time 6 + 0.488899896429054, !- Value Until Time 6 + 07:00, !- Time 7 + 0.548160489935606, !- Value Until Time 7 + 08:00, !- Time 8 + 0.622236231818796, !- Value Until Time 8 + 11:00, !- Time 9 + 0.637051380195434, !- Value Until Time 9 + 12:00, !- Time 10 + 0.651866528572072, !- Value Until Time 10 + 14:00, !- Time 11 + 0.66668167694871, !- Value Until Time 11 + 15:00, !- Time 12 + 0.651866528572072, !- Value Until Time 12 + 16:00, !- Time 13 + 0.681496825325348, !- Value Until Time 13 + 17:00, !- Time 14 + 0.711127122078624, !- Value Until Time 14 + 18:00, !- Time 15 + 0.770387715585176, !- Value Until Time 15 + 19:00, !- Time 16 + 0.785202863961814, !- Value Until Time 16 + 20:00, !- Time 17 + 0.7407574188319, !- Value Until Time 17 + 21:00, !- Time 18 + 0.696311973701986, !- Value Until Time 18 + 22:00, !- Time 19 + 0.66668167694871, !- Value Until Time 19 + 23:00, !- Time 20 + 0.59260593506552, !- Value Until Time 20 + 24:00, !- Time 21 + 0.533345341558968; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.655649119646958, !- Value Until Time 1 + 02:00, !- Time 2 + 0.618183455667132, !- Value Until Time 2 + 03:00, !- Time 3 + 0.599450623677219, !- Value Until Time 3 + 04:00, !- Time 4 + 0.580717791687306, !- Value Until Time 4 + 05:00, !- Time 5 + 0.599450623677219, !- Value Until Time 5 + 06:00, !- Time 6 + 0.618183455667132, !- Value Until Time 6 + 07:00, !- Time 7 + 0.693114783626784, !- Value Until Time 7 + 08:00, !- Time 8 + 0.78677894357635, !- Value Until Time 8 + 11:00, !- Time 9 + 0.805511775566263, !- Value Until Time 9 + 12:00, !- Time 10 + 0.824244607556176, !- Value Until Time 10 + 14:00, !- Time 11 + 0.842977439546089, !- Value Until Time 11 + 15:00, !- Time 12 + 0.824244607556176, !- Value Until Time 12 + 16:00, !- Time 13 + 0.861710271536002, !- Value Until Time 13 + 17:00, !- Time 14 + 0.899175935515829, !- Value Until Time 14 + 18:00, !- Time 15 + 0.974107263475481, !- Value Until Time 15 + 19:00, !- Time 16 + 0.992840095465394, !- Value Until Time 16 + 20:00, !- Time 17 + 0.936641599495655, !- Value Until Time 17 + 21:00, !- Time 18 + 0.880443103525915, !- Value Until Time 18 + 22:00, !- Time 19 + 0.842977439546089, !- Value Until Time 19 + 23:00, !- Time 20 + 0.749313279596524, !- Value Until Time 20 + 24:00, !- Time 21 + 0.674381951636871; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.660377358490566, !- Value Until Time 1 + 02:00, !- Time 2 + 0.622641509433962, !- Value Until Time 2 + 03:00, !- Time 3 + 0.60377358490566, !- Value Until Time 3 + 04:00, !- Time 4 + 0.584905660377359, !- Value Until Time 4 + 05:00, !- Time 5 + 0.60377358490566, !- Value Until Time 5 + 06:00, !- Time 6 + 0.622641509433962, !- Value Until Time 6 + 07:00, !- Time 7 + 0.69811320754717, !- Value Until Time 7 + 08:00, !- Time 8 + 0.792452830188679, !- Value Until Time 8 + 11:00, !- Time 9 + 0.811320754716981, !- Value Until Time 9 + 12:00, !- Time 10 + 0.830188679245283, !- Value Until Time 10 + 14:00, !- Time 11 + 0.849056603773585, !- Value Until Time 11 + 15:00, !- Time 12 + 0.830188679245283, !- Value Until Time 12 + 16:00, !- Time 13 + 0.867924528301887, !- Value Until Time 13 + 17:00, !- Time 14 + 0.905660377358491, !- Value Until Time 14 + 18:00, !- Time 15 + 0.981132075471698, !- Value Until Time 15 + 19:00, !- Time 16 + 1, !- Value Until Time 16 + 20:00, !- Time 17 + 0.943396226415094, !- Value Until Time 17 + 21:00, !- Time 18 + 0.886792452830189, !- Value Until Time 18 + 22:00, !- Time 19 + 0.849056603773585, !- Value Until Time 19 + 23:00, !- Time 20 + 0.754716981132075, !- Value Until Time 20 + 24:00, !- Time 21 + 0.679245283018868; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.521682352411402, !- Value Until Time 1 + 02:00, !- Time 2 + 0.491871932273607, !- Value Until Time 2 + 03:00, !- Time 3 + 0.47696672220471, !- Value Until Time 3 + 04:00, !- Time 4 + 0.462061512135813, !- Value Until Time 4 + 05:00, !- Time 5 + 0.47696672220471, !- Value Until Time 5 + 06:00, !- Time 6 + 0.491871932273607, !- Value Until Time 6 + 07:00, !- Time 7 + 0.551492772549196, !- Value Until Time 7 + 08:00, !- Time 8 + 0.626018822893682, !- Value Until Time 8 + 11:00, !- Time 9 + 0.640924032962579, !- Value Until Time 9 + 12:00, !- Time 10 + 0.655829243031477, !- Value Until Time 10 + 14:00, !- Time 11 + 0.670734453100374, !- Value Until Time 11 + 15:00, !- Time 12 + 0.655829243031477, !- Value Until Time 12 + 16:00, !- Time 13 + 0.685639663169271, !- Value Until Time 13 + 17:00, !- Time 14 + 0.715450083307065, !- Value Until Time 14 + 18:00, !- Time 15 + 0.775070923582654, !- Value Until Time 15 + 19:00, !- Time 16 + 0.789976133651551, !- Value Until Time 16 + 20:00, !- Time 17 + 0.74526050344486, !- Value Until Time 17 + 21:00, !- Time 18 + 0.700544873238168, !- Value Until Time 18 + 22:00, !- Time 19 + 0.670734453100374, !- Value Until Time 19 + 23:00, !- Time 20 + 0.596208402755888, !- Value Until Time 20 + 24:00, !- Time 21 + 0.536587562480299; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.519580912925354, !- Value Until Time 1 + 02:00, !- Time 2 + 0.489890575043905, !- Value Until Time 2 + 03:00, !- Time 3 + 0.475045406103181, !- Value Until Time 3 + 04:00, !- Time 4 + 0.460200237162456, !- Value Until Time 4 + 05:00, !- Time 5 + 0.475045406103181, !- Value Until Time 5 + 06:00, !- Time 6 + 0.489890575043905, !- Value Until Time 6 + 07:00, !- Time 7 + 0.549271250806803, !- Value Until Time 7 + 08:00, !- Time 8 + 0.623497095510425, !- Value Until Time 8 + 11:00, !- Time 9 + 0.638342264451149, !- Value Until Time 9 + 12:00, !- Time 10 + 0.653187433391873, !- Value Until Time 10 + 14:00, !- Time 11 + 0.668032602332598, !- Value Until Time 11 + 15:00, !- Time 12 + 0.653187433391873, !- Value Until Time 12 + 16:00, !- Time 13 + 0.682877771273322, !- Value Until Time 13 + 17:00, !- Time 14 + 0.712568109154771, !- Value Until Time 14 + 18:00, !- Time 15 + 0.771948784917668, !- Value Until Time 15 + 19:00, !- Time 16 + 0.786793953858393, !- Value Until Time 16 + 20:00, !- Time 17 + 0.74225844703622, !- Value Until Time 17 + 21:00, !- Time 18 + 0.697722940214047, !- Value Until Time 18 + 22:00, !- Time 19 + 0.668032602332598, !- Value Until Time 19 + 23:00, !- Time 20 + 0.593806757628976, !- Value Until Time 20 + 24:00, !- Time 21 + 0.534426081866078; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.521682352411402, !- Value Until Time 1 + 02:00, !- Time 2 + 0.491871932273607, !- Value Until Time 2 + 03:00, !- Time 3 + 0.47696672220471, !- Value Until Time 3 + 04:00, !- Time 4 + 0.462061512135813, !- Value Until Time 4 + 05:00, !- Time 5 + 0.47696672220471, !- Value Until Time 5 + 06:00, !- Time 6 + 0.491871932273607, !- Value Until Time 6 + 07:00, !- Time 7 + 0.551492772549196, !- Value Until Time 7 + 08:00, !- Time 8 + 0.626018822893682, !- Value Until Time 8 + 11:00, !- Time 9 + 0.640924032962579, !- Value Until Time 9 + 12:00, !- Time 10 + 0.655829243031477, !- Value Until Time 10 + 14:00, !- Time 11 + 0.670734453100374, !- Value Until Time 11 + 15:00, !- Time 12 + 0.655829243031477, !- Value Until Time 12 + 16:00, !- Time 13 + 0.685639663169271, !- Value Until Time 13 + 17:00, !- Time 14 + 0.715450083307065, !- Value Until Time 14 + 18:00, !- Time 15 + 0.775070923582654, !- Value Until Time 15 + 19:00, !- Time 16 + 0.789976133651551, !- Value Until Time 16 + 20:00, !- Time 17 + 0.74526050344486, !- Value Until Time 17 + 21:00, !- Time 18 + 0.700544873238168, !- Value Until Time 18 + 22:00, !- Time 19 + 0.670734453100374, !- Value Until Time 19 + 23:00, !- Time 20 + 0.596208402755888, !- Value Until Time 20 + 24:00, !- Time 21 + 0.536587562480299; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.434472613740412, !- Value Until Time 1 + 02:00, !- Time 2 + 0.40964560724096, !- Value Until Time 2 + 03:00, !- Time 3 + 0.397232103991234, !- Value Until Time 3 + 04:00, !- Time 4 + 0.384818600741508, !- Value Until Time 4 + 05:00, !- Time 5 + 0.397232103991234, !- Value Until Time 5 + 06:00, !- Time 6 + 0.40964560724096, !- Value Until Time 6 + 07:00, !- Time 7 + 0.459299620239864, !- Value Until Time 7 + 08:00, !- Time 8 + 0.521367136488495, !- Value Until Time 8 + 11:00, !- Time 9 + 0.533780639738221, !- Value Until Time 9 + 12:00, !- Time 10 + 0.546194142987947, !- Value Until Time 10 + 14:00, !- Time 11 + 0.558607646237673, !- Value Until Time 11 + 15:00, !- Time 12 + 0.546194142987947, !- Value Until Time 12 + 16:00, !- Time 13 + 0.571021149487399, !- Value Until Time 13 + 17:00, !- Time 14 + 0.595848155986851, !- Value Until Time 14 + 18:00, !- Time 15 + 0.645502168985755, !- Value Until Time 15 + 19:00, !- Time 16 + 0.657915672235481, !- Value Until Time 16 + 20:00, !- Time 17 + 0.620675162486303, !- Value Until Time 17 + 21:00, !- Time 18 + 0.583434652737125, !- Value Until Time 18 + 22:00, !- Time 19 + 0.558607646237673, !- Value Until Time 19 + 23:00, !- Time 20 + 0.496540129989042, !- Value Until Time 20 + 24:00, !- Time 21 + 0.446886116990138; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.43132045451134, !- Value Until Time 1 + 02:00, !- Time 2 + 0.406673571396407, !- Value Until Time 2 + 03:00, !- Time 3 + 0.39435012983894, !- Value Until Time 3 + 04:00, !- Time 4 + 0.382026688281473, !- Value Until Time 4 + 05:00, !- Time 5 + 0.39435012983894, !- Value Until Time 5 + 06:00, !- Time 6 + 0.406673571396407, !- Value Until Time 6 + 07:00, !- Time 7 + 0.455967337626274, !- Value Until Time 7 + 08:00, !- Time 8 + 0.517584545413608, !- Value Until Time 8 + 11:00, !- Time 9 + 0.529907986971075, !- Value Until Time 9 + 12:00, !- Time 10 + 0.542231428528542, !- Value Until Time 10 + 14:00, !- Time 11 + 0.554554870086009, !- Value Until Time 11 + 15:00, !- Time 12 + 0.542231428528542, !- Value Until Time 12 + 16:00, !- Time 13 + 0.566878311643476, !- Value Until Time 13 + 17:00, !- Time 14 + 0.591525194758409, !- Value Until Time 14 + 18:00, !- Time 15 + 0.640818960988277, !- Value Until Time 15 + 19:00, !- Time 16 + 0.653142402545744, !- Value Until Time 16 + 20:00, !- Time 17 + 0.616172077873343, !- Value Until Time 17 + 21:00, !- Time 18 + 0.579201753200943, !- Value Until Time 18 + 22:00, !- Time 19 + 0.554554870086009, !- Value Until Time 19 + 23:00, !- Time 20 + 0.492937662298675, !- Value Until Time 20 + 24:00, !- Time 21 + 0.443643896068807; !- Value Until Time 21 + + Schedule:Day:Interval, + misc plug loads schedule allday9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.434472613740412, !- Value Until Time 1 + 02:00, !- Time 2 + 0.40964560724096, !- Value Until Time 2 + 03:00, !- Time 3 + 0.397232103991234, !- Value Until Time 3 + 04:00, !- Time 4 + 0.384818600741508, !- Value Until Time 4 + 05:00, !- Time 5 + 0.397232103991234, !- Value Until Time 5 + 06:00, !- Time 6 + 0.40964560724096, !- Value Until Time 6 + 07:00, !- Time 7 + 0.459299620239864, !- Value Until Time 7 + 08:00, !- Time 8 + 0.521367136488495, !- Value Until Time 8 + 11:00, !- Time 9 + 0.533780639738221, !- Value Until Time 9 + 12:00, !- Time 10 + 0.546194142987947, !- Value Until Time 10 + 14:00, !- Time 11 + 0.558607646237673, !- Value Until Time 11 + 15:00, !- Time 12 + 0.546194142987947, !- Value Until Time 12 + 16:00, !- Time 13 + 0.571021149487399, !- Value Until Time 13 + 17:00, !- Time 14 + 0.595848155986851, !- Value Until Time 14 + 18:00, !- Time 15 + 0.645502168985755, !- Value Until Time 15 + 19:00, !- Time 16 + 0.657915672235481, !- Value Until Time 16 + 20:00, !- Time 17 + 0.620675162486303, !- Value Until Time 17 + 21:00, !- Time 18 + 0.583434652737125, !- Value Until Time 18 + 22:00, !- Time 19 + 0.558607646237673, !- Value Until Time 19 + 23:00, !- Time 20 + 0.496540129989042, !- Value Until Time 20 + 24:00, !- Time 21 + 0.446886116990138; !- Value Until Time 21 + + Schedule:Day:Interval, + misc tv schedule weekday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.101928374655647, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0495867768595041, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0247933884297521, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0192837465564738, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0303030303030303, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0495867768595041, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0798898071625344, !- Value Until Time 7 + 08:00, !- Time 8 + 0.110192837465565, !- Value Until Time 8 + 09:00, !- Time 9 + 0.134986225895317, !- Value Until Time 9 + 10:00, !- Time 10 + 0.159779614325069, !- Value Until Time 10 + 11:00, !- Time 11 + 0.179063360881543, !- Value Until Time 11 + 12:00, !- Time 12 + 0.198347107438017, !- Value Until Time 12 + 13:00, !- Time 13 + 0.209366391184573, !- Value Until Time 13 + 14:00, !- Time 14 + 0.236914600550964, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25068870523416, !- Value Until Time 15 + 16:00, !- Time 16 + 0.28099173553719, !- Value Until Time 16 + 17:00, !- Time 17 + 0.349862258953168, !- Value Until Time 17 + 18:00, !- Time 18 + 0.429752066115703, !- Value Until Time 18 + 19:00, !- Time 19 + 0.578512396694215, !- Value Until Time 19 + 20:00, !- Time 20 + 0.809917355371901, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 0.947658402203857, !- Value Until Time 22 + 23:00, !- Time 23 + 0.573002754820937, !- Value Until Time 23 + 24:00, !- Time 24 + 0.247933884297521; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0777237474287127, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0378115528031575, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0189057764015788, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0147044927567835, !- Value Until Time 4 + 05:00, !- Time 5 + 0.023107060046374, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0378115528031575, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0609186128495315, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0840256728959056, !- Value Until Time 8 + 09:00, !- Time 9 + 0.102931449297484, !- Value Until Time 9 + 10:00, !- Time 10 + 0.121837225699063, !- Value Until Time 10 + 11:00, !- Time 11 + 0.136541718455847, !- Value Until Time 11 + 12:00, !- Time 12 + 0.15124621121263, !- Value Until Time 12 + 13:00, !- Time 13 + 0.159648778502221, !- Value Until Time 13 + 14:00, !- Time 14 + 0.180655196726197, !- Value Until Time 14 + 15:00, !- Time 15 + 0.191158405838185, !- Value Until Time 15 + 16:00, !- Time 16 + 0.214265465884559, !- Value Until Time 16 + 17:00, !- Time 17 + 0.2667815114445, !- Value Until Time 17 + 18:00, !- Time 18 + 0.327700124294032, !- Value Until Time 18 + 19:00, !- Time 19 + 0.441134782703504, !- Value Until Time 19 + 20:00, !- Time 20 + 0.617588695784906, !- Value Until Time 20 + 21:00, !- Time 21 + 0.762532981530343, !- Value Until Time 21 + 22:00, !- Time 22 + 0.722620786904788, !- Value Until Time 22 + 23:00, !- Time 23 + 0.436933499058709, !- Value Until Time 23 + 24:00, !- Time 24 + 0.189057764015788; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0770962200561625, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0375062692165115, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0187531346082557, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0145857713619767, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0229204978545348, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0375062692165115, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0604267670710463, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0833472649255811, !- Value Until Time 8 + 09:00, !- Time 9 + 0.102100399533837, !- Value Until Time 9 + 10:00, !- Time 10 + 0.120853534142093, !- Value Until Time 10 + 11:00, !- Time 11 + 0.135439305504069, !- Value Until Time 11 + 12:00, !- Time 12 + 0.150025076866046, !- Value Until Time 12 + 13:00, !- Time 13 + 0.158359803358604, !- Value Until Time 13 + 14:00, !- Time 14 + 0.179196619589999, !- Value Until Time 14 + 15:00, !- Time 15 + 0.189615027705697, !- Value Until Time 15 + 16:00, !- Time 16 + 0.212535525560232, !- Value Until Time 16 + 17:00, !- Time 17 + 0.26462756613872, !- Value Until Time 17 + 18:00, !- Time 18 + 0.325054333209766, !- Value Until Time 18 + 19:00, !- Time 19 + 0.437573140859301, !- Value Until Time 19 + 20:00, !- Time 20 + 0.612602397203021, !- Value Until Time 20 + 21:00, !- Time 21 + 0.756376429199648, !- Value Until Time 21 + 22:00, !- Time 22 + 0.716786478359997, !- Value Until Time 22 + 23:00, !- Time 23 + 0.433405777613022, !- Value Until Time 23 + 24:00, !- Time 24 + 0.187531346082557; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.101928374655647, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0495867768595041, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0247933884297521, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0192837465564738, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0303030303030303, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0495867768595041, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0798898071625344, !- Value Until Time 7 + 08:00, !- Time 8 + 0.110192837465565, !- Value Until Time 8 + 09:00, !- Time 9 + 0.134986225895317, !- Value Until Time 9 + 10:00, !- Time 10 + 0.159779614325069, !- Value Until Time 10 + 11:00, !- Time 11 + 0.179063360881543, !- Value Until Time 11 + 12:00, !- Time 12 + 0.198347107438017, !- Value Until Time 12 + 13:00, !- Time 13 + 0.209366391184573, !- Value Until Time 13 + 14:00, !- Time 14 + 0.236914600550964, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25068870523416, !- Value Until Time 15 + 16:00, !- Time 16 + 0.28099173553719, !- Value Until Time 16 + 17:00, !- Time 17 + 0.349862258953168, !- Value Until Time 17 + 18:00, !- Time 18 + 0.429752066115703, !- Value Until Time 18 + 19:00, !- Time 19 + 0.578512396694215, !- Value Until Time 19 + 20:00, !- Time 20 + 0.809917355371901, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 0.947658402203857, !- Value Until Time 22 + 23:00, !- Time 23 + 0.573002754820937, !- Value Until Time 23 + 24:00, !- Time 24 + 0.247933884297521; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.10121120051559, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0492378813319087, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0246189406659543, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0191480649624089, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0300898163694997, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0492378813319087, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0793276977014084, !- Value Until Time 7 + 08:00, !- Time 8 + 0.109417514070908, !- Value Until Time 8 + 09:00, !- Time 9 + 0.134036454736863, !- Value Until Time 9 + 10:00, !- Time 10 + 0.158655395402817, !- Value Until Time 10 + 11:00, !- Time 11 + 0.177803460365226, !- Value Until Time 11 + 12:00, !- Time 12 + 0.196951525327635, !- Value Until Time 12 + 13:00, !- Time 13 + 0.207893276734726, !- Value Until Time 13 + 14:00, !- Time 14 + 0.235247655252453, !- Value Until Time 14 + 15:00, !- Time 15 + 0.248924844511316, !- Value Until Time 15 + 16:00, !- Time 16 + 0.279014660880816, !- Value Until Time 16 + 17:00, !- Time 17 + 0.347400607175133, !- Value Until Time 17 + 18:00, !- Time 18 + 0.426728304876542, !- Value Until Time 18 + 19:00, !- Time 19 + 0.574441948872268, !- Value Until Time 19 + 20:00, !- Time 20 + 0.804218728421175, !- Value Until Time 20 + 21:00, !- Time 21 + 0.992963940193492, !- Value Until Time 21 + 22:00, !- Time 22 + 0.94099062100981, !- Value Until Time 22 + 23:00, !- Time 23 + 0.568971073168723, !- Value Until Time 23 + 24:00, !- Time 24 + 0.246189406659543; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0861505435743862, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0419110752524041, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0209555376262021, !- Value Until Time 3 + 04:00, !- Time 4 + 0.016298751487046, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0256123237653581, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0419110752524041, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0675233990177622, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0931357227831203, !- Value Until Time 8 + 09:00, !- Time 9 + 0.114091260409322, !- Value Until Time 9 + 10:00, !- Time 10 + 0.135046798035524, !- Value Until Time 10 + 11:00, !- Time 11 + 0.15134554952257, !- Value Until Time 11 + 12:00, !- Time 12 + 0.167644301009616, !- Value Until Time 12 + 13:00, !- Time 13 + 0.176957873287928, !- Value Until Time 13 + 14:00, !- Time 14 + 0.200241803983709, !- Value Until Time 14 + 15:00, !- Time 15 + 0.211883769331599, !- Value Until Time 15 + 16:00, !- Time 16 + 0.237496093096957, !- Value Until Time 16 + 17:00, !- Time 17 + 0.295705919836407, !- Value Until Time 17 + 18:00, !- Time 18 + 0.363229318854169, !- Value Until Time 18 + 19:00, !- Time 19 + 0.488962544611381, !- Value Until Time 19 + 20:00, !- Time 20 + 0.684547562455934, !- Value Until Time 20 + 21:00, !- Time 21 + 0.845206684256816, !- Value Until Time 21 + 22:00, !- Time 22 + 0.800967215934834, !- Value Until Time 22 + 23:00, !- Time 23 + 0.484305758472225, !- Value Until Time 23 + 24:00, !- Time 24 + 0.209555376262021; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0868677177144436, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0422599707799996, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0211299853899998, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0164344330811109, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0258255376988886, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0422599707799996, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0680855084788882, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0939110461777768, !- Value Until Time 8 + 09:00, !- Time 9 + 0.115041031567777, !- Value Until Time 9 + 10:00, !- Time 10 + 0.136171016957776, !- Value Until Time 10 + 11:00, !- Time 11 + 0.152605450038887, !- Value Until Time 11 + 12:00, !- Time 12 + 0.169039883119998, !- Value Until Time 12 + 13:00, !- Time 13 + 0.178430987737776, !- Value Until Time 13 + 14:00, !- Time 14 + 0.20190874928222, !- Value Until Time 14 + 15:00, !- Time 15 + 0.213647630054442, !- Value Until Time 15 + 16:00, !- Time 16 + 0.239473167753331, !- Value Until Time 16 + 17:00, !- Time 17 + 0.298167571614441, !- Value Until Time 17 + 18:00, !- Time 18 + 0.36625308009333, !- Value Until Time 18 + 19:00, !- Time 19 + 0.493032992433328, !- Value Until Time 19 + 20:00, !- Time 20 + 0.69024618940666, !- Value Until Time 20 + 21:00, !- Time 21 + 0.852242744063325, !- Value Until Time 21 + 22:00, !- Time 22 + 0.807634997128881, !- Value Until Time 22 + 23:00, !- Time 23 + 0.488337440124439, !- Value Until Time 23 + 24:00, !- Time 24 + 0.211299853899998; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0861505435743862, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0419110752524041, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0209555376262021, !- Value Until Time 3 + 04:00, !- Time 4 + 0.016298751487046, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0256123237653581, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0419110752524041, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0675233990177622, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0931357227831203, !- Value Until Time 8 + 09:00, !- Time 9 + 0.114091260409322, !- Value Until Time 9 + 10:00, !- Time 10 + 0.135046798035524, !- Value Until Time 10 + 11:00, !- Time 11 + 0.15134554952257, !- Value Until Time 11 + 12:00, !- Time 12 + 0.167644301009616, !- Value Until Time 12 + 13:00, !- Time 13 + 0.176957873287928, !- Value Until Time 13 + 14:00, !- Time 14 + 0.200241803983709, !- Value Until Time 14 + 15:00, !- Time 15 + 0.211883769331599, !- Value Until Time 15 + 16:00, !- Time 16 + 0.237496093096957, !- Value Until Time 16 + 17:00, !- Time 17 + 0.295705919836407, !- Value Until Time 17 + 18:00, !- Time 18 + 0.363229318854169, !- Value Until Time 18 + 19:00, !- Time 19 + 0.488962544611381, !- Value Until Time 19 + 20:00, !- Time 20 + 0.684547562455934, !- Value Until Time 20 + 21:00, !- Time 21 + 0.845206684256816, !- Value Until Time 21 + 22:00, !- Time 22 + 0.800967215934834, !- Value Until Time 22 + 23:00, !- Time 23 + 0.484305758472225, !- Value Until Time 23 + 24:00, !- Time 24 + 0.209555376262021; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0890192401346155, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0433066573627859, !- Value Until Time 2 + 03:00, !- Time 3 + 0.021653328681393, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0168414778633056, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0264651794994803, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0433066573627859, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0697718368622662, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0962370163617465, !- Value Until Time 8 + 09:00, !- Time 9 + 0.117890345043139, !- Value Until Time 9 + 10:00, !- Time 10 + 0.139543673724532, !- Value Until Time 10 + 11:00, !- Time 11 + 0.156385151587838, !- Value Until Time 11 + 12:00, !- Time 12 + 0.173226629451144, !- Value Until Time 12 + 13:00, !- Time 13 + 0.182850331087318, !- Value Until Time 13 + 14:00, !- Time 14 + 0.206909585177755, !- Value Until Time 14 + 15:00, !- Time 15 + 0.218939212222973, !- Value Until Time 15 + 16:00, !- Time 16 + 0.245404391722454, !- Value Until Time 16 + 17:00, !- Time 17 + 0.305552526948545, !- Value Until Time 17 + 18:00, !- Time 18 + 0.375324363810811, !- Value Until Time 18 + 19:00, !- Time 19 + 0.505244335899169, !- Value Until Time 19 + 20:00, !- Time 20 + 0.707342070258837, !- Value Until Time 20 + 21:00, !- Time 21 + 0.87335092348285, !- Value Until Time 21 + 22:00, !- Time 22 + 0.82763834071102, !- Value Until Time 22 + 23:00, !- Time 23 + 0.500432485081082, !- Value Until Time 23 + 24:00, !- Time 24 + 0.21653328681393; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.089288180437137, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0434374931856342, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0217187465928171, !- Value Until Time 3 + 04:00, !- Time 4 + 0.01689235846108, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0265451347245542, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0434374931856342, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0699826279101885, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0965277626347427, !- Value Until Time 8 + 09:00, !- Time 9 + 0.11824650922756, !- Value Until Time 9 + 10:00, !- Time 10 + 0.139965255820377, !- Value Until Time 10 + 11:00, !- Time 11 + 0.156857614281457, !- Value Until Time 11 + 12:00, !- Time 12 + 0.173749972742537, !- Value Until Time 12 + 13:00, !- Time 13 + 0.183402749006011, !- Value Until Time 13 + 14:00, !- Time 14 + 0.207534689664697, !- Value Until Time 14 + 15:00, !- Time 15 + 0.21960065999404, !- Value Until Time 15 + 16:00, !- Time 16 + 0.246145794718594, !- Value Until Time 16 + 17:00, !- Time 17 + 0.306475646365308, !- Value Until Time 17 + 18:00, !- Time 18 + 0.376458274275497, !- Value Until Time 18 + 19:00, !- Time 19 + 0.506770753832399, !- Value Until Time 19 + 20:00, !- Time 20 + 0.709479055365359, !- Value Until Time 20 + 21:00, !- Time 21 + 0.87598944591029, !- Value Until Time 21 + 22:00, !- Time 22 + 0.830138758658788, !- Value Until Time 22 + 23:00, !- Time 23 + 0.501944365700662, !- Value Until Time 23 + 24:00, !- Time 24 + 0.217187465928171; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday8, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0860608968068791, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0418674633114547, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0209337316557273, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0162817912877879, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0255856720236667, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0418674633114547, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0674531353351214, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0930388073587882, !- Value Until Time 8 + 09:00, !- Time 9 + 0.113972539014516, !- Value Until Time 9 + 10:00, !- Time 10 + 0.134906270670243, !- Value Until Time 10 + 11:00, !- Time 11 + 0.151188061958031, !- Value Until Time 11 + 12:00, !- Time 12 + 0.167469853245819, !- Value Until Time 12 + 13:00, !- Time 13 + 0.176773733981698, !- Value Until Time 13 + 14:00, !- Time 14 + 0.200033435821395, !- Value Until Time 14 + 15:00, !- Time 15 + 0.211663286741243, !- Value Until Time 15 + 16:00, !- Time 16 + 0.23724895876491, !- Value Until Time 16 + 17:00, !- Time 17 + 0.295398213364152, !- Value Until Time 17 + 18:00, !- Time 18 + 0.362851348699274, !- Value Until Time 18 + 19:00, !- Time 19 + 0.488453738633638, !- Value Until Time 19 + 20:00, !- Time 20 + 0.683835234087093, !- Value Until Time 20 + 21:00, !- Time 21 + 0.844327176781003, !- Value Until Time 21 + 22:00, !- Time 22 + 0.800133743285578, !- Value Until Time 22 + 23:00, !- Time 23 + 0.483801798265699, !- Value Until Time 23 + 24:00, !- Time 24 + 0.209337316557273; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekday9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0890192401346155, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0433066573627859, !- Value Until Time 2 + 03:00, !- Time 3 + 0.021653328681393, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0168414778633056, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0264651794994803, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0433066573627859, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0697718368622662, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0962370163617465, !- Value Until Time 8 + 09:00, !- Time 9 + 0.117890345043139, !- Value Until Time 9 + 10:00, !- Time 10 + 0.139543673724532, !- Value Until Time 10 + 11:00, !- Time 11 + 0.156385151587838, !- Value Until Time 11 + 12:00, !- Time 12 + 0.173226629451144, !- Value Until Time 12 + 13:00, !- Time 13 + 0.182850331087318, !- Value Until Time 13 + 14:00, !- Time 14 + 0.206909585177755, !- Value Until Time 14 + 15:00, !- Time 15 + 0.218939212222973, !- Value Until Time 15 + 16:00, !- Time 16 + 0.245404391722454, !- Value Until Time 16 + 17:00, !- Time 17 + 0.305552526948545, !- Value Until Time 17 + 18:00, !- Time 18 + 0.375324363810811, !- Value Until Time 18 + 19:00, !- Time 19 + 0.505244335899169, !- Value Until Time 19 + 20:00, !- Time 20 + 0.707342070258837, !- Value Until Time 20 + 21:00, !- Time 21 + 0.87335092348285, !- Value Until Time 21 + 22:00, !- Time 22 + 0.82763834071102, !- Value Until Time 22 + 23:00, !- Time 23 + 0.500432485081082, !- Value Until Time 23 + 24:00, !- Time 24 + 0.21653328681393; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0936057406645642, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0468028703322821, !- Value Until Time 2 + 03:00, !- Time 3 + 0.025528838363063, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0170192255753753, !- Value Until Time 4 + 05:00, !- Time 5 + 0.023401435166141, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0297836447569068, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0510576767261259, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0914783374676423, !- Value Until Time 8 + 09:00, !- Time 9 + 0.151045626981456, !- Value Until Time 9 + 10:00, !- Time 10 + 0.19997590051066, !- Value Until Time 10 + 11:00, !- Time 11 + 0.238269158055254, !- Value Until Time 11 + 12:00, !- Time 12 + 0.261670593221395, !- Value Until Time 12 + 13:00, !- Time 13 + 0.280817221993693, !- Value Until Time 13 + 14:00, !- Time 14 + 0.331874898719819, !- Value Until Time 14 + 15:00, !- Time 15 + 0.378677769052101, !- Value Until Time 15 + 16:00, !- Time 16 + 0.416971026596695, !- Value Until Time 16 + 17:00, !- Time 17 + 0.438245058565914, !- Value Until Time 17 + 18:00, !- Time 18 + 0.453136880944368, !- Value Until Time 18 + 19:00, !- Time 19 + 0.5339782024274, !- Value Until Time 19 + 20:00, !- Time 20 + 0.702043054984231, !- Value Until Time 20 + 21:00, !- Time 21 + 0.825432440405703, !- Value Until Time 21 + 22:00, !- Time 22 + 0.761610344498045, !- Value Until Time 22 + 23:00, !- Time 23 + 0.480793122504353, !- Value Until Time 23 + 24:00, !- Time 24 + 0.219122529282957; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0713774645173062, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0356887322586531, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0194665812319926, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0129777208213284, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0178443661293266, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0227110114373247, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0389331624639852, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0697552494146402, !- Value Until Time 8 + 09:00, !- Time 9 + 0.11517727228929, !- Value Until Time 9 + 10:00, !- Time 10 + 0.152488219650609, !- Value Until Time 10 + 11:00, !- Time 11 + 0.181688091498598, !- Value Until Time 11 + 12:00, !- Time 12 + 0.199532457627924, !- Value Until Time 12 + 13:00, !- Time 13 + 0.214132393551919, !- Value Until Time 13 + 14:00, !- Time 14 + 0.253065556015904, !- Value Until Time 14 + 15:00, !- Time 15 + 0.288754288274557, !- Value Until Time 15 + 16:00, !- Time 16 + 0.317954160122546, !- Value Until Time 16 + 17:00, !- Time 17 + 0.334176311149206, !- Value Until Time 17 + 18:00, !- Time 18 + 0.345531816867869, !- Value Until Time 18 + 19:00, !- Time 19 + 0.407175990769179, !- Value Until Time 19 + 20:00, !- Time 20 + 0.535330983879797, !- Value Until Time 20 + 21:00, !- Time 21 + 0.629419459834427, !- Value Until Time 21 + 22:00, !- Time 22 + 0.580753006754446, !- Value Until Time 22 + 23:00, !- Time 23 + 0.366620613202527, !- Value Until Time 23 + 24:00, !- Time 24 + 0.167088155574603; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0708011758764514, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0354005879382257, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0193094116026686, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0128729410684457, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0177002939691128, !- Value Until Time 5 + 06:00, !- Time 6 + 0.02252764686978, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0386188232053371, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0691920582428956, !- Value Until Time 8 + 09:00, !- Time 9 + 0.114247351982456, !- Value Until Time 9 + 10:00, !- Time 10 + 0.151257057554237, !- Value Until Time 10 + 11:00, !- Time 11 + 0.18022117495824, !- Value Until Time 11 + 12:00, !- Time 12 + 0.197921468927353, !- Value Until Time 12 + 13:00, !- Time 13 + 0.212403527629354, !- Value Until Time 13 + 14:00, !- Time 14 + 0.251022350834691, !- Value Until Time 14 + 15:00, !- Time 15 + 0.286422938772917, !- Value Until Time 15 + 16:00, !- Time 16 + 0.31538705617692, !- Value Until Time 16 + 17:00, !- Time 17 + 0.331478232512477, !- Value Until Time 17 + 18:00, !- Time 18 + 0.342742055947367, !- Value Until Time 18 + 19:00, !- Time 19 + 0.403888526022484, !- Value Until Time 19 + 20:00, !- Time 20 + 0.531008819073385, !- Value Until Time 20 + 21:00, !- Time 21 + 0.624337641819617, !- Value Until Time 21 + 22:00, !- Time 22 + 0.576064112812945, !- Value Until Time 22 + 23:00, !- Time 23 + 0.363660585183591, !- Value Until Time 23 + 24:00, !- Time 24 + 0.165739116256238; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0936057406645642, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0468028703322821, !- Value Until Time 2 + 03:00, !- Time 3 + 0.025528838363063, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0170192255753753, !- Value Until Time 4 + 05:00, !- Time 5 + 0.023401435166141, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0297836447569068, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0510576767261259, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0914783374676423, !- Value Until Time 8 + 09:00, !- Time 9 + 0.151045626981456, !- Value Until Time 9 + 10:00, !- Time 10 + 0.19997590051066, !- Value Until Time 10 + 11:00, !- Time 11 + 0.238269158055254, !- Value Until Time 11 + 12:00, !- Time 12 + 0.261670593221395, !- Value Until Time 12 + 13:00, !- Time 13 + 0.280817221993693, !- Value Until Time 13 + 14:00, !- Time 14 + 0.331874898719819, !- Value Until Time 14 + 15:00, !- Time 15 + 0.378677769052101, !- Value Until Time 15 + 16:00, !- Time 16 + 0.416971026596695, !- Value Until Time 16 + 17:00, !- Time 17 + 0.438245058565914, !- Value Until Time 17 + 18:00, !- Time 18 + 0.453136880944368, !- Value Until Time 18 + 19:00, !- Time 19 + 0.5339782024274, !- Value Until Time 19 + 20:00, !- Time 20 + 0.702043054984231, !- Value Until Time 20 + 21:00, !- Time 21 + 0.825432440405703, !- Value Until Time 21 + 22:00, !- Time 22 + 0.761610344498045, !- Value Until Time 22 + 23:00, !- Time 23 + 0.480793122504353, !- Value Until Time 23 + 24:00, !- Time 24 + 0.219122529282957; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend2, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0929471250750158, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0464735625375079, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0253492159295498, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0168994772863665, !- Value Until Time 4 + 05:00, !- Time 5 + 0.023236781268754, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0295740852511414, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0506984318590995, !- Value Until Time 7 + 08:00, !- Time 8 + 0.09083469041422, !- Value Until Time 8 + 09:00, !- Time 9 + 0.149982860916503, !- Value Until Time 9 + 10:00, !- Time 10 + 0.198568858114806, !- Value Until Time 10 + 11:00, !- Time 11 + 0.236592682009131, !- Value Until Time 11 + 12:00, !- Time 12 + 0.259829463277885, !- Value Until Time 12 + 13:00, !- Time 13 + 0.278841375225047, !- Value Until Time 13 + 14:00, !- Time 14 + 0.329539807084147, !- Value Until Time 14 + 15:00, !- Time 15 + 0.376013369621655, !- Value Until Time 15 + 16:00, !- Time 16 + 0.41403719351598, !- Value Until Time 16 + 17:00, !- Time 17 + 0.435161540123938, !- Value Until Time 17 + 18:00, !- Time 18 + 0.449948582749508, !- Value Until Time 18 + 19:00, !- Time 19 + 0.530221099859749, !- Value Until Time 19 + 20:00, !- Time 20 + 0.697103438062619, !- Value Until Time 20 + 21:00, !- Time 21 + 0.819624648388776, !- Value Until Time 21 + 22:00, !- Time 22 + 0.756251608564901, !- Value Until Time 22 + 23:00, !- Time 23 + 0.477410233339854, !- Value Until Time 23 + 24:00, !- Time 24 + 0.217580770061969; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend3, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0791161976944997, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0395580988472499, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0215771448257727, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0143847632171818, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0197790494236249, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0251733356300681, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0431542896515453, !- Value Until Time 7 + 08:00, !- Time 8 + 0.077318102292352, !- Value Until Time 8 + 09:00, !- Time 9 + 0.127664773552488, !- Value Until Time 9 + 10:00, !- Time 10 + 0.169020967801886, !- Value Until Time 10 + 11:00, !- Time 11 + 0.201386685040545, !- Value Until Time 11 + 12:00, !- Time 12 + 0.22116573446417, !- Value Until Time 12 + 13:00, !- Time 13 + 0.237348593083499, !- Value Until Time 13 + 14:00, !- Time 14 + 0.280502882735044, !- Value Until Time 14 + 15:00, !- Time 15 + 0.320060981582294, !- Value Until Time 15 + 16:00, !- Time 16 + 0.352426698820953, !- Value Until Time 16 + 17:00, !- Time 17 + 0.370407652842431, !- Value Until Time 17 + 18:00, !- Time 18 + 0.382994320657465, !- Value Until Time 18 + 19:00, !- Time 19 + 0.451321945939078, !- Value Until Time 19 + 20:00, !- Time 20 + 0.593371482708748, !- Value Until Time 20 + 21:00, !- Time 21 + 0.697661016033316, !- Value Until Time 21 + 22:00, !- Time 22 + 0.643718153968884, !- Value Until Time 22 + 23:00, !- Time 23 + 0.406369560885385, !- Value Until Time 23 + 24:00, !- Time 24 + 0.185203826421215; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend4, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0797748132840481, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0398874066420241, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0217567672592858, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0145045115061906, !- Value Until Time 4 + 05:00, !- Time 5 + 0.019943703321012, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0253828951358335, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0435135345185717, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0779617493457743, !- Value Until Time 8 + 09:00, !- Time 9 + 0.128727539617441, !- Value Until Time 9 + 10:00, !- Time 10 + 0.170428010197739, !- Value Until Time 10 + 11:00, !- Time 11 + 0.203063161086668, !- Value Until Time 11 + 12:00, !- Time 12 + 0.22300686440768, !- Value Until Time 12 + 13:00, !- Time 13 + 0.239324439852144, !- Value Until Time 13 + 14:00, !- Time 14 + 0.282837974370716, !- Value Until Time 14 + 15:00, !- Time 15 + 0.32272538101274, !- Value Until Time 15 + 16:00, !- Time 16 + 0.355360531901669, !- Value Until Time 16 + 17:00, !- Time 17 + 0.373491171284407, !- Value Until Time 17 + 18:00, !- Time 18 + 0.386182618852324, !- Value Until Time 18 + 19:00, !- Time 19 + 0.455079048506729, !- Value Until Time 19 + 20:00, !- Time 20 + 0.598311099630361, !- Value Until Time 20 + 21:00, !- Time 21 + 0.703468808050242, !- Value Until Time 21 + 22:00, !- Time 22 + 0.649076889902028, !- Value Until Time 22 + 23:00, !- Time 23 + 0.409752450049884, !- Value Until Time 23 + 24:00, !- Time 24 + 0.186745585642204; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0791161976944997, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0395580988472499, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0215771448257727, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0143847632171818, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0197790494236249, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0251733356300681, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0431542896515453, !- Value Until Time 7 + 08:00, !- Time 8 + 0.077318102292352, !- Value Until Time 8 + 09:00, !- Time 9 + 0.127664773552488, !- Value Until Time 9 + 10:00, !- Time 10 + 0.169020967801886, !- Value Until Time 10 + 11:00, !- Time 11 + 0.201386685040545, !- Value Until Time 11 + 12:00, !- Time 12 + 0.22116573446417, !- Value Until Time 12 + 13:00, !- Time 13 + 0.237348593083499, !- Value Until Time 13 + 14:00, !- Time 14 + 0.280502882735044, !- Value Until Time 14 + 15:00, !- Time 15 + 0.320060981582294, !- Value Until Time 15 + 16:00, !- Time 16 + 0.352426698820953, !- Value Until Time 16 + 17:00, !- Time 17 + 0.370407652842431, !- Value Until Time 17 + 18:00, !- Time 18 + 0.382994320657465, !- Value Until Time 18 + 19:00, !- Time 19 + 0.451321945939078, !- Value Until Time 19 + 20:00, !- Time 20 + 0.593371482708748, !- Value Until Time 20 + 21:00, !- Time 21 + 0.697661016033316, !- Value Until Time 21 + 22:00, !- Time 22 + 0.643718153968884, !- Value Until Time 22 + 23:00, !- Time 23 + 0.406369560885385, !- Value Until Time 23 + 24:00, !- Time 24 + 0.185203826421215; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0817506600526933, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0408753300263466, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0222956345598254, !- Value Until Time 3 + 04:00, !- Time 4 + 0.014863756373217, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0204376650131733, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0260115736531297, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0445912691196509, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0798926905060411, !- Value Until Time 8 + 09:00, !- Time 9 + 0.1319158378123, !- Value Until Time 9 + 10:00, !- Time 10 + 0.174649137385299, !- Value Until Time 10 + 11:00, !- Time 11 + 0.208092589225037, !- Value Until Time 11 + 12:00, !- Time 12 + 0.228530254238211, !- Value Until Time 12 + 13:00, !- Time 13 + 0.24525198015808, !- Value Until Time 13 + 14:00, !- Time 14 + 0.289843249277731, !- Value Until Time 14 + 15:00, !- Time 15 + 0.330718579304077, !- Value Until Time 15 + 16:00, !- Time 16 + 0.364162031143815, !- Value Until Time 16 + 17:00, !- Time 17 + 0.382741726610337, !- Value Until Time 17 + 18:00, !- Time 18 + 0.395747513436902, !- Value Until Time 18 + 19:00, !- Time 19 + 0.466350356209682, !- Value Until Time 19 + 20:00, !- Time 20 + 0.6131299503952, !- Value Until Time 20 + 21:00, !- Time 21 + 0.720892184101023, !- Value Until Time 21 + 22:00, !- Time 22 + 0.665153097701459, !- Value Until Time 22 + 23:00, !- Time 23 + 0.419901117543379, !- Value Until Time 23 + 24:00, !- Time 24 + 0.191370863305168; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0819976408987739, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0409988204493869, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0223629929723929, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0149086619815953, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0204994102246935, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0260901584677917, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0447259859447858, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0801340581510745, !- Value Until Time 8 + 09:00, !- Time 9 + 0.132314375086658, !- Value Until Time 9 + 10:00, !- Time 10 + 0.175176778283744, !- Value Until Time 10 + 11:00, !- Time 11 + 0.208721267742334, !- Value Until Time 11 + 12:00, !- Time 12 + 0.229220677967027, !- Value Until Time 12 + 13:00, !- Time 13 + 0.245992922696322, !- Value Until Time 13 + 14:00, !- Time 14 + 0.290718908641107, !- Value Until Time 14 + 15:00, !- Time 15 + 0.331717729090494, !- Value Until Time 15 + 16:00, !- Time 16 + 0.365262218549084, !- Value Until Time 16 + 17:00, !- Time 17 + 0.383898046026078, !- Value Until Time 17 + 18:00, !- Time 18 + 0.396943125259974, !- Value Until Time 18 + 19:00, !- Time 19 + 0.467759269672551, !- Value Until Time 19 + 20:00, !- Time 20 + 0.614982306740804, !- Value Until Time 20 + 21:00, !- Time 21 + 0.72307010610737, !- Value Until Time 21 + 22:00, !- Time 22 + 0.667162623676388, !- Value Until Time 22 + 23:00, !- Time 23 + 0.421169700980066, !- Value Until Time 23 + 24:00, !- Time 24 + 0.191949023013039; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend8, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0790338707458062, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0395169353729031, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0215546920215835, !- Value Until Time 3 + 04:00, !- Time 4 + 0.0143697946810557, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0197584676864515, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0251471406918474, !- Value Until Time 6 + 07:00, !- Time 7 + 0.043109384043167, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0772376464106742, !- Value Until Time 8 + 09:00, !- Time 9 + 0.127531927794369, !- Value Until Time 9 + 10:00, !- Time 10 + 0.168845087502404, !- Value Until Time 10 + 11:00, !- Time 11 + 0.201177125534779, !- Value Until Time 11 + 12:00, !- Time 12 + 0.220935593221231, !- Value Until Time 12 + 13:00, !- Time 13 + 0.237101612237419, !- Value Until Time 13 + 14:00, !- Time 14 + 0.280210996280586, !- Value Until Time 14 + 15:00, !- Time 15 + 0.319727931653489, !- Value Until Time 15 + 16:00, !- Time 16 + 0.352059969685864, !- Value Until Time 16 + 17:00, !- Time 17 + 0.370022213037183, !- Value Until Time 17 + 18:00, !- Time 18 + 0.382595783383107, !- Value Until Time 18 + 19:00, !- Time 19 + 0.450852308118122, !- Value Until Time 19 + 20:00, !- Time 20 + 0.592754030593546, !- Value Until Time 20 + 21:00, !- Time 21 + 0.6969350420312, !- Value Until Time 21 + 22:00, !- Time 22 + 0.643048311977241, !- Value Until Time 22 + 23:00, !- Time 23 + 0.405946699739823, !- Value Until Time 23 + 24:00, !- Time 24 + 0.185011106518592; !- Value Until Time 24 + + Schedule:Day:Interval, + misc tv schedule weekend9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.0817506600526933, !- Value Until Time 1 + 02:00, !- Time 2 + 0.0408753300263466, !- Value Until Time 2 + 03:00, !- Time 3 + 0.0222956345598254, !- Value Until Time 3 + 04:00, !- Time 4 + 0.014863756373217, !- Value Until Time 4 + 05:00, !- Time 5 + 0.0204376650131733, !- Value Until Time 5 + 06:00, !- Time 6 + 0.0260115736531297, !- Value Until Time 6 + 07:00, !- Time 7 + 0.0445912691196509, !- Value Until Time 7 + 08:00, !- Time 8 + 0.0798926905060411, !- Value Until Time 8 + 09:00, !- Time 9 + 0.1319158378123, !- Value Until Time 9 + 10:00, !- Time 10 + 0.174649137385299, !- Value Until Time 10 + 11:00, !- Time 11 + 0.208092589225037, !- Value Until Time 11 + 12:00, !- Time 12 + 0.228530254238211, !- Value Until Time 12 + 13:00, !- Time 13 + 0.24525198015808, !- Value Until Time 13 + 14:00, !- Time 14 + 0.289843249277731, !- Value Until Time 14 + 15:00, !- Time 15 + 0.330718579304077, !- Value Until Time 15 + 16:00, !- Time 16 + 0.364162031143815, !- Value Until Time 16 + 17:00, !- Time 17 + 0.382741726610337, !- Value Until Time 17 + 18:00, !- Time 18 + 0.395747513436902, !- Value Until Time 18 + 19:00, !- Time 19 + 0.466350356209682, !- Value Until Time 19 + 20:00, !- Time 20 + 0.6131299503952, !- Value Until Time 20 + 21:00, !- Time 21 + 0.720892184101023, !- Value Until Time 21 + 22:00, !- Time 22 + 0.665153097701459, !- Value Until Time 22 + 23:00, !- Time 23 + 0.419901117543379, !- Value Until Time 23 + 24:00, !- Time 24 + 0.191370863305168; !- Value Until Time 24 + + Schedule:Day:Interval, + natural vent avail schedule day, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + occupants schedule allday1, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 07:00, !- Time 1 + 1, !- Value Until Time 1 + 08:00, !- Time 2 + 0.8831, !- Value Until Time 2 + 09:00, !- Time 3 + 0.40861, !- Value Until Time 3 + 16:00, !- Time 4 + 0.24189, !- Value Until Time 4 + 17:00, !- Time 5 + 0.29498, !- Value Until Time 5 + 18:00, !- Time 6 + 0.5531, !- Value Until Time 6 + 21:00, !- Time 7 + 0.89693, !- Value Until Time 7 + 24:00, !- Time 8 + 1; !- Value Until Time 8 + + Schedule:Day:Interval, + Schedule Day 10, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 11, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 12, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 13, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 14, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 15, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 17, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 18, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 19, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 5, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 6, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 7, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 8, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Schedule Day 9, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Week:Daily, + clothes dryer exhaust schedule Week Rule - Jan1-Jan6, !- Name + clothes dryer exhaust schedule allday1, !- Sunday Schedule:Day Name + clothes dryer exhaust schedule allday1, !- Monday Schedule:Day Name + clothes dryer exhaust schedule allday2, !- Tuesday Schedule:Day Name + clothes dryer exhaust schedule allday3, !- Wednesday Schedule:Day Name + clothes dryer exhaust schedule allday4, !- Thursday Schedule:Day Name + clothes dryer exhaust schedule allday5, !- Friday Schedule:Day Name + clothes dryer exhaust schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 19, !- Holiday Schedule:Day Name + Schedule Day 19, !- SummerDesignDay Schedule:Day Name + Schedule Day 19, !- WinterDesignDay Schedule:Day Name + Schedule Day 19, !- CustomDay1 Schedule:Day Name + Schedule Day 19; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + clothes dryer exhaust schedule Week Rule - Jan7-Dec31, !- Name + clothes dryer exhaust schedule allday7, !- Sunday Schedule:Day Name + clothes dryer exhaust schedule allday1, !- Monday Schedule:Day Name + clothes dryer exhaust schedule allday2, !- Tuesday Schedule:Day Name + clothes dryer exhaust schedule allday3, !- Wednesday Schedule:Day Name + clothes dryer exhaust schedule allday4, !- Thursday Schedule:Day Name + clothes dryer exhaust schedule allday5, !- Friday Schedule:Day Name + clothes dryer exhaust schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 19, !- Holiday Schedule:Day Name + Schedule Day 19, !- SummerDesignDay Schedule:Day Name + Schedule Day 19, !- WinterDesignDay Schedule:Day Name + Schedule Day 19, !- CustomDay1 Schedule:Day Name + Schedule Day 19; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + clothes dryer exhaust schedule, !- Name + Fractional, !- Schedule Type Limits Name + clothes dryer exhaust schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + clothes dryer exhaust schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Week:Daily, + clothes dryer schedule Week Rule - Jan1-Jan6, !- Name + clothes dryer schedule allday1, !- Sunday Schedule:Day Name + clothes dryer schedule allday1, !- Monday Schedule:Day Name + clothes dryer schedule allday2, !- Tuesday Schedule:Day Name + clothes dryer schedule allday3, !- Wednesday Schedule:Day Name + clothes dryer schedule allday4, !- Thursday Schedule:Day Name + clothes dryer schedule allday5, !- Friday Schedule:Day Name + clothes dryer schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 9, !- Holiday Schedule:Day Name + Schedule Day 9, !- SummerDesignDay Schedule:Day Name + Schedule Day 9, !- WinterDesignDay Schedule:Day Name + Schedule Day 9, !- CustomDay1 Schedule:Day Name + Schedule Day 9; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + clothes dryer schedule Week Rule - Jan7-Dec31, !- Name + clothes dryer schedule allday7, !- Sunday Schedule:Day Name + clothes dryer schedule allday1, !- Monday Schedule:Day Name + clothes dryer schedule allday2, !- Tuesday Schedule:Day Name + clothes dryer schedule allday3, !- Wednesday Schedule:Day Name + clothes dryer schedule allday4, !- Thursday Schedule:Day Name + clothes dryer schedule allday5, !- Friday Schedule:Day Name + clothes dryer schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 9, !- Holiday Schedule:Day Name + Schedule Day 9, !- SummerDesignDay Schedule:Day Name + Schedule Day 9, !- WinterDesignDay Schedule:Day Name + Schedule Day 9, !- CustomDay1 Schedule:Day Name + Schedule Day 9; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + clothes dryer schedule, !- Name + Fractional, !- Schedule Type Limits Name + clothes dryer schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + clothes dryer schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Week:Daily, + clothes washer schedule Week Rule - Jan1-Jan6, !- Name + clothes washer schedule allday1, !- Sunday Schedule:Day Name + clothes washer schedule allday1, !- Monday Schedule:Day Name + clothes washer schedule allday2, !- Tuesday Schedule:Day Name + clothes washer schedule allday3, !- Wednesday Schedule:Day Name + clothes washer schedule allday4, !- Thursday Schedule:Day Name + clothes washer schedule allday5, !- Friday Schedule:Day Name + clothes washer schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 8, !- Holiday Schedule:Day Name + Schedule Day 8, !- SummerDesignDay Schedule:Day Name + Schedule Day 8, !- WinterDesignDay Schedule:Day Name + Schedule Day 8, !- CustomDay1 Schedule:Day Name + Schedule Day 8; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + clothes washer schedule Week Rule - Jan7-Dec31, !- Name + clothes washer schedule allday7, !- Sunday Schedule:Day Name + clothes washer schedule allday1, !- Monday Schedule:Day Name + clothes washer schedule allday2, !- Tuesday Schedule:Day Name + clothes washer schedule allday3, !- Wednesday Schedule:Day Name + clothes washer schedule allday4, !- Thursday Schedule:Day Name + clothes washer schedule allday5, !- Friday Schedule:Day Name + clothes washer schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 8, !- Holiday Schedule:Day Name + Schedule Day 8, !- SummerDesignDay Schedule:Day Name + Schedule Day 8, !- WinterDesignDay Schedule:Day Name + Schedule Day 8, !- CustomDay1 Schedule:Day Name + Schedule Day 8; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + clothes washer schedule, !- Name + Fractional, !- Schedule Type Limits Name + clothes washer schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + clothes washer schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Week:Daily, + cooking range Week Rule - Jan1-Feb24, !- Name + cooking range allday1, !- Sunday Schedule:Day Name + cooking range allday1, !- Monday Schedule:Day Name + cooking range allday1, !- Tuesday Schedule:Day Name + cooking range allday1, !- Wednesday Schedule:Day Name + cooking range allday1, !- Thursday Schedule:Day Name + cooking range allday1, !- Friday Schedule:Day Name + cooking range allday1, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Feb25-Mar3, !- Name + cooking range allday1, !- Sunday Schedule:Day Name + cooking range allday1, !- Monday Schedule:Day Name + cooking range allday1, !- Tuesday Schedule:Day Name + cooking range allday1, !- Wednesday Schedule:Day Name + cooking range allday3, !- Thursday Schedule:Day Name + cooking range allday3, !- Friday Schedule:Day Name + cooking range allday3, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Mar4-Mar31, !- Name + cooking range allday3, !- Sunday Schedule:Day Name + cooking range allday3, !- Monday Schedule:Day Name + cooking range allday3, !- Tuesday Schedule:Day Name + cooking range allday3, !- Wednesday Schedule:Day Name + cooking range allday3, !- Thursday Schedule:Day Name + cooking range allday3, !- Friday Schedule:Day Name + cooking range allday3, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Apr1-Apr28, !- Name + cooking range allday4, !- Sunday Schedule:Day Name + cooking range allday4, !- Monday Schedule:Day Name + cooking range allday4, !- Tuesday Schedule:Day Name + cooking range allday4, !- Wednesday Schedule:Day Name + cooking range allday4, !- Thursday Schedule:Day Name + cooking range allday4, !- Friday Schedule:Day Name + cooking range allday4, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Apr29-May5, !- Name + cooking range allday4, !- Sunday Schedule:Day Name + cooking range allday4, !- Monday Schedule:Day Name + cooking range allday5, !- Tuesday Schedule:Day Name + cooking range allday5, !- Wednesday Schedule:Day Name + cooking range allday5, !- Thursday Schedule:Day Name + cooking range allday5, !- Friday Schedule:Day Name + cooking range allday5, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - May6-May26, !- Name + cooking range allday5, !- Sunday Schedule:Day Name + cooking range allday5, !- Monday Schedule:Day Name + cooking range allday5, !- Tuesday Schedule:Day Name + cooking range allday5, !- Wednesday Schedule:Day Name + cooking range allday5, !- Thursday Schedule:Day Name + cooking range allday5, !- Friday Schedule:Day Name + cooking range allday5, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - May27-Jun2, !- Name + cooking range allday5, !- Sunday Schedule:Day Name + cooking range allday5, !- Monday Schedule:Day Name + cooking range allday5, !- Tuesday Schedule:Day Name + cooking range allday5, !- Wednesday Schedule:Day Name + cooking range allday5, !- Thursday Schedule:Day Name + cooking range allday6, !- Friday Schedule:Day Name + cooking range allday6, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Jun3-Jun30, !- Name + cooking range allday6, !- Sunday Schedule:Day Name + cooking range allday6, !- Monday Schedule:Day Name + cooking range allday6, !- Tuesday Schedule:Day Name + cooking range allday6, !- Wednesday Schedule:Day Name + cooking range allday6, !- Thursday Schedule:Day Name + cooking range allday6, !- Friday Schedule:Day Name + cooking range allday6, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Jul1-Aug25, !- Name + cooking range allday7, !- Sunday Schedule:Day Name + cooking range allday7, !- Monday Schedule:Day Name + cooking range allday7, !- Tuesday Schedule:Day Name + cooking range allday7, !- Wednesday Schedule:Day Name + cooking range allday7, !- Thursday Schedule:Day Name + cooking range allday7, !- Friday Schedule:Day Name + cooking range allday7, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Aug26-Sep1, !- Name + cooking range allday7, !- Sunday Schedule:Day Name + cooking range allday7, !- Monday Schedule:Day Name + cooking range allday7, !- Tuesday Schedule:Day Name + cooking range allday7, !- Wednesday Schedule:Day Name + cooking range allday7, !- Thursday Schedule:Day Name + cooking range allday7, !- Friday Schedule:Day Name + cooking range allday9, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Sep2-Sep29, !- Name + cooking range allday9, !- Sunday Schedule:Day Name + cooking range allday9, !- Monday Schedule:Day Name + cooking range allday9, !- Tuesday Schedule:Day Name + cooking range allday9, !- Wednesday Schedule:Day Name + cooking range allday9, !- Thursday Schedule:Day Name + cooking range allday9, !- Friday Schedule:Day Name + cooking range allday9, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Sep30-Oct6, !- Name + cooking range allday9, !- Sunday Schedule:Day Name + cooking range allday10, !- Monday Schedule:Day Name + cooking range allday10, !- Tuesday Schedule:Day Name + cooking range allday10, !- Wednesday Schedule:Day Name + cooking range allday10, !- Thursday Schedule:Day Name + cooking range allday10, !- Friday Schedule:Day Name + cooking range allday10, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Oct7-Nov24, !- Name + cooking range allday10, !- Sunday Schedule:Day Name + cooking range allday10, !- Monday Schedule:Day Name + cooking range allday10, !- Tuesday Schedule:Day Name + cooking range allday10, !- Wednesday Schedule:Day Name + cooking range allday10, !- Thursday Schedule:Day Name + cooking range allday10, !- Friday Schedule:Day Name + cooking range allday10, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Nov25-Dec1, !- Name + cooking range allday10, !- Sunday Schedule:Day Name + cooking range allday10, !- Monday Schedule:Day Name + cooking range allday10, !- Tuesday Schedule:Day Name + cooking range allday10, !- Wednesday Schedule:Day Name + cooking range allday10, !- Thursday Schedule:Day Name + cooking range allday10, !- Friday Schedule:Day Name + cooking range allday12, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooking range Week Rule - Dec2-Dec31, !- Name + cooking range allday12, !- Sunday Schedule:Day Name + cooking range allday12, !- Monday Schedule:Day Name + cooking range allday12, !- Tuesday Schedule:Day Name + cooking range allday12, !- Wednesday Schedule:Day Name + cooking range allday12, !- Thursday Schedule:Day Name + cooking range allday12, !- Friday Schedule:Day Name + cooking range allday12, !- Saturday Schedule:Day Name + Schedule Day 12, !- Holiday Schedule:Day Name + Schedule Day 12, !- SummerDesignDay Schedule:Day Name + Schedule Day 12, !- WinterDesignDay Schedule:Day Name + Schedule Day 12, !- CustomDay1 Schedule:Day Name + Schedule Day 12; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + cooking range, !- Name + Fractional, !- Schedule Type Limits Name + cooking range Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 2, !- End Month 1 + 24, !- End Day 1 + cooking range Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 + 2, !- Start Month 2 + 25, !- Start Day 2 + 3, !- End Month 2 + 3, !- End Day 2 + cooking range Week Rule - Mar4-Mar31, !- Schedule:Week Name 3 + 3, !- Start Month 3 + 4, !- Start Day 3 + 3, !- End Month 3 + 31, !- End Day 3 + cooking range Week Rule - Apr1-Apr28, !- Schedule:Week Name 4 + 4, !- Start Month 4 + 1, !- Start Day 4 + 4, !- End Month 4 + 28, !- End Day 4 + cooking range Week Rule - Apr29-May5, !- Schedule:Week Name 5 + 4, !- Start Month 5 + 29, !- Start Day 5 + 5, !- End Month 5 + 5, !- End Day 5 + cooking range Week Rule - May6-May26, !- Schedule:Week Name 6 + 5, !- Start Month 6 + 6, !- Start Day 6 + 5, !- End Month 6 + 26, !- End Day 6 + cooking range Week Rule - May27-Jun2, !- Schedule:Week Name 7 + 5, !- Start Month 7 + 27, !- Start Day 7 + 6, !- End Month 7 + 2, !- End Day 7 + cooking range Week Rule - Jun3-Jun30, !- Schedule:Week Name 8 + 6, !- Start Month 8 + 3, !- Start Day 8 + 6, !- End Month 8 + 30, !- End Day 8 + cooking range Week Rule - Jul1-Aug25, !- Schedule:Week Name 9 + 7, !- Start Month 9 + 1, !- Start Day 9 + 8, !- End Month 9 + 25, !- End Day 9 + cooking range Week Rule - Aug26-Sep1, !- Schedule:Week Name 10 + 8, !- Start Month 10 + 26, !- Start Day 10 + 9, !- End Month 10 + 1, !- End Day 10 + cooking range Week Rule - Sep2-Sep29, !- Schedule:Week Name 11 + 9, !- Start Month 11 + 2, !- Start Day 11 + 9, !- End Month 11 + 29, !- End Day 11 + cooking range Week Rule - Sep30-Oct6, !- Schedule:Week Name 12 + 9, !- Start Month 12 + 30, !- Start Day 12 + 10, !- End Month 12 + 6, !- End Day 12 + cooking range Week Rule - Oct7-Nov24, !- Schedule:Week Name 13 + 10, !- Start Month 13 + 7, !- Start Day 13 + 11, !- End Month 13 + 24, !- End Day 13 + cooking range Week Rule - Nov25-Dec1, !- Schedule:Week Name 14 + 11, !- Start Month 14 + 25, !- Start Day 14 + 12, !- End Month 14 + 1, !- End Day 14 + cooking range Week Rule - Dec2-Dec31, !- Schedule:Week Name 15 + 12, !- Start Month 15 + 2, !- Start Day 15 + 12, !- End Month 15 + 31; !- End Day 15 + + Schedule:Week:Daily, + cooling season schedule Week Rule - Jan1-Feb24, !- Name + cooling season schedule allday1, !- Sunday Schedule:Day Name + cooling season schedule allday1, !- Monday Schedule:Day Name + cooling season schedule allday1, !- Tuesday Schedule:Day Name + cooling season schedule allday1, !- Wednesday Schedule:Day Name + cooling season schedule allday1, !- Thursday Schedule:Day Name + cooling season schedule allday1, !- Friday Schedule:Day Name + cooling season schedule allday1, !- Saturday Schedule:Day Name + Schedule Day 5, !- Holiday Schedule:Day Name + Schedule Day 5, !- SummerDesignDay Schedule:Day Name + Schedule Day 5, !- WinterDesignDay Schedule:Day Name + Schedule Day 5, !- CustomDay1 Schedule:Day Name + Schedule Day 5; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooling season schedule Week Rule - Feb25-Mar3, !- Name + cooling season schedule allday1, !- Sunday Schedule:Day Name + cooling season schedule allday1, !- Monday Schedule:Day Name + cooling season schedule allday1, !- Tuesday Schedule:Day Name + cooling season schedule allday1, !- Wednesday Schedule:Day Name + cooling season schedule allday3, !- Thursday Schedule:Day Name + cooling season schedule allday3, !- Friday Schedule:Day Name + cooling season schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 5, !- Holiday Schedule:Day Name + Schedule Day 5, !- SummerDesignDay Schedule:Day Name + Schedule Day 5, !- WinterDesignDay Schedule:Day Name + Schedule Day 5, !- CustomDay1 Schedule:Day Name + Schedule Day 5; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooling season schedule Week Rule - Mar4-Oct27, !- Name + cooling season schedule allday3, !- Sunday Schedule:Day Name + cooling season schedule allday3, !- Monday Schedule:Day Name + cooling season schedule allday3, !- Tuesday Schedule:Day Name + cooling season schedule allday3, !- Wednesday Schedule:Day Name + cooling season schedule allday3, !- Thursday Schedule:Day Name + cooling season schedule allday3, !- Friday Schedule:Day Name + cooling season schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 5, !- Holiday Schedule:Day Name + Schedule Day 5, !- SummerDesignDay Schedule:Day Name + Schedule Day 5, !- WinterDesignDay Schedule:Day Name + Schedule Day 5, !- CustomDay1 Schedule:Day Name + Schedule Day 5; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooling season schedule Week Rule - Oct28-Nov3, !- Name + cooling season schedule allday3, !- Sunday Schedule:Day Name + cooling season schedule allday3, !- Monday Schedule:Day Name + cooling season schedule allday3, !- Tuesday Schedule:Day Name + cooling season schedule allday3, !- Wednesday Schedule:Day Name + cooling season schedule allday11, !- Thursday Schedule:Day Name + cooling season schedule allday11, !- Friday Schedule:Day Name + cooling season schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 5, !- Holiday Schedule:Day Name + Schedule Day 5, !- SummerDesignDay Schedule:Day Name + Schedule Day 5, !- WinterDesignDay Schedule:Day Name + Schedule Day 5, !- CustomDay1 Schedule:Day Name + Schedule Day 5; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + cooling season schedule Week Rule - Nov4-Dec31, !- Name + cooling season schedule allday11, !- Sunday Schedule:Day Name + cooling season schedule allday11, !- Monday Schedule:Day Name + cooling season schedule allday11, !- Tuesday Schedule:Day Name + cooling season schedule allday11, !- Wednesday Schedule:Day Name + cooling season schedule allday11, !- Thursday Schedule:Day Name + cooling season schedule allday11, !- Friday Schedule:Day Name + cooling season schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 5, !- Holiday Schedule:Day Name + Schedule Day 5, !- SummerDesignDay Schedule:Day Name + Schedule Day 5, !- WinterDesignDay Schedule:Day Name + Schedule Day 5, !- CustomDay1 Schedule:Day Name + Schedule Day 5; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + cooling season schedule, !- Name + Fractional, !- Schedule Type Limits Name + cooling season schedule Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 2, !- End Month 1 + 24, !- End Day 1 + cooling season schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 + 2, !- Start Month 2 + 25, !- Start Day 2 + 3, !- End Month 2 + 3, !- End Day 2 + cooling season schedule Week Rule - Mar4-Oct27, !- Schedule:Week Name 3 + 3, !- Start Month 3 + 4, !- Start Day 3 + 10, !- End Month 3 + 27, !- End Day 3 + cooling season schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 4 + 10, !- Start Month 4 + 28, !- Start Day 4 + 11, !- End Month 4 + 3, !- End Day 4 + cooling season schedule Week Rule - Nov4-Dec31, !- Schedule:Week Name 5 + 11, !- Start Month 5 + 4, !- Start Day 5 + 12, !- End Month 5 + 31; !- End Day 5 + + Schedule:Week:Daily, + dhw fixtures schedule Week Rule - Jan1-Jan6, !- Name + dhw fixtures schedule allday1, !- Sunday Schedule:Day Name + dhw fixtures schedule allday1, !- Monday Schedule:Day Name + dhw fixtures schedule allday2, !- Tuesday Schedule:Day Name + dhw fixtures schedule allday3, !- Wednesday Schedule:Day Name + dhw fixtures schedule allday4, !- Thursday Schedule:Day Name + dhw fixtures schedule allday5, !- Friday Schedule:Day Name + dhw fixtures schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 13, !- Holiday Schedule:Day Name + Schedule Day 13, !- SummerDesignDay Schedule:Day Name + Schedule Day 13, !- WinterDesignDay Schedule:Day Name + Schedule Day 13, !- CustomDay1 Schedule:Day Name + Schedule Day 13; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + dhw fixtures schedule Week Rule - Jan7-Dec31, !- Name + dhw fixtures schedule allday7, !- Sunday Schedule:Day Name + dhw fixtures schedule allday1, !- Monday Schedule:Day Name + dhw fixtures schedule allday2, !- Tuesday Schedule:Day Name + dhw fixtures schedule allday3, !- Wednesday Schedule:Day Name + dhw fixtures schedule allday4, !- Thursday Schedule:Day Name + dhw fixtures schedule allday5, !- Friday Schedule:Day Name + dhw fixtures schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 13, !- Holiday Schedule:Day Name + Schedule Day 13, !- SummerDesignDay Schedule:Day Name + Schedule Day 13, !- WinterDesignDay Schedule:Day Name + Schedule Day 13, !- CustomDay1 Schedule:Day Name + Schedule Day 13; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + dhw fixtures schedule, !- Name + Fractional, !- Schedule Type Limits Name + dhw fixtures schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + dhw fixtures schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Week:Daily, + dishwasher schedule Week Rule - Jan1-Jan6, !- Name + dishwasher schedule allday1, !- Sunday Schedule:Day Name + dishwasher schedule allday1, !- Monday Schedule:Day Name + dishwasher schedule allday2, !- Tuesday Schedule:Day Name + dishwasher schedule allday3, !- Wednesday Schedule:Day Name + dishwasher schedule allday4, !- Thursday Schedule:Day Name + dishwasher schedule allday5, !- Friday Schedule:Day Name + dishwasher schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 10, !- Holiday Schedule:Day Name + Schedule Day 10, !- SummerDesignDay Schedule:Day Name + Schedule Day 10, !- WinterDesignDay Schedule:Day Name + Schedule Day 10, !- CustomDay1 Schedule:Day Name + Schedule Day 10; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + dishwasher schedule Week Rule - Jan7-Dec31, !- Name + dishwasher schedule allday7, !- Sunday Schedule:Day Name + dishwasher schedule allday1, !- Monday Schedule:Day Name + dishwasher schedule allday2, !- Tuesday Schedule:Day Name + dishwasher schedule allday3, !- Wednesday Schedule:Day Name + dishwasher schedule allday4, !- Thursday Schedule:Day Name + dishwasher schedule allday5, !- Friday Schedule:Day Name + dishwasher schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 10, !- Holiday Schedule:Day Name + Schedule Day 10, !- SummerDesignDay Schedule:Day Name + Schedule Day 10, !- WinterDesignDay Schedule:Day Name + Schedule Day 10, !- CustomDay1 Schedule:Day Name + Schedule Day 10; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + dishwasher schedule, !- Name + Fractional, !- Schedule Type Limits Name + dishwasher schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + dishwasher schedule Week Rule - Jan7-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Jan1-Jan6, !- Name + exterior lighting schedule weekday1, !- Sunday Schedule:Day Name + exterior lighting schedule weekday1, !- Monday Schedule:Day Name + exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday1, !- Thursday Schedule:Day Name + exterior lighting schedule weekday1, !- Friday Schedule:Day Name + exterior lighting schedule weekend1, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Jan7-Jan27, !- Name + exterior lighting schedule weekend1, !- Sunday Schedule:Day Name + exterior lighting schedule weekday1, !- Monday Schedule:Day Name + exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday1, !- Thursday Schedule:Day Name + exterior lighting schedule weekday1, !- Friday Schedule:Day Name + exterior lighting schedule weekend1, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Jan28-Feb3, !- Name + exterior lighting schedule weekend1, !- Sunday Schedule:Day Name + exterior lighting schedule weekday1, !- Monday Schedule:Day Name + exterior lighting schedule weekday1, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday1, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday2, !- Thursday Schedule:Day Name + exterior lighting schedule weekday2, !- Friday Schedule:Day Name + exterior lighting schedule weekend2, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Feb4-Feb24, !- Name + exterior lighting schedule weekend2, !- Sunday Schedule:Day Name + exterior lighting schedule weekday2, !- Monday Schedule:Day Name + exterior lighting schedule weekday2, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday2, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday2, !- Thursday Schedule:Day Name + exterior lighting schedule weekday2, !- Friday Schedule:Day Name + exterior lighting schedule weekend2, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Feb25-Mar3, !- Name + exterior lighting schedule weekend2, !- Sunday Schedule:Day Name + exterior lighting schedule weekday2, !- Monday Schedule:Day Name + exterior lighting schedule weekday2, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday2, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday3, !- Thursday Schedule:Day Name + exterior lighting schedule weekday3, !- Friday Schedule:Day Name + exterior lighting schedule weekend3, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Mar4-Mar31, !- Name + exterior lighting schedule weekend3, !- Sunday Schedule:Day Name + exterior lighting schedule weekday3, !- Monday Schedule:Day Name + exterior lighting schedule weekday3, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday3, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday3, !- Thursday Schedule:Day Name + exterior lighting schedule weekday3, !- Friday Schedule:Day Name + exterior lighting schedule weekend3, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Apr1-Apr28, !- Name + exterior lighting schedule weekend4, !- Sunday Schedule:Day Name + exterior lighting schedule weekday4, !- Monday Schedule:Day Name + exterior lighting schedule weekday4, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday4, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday4, !- Thursday Schedule:Day Name + exterior lighting schedule weekday4, !- Friday Schedule:Day Name + exterior lighting schedule weekend4, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Apr29-May5, !- Name + exterior lighting schedule weekend4, !- Sunday Schedule:Day Name + exterior lighting schedule weekday4, !- Monday Schedule:Day Name + exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday5, !- Thursday Schedule:Day Name + exterior lighting schedule weekday5, !- Friday Schedule:Day Name + exterior lighting schedule weekend5, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - May6-May26, !- Name + exterior lighting schedule weekend5, !- Sunday Schedule:Day Name + exterior lighting schedule weekday5, !- Monday Schedule:Day Name + exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday5, !- Thursday Schedule:Day Name + exterior lighting schedule weekday5, !- Friday Schedule:Day Name + exterior lighting schedule weekend5, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - May27-Jun2, !- Name + exterior lighting schedule weekend5, !- Sunday Schedule:Day Name + exterior lighting schedule weekday5, !- Monday Schedule:Day Name + exterior lighting schedule weekday5, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday5, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday5, !- Thursday Schedule:Day Name + exterior lighting schedule weekday6, !- Friday Schedule:Day Name + exterior lighting schedule weekend6, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Jun3-Jun30, !- Name + exterior lighting schedule weekend6, !- Sunday Schedule:Day Name + exterior lighting schedule weekday6, !- Monday Schedule:Day Name + exterior lighting schedule weekday6, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday6, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday6, !- Thursday Schedule:Day Name + exterior lighting schedule weekday6, !- Friday Schedule:Day Name + exterior lighting schedule weekend6, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Jul1-Aug25, !- Name + exterior lighting schedule weekend7, !- Sunday Schedule:Day Name + exterior lighting schedule weekday7, !- Monday Schedule:Day Name + exterior lighting schedule weekday7, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday7, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday7, !- Thursday Schedule:Day Name + exterior lighting schedule weekday7, !- Friday Schedule:Day Name + exterior lighting schedule weekend7, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Aug26-Sep1, !- Name + exterior lighting schedule weekend7, !- Sunday Schedule:Day Name + exterior lighting schedule weekday7, !- Monday Schedule:Day Name + exterior lighting schedule weekday7, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday7, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday7, !- Thursday Schedule:Day Name + exterior lighting schedule weekday7, !- Friday Schedule:Day Name + exterior lighting schedule weekend9, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Sep2-Sep29, !- Name + exterior lighting schedule weekend9, !- Sunday Schedule:Day Name + exterior lighting schedule weekday9, !- Monday Schedule:Day Name + exterior lighting schedule weekday9, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday9, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday9, !- Thursday Schedule:Day Name + exterior lighting schedule weekday9, !- Friday Schedule:Day Name + exterior lighting schedule weekend9, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Sep30-Oct6, !- Name + exterior lighting schedule weekend9, !- Sunday Schedule:Day Name + exterior lighting schedule weekday10, !- Monday Schedule:Day Name + exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday10, !- Thursday Schedule:Day Name + exterior lighting schedule weekday10, !- Friday Schedule:Day Name + exterior lighting schedule weekend10, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Oct7-Oct27, !- Name + exterior lighting schedule weekend10, !- Sunday Schedule:Day Name + exterior lighting schedule weekday10, !- Monday Schedule:Day Name + exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday10, !- Thursday Schedule:Day Name + exterior lighting schedule weekday10, !- Friday Schedule:Day Name + exterior lighting schedule weekend10, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Oct28-Nov3, !- Name + exterior lighting schedule weekend10, !- Sunday Schedule:Day Name + exterior lighting schedule weekday10, !- Monday Schedule:Day Name + exterior lighting schedule weekday10, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday10, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday11, !- Thursday Schedule:Day Name + exterior lighting schedule weekday11, !- Friday Schedule:Day Name + exterior lighting schedule weekend11, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Nov4-Nov24, !- Name + exterior lighting schedule weekend11, !- Sunday Schedule:Day Name + exterior lighting schedule weekday11, !- Monday Schedule:Day Name + exterior lighting schedule weekday11, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday11, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday11, !- Thursday Schedule:Day Name + exterior lighting schedule weekday11, !- Friday Schedule:Day Name + exterior lighting schedule weekend11, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Nov25-Dec1, !- Name + exterior lighting schedule weekend11, !- Sunday Schedule:Day Name + exterior lighting schedule weekday11, !- Monday Schedule:Day Name + exterior lighting schedule weekday11, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday11, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday11, !- Thursday Schedule:Day Name + exterior lighting schedule weekday11, !- Friday Schedule:Day Name + exterior lighting schedule weekend12, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + exterior lighting schedule Week Rule - Dec2-Dec31, !- Name + exterior lighting schedule weekend12, !- Sunday Schedule:Day Name + exterior lighting schedule weekday12, !- Monday Schedule:Day Name + exterior lighting schedule weekday12, !- Tuesday Schedule:Day Name + exterior lighting schedule weekday12, !- Wednesday Schedule:Day Name + exterior lighting schedule weekday12, !- Thursday Schedule:Day Name + exterior lighting schedule weekday12, !- Friday Schedule:Day Name + exterior lighting schedule weekend12, !- Saturday Schedule:Day Name + Schedule Day 17, !- Holiday Schedule:Day Name + Schedule Day 17, !- SummerDesignDay Schedule:Day Name + Schedule Day 17, !- WinterDesignDay Schedule:Day Name + Schedule Day 17, !- CustomDay1 Schedule:Day Name + Schedule Day 17; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + exterior lighting schedule, !- Name + Fractional, !- Schedule Type Limits Name + exterior lighting schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + exterior lighting schedule Week Rule - Jan7-Jan27, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 1, !- End Month 2 + 27, !- End Day 2 + exterior lighting schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 3 + 1, !- Start Month 3 + 28, !- Start Day 3 + 2, !- End Month 3 + 3, !- End Day 3 + exterior lighting schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 4 + 2, !- Start Month 4 + 4, !- Start Day 4 + 2, !- End Month 4 + 24, !- End Day 4 + exterior lighting schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 5 + 2, !- Start Month 5 + 25, !- Start Day 5 + 3, !- End Month 5 + 3, !- End Day 5 + exterior lighting schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 6 + 3, !- Start Month 6 + 4, !- Start Day 6 + 3, !- End Month 6 + 31, !- End Day 6 + exterior lighting schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 7 + 4, !- Start Month 7 + 1, !- Start Day 7 + 4, !- End Month 7 + 28, !- End Day 7 + exterior lighting schedule Week Rule - Apr29-May5, !- Schedule:Week Name 8 + 4, !- Start Month 8 + 29, !- Start Day 8 + 5, !- End Month 8 + 5, !- End Day 8 + exterior lighting schedule Week Rule - May6-May26, !- Schedule:Week Name 9 + 5, !- Start Month 9 + 6, !- Start Day 9 + 5, !- End Month 9 + 26, !- End Day 9 + exterior lighting schedule Week Rule - May27-Jun2, !- Schedule:Week Name 10 + 5, !- Start Month 10 + 27, !- Start Day 10 + 6, !- End Month 10 + 2, !- End Day 10 + exterior lighting schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 11 + 6, !- Start Month 11 + 3, !- Start Day 11 + 6, !- End Month 11 + 30, !- End Day 11 + exterior lighting schedule Week Rule - Jul1-Aug25, !- Schedule:Week Name 12 + 7, !- Start Month 12 + 1, !- Start Day 12 + 8, !- End Month 12 + 25, !- End Day 12 + exterior lighting schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 13 + 8, !- Start Month 13 + 26, !- Start Day 13 + 9, !- End Month 13 + 1, !- End Day 13 + exterior lighting schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 14 + 9, !- Start Month 14 + 2, !- Start Day 14 + 9, !- End Month 14 + 29, !- End Day 14 + exterior lighting schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 15 + 9, !- Start Month 15 + 30, !- Start Day 15 + 10, !- End Month 15 + 6, !- End Day 15 + exterior lighting schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 16 + 10, !- Start Month 16 + 7, !- Start Day 16 + 10, !- End Month 16 + 27, !- End Day 16 + exterior lighting schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 17 + 10, !- Start Month 17 + 28, !- Start Day 17 + 11, !- End Month 17 + 3, !- End Day 17 + exterior lighting schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 18 + 11, !- Start Month 18 + 4, !- Start Day 18 + 11, !- End Month 18 + 24, !- End Day 18 + exterior lighting schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 19 + 11, !- Start Month 19 + 25, !- Start Day 19 + 12, !- End Month 19 + 1, !- End Day 19 + exterior lighting schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 20 + 12, !- Start Month 20 + 2, !- Start Day 20 + 12, !- End Month 20 + 31; !- End Day 20 + + Schedule:Week:Daily, + fridge Week Rule - Jan1-Jan27, !- Name + fridge allday1, !- Sunday Schedule:Day Name + fridge allday1, !- Monday Schedule:Day Name + fridge allday1, !- Tuesday Schedule:Day Name + fridge allday1, !- Wednesday Schedule:Day Name + fridge allday1, !- Thursday Schedule:Day Name + fridge allday1, !- Friday Schedule:Day Name + fridge allday1, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Jan28-Feb3, !- Name + fridge allday1, !- Sunday Schedule:Day Name + fridge allday1, !- Monday Schedule:Day Name + fridge allday1, !- Tuesday Schedule:Day Name + fridge allday1, !- Wednesday Schedule:Day Name + fridge allday2, !- Thursday Schedule:Day Name + fridge allday2, !- Friday Schedule:Day Name + fridge allday2, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Feb4-Feb24, !- Name + fridge allday2, !- Sunday Schedule:Day Name + fridge allday2, !- Monday Schedule:Day Name + fridge allday2, !- Tuesday Schedule:Day Name + fridge allday2, !- Wednesday Schedule:Day Name + fridge allday2, !- Thursday Schedule:Day Name + fridge allday2, !- Friday Schedule:Day Name + fridge allday2, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Feb25-Mar3, !- Name + fridge allday2, !- Sunday Schedule:Day Name + fridge allday2, !- Monday Schedule:Day Name + fridge allday2, !- Tuesday Schedule:Day Name + fridge allday2, !- Wednesday Schedule:Day Name + fridge allday3, !- Thursday Schedule:Day Name + fridge allday3, !- Friday Schedule:Day Name + fridge allday3, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Mar4-May26, !- Name + fridge allday3, !- Sunday Schedule:Day Name + fridge allday3, !- Monday Schedule:Day Name + fridge allday3, !- Tuesday Schedule:Day Name + fridge allday3, !- Wednesday Schedule:Day Name + fridge allday3, !- Thursday Schedule:Day Name + fridge allday3, !- Friday Schedule:Day Name + fridge allday3, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - May27-Jun2, !- Name + fridge allday3, !- Sunday Schedule:Day Name + fridge allday3, !- Monday Schedule:Day Name + fridge allday3, !- Tuesday Schedule:Day Name + fridge allday3, !- Wednesday Schedule:Day Name + fridge allday3, !- Thursday Schedule:Day Name + fridge allday6, !- Friday Schedule:Day Name + fridge allday6, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Jun3-Sep29, !- Name + fridge allday6, !- Sunday Schedule:Day Name + fridge allday6, !- Monday Schedule:Day Name + fridge allday6, !- Tuesday Schedule:Day Name + fridge allday6, !- Wednesday Schedule:Day Name + fridge allday6, !- Thursday Schedule:Day Name + fridge allday6, !- Friday Schedule:Day Name + fridge allday6, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Sep30-Oct6, !- Name + fridge allday6, !- Sunday Schedule:Day Name + fridge allday10, !- Monday Schedule:Day Name + fridge allday10, !- Tuesday Schedule:Day Name + fridge allday10, !- Wednesday Schedule:Day Name + fridge allday10, !- Thursday Schedule:Day Name + fridge allday10, !- Friday Schedule:Day Name + fridge allday10, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Oct7-Oct27, !- Name + fridge allday10, !- Sunday Schedule:Day Name + fridge allday10, !- Monday Schedule:Day Name + fridge allday10, !- Tuesday Schedule:Day Name + fridge allday10, !- Wednesday Schedule:Day Name + fridge allday10, !- Thursday Schedule:Day Name + fridge allday10, !- Friday Schedule:Day Name + fridge allday10, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Oct28-Nov3, !- Name + fridge allday10, !- Sunday Schedule:Day Name + fridge allday10, !- Monday Schedule:Day Name + fridge allday10, !- Tuesday Schedule:Day Name + fridge allday10, !- Wednesday Schedule:Day Name + fridge allday11, !- Thursday Schedule:Day Name + fridge allday11, !- Friday Schedule:Day Name + fridge allday11, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Nov4-Nov24, !- Name + fridge allday11, !- Sunday Schedule:Day Name + fridge allday11, !- Monday Schedule:Day Name + fridge allday11, !- Tuesday Schedule:Day Name + fridge allday11, !- Wednesday Schedule:Day Name + fridge allday11, !- Thursday Schedule:Day Name + fridge allday11, !- Friday Schedule:Day Name + fridge allday11, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Nov25-Dec1, !- Name + fridge allday11, !- Sunday Schedule:Day Name + fridge allday11, !- Monday Schedule:Day Name + fridge allday11, !- Tuesday Schedule:Day Name + fridge allday11, !- Wednesday Schedule:Day Name + fridge allday11, !- Thursday Schedule:Day Name + fridge allday11, !- Friday Schedule:Day Name + fridge allday12, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + fridge Week Rule - Dec2-Dec31, !- Name + fridge allday12, !- Sunday Schedule:Day Name + fridge allday12, !- Monday Schedule:Day Name + fridge allday12, !- Tuesday Schedule:Day Name + fridge allday12, !- Wednesday Schedule:Day Name + fridge allday12, !- Thursday Schedule:Day Name + fridge allday12, !- Friday Schedule:Day Name + fridge allday12, !- Saturday Schedule:Day Name + Schedule Day 11, !- Holiday Schedule:Day Name + Schedule Day 11, !- SummerDesignDay Schedule:Day Name + Schedule Day 11, !- WinterDesignDay Schedule:Day Name + Schedule Day 11, !- CustomDay1 Schedule:Day Name + Schedule Day 11; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + fridge, !- Name + Fractional, !- Schedule Type Limits Name + fridge Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 27, !- End Day 1 + fridge Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 28, !- Start Day 2 + 2, !- End Month 2 + 3, !- End Day 2 + fridge Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 + 2, !- Start Month 3 + 4, !- Start Day 3 + 2, !- End Month 3 + 24, !- End Day 3 + fridge Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 + 2, !- Start Month 4 + 25, !- Start Day 4 + 3, !- End Month 4 + 3, !- End Day 4 + fridge Week Rule - Mar4-May26, !- Schedule:Week Name 5 + 3, !- Start Month 5 + 4, !- Start Day 5 + 5, !- End Month 5 + 26, !- End Day 5 + fridge Week Rule - May27-Jun2, !- Schedule:Week Name 6 + 5, !- Start Month 6 + 27, !- Start Day 6 + 6, !- End Month 6 + 2, !- End Day 6 + fridge Week Rule - Jun3-Sep29, !- Schedule:Week Name 7 + 6, !- Start Month 7 + 3, !- Start Day 7 + 9, !- End Month 7 + 29, !- End Day 7 + fridge Week Rule - Sep30-Oct6, !- Schedule:Week Name 8 + 9, !- Start Month 8 + 30, !- Start Day 8 + 10, !- End Month 8 + 6, !- End Day 8 + fridge Week Rule - Oct7-Oct27, !- Schedule:Week Name 9 + 10, !- Start Month 9 + 7, !- Start Day 9 + 10, !- End Month 9 + 27, !- End Day 9 + fridge Week Rule - Oct28-Nov3, !- Schedule:Week Name 10 + 10, !- Start Month 10 + 28, !- Start Day 10 + 11, !- End Month 10 + 3, !- End Day 10 + fridge Week Rule - Nov4-Nov24, !- Schedule:Week Name 11 + 11, !- Start Month 11 + 4, !- Start Day 11 + 11, !- End Month 11 + 24, !- End Day 11 + fridge Week Rule - Nov25-Dec1, !- Schedule:Week Name 12 + 11, !- Start Month 12 + 25, !- Start Day 12 + 12, !- End Month 12 + 1, !- End Day 12 + fridge Week Rule - Dec2-Dec31, !- Schedule:Week Name 13 + 12, !- Start Month 13 + 2, !- Start Day 13 + 12, !- End Month 13 + 31; !- End Day 13 + + Schedule:Week:Daily, + heating season schedule Week Rule - Jan1-Feb24, !- Name + heating season schedule allday1, !- Sunday Schedule:Day Name + heating season schedule allday1, !- Monday Schedule:Day Name + heating season schedule allday1, !- Tuesday Schedule:Day Name + heating season schedule allday1, !- Wednesday Schedule:Day Name + heating season schedule allday1, !- Thursday Schedule:Day Name + heating season schedule allday1, !- Friday Schedule:Day Name + heating season schedule allday1, !- Saturday Schedule:Day Name + Schedule Day 6, !- Holiday Schedule:Day Name + Schedule Day 6, !- SummerDesignDay Schedule:Day Name + Schedule Day 6, !- WinterDesignDay Schedule:Day Name + Schedule Day 6, !- CustomDay1 Schedule:Day Name + Schedule Day 6; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + heating season schedule Week Rule - Feb25-Mar3, !- Name + heating season schedule allday1, !- Sunday Schedule:Day Name + heating season schedule allday1, !- Monday Schedule:Day Name + heating season schedule allday1, !- Tuesday Schedule:Day Name + heating season schedule allday1, !- Wednesday Schedule:Day Name + heating season schedule allday3, !- Thursday Schedule:Day Name + heating season schedule allday3, !- Friday Schedule:Day Name + heating season schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 6, !- Holiday Schedule:Day Name + Schedule Day 6, !- SummerDesignDay Schedule:Day Name + Schedule Day 6, !- WinterDesignDay Schedule:Day Name + Schedule Day 6, !- CustomDay1 Schedule:Day Name + Schedule Day 6; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + heating season schedule Week Rule - Mar4-Oct27, !- Name + heating season schedule allday3, !- Sunday Schedule:Day Name + heating season schedule allday3, !- Monday Schedule:Day Name + heating season schedule allday3, !- Tuesday Schedule:Day Name + heating season schedule allday3, !- Wednesday Schedule:Day Name + heating season schedule allday3, !- Thursday Schedule:Day Name + heating season schedule allday3, !- Friday Schedule:Day Name + heating season schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 6, !- Holiday Schedule:Day Name + Schedule Day 6, !- SummerDesignDay Schedule:Day Name + Schedule Day 6, !- WinterDesignDay Schedule:Day Name + Schedule Day 6, !- CustomDay1 Schedule:Day Name + Schedule Day 6; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + heating season schedule Week Rule - Oct28-Nov3, !- Name + heating season schedule allday3, !- Sunday Schedule:Day Name + heating season schedule allday3, !- Monday Schedule:Day Name + heating season schedule allday3, !- Tuesday Schedule:Day Name + heating season schedule allday3, !- Wednesday Schedule:Day Name + heating season schedule allday11, !- Thursday Schedule:Day Name + heating season schedule allday11, !- Friday Schedule:Day Name + heating season schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 6, !- Holiday Schedule:Day Name + Schedule Day 6, !- SummerDesignDay Schedule:Day Name + Schedule Day 6, !- WinterDesignDay Schedule:Day Name + Schedule Day 6, !- CustomDay1 Schedule:Day Name + Schedule Day 6; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + heating season schedule Week Rule - Nov4-Dec31, !- Name + heating season schedule allday11, !- Sunday Schedule:Day Name + heating season schedule allday11, !- Monday Schedule:Day Name + heating season schedule allday11, !- Tuesday Schedule:Day Name + heating season schedule allday11, !- Wednesday Schedule:Day Name + heating season schedule allday11, !- Thursday Schedule:Day Name + heating season schedule allday11, !- Friday Schedule:Day Name + heating season schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 6, !- Holiday Schedule:Day Name + Schedule Day 6, !- SummerDesignDay Schedule:Day Name + Schedule Day 6, !- WinterDesignDay Schedule:Day Name + Schedule Day 6, !- CustomDay1 Schedule:Day Name + Schedule Day 6; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + heating season schedule, !- Name + Fractional, !- Schedule Type Limits Name + heating season schedule Week Rule - Jan1-Feb24, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 2, !- End Month 1 + 24, !- End Day 1 + heating season schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 2 + 2, !- Start Month 2 + 25, !- Start Day 2 + 3, !- End Month 2 + 3, !- End Day 2 + heating season schedule Week Rule - Mar4-Oct27, !- Schedule:Week Name 3 + 3, !- Start Month 3 + 4, !- Start Day 3 + 10, !- End Month 3 + 27, !- End Day 3 + heating season schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 4 + 10, !- Start Month 4 + 28, !- Start Day 4 + 11, !- End Month 4 + 3, !- End Day 4 + heating season schedule Week Rule - Nov4-Dec31, !- Schedule:Week Name 5 + 11, !- Start Month 5 + 4, !- Start Day 5 + 12, !- End Month 5 + 31; !- End Day 5 + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Jan1-Jan27, !- Name + misc plug loads schedule allday1, !- Sunday Schedule:Day Name + misc plug loads schedule allday1, !- Monday Schedule:Day Name + misc plug loads schedule allday1, !- Tuesday Schedule:Day Name + misc plug loads schedule allday1, !- Wednesday Schedule:Day Name + misc plug loads schedule allday1, !- Thursday Schedule:Day Name + misc plug loads schedule allday1, !- Friday Schedule:Day Name + misc plug loads schedule allday1, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Jan28-Feb3, !- Name + misc plug loads schedule allday1, !- Sunday Schedule:Day Name + misc plug loads schedule allday1, !- Monday Schedule:Day Name + misc plug loads schedule allday1, !- Tuesday Schedule:Day Name + misc plug loads schedule allday1, !- Wednesday Schedule:Day Name + misc plug loads schedule allday2, !- Thursday Schedule:Day Name + misc plug loads schedule allday2, !- Friday Schedule:Day Name + misc plug loads schedule allday2, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Feb4-Feb24, !- Name + misc plug loads schedule allday2, !- Sunday Schedule:Day Name + misc plug loads schedule allday2, !- Monday Schedule:Day Name + misc plug loads schedule allday2, !- Tuesday Schedule:Day Name + misc plug loads schedule allday2, !- Wednesday Schedule:Day Name + misc plug loads schedule allday2, !- Thursday Schedule:Day Name + misc plug loads schedule allday2, !- Friday Schedule:Day Name + misc plug loads schedule allday2, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Feb25-Mar3, !- Name + misc plug loads schedule allday2, !- Sunday Schedule:Day Name + misc plug loads schedule allday2, !- Monday Schedule:Day Name + misc plug loads schedule allday2, !- Tuesday Schedule:Day Name + misc plug loads schedule allday2, !- Wednesday Schedule:Day Name + misc plug loads schedule allday3, !- Thursday Schedule:Day Name + misc plug loads schedule allday3, !- Friday Schedule:Day Name + misc plug loads schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Mar4-Mar31, !- Name + misc plug loads schedule allday3, !- Sunday Schedule:Day Name + misc plug loads schedule allday3, !- Monday Schedule:Day Name + misc plug loads schedule allday3, !- Tuesday Schedule:Day Name + misc plug loads schedule allday3, !- Wednesday Schedule:Day Name + misc plug loads schedule allday3, !- Thursday Schedule:Day Name + misc plug loads schedule allday3, !- Friday Schedule:Day Name + misc plug loads schedule allday3, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Apr1-Apr28, !- Name + misc plug loads schedule allday4, !- Sunday Schedule:Day Name + misc plug loads schedule allday4, !- Monday Schedule:Day Name + misc plug loads schedule allday4, !- Tuesday Schedule:Day Name + misc plug loads schedule allday4, !- Wednesday Schedule:Day Name + misc plug loads schedule allday4, !- Thursday Schedule:Day Name + misc plug loads schedule allday4, !- Friday Schedule:Day Name + misc plug loads schedule allday4, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Apr29-May5, !- Name + misc plug loads schedule allday4, !- Sunday Schedule:Day Name + misc plug loads schedule allday4, !- Monday Schedule:Day Name + misc plug loads schedule allday5, !- Tuesday Schedule:Day Name + misc plug loads schedule allday5, !- Wednesday Schedule:Day Name + misc plug loads schedule allday5, !- Thursday Schedule:Day Name + misc plug loads schedule allday5, !- Friday Schedule:Day Name + misc plug loads schedule allday5, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - May6-May26, !- Name + misc plug loads schedule allday5, !- Sunday Schedule:Day Name + misc plug loads schedule allday5, !- Monday Schedule:Day Name + misc plug loads schedule allday5, !- Tuesday Schedule:Day Name + misc plug loads schedule allday5, !- Wednesday Schedule:Day Name + misc plug loads schedule allday5, !- Thursday Schedule:Day Name + misc plug loads schedule allday5, !- Friday Schedule:Day Name + misc plug loads schedule allday5, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - May27-Jun2, !- Name + misc plug loads schedule allday5, !- Sunday Schedule:Day Name + misc plug loads schedule allday5, !- Monday Schedule:Day Name + misc plug loads schedule allday5, !- Tuesday Schedule:Day Name + misc plug loads schedule allday5, !- Wednesday Schedule:Day Name + misc plug loads schedule allday5, !- Thursday Schedule:Day Name + misc plug loads schedule allday6, !- Friday Schedule:Day Name + misc plug loads schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Jun3-Jun30, !- Name + misc plug loads schedule allday6, !- Sunday Schedule:Day Name + misc plug loads schedule allday6, !- Monday Schedule:Day Name + misc plug loads schedule allday6, !- Tuesday Schedule:Day Name + misc plug loads schedule allday6, !- Wednesday Schedule:Day Name + misc plug loads schedule allday6, !- Thursday Schedule:Day Name + misc plug loads schedule allday6, !- Friday Schedule:Day Name + misc plug loads schedule allday6, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Jul1-Aug25, !- Name + misc plug loads schedule allday7, !- Sunday Schedule:Day Name + misc plug loads schedule allday7, !- Monday Schedule:Day Name + misc plug loads schedule allday7, !- Tuesday Schedule:Day Name + misc plug loads schedule allday7, !- Wednesday Schedule:Day Name + misc plug loads schedule allday7, !- Thursday Schedule:Day Name + misc plug loads schedule allday7, !- Friday Schedule:Day Name + misc plug loads schedule allday7, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Aug26-Sep1, !- Name + misc plug loads schedule allday7, !- Sunday Schedule:Day Name + misc plug loads schedule allday7, !- Monday Schedule:Day Name + misc plug loads schedule allday7, !- Tuesday Schedule:Day Name + misc plug loads schedule allday7, !- Wednesday Schedule:Day Name + misc plug loads schedule allday7, !- Thursday Schedule:Day Name + misc plug loads schedule allday7, !- Friday Schedule:Day Name + misc plug loads schedule allday9, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Sep2-Sep29, !- Name + misc plug loads schedule allday9, !- Sunday Schedule:Day Name + misc plug loads schedule allday9, !- Monday Schedule:Day Name + misc plug loads schedule allday9, !- Tuesday Schedule:Day Name + misc plug loads schedule allday9, !- Wednesday Schedule:Day Name + misc plug loads schedule allday9, !- Thursday Schedule:Day Name + misc plug loads schedule allday9, !- Friday Schedule:Day Name + misc plug loads schedule allday9, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Sep30-Oct6, !- Name + misc plug loads schedule allday9, !- Sunday Schedule:Day Name + misc plug loads schedule allday10, !- Monday Schedule:Day Name + misc plug loads schedule allday10, !- Tuesday Schedule:Day Name + misc plug loads schedule allday10, !- Wednesday Schedule:Day Name + misc plug loads schedule allday10, !- Thursday Schedule:Day Name + misc plug loads schedule allday10, !- Friday Schedule:Day Name + misc plug loads schedule allday10, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Oct7-Oct27, !- Name + misc plug loads schedule allday10, !- Sunday Schedule:Day Name + misc plug loads schedule allday10, !- Monday Schedule:Day Name + misc plug loads schedule allday10, !- Tuesday Schedule:Day Name + misc plug loads schedule allday10, !- Wednesday Schedule:Day Name + misc plug loads schedule allday10, !- Thursday Schedule:Day Name + misc plug loads schedule allday10, !- Friday Schedule:Day Name + misc plug loads schedule allday10, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Oct28-Nov3, !- Name + misc plug loads schedule allday10, !- Sunday Schedule:Day Name + misc plug loads schedule allday10, !- Monday Schedule:Day Name + misc plug loads schedule allday10, !- Tuesday Schedule:Day Name + misc plug loads schedule allday10, !- Wednesday Schedule:Day Name + misc plug loads schedule allday11, !- Thursday Schedule:Day Name + misc plug loads schedule allday11, !- Friday Schedule:Day Name + misc plug loads schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Nov4-Nov24, !- Name + misc plug loads schedule allday11, !- Sunday Schedule:Day Name + misc plug loads schedule allday11, !- Monday Schedule:Day Name + misc plug loads schedule allday11, !- Tuesday Schedule:Day Name + misc plug loads schedule allday11, !- Wednesday Schedule:Day Name + misc plug loads schedule allday11, !- Thursday Schedule:Day Name + misc plug loads schedule allday11, !- Friday Schedule:Day Name + misc plug loads schedule allday11, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Nov25-Dec1, !- Name + misc plug loads schedule allday11, !- Sunday Schedule:Day Name + misc plug loads schedule allday11, !- Monday Schedule:Day Name + misc plug loads schedule allday11, !- Tuesday Schedule:Day Name + misc plug loads schedule allday11, !- Wednesday Schedule:Day Name + misc plug loads schedule allday11, !- Thursday Schedule:Day Name + misc plug loads schedule allday11, !- Friday Schedule:Day Name + misc plug loads schedule allday12, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc plug loads schedule Week Rule - Dec2-Dec31, !- Name + misc plug loads schedule allday12, !- Sunday Schedule:Day Name + misc plug loads schedule allday12, !- Monday Schedule:Day Name + misc plug loads schedule allday12, !- Tuesday Schedule:Day Name + misc plug loads schedule allday12, !- Wednesday Schedule:Day Name + misc plug loads schedule allday12, !- Thursday Schedule:Day Name + misc plug loads schedule allday12, !- Friday Schedule:Day Name + misc plug loads schedule allday12, !- Saturday Schedule:Day Name + Schedule Day 14, !- Holiday Schedule:Day Name + Schedule Day 14, !- SummerDesignDay Schedule:Day Name + Schedule Day 14, !- WinterDesignDay Schedule:Day Name + Schedule Day 14, !- CustomDay1 Schedule:Day Name + Schedule Day 14; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + misc plug loads schedule,!- Name + Fractional, !- Schedule Type Limits Name + misc plug loads schedule Week Rule - Jan1-Jan27, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 27, !- End Day 1 + misc plug loads schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 28, !- Start Day 2 + 2, !- End Month 2 + 3, !- End Day 2 + misc plug loads schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 3 + 2, !- Start Month 3 + 4, !- Start Day 3 + 2, !- End Month 3 + 24, !- End Day 3 + misc plug loads schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 4 + 2, !- Start Month 4 + 25, !- Start Day 4 + 3, !- End Month 4 + 3, !- End Day 4 + misc plug loads schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 5 + 3, !- Start Month 5 + 4, !- Start Day 5 + 3, !- End Month 5 + 31, !- End Day 5 + misc plug loads schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 6 + 4, !- Start Month 6 + 1, !- Start Day 6 + 4, !- End Month 6 + 28, !- End Day 6 + misc plug loads schedule Week Rule - Apr29-May5, !- Schedule:Week Name 7 + 4, !- Start Month 7 + 29, !- Start Day 7 + 5, !- End Month 7 + 5, !- End Day 7 + misc plug loads schedule Week Rule - May6-May26, !- Schedule:Week Name 8 + 5, !- Start Month 8 + 6, !- Start Day 8 + 5, !- End Month 8 + 26, !- End Day 8 + misc plug loads schedule Week Rule - May27-Jun2, !- Schedule:Week Name 9 + 5, !- Start Month 9 + 27, !- Start Day 9 + 6, !- End Month 9 + 2, !- End Day 9 + misc plug loads schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 10 + 6, !- Start Month 10 + 3, !- Start Day 10 + 6, !- End Month 10 + 30, !- End Day 10 + misc plug loads schedule Week Rule - Jul1-Aug25, !- Schedule:Week Name 11 + 7, !- Start Month 11 + 1, !- Start Day 11 + 8, !- End Month 11 + 25, !- End Day 11 + misc plug loads schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 12 + 8, !- Start Month 12 + 26, !- Start Day 12 + 9, !- End Month 12 + 1, !- End Day 12 + misc plug loads schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 13 + 9, !- Start Month 13 + 2, !- Start Day 13 + 9, !- End Month 13 + 29, !- End Day 13 + misc plug loads schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 14 + 9, !- Start Month 14 + 30, !- Start Day 14 + 10, !- End Month 14 + 6, !- End Day 14 + misc plug loads schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 15 + 10, !- Start Month 15 + 7, !- Start Day 15 + 10, !- End Month 15 + 27, !- End Day 15 + misc plug loads schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 16 + 10, !- Start Month 16 + 28, !- Start Day 16 + 11, !- End Month 16 + 3, !- End Day 16 + misc plug loads schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 17 + 11, !- Start Month 17 + 4, !- Start Day 17 + 11, !- End Month 17 + 24, !- End Day 17 + misc plug loads schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 18 + 11, !- Start Month 18 + 25, !- Start Day 18 + 12, !- End Month 18 + 1, !- End Day 18 + misc plug loads schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 19 + 12, !- Start Month 19 + 2, !- Start Day 19 + 12, !- End Month 19 + 31; !- End Day 19 + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jan1-Jan6, !- Name + misc tv schedule weekday1, !- Sunday Schedule:Day Name + misc tv schedule weekday1, !- Monday Schedule:Day Name + misc tv schedule weekday1, !- Tuesday Schedule:Day Name + misc tv schedule weekday1, !- Wednesday Schedule:Day Name + misc tv schedule weekday1, !- Thursday Schedule:Day Name + misc tv schedule weekday1, !- Friday Schedule:Day Name + misc tv schedule weekend1, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jan7-Jan27, !- Name + misc tv schedule weekend1, !- Sunday Schedule:Day Name + misc tv schedule weekday1, !- Monday Schedule:Day Name + misc tv schedule weekday1, !- Tuesday Schedule:Day Name + misc tv schedule weekday1, !- Wednesday Schedule:Day Name + misc tv schedule weekday1, !- Thursday Schedule:Day Name + misc tv schedule weekday1, !- Friday Schedule:Day Name + misc tv schedule weekend1, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jan28-Feb3, !- Name + misc tv schedule weekend1, !- Sunday Schedule:Day Name + misc tv schedule weekday1, !- Monday Schedule:Day Name + misc tv schedule weekday1, !- Tuesday Schedule:Day Name + misc tv schedule weekday1, !- Wednesday Schedule:Day Name + misc tv schedule weekday2, !- Thursday Schedule:Day Name + misc tv schedule weekday2, !- Friday Schedule:Day Name + misc tv schedule weekend2, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Feb4-Feb24, !- Name + misc tv schedule weekend2, !- Sunday Schedule:Day Name + misc tv schedule weekday2, !- Monday Schedule:Day Name + misc tv schedule weekday2, !- Tuesday Schedule:Day Name + misc tv schedule weekday2, !- Wednesday Schedule:Day Name + misc tv schedule weekday2, !- Thursday Schedule:Day Name + misc tv schedule weekday2, !- Friday Schedule:Day Name + misc tv schedule weekend2, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Feb25-Mar3, !- Name + misc tv schedule weekend2, !- Sunday Schedule:Day Name + misc tv schedule weekday2, !- Monday Schedule:Day Name + misc tv schedule weekday2, !- Tuesday Schedule:Day Name + misc tv schedule weekday2, !- Wednesday Schedule:Day Name + misc tv schedule weekday3, !- Thursday Schedule:Day Name + misc tv schedule weekday3, !- Friday Schedule:Day Name + misc tv schedule weekend3, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Mar4-Mar31, !- Name + misc tv schedule weekend3, !- Sunday Schedule:Day Name + misc tv schedule weekday3, !- Monday Schedule:Day Name + misc tv schedule weekday3, !- Tuesday Schedule:Day Name + misc tv schedule weekday3, !- Wednesday Schedule:Day Name + misc tv schedule weekday3, !- Thursday Schedule:Day Name + misc tv schedule weekday3, !- Friday Schedule:Day Name + misc tv schedule weekend3, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Apr1-Apr28, !- Name + misc tv schedule weekend4, !- Sunday Schedule:Day Name + misc tv schedule weekday4, !- Monday Schedule:Day Name + misc tv schedule weekday4, !- Tuesday Schedule:Day Name + misc tv schedule weekday4, !- Wednesday Schedule:Day Name + misc tv schedule weekday4, !- Thursday Schedule:Day Name + misc tv schedule weekday4, !- Friday Schedule:Day Name + misc tv schedule weekend4, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Apr29-May5, !- Name + misc tv schedule weekend4, !- Sunday Schedule:Day Name + misc tv schedule weekday4, !- Monday Schedule:Day Name + misc tv schedule weekday5, !- Tuesday Schedule:Day Name + misc tv schedule weekday5, !- Wednesday Schedule:Day Name + misc tv schedule weekday5, !- Thursday Schedule:Day Name + misc tv schedule weekday5, !- Friday Schedule:Day Name + misc tv schedule weekend5, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - May6-May26, !- Name + misc tv schedule weekend5, !- Sunday Schedule:Day Name + misc tv schedule weekday5, !- Monday Schedule:Day Name + misc tv schedule weekday5, !- Tuesday Schedule:Day Name + misc tv schedule weekday5, !- Wednesday Schedule:Day Name + misc tv schedule weekday5, !- Thursday Schedule:Day Name + misc tv schedule weekday5, !- Friday Schedule:Day Name + misc tv schedule weekend5, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - May27-Jun2, !- Name + misc tv schedule weekend5, !- Sunday Schedule:Day Name + misc tv schedule weekday5, !- Monday Schedule:Day Name + misc tv schedule weekday5, !- Tuesday Schedule:Day Name + misc tv schedule weekday5, !- Wednesday Schedule:Day Name + misc tv schedule weekday5, !- Thursday Schedule:Day Name + misc tv schedule weekday6, !- Friday Schedule:Day Name + misc tv schedule weekend6, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jun3-Jun30, !- Name + misc tv schedule weekend6, !- Sunday Schedule:Day Name + misc tv schedule weekday6, !- Monday Schedule:Day Name + misc tv schedule weekday6, !- Tuesday Schedule:Day Name + misc tv schedule weekday6, !- Wednesday Schedule:Day Name + misc tv schedule weekday6, !- Thursday Schedule:Day Name + misc tv schedule weekday6, !- Friday Schedule:Day Name + misc tv schedule weekend6, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jul1-Jul28, !- Name + misc tv schedule weekend7, !- Sunday Schedule:Day Name + misc tv schedule weekday7, !- Monday Schedule:Day Name + misc tv schedule weekday7, !- Tuesday Schedule:Day Name + misc tv schedule weekday7, !- Wednesday Schedule:Day Name + misc tv schedule weekday7, !- Thursday Schedule:Day Name + misc tv schedule weekday7, !- Friday Schedule:Day Name + misc tv schedule weekend7, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Jul29-Aug4, !- Name + misc tv schedule weekend7, !- Sunday Schedule:Day Name + misc tv schedule weekday7, !- Monday Schedule:Day Name + misc tv schedule weekday7, !- Tuesday Schedule:Day Name + misc tv schedule weekday8, !- Wednesday Schedule:Day Name + misc tv schedule weekday8, !- Thursday Schedule:Day Name + misc tv schedule weekday8, !- Friday Schedule:Day Name + misc tv schedule weekend8, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Aug5-Aug25, !- Name + misc tv schedule weekend8, !- Sunday Schedule:Day Name + misc tv schedule weekday8, !- Monday Schedule:Day Name + misc tv schedule weekday8, !- Tuesday Schedule:Day Name + misc tv schedule weekday8, !- Wednesday Schedule:Day Name + misc tv schedule weekday8, !- Thursday Schedule:Day Name + misc tv schedule weekday8, !- Friday Schedule:Day Name + misc tv schedule weekend8, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Aug26-Sep1, !- Name + misc tv schedule weekend8, !- Sunday Schedule:Day Name + misc tv schedule weekday8, !- Monday Schedule:Day Name + misc tv schedule weekday8, !- Tuesday Schedule:Day Name + misc tv schedule weekday8, !- Wednesday Schedule:Day Name + misc tv schedule weekday8, !- Thursday Schedule:Day Name + misc tv schedule weekday8, !- Friday Schedule:Day Name + misc tv schedule weekend9, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Sep2-Sep29, !- Name + misc tv schedule weekend9, !- Sunday Schedule:Day Name + misc tv schedule weekday9, !- Monday Schedule:Day Name + misc tv schedule weekday9, !- Tuesday Schedule:Day Name + misc tv schedule weekday9, !- Wednesday Schedule:Day Name + misc tv schedule weekday9, !- Thursday Schedule:Day Name + misc tv schedule weekday9, !- Friday Schedule:Day Name + misc tv schedule weekend9, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Sep30-Oct6, !- Name + misc tv schedule weekend9, !- Sunday Schedule:Day Name + misc tv schedule weekday10, !- Monday Schedule:Day Name + misc tv schedule weekday10, !- Tuesday Schedule:Day Name + misc tv schedule weekday10, !- Wednesday Schedule:Day Name + misc tv schedule weekday10, !- Thursday Schedule:Day Name + misc tv schedule weekday10, !- Friday Schedule:Day Name + misc tv schedule weekend10, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Oct7-Oct27, !- Name + misc tv schedule weekend10, !- Sunday Schedule:Day Name + misc tv schedule weekday10, !- Monday Schedule:Day Name + misc tv schedule weekday10, !- Tuesday Schedule:Day Name + misc tv schedule weekday10, !- Wednesday Schedule:Day Name + misc tv schedule weekday10, !- Thursday Schedule:Day Name + misc tv schedule weekday10, !- Friday Schedule:Day Name + misc tv schedule weekend10, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Oct28-Nov3, !- Name + misc tv schedule weekend10, !- Sunday Schedule:Day Name + misc tv schedule weekday10, !- Monday Schedule:Day Name + misc tv schedule weekday10, !- Tuesday Schedule:Day Name + misc tv schedule weekday10, !- Wednesday Schedule:Day Name + misc tv schedule weekday11, !- Thursday Schedule:Day Name + misc tv schedule weekday11, !- Friday Schedule:Day Name + misc tv schedule weekend11, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Nov4-Nov24, !- Name + misc tv schedule weekend11, !- Sunday Schedule:Day Name + misc tv schedule weekday11, !- Monday Schedule:Day Name + misc tv schedule weekday11, !- Tuesday Schedule:Day Name + misc tv schedule weekday11, !- Wednesday Schedule:Day Name + misc tv schedule weekday11, !- Thursday Schedule:Day Name + misc tv schedule weekday11, !- Friday Schedule:Day Name + misc tv schedule weekend11, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Nov25-Dec1, !- Name + misc tv schedule weekend11, !- Sunday Schedule:Day Name + misc tv schedule weekday11, !- Monday Schedule:Day Name + misc tv schedule weekday11, !- Tuesday Schedule:Day Name + misc tv schedule weekday11, !- Wednesday Schedule:Day Name + misc tv schedule weekday11, !- Thursday Schedule:Day Name + misc tv schedule weekday11, !- Friday Schedule:Day Name + misc tv schedule weekend12, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + misc tv schedule Week Rule - Dec2-Dec31, !- Name + misc tv schedule weekend12, !- Sunday Schedule:Day Name + misc tv schedule weekday12, !- Monday Schedule:Day Name + misc tv schedule weekday12, !- Tuesday Schedule:Day Name + misc tv schedule weekday12, !- Wednesday Schedule:Day Name + misc tv schedule weekday12, !- Thursday Schedule:Day Name + misc tv schedule weekday12, !- Friday Schedule:Day Name + misc tv schedule weekend12, !- Saturday Schedule:Day Name + Schedule Day 15, !- Holiday Schedule:Day Name + Schedule Day 15, !- SummerDesignDay Schedule:Day Name + Schedule Day 15, !- WinterDesignDay Schedule:Day Name + Schedule Day 15, !- CustomDay1 Schedule:Day Name + Schedule Day 15; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + misc tv schedule, !- Name + Fractional, !- Schedule Type Limits Name + misc tv schedule Week Rule - Jan1-Jan6, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 6, !- End Day 1 + misc tv schedule Week Rule - Jan7-Jan27, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 7, !- Start Day 2 + 1, !- End Month 2 + 27, !- End Day 2 + misc tv schedule Week Rule - Jan28-Feb3, !- Schedule:Week Name 3 + 1, !- Start Month 3 + 28, !- Start Day 3 + 2, !- End Month 3 + 3, !- End Day 3 + misc tv schedule Week Rule - Feb4-Feb24, !- Schedule:Week Name 4 + 2, !- Start Month 4 + 4, !- Start Day 4 + 2, !- End Month 4 + 24, !- End Day 4 + misc tv schedule Week Rule - Feb25-Mar3, !- Schedule:Week Name 5 + 2, !- Start Month 5 + 25, !- Start Day 5 + 3, !- End Month 5 + 3, !- End Day 5 + misc tv schedule Week Rule - Mar4-Mar31, !- Schedule:Week Name 6 + 3, !- Start Month 6 + 4, !- Start Day 6 + 3, !- End Month 6 + 31, !- End Day 6 + misc tv schedule Week Rule - Apr1-Apr28, !- Schedule:Week Name 7 + 4, !- Start Month 7 + 1, !- Start Day 7 + 4, !- End Month 7 + 28, !- End Day 7 + misc tv schedule Week Rule - Apr29-May5, !- Schedule:Week Name 8 + 4, !- Start Month 8 + 29, !- Start Day 8 + 5, !- End Month 8 + 5, !- End Day 8 + misc tv schedule Week Rule - May6-May26, !- Schedule:Week Name 9 + 5, !- Start Month 9 + 6, !- Start Day 9 + 5, !- End Month 9 + 26, !- End Day 9 + misc tv schedule Week Rule - May27-Jun2, !- Schedule:Week Name 10 + 5, !- Start Month 10 + 27, !- Start Day 10 + 6, !- End Month 10 + 2, !- End Day 10 + misc tv schedule Week Rule - Jun3-Jun30, !- Schedule:Week Name 11 + 6, !- Start Month 11 + 3, !- Start Day 11 + 6, !- End Month 11 + 30, !- End Day 11 + misc tv schedule Week Rule - Jul1-Jul28, !- Schedule:Week Name 12 + 7, !- Start Month 12 + 1, !- Start Day 12 + 7, !- End Month 12 + 28, !- End Day 12 + misc tv schedule Week Rule - Jul29-Aug4, !- Schedule:Week Name 13 + 7, !- Start Month 13 + 29, !- Start Day 13 + 8, !- End Month 13 + 4, !- End Day 13 + misc tv schedule Week Rule - Aug5-Aug25, !- Schedule:Week Name 14 + 8, !- Start Month 14 + 5, !- Start Day 14 + 8, !- End Month 14 + 25, !- End Day 14 + misc tv schedule Week Rule - Aug26-Sep1, !- Schedule:Week Name 15 + 8, !- Start Month 15 + 26, !- Start Day 15 + 9, !- End Month 15 + 1, !- End Day 15 + misc tv schedule Week Rule - Sep2-Sep29, !- Schedule:Week Name 16 + 9, !- Start Month 16 + 2, !- Start Day 16 + 9, !- End Month 16 + 29, !- End Day 16 + misc tv schedule Week Rule - Sep30-Oct6, !- Schedule:Week Name 17 + 9, !- Start Month 17 + 30, !- Start Day 17 + 10, !- End Month 17 + 6, !- End Day 17 + misc tv schedule Week Rule - Oct7-Oct27, !- Schedule:Week Name 18 + 10, !- Start Month 18 + 7, !- Start Day 18 + 10, !- End Month 18 + 27, !- End Day 18 + misc tv schedule Week Rule - Oct28-Nov3, !- Schedule:Week Name 19 + 10, !- Start Month 19 + 28, !- Start Day 19 + 11, !- End Month 19 + 3, !- End Day 19 + misc tv schedule Week Rule - Nov4-Nov24, !- Schedule:Week Name 20 + 11, !- Start Month 20 + 4, !- Start Day 20 + 11, !- End Month 20 + 24, !- End Day 20 + misc tv schedule Week Rule - Nov25-Dec1, !- Schedule:Week Name 21 + 11, !- Start Month 21 + 25, !- Start Day 21 + 12, !- End Month 21 + 1, !- End Day 21 + misc tv schedule Week Rule - Dec2-Dec31, !- Schedule:Week Name 22 + 12, !- Start Month 22 + 2, !- Start Day 22 + 12, !- End Month 22 + 31; !- End Day 22 + + Schedule:Week:Daily, + natural vent avail schedule Week Rule - Jan1-Dec31, !- Name + natural vent avail schedule day, !- Sunday Schedule:Day Name + natural vent avail schedule day, !- Monday Schedule:Day Name + natural vent avail schedule day, !- Tuesday Schedule:Day Name + natural vent avail schedule day, !- Wednesday Schedule:Day Name + natural vent avail schedule day, !- Thursday Schedule:Day Name + natural vent avail schedule day, !- Friday Schedule:Day Name + natural vent avail schedule day, !- Saturday Schedule:Day Name + Schedule Day 18, !- Holiday Schedule:Day Name + Schedule Day 18, !- SummerDesignDay Schedule:Day Name + Schedule Day 18, !- WinterDesignDay Schedule:Day Name + Schedule Day 18, !- CustomDay1 Schedule:Day Name + Schedule Day 18; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + natural vent avail schedule, !- Name + OnOff, !- Schedule Type Limits Name + natural vent avail schedule Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Week:Daily, + occupants schedule Week Rule - Jan1-Dec31, !- Name + occupants schedule allday1, !- Sunday Schedule:Day Name + occupants schedule allday1, !- Monday Schedule:Day Name + occupants schedule allday1, !- Tuesday Schedule:Day Name + occupants schedule allday1, !- Wednesday Schedule:Day Name + occupants schedule allday1, !- Thursday Schedule:Day Name + occupants schedule allday1, !- Friday Schedule:Day Name + occupants schedule allday1, !- Saturday Schedule:Day Name + Schedule Day 7, !- Holiday Schedule:Day Name + Schedule Day 7, !- SummerDesignDay Schedule:Day Name + Schedule Day 7, !- WinterDesignDay Schedule:Day Name + Schedule Day 7, !- CustomDay1 Schedule:Day Name + Schedule Day 7; !- CustomDay2 Schedule:Day Name + + Schedule:Year, + occupants schedule, !- Name + Fractional, !- Schedule Type Limits Name + occupants schedule Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Compact, + mains temperature schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 01/03, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,15.7038888888889, !- Field 3 + Through: 01/04, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,15.6511111111111, !- Field 7 + Through: 01/05, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,15.6011111111111, !- Field 11 + Through: 01/06, !- Field 13 + For: AllDays, !- Field 14 + Until: 24:00,15.5527777777778, !- Field 15 + Through: 01/07, !- Field 17 + For: AllDays, !- Field 18 + Until: 24:00,15.5061111111111, !- Field 19 + Through: 01/08, !- Field 21 + For: AllDays, !- Field 22 + Until: 24:00,15.4616666666667, !- Field 23 + Through: 01/09, !- Field 25 + For: AllDays, !- Field 26 + Until: 24:00,15.4188888888889, !- Field 27 + Through: 01/10, !- Field 29 + For: AllDays, !- Field 30 + Until: 24:00,15.3783333333333, !- Field 31 + Through: 01/11, !- Field 33 + For: AllDays, !- Field 34 + Until: 24:00,15.3394444444444, !- Field 35 + Through: 01/12, !- Field 37 + For: AllDays, !- Field 38 + Until: 24:00,15.3027777777778, !- Field 39 + Through: 01/13, !- Field 41 + For: AllDays, !- Field 42 + Until: 24:00,15.2683333333333, !- Field 43 + Through: 01/14, !- Field 45 + For: AllDays, !- Field 46 + Until: 24:00,15.2355555555556, !- Field 47 + Through: 01/15, !- Field 49 + For: AllDays, !- Field 50 + Until: 24:00,15.205, !- Field 51 + Through: 01/16, !- Field 53 + For: AllDays, !- Field 54 + Until: 24:00,15.1761111111111, !- Field 55 + Through: 01/17, !- Field 57 + For: AllDays, !- Field 58 + Until: 24:00,15.15, !- Field 59 + Through: 01/18, !- Field 61 + For: AllDays, !- Field 62 + Until: 24:00,15.125, !- Field 63 + Through: 01/19, !- Field 65 + For: AllDays, !- Field 66 + Until: 24:00,15.1027777777778, !- Field 67 + Through: 01/20, !- Field 69 + For: AllDays, !- Field 70 + Until: 24:00,15.0822222222222, !- Field 71 + Through: 01/21, !- Field 73 + For: AllDays, !- Field 74 + Until: 24:00,15.0638888888889, !- Field 75 + Through: 01/22, !- Field 77 + For: AllDays, !- Field 78 + Until: 24:00,15.0477777777778, !- Field 79 + Through: 01/23, !- Field 81 + For: AllDays, !- Field 82 + Until: 24:00,15.0338888888889, !- Field 83 + Through: 01/24, !- Field 85 + For: AllDays, !- Field 86 + Until: 24:00,15.0216666666667, !- Field 87 + Through: 01/25, !- Field 89 + For: AllDays, !- Field 90 + Until: 24:00,15.0116666666667, !- Field 91 + Through: 01/26, !- Field 93 + For: AllDays, !- Field 94 + Until: 24:00,15.0038888888889, !- Field 95 + Through: 01/27, !- Field 97 + For: AllDays, !- Field 98 + Until: 24:00,14.9977777777778, !- Field 99 + Through: 01/28, !- Field 101 + For: AllDays, !- Field 102 + Until: 24:00,14.9938888888889, !- Field 103 + Through: 01/29, !- Field 105 + For: AllDays, !- Field 106 + Until: 24:00,14.9922222222222, !- Field 107 + Through: 01/30, !- Field 109 + For: AllDays, !- Field 110 + Until: 24:00,14.9927777777778, !- Field 111 + Through: 01/31, !- Field 113 + For: AllDays, !- Field 114 + Until: 24:00,14.9955555555556, !- Field 115 + Through: 02/01, !- Field 117 + For: AllDays, !- Field 118 + Until: 24:00,15, !- Field 119 + Through: 02/02, !- Field 121 + For: AllDays, !- Field 122 + Until: 24:00,15.0066666666667, !- Field 123 + Through: 02/03, !- Field 125 + For: AllDays, !- Field 126 + Until: 24:00,15.0155555555556, !- Field 127 + Through: 02/04, !- Field 129 + For: AllDays, !- Field 130 + Until: 24:00,15.0266666666667, !- Field 131 + Through: 02/05, !- Field 133 + For: AllDays, !- Field 134 + Until: 24:00,15.0394444444444, !- Field 135 + Through: 02/06, !- Field 137 + For: AllDays, !- Field 138 + Until: 24:00,15.055, !- Field 139 + Through: 02/07, !- Field 141 + For: AllDays, !- Field 142 + Until: 24:00,15.0716666666667, !- Field 143 + Through: 02/08, !- Field 145 + For: AllDays, !- Field 146 + Until: 24:00,15.0911111111111, !- Field 147 + Through: 02/09, !- Field 149 + For: AllDays, !- Field 150 + Until: 24:00,15.1122222222222, !- + Through: 02/10, !- + For: AllDays, !- + Until: 24:00,15.1361111111111, !- + Through: 02/11, !- + For: AllDays, !- + Until: 24:00,15.1611111111111, !- + Through: 02/12, !- + For: AllDays, !- + Until: 24:00,15.1888888888889, !- + Through: 02/13, !- + For: AllDays, !- + Until: 24:00,15.2183333333333, !- + Through: 02/14, !- + For: AllDays, !- + Until: 24:00,15.25, !- + Through: 02/15, !- + For: AllDays, !- + Until: 24:00,15.2833333333333, !- + Through: 02/16, !- + For: AllDays, !- + Until: 24:00,15.3188888888889, !- + Through: 02/17, !- + For: AllDays, !- + Until: 24:00,15.3566666666667, !- + Through: 02/18, !- + For: AllDays, !- + Until: 24:00,15.3961111111111, !- + Through: 02/19, !- + For: AllDays, !- + Until: 24:00,15.4372222222222, !- + Through: 02/20, !- + For: AllDays, !- + Until: 24:00,15.4811111111111, !- + Through: 02/21, !- + For: AllDays, !- + Until: 24:00,15.5261111111111, !- + Through: 02/22, !- + For: AllDays, !- + Until: 24:00,15.5738888888889, !- + Through: 02/23, !- + For: AllDays, !- + Until: 24:00,15.6227777777778, !- + Through: 02/24, !- + For: AllDays, !- + Until: 24:00,15.6744444444444, !- + Through: 02/25, !- + For: AllDays, !- + Until: 24:00,15.7272222222222, !- + Through: 02/26, !- + For: AllDays, !- + Until: 24:00,15.7822222222222, !- + Through: 02/27, !- + For: AllDays, !- + Until: 24:00,15.8388888888889, !- + Through: 02/28, !- + For: AllDays, !- + Until: 24:00,15.8977777777778, !- + Through: 03/01, !- + For: AllDays, !- + Until: 24:00,15.9583333333333, !- + Through: 03/02, !- + For: AllDays, !- + Until: 24:00,16.0205555555556, !- + Through: 03/03, !- + For: AllDays, !- + Until: 24:00,16.085, !- + Through: 03/04, !- + For: AllDays, !- + Until: 24:00,16.1505555555556, !- + Through: 03/05, !- + For: AllDays, !- + Until: 24:00,16.2183333333333, !- + Through: 03/06, !- + For: AllDays, !- + Until: 24:00,16.2877777777778, !- + Through: 03/07, !- + For: AllDays, !- + Until: 24:00,16.3588888888889, !- + Through: 03/08, !- + For: AllDays, !- + Until: 24:00,16.4316666666667, !- + Through: 03/09, !- + For: AllDays, !- + Until: 24:00,16.5061111111111, !- + Through: 03/10, !- + For: AllDays, !- + Until: 24:00,16.5816666666667, !- + Through: 03/11, !- + For: AllDays, !- + Until: 24:00,16.6594444444444, !- + Through: 03/12, !- + For: AllDays, !- + Until: 24:00,16.7388888888889, !- + Through: 03/13, !- + For: AllDays, !- + Until: 24:00,16.82, !- + Through: 03/14, !- + For: AllDays, !- + Until: 24:00,16.9022222222222, !- + Through: 03/15, !- + For: AllDays, !- + Until: 24:00,16.9861111111111, !- + Through: 03/16, !- + For: AllDays, !- + Until: 24:00,17.0716666666667, !- + Through: 03/17, !- + For: AllDays, !- + Until: 24:00,17.1588888888889, !- + Through: 03/18, !- + For: AllDays, !- + Until: 24:00,17.2472222222222, !- + Through: 03/19, !- + For: AllDays, !- + Until: 24:00,17.3366666666667, !- + Through: 03/20, !- + For: AllDays, !- + Until: 24:00,17.4283333333333, !- + Through: 03/21, !- + For: AllDays, !- + Until: 24:00,17.5205555555556, !- + Through: 03/22, !- + For: AllDays, !- + Until: 24:00,17.6144444444444, !- + Through: 03/23, !- + For: AllDays, !- + Until: 24:00,17.71, !- + Through: 03/24, !- + For: AllDays, !- + Until: 24:00,17.8066666666667, !- + Through: 03/25, !- + For: AllDays, !- + Until: 24:00,17.9044444444444, !- + Through: 03/26, !- + For: AllDays, !- + Until: 24:00,18.0033333333333, !- + Through: 03/27, !- + For: AllDays, !- + Until: 24:00,18.1038888888889, !- + Through: 03/28, !- + For: AllDays, !- + Until: 24:00,18.205, !- + Through: 03/29, !- + For: AllDays, !- + Until: 24:00,18.3077777777778, !- + Through: 03/30, !- + For: AllDays, !- + Until: 24:00,18.4111111111111, !- + Through: 03/31, !- + For: AllDays, !- + Until: 24:00,18.5161111111111, !- + Through: 04/01, !- + For: AllDays, !- + Until: 24:00,18.6216666666667, !- + Through: 04/02, !- + For: AllDays, !- + Until: 24:00,18.7288888888889, !- + Through: 04/03, !- + For: AllDays, !- + Until: 24:00,18.8366666666667, !- + Through: 04/04, !- + For: AllDays, !- + Until: 24:00,18.9455555555556, !- + Through: 04/05, !- + For: AllDays, !- + Until: 24:00,19.055, !- + Through: 04/06, !- + For: AllDays, !- + Until: 24:00,19.1655555555556, !- + Through: 04/07, !- + For: AllDays, !- + Until: 24:00,19.2772222222222, !- + Through: 04/08, !- + For: AllDays, !- + Until: 24:00,19.3894444444444, !- + Through: 04/09, !- + For: AllDays, !- + Until: 24:00,19.5027777777778, !- + Through: 04/10, !- + For: AllDays, !- + Until: 24:00,19.6166666666667, !- + Through: 04/11, !- + For: AllDays, !- + Until: 24:00,19.7311111111111, !- + Through: 04/12, !- + For: AllDays, !- + Until: 24:00,19.8461111111111, !- + Through: 04/13, !- + For: AllDays, !- + Until: 24:00,19.9622222222222, !- + Through: 04/14, !- + For: AllDays, !- + Until: 24:00,20.0788888888889, !- + Through: 04/15, !- + For: AllDays, !- + Until: 24:00,20.1955555555556, !- + Through: 04/16, !- + For: AllDays, !- + Until: 24:00,20.3133333333333, !- + Through: 04/17, !- + For: AllDays, !- + Until: 24:00,20.4316666666667, !- + Through: 04/18, !- + For: AllDays, !- + Until: 24:00,20.5505555555556, !- + Through: 04/19, !- + For: AllDays, !- + Until: 24:00,20.6694444444444, !- + Through: 04/20, !- + For: AllDays, !- + Until: 24:00,20.7888888888889, !- + Through: 04/21, !- + For: AllDays, !- + Until: 24:00,20.9088888888889, !- + Through: 04/22, !- + For: AllDays, !- + Until: 24:00,21.0294444444444, !- + Through: 04/23, !- + For: AllDays, !- + Until: 24:00,21.15, !- + Through: 04/24, !- + For: AllDays, !- + Until: 24:00,21.2705555555556, !- + Through: 04/25, !- + For: AllDays, !- + Until: 24:00,21.3916666666667, !- + Through: 04/26, !- + For: AllDays, !- + Until: 24:00,21.5133333333333, !- + Through: 04/27, !- + For: AllDays, !- + Until: 24:00,21.6344444444444, !- + Through: 04/28, !- + For: AllDays, !- + Until: 24:00,21.7561111111111, !- + Through: 04/29, !- + For: AllDays, !- + Until: 24:00,21.8777777777778, !- + Through: 04/30, !- + For: AllDays, !- + Until: 24:00,21.9994444444444, !- + Through: 05/01, !- + For: AllDays, !- + Until: 24:00,22.1211111111111, !- + Through: 05/02, !- + For: AllDays, !- + Until: 24:00,22.2427777777778, !- + Through: 05/03, !- + For: AllDays, !- + Until: 24:00,22.3644444444444, !- + Through: 05/04, !- + For: AllDays, !- + Until: 24:00,22.4861111111111, !- + Through: 05/05, !- + For: AllDays, !- + Until: 24:00,22.6077777777778, !- + Through: 05/06, !- + For: AllDays, !- + Until: 24:00,22.7288888888889, !- + Through: 05/07, !- + For: AllDays, !- + Until: 24:00,22.85, !- + Through: 05/08, !- + For: AllDays, !- + Until: 24:00,22.9711111111111, !- + Through: 05/09, !- + For: AllDays, !- + Until: 24:00,23.0916666666667, !- + Through: 05/10, !- + For: AllDays, !- + Until: 24:00,23.2122222222222, !- + Through: 05/11, !- + For: AllDays, !- + Until: 24:00,23.3322222222222, !- + Through: 05/12, !- + For: AllDays, !- + Until: 24:00,23.4516666666667, !- + Through: 05/13, !- + For: AllDays, !- + Until: 24:00,23.5705555555556, !- + Through: 05/14, !- + For: AllDays, !- + Until: 24:00,23.6894444444444, !- + Through: 05/15, !- + For: AllDays, !- + Until: 24:00,23.8077777777778, !- + Through: 05/16, !- + For: AllDays, !- + Until: 24:00,23.9255555555556, !- + Through: 05/17, !- + For: AllDays, !- + Until: 24:00,24.0427777777778, !- + Through: 05/18, !- + For: AllDays, !- + Until: 24:00,24.1594444444444, !- + Through: 05/19, !- + For: AllDays, !- + Until: 24:00,24.2755555555556, !- + Through: 05/20, !- + For: AllDays, !- + Until: 24:00,24.3905555555556, !- + Through: 05/21, !- + For: AllDays, !- + Until: 24:00,24.5055555555556, !- + Through: 05/22, !- + For: AllDays, !- + Until: 24:00,24.6194444444444, !- + Through: 05/23, !- + For: AllDays, !- + Until: 24:00,24.7322222222222, !- + Through: 05/24, !- + For: AllDays, !- + Until: 24:00,24.845, !- + Through: 05/25, !- + For: AllDays, !- + Until: 24:00,24.9561111111111, !- + Through: 05/26, !- + For: AllDays, !- + Until: 24:00,25.0672222222222, !- + Through: 05/27, !- + For: AllDays, !- + Until: 24:00,25.1766666666667, !- + Through: 05/28, !- + For: AllDays, !- + Until: 24:00,25.2855555555556, !- + Through: 05/29, !- + For: AllDays, !- + Until: 24:00,25.3938888888889, !- + Through: 05/30, !- + For: AllDays, !- + Until: 24:00,25.5005555555556, !- + Through: 05/31, !- + For: AllDays, !- + Until: 24:00,25.6066666666667, !- + Through: 06/01, !- + For: AllDays, !- + Until: 24:00,25.7116666666667, !- + Through: 06/02, !- + For: AllDays, !- + Until: 24:00,25.8155555555556, !- + Through: 06/03, !- + For: AllDays, !- + Until: 24:00,25.9177777777778, !- + Through: 06/04, !- + For: AllDays, !- + Until: 24:00,26.0194444444444, !- + Through: 06/05, !- + For: AllDays, !- + Until: 24:00,26.12, !- + Through: 06/06, !- + For: AllDays, !- + Until: 24:00,26.2194444444444, !- + Through: 06/07, !- + For: AllDays, !- + Until: 24:00,26.3172222222222, !- + Through: 06/08, !- + For: AllDays, !- + Until: 24:00,26.4138888888889, !- + Through: 06/09, !- + For: AllDays, !- + Until: 24:00,26.5094444444444, !- + Through: 06/10, !- + For: AllDays, !- + Until: 24:00,26.6033333333333, !- + Through: 06/11, !- + For: AllDays, !- + Until: 24:00,26.6961111111111, !- + Through: 06/12, !- + For: AllDays, !- + Until: 24:00,26.7877777777778, !- + Through: 06/13, !- + For: AllDays, !- + Until: 24:00,26.8772222222222, !- + Through: 06/14, !- + For: AllDays, !- + Until: 24:00,26.9661111111111, !- + Through: 06/15, !- + For: AllDays, !- + Until: 24:00,27.0533333333333, !- + Through: 06/16, !- + For: AllDays, !- + Until: 24:00,27.1388888888889, !- + Through: 06/17, !- + For: AllDays, !- + Until: 24:00,27.2227777777778, !- + Through: 06/18, !- + For: AllDays, !- + Until: 24:00,27.3055555555556, !- + Through: 06/19, !- + For: AllDays, !- + Until: 24:00,27.3866666666667, !- + Through: 06/20, !- + For: AllDays, !- + Until: 24:00,27.4661111111111, !- + Through: 06/21, !- + For: AllDays, !- + Until: 24:00,27.5438888888889, !- + Through: 06/22, !- + For: AllDays, !- + Until: 24:00,27.62, !- + Through: 06/23, !- + For: AllDays, !- + Until: 24:00,27.695, !- + Through: 06/24, !- + For: AllDays, !- + Until: 24:00,27.7677777777778, !- + Through: 06/25, !- + For: AllDays, !- + Until: 24:00,27.8388888888889, !- + Through: 06/26, !- + For: AllDays, !- + Until: 24:00,27.9088888888889, !- + Through: 06/27, !- + For: AllDays, !- + Until: 24:00,27.9766666666667, !- + Through: 06/28, !- + For: AllDays, !- + Until: 24:00,28.0427777777778, !- + Through: 06/29, !- + For: AllDays, !- + Until: 24:00,28.1066666666667, !- + Through: 06/30, !- + For: AllDays, !- + Until: 24:00,28.1694444444444, !- + Through: 07/01, !- + For: AllDays, !- + Until: 24:00,28.23, !- + Through: 07/02, !- + For: AllDays, !- + Until: 24:00,28.2888888888889, !- + Through: 07/03, !- + For: AllDays, !- + Until: 24:00,28.3461111111111, !- + Through: 07/04, !- + For: AllDays, !- + Until: 24:00,28.4011111111111, !- + Through: 07/05, !- + For: AllDays, !- + Until: 24:00,28.4544444444444, !- + Through: 07/06, !- + For: AllDays, !- + Until: 24:00,28.5061111111111, !- + Through: 07/07, !- + For: AllDays, !- + Until: 24:00,28.5555555555556, !- + Through: 07/08, !- + For: AllDays, !- + Until: 24:00,28.6027777777778, !- + Through: 07/09, !- + For: AllDays, !- + Until: 24:00,28.6488888888889, !- + Through: 07/10, !- + For: AllDays, !- + Until: 24:00,28.6922222222222, !- + Through: 07/11, !- + For: AllDays, !- + Until: 24:00,28.7338888888889, !- + Through: 07/12, !- + For: AllDays, !- + Until: 24:00,28.7738888888889, !- + Through: 07/13, !- + For: AllDays, !- + Until: 24:00,28.8116666666667, !- + Through: 07/14, !- + For: AllDays, !- + Until: 24:00,28.8472222222222, !- + Through: 07/15, !- + For: AllDays, !- + Until: 24:00,28.8811111111111, !- + Through: 07/16, !- + For: AllDays, !- + Until: 24:00,28.9127777777778, !- + Through: 07/17, !- + For: AllDays, !- + Until: 24:00,28.9427777777778, !- + Through: 07/18, !- + For: AllDays, !- + Until: 24:00,28.9705555555556, !- + Through: 07/19, !- + For: AllDays, !- + Until: 24:00,28.9961111111111, !- + Through: 07/20, !- + For: AllDays, !- + Until: 24:00,29.0194444444444, !- + Through: 07/21, !- + For: AllDays, !- + Until: 24:00,29.0411111111111, !- + Through: 07/22, !- + For: AllDays, !- + Until: 24:00,29.0605555555556, !- + Through: 07/23, !- + For: AllDays, !- + Until: 24:00,29.0777777777778, !- + Through: 07/24, !- + For: AllDays, !- + Until: 24:00,29.0933333333333, !- + Through: 07/25, !- + For: AllDays, !- + Until: 24:00,29.1066666666667, !- + Through: 07/26, !- + For: AllDays, !- + Until: 24:00,29.1177777777778, !- + Through: 07/27, !- + For: AllDays, !- + Until: 24:00,29.1266666666667, !- + Through: 07/28, !- + For: AllDays, !- + Until: 24:00,29.1338888888889, !- + Through: 07/29, !- + For: AllDays, !- + Until: 24:00,29.1388888888889, !- + Through: 07/30, !- + For: AllDays, !- + Until: 24:00,29.1416666666667, !- + Through: 07/31, !- + For: AllDays, !- + Until: 24:00,29.1422222222222, !- + Through: 08/01, !- + For: AllDays, !- + Until: 24:00,29.1405555555556, !- + Through: 08/02, !- + For: AllDays, !- + Until: 24:00,29.1372222222222, !- + Through: 08/03, !- + For: AllDays, !- + Until: 24:00,29.1316666666667, !- + Through: 08/04, !- + For: AllDays, !- + Until: 24:00,29.1238888888889, !- + Through: 08/05, !- + For: AllDays, !- + Until: 24:00,29.1144444444444, !- + Through: 08/06, !- + For: AllDays, !- + Until: 24:00,29.1022222222222, !- + Through: 08/07, !- + For: AllDays, !- + Until: 24:00,29.0883333333333, !- + Through: 08/08, !- + For: AllDays, !- + Until: 24:00,29.0727777777778, !- + Through: 08/09, !- + For: AllDays, !- + Until: 24:00,29.0544444444444, !- + Through: 08/10, !- + For: AllDays, !- + Until: 24:00,29.0344444444444, !- + Through: 08/11, !- + For: AllDays, !- + Until: 24:00,29.0122222222222, !- + Through: 08/12, !- + For: AllDays, !- + Until: 24:00,28.9877777777778, !- + Through: 08/13, !- + For: AllDays, !- + Until: 24:00,28.9616666666667, !- + Through: 08/14, !- + For: AllDays, !- + Until: 24:00,28.9333333333333, !- + Through: 08/15, !- + For: AllDays, !- + Until: 24:00,28.9027777777778, !- + Through: 08/16, !- + For: AllDays, !- + Until: 24:00,28.87, !- + Through: 08/17, !- + For: AllDays, !- + Until: 24:00,28.8355555555556, !- + Through: 08/18, !- + For: AllDays, !- + Until: 24:00,28.7994444444444, !- + Through: 08/19, !- + For: AllDays, !- + Until: 24:00,28.7611111111111, !- + Through: 08/20, !- + For: AllDays, !- + Until: 24:00,28.7205555555556, !- + Through: 08/21, !- + For: AllDays, !- + Until: 24:00,28.6783333333333, !- + Through: 08/22, !- + For: AllDays, !- + Until: 24:00,28.6338888888889, !- + Through: 08/23, !- + For: AllDays, !- + Until: 24:00,28.5872222222222, !- + Through: 08/24, !- + For: AllDays, !- + Until: 24:00,28.5394444444444, !- + Through: 08/25, !- + For: AllDays, !- + Until: 24:00,28.4888888888889, !- + Through: 08/26, !- + For: AllDays, !- + Until: 24:00,28.4372222222222, !- + Through: 08/27, !- + For: AllDays, !- + Until: 24:00,28.3833333333333, !- + Through: 08/28, !- + For: AllDays, !- + Until: 24:00,28.3272222222222, !- + Through: 08/29, !- + For: AllDays, !- + Until: 24:00,28.2694444444444, !- + Through: 08/30, !- + For: AllDays, !- + Until: 24:00,28.21, !- + Through: 08/31, !- + For: AllDays, !- + Until: 24:00,28.1488888888889, !- + Through: 09/01, !- + For: AllDays, !- + Until: 24:00,28.0855555555556, !- + Through: 09/02, !- + For: AllDays, !- + Until: 24:00,28.0211111111111, !- + Through: 09/03, !- + For: AllDays, !- + Until: 24:00,27.9544444444444, !- + Through: 09/04, !- + For: AllDays, !- + Until: 24:00,27.8855555555556, !- + Through: 09/05, !- + For: AllDays, !- + Until: 24:00,27.8155555555556, !- + Through: 09/06, !- + For: AllDays, !- + Until: 24:00,27.7438888888889, !- + Through: 09/07, !- + For: AllDays, !- + Until: 24:00,27.6705555555556, !- + Through: 09/08, !- + For: AllDays, !- + Until: 24:00,27.595, !- + Through: 09/09, !- + For: AllDays, !- + Until: 24:00,27.5183333333333, !- + Through: 09/10, !- + For: AllDays, !- + Until: 24:00,27.44, !- + Through: 09/11, !- + For: AllDays, !- + Until: 24:00,27.36, !- + Through: 09/12, !- + For: AllDays, !- + Until: 24:00,27.2783333333333, !- + Through: 09/13, !- + For: AllDays, !- + Until: 24:00,27.1955555555556, !- + Through: 09/14, !- + For: AllDays, !- + Until: 24:00,27.1105555555556, !- + Through: 09/15, !- + For: AllDays, !- + Until: 24:00,27.0244444444444, !- + Through: 09/16, !- + For: AllDays, !- + Until: 24:00,26.9366666666667, !- + Through: 09/17, !- + For: AllDays, !- + Until: 24:00,26.8477777777778, !- + Through: 09/18, !- + For: AllDays, !- + Until: 24:00,26.7572222222222, !- + Through: 09/19, !- + For: AllDays, !- + Until: 24:00,26.6655555555556, !- + Through: 09/20, !- + For: AllDays, !- + Until: 24:00,26.5722222222222, !- + Through: 09/21, !- + For: AllDays, !- + Until: 24:00,26.4777777777778, !- + Through: 09/22, !- + For: AllDays, !- + Until: 24:00,26.3822222222222, !- + Through: 09/23, !- + For: AllDays, !- + Until: 24:00,26.285, !- + Through: 09/24, !- + For: AllDays, !- + Until: 24:00,26.1866666666667, !- + Through: 09/25, !- + For: AllDays, !- + Until: 24:00,26.0866666666667, !- + Through: 09/26, !- + For: AllDays, !- + Until: 24:00,25.9861111111111, !- + Through: 09/27, !- + For: AllDays, !- + Until: 24:00,25.8844444444444, !- + Through: 09/28, !- + For: AllDays, !- + Until: 24:00,25.7811111111111, !- + Through: 09/29, !- + For: AllDays, !- + Until: 24:00,25.6766666666667, !- + Through: 09/30, !- + For: AllDays, !- + Until: 24:00,25.5716666666667, !- + Through: 10/01, !- + For: AllDays, !- + Until: 24:00,25.4655555555556, !- + Through: 10/02, !- + For: AllDays, !- + Until: 24:00,25.3583333333333, !- + Through: 10/03, !- + For: AllDays, !- + Until: 24:00,25.25, !- + Through: 10/04, !- + For: AllDays, !- + Until: 24:00,25.1405555555556, !- + Through: 10/05, !- + For: AllDays, !- + Until: 24:00,25.0305555555556, !- + Through: 10/06, !- + For: AllDays, !- + Until: 24:00,24.9194444444444, !- + Through: 10/07, !- + For: AllDays, !- + Until: 24:00,24.8077777777778, !- + Through: 10/08, !- + For: AllDays, !- + Until: 24:00,24.695, !- + Through: 10/09, !- + For: AllDays, !- + Until: 24:00,24.5816666666667, !- + Through: 10/10, !- + For: AllDays, !- + Until: 24:00,24.4672222222222, !- + Through: 10/11, !- + For: AllDays, !- + Until: 24:00,24.3527777777778, !- + Through: 10/12, !- + For: AllDays, !- + Until: 24:00,24.2372222222222, !- + Through: 10/13, !- + For: AllDays, !- + Until: 24:00,24.1205555555556, !- + Through: 10/14, !- + For: AllDays, !- + Until: 24:00,24.0038888888889, !- + Through: 10/15, !- + For: AllDays, !- + Until: 24:00,23.8866666666667, !- + Through: 10/16, !- + For: AllDays, !- + Until: 24:00,23.7688888888889, !- + Through: 10/17, !- + For: AllDays, !- + Until: 24:00,23.6505555555556, !- + Through: 10/18, !- + For: AllDays, !- + Until: 24:00,23.5316666666667, !- + Through: 10/19, !- + For: AllDays, !- + Until: 24:00,23.4122222222222, !- + Through: 10/20, !- + For: AllDays, !- + Until: 24:00,23.2922222222222, !- + Through: 10/21, !- + For: AllDays, !- + Until: 24:00,23.1722222222222, !- + Through: 10/22, !- + For: AllDays, !- + Until: 24:00,23.0516666666667, !- + Through: 10/23, !- + For: AllDays, !- + Until: 24:00,22.9311111111111, !- + Through: 10/24, !- + For: AllDays, !- + Until: 24:00,22.81, !- + Through: 10/25, !- + For: AllDays, !- + Until: 24:00,22.6888888888889, !- + Through: 10/26, !- + For: AllDays, !- + Until: 24:00,22.5677777777778, !- + Through: 10/27, !- + For: AllDays, !- + Until: 24:00,22.4461111111111, !- + Through: 10/28, !- + For: AllDays, !- + Until: 24:00,22.3244444444444, !- + Through: 10/29, !- + For: AllDays, !- + Until: 24:00,22.2027777777778, !- + Through: 10/30, !- + For: AllDays, !- + Until: 24:00,22.0811111111111, !- + Through: 10/31, !- + For: AllDays, !- + Until: 24:00,21.9594444444444, !- + Through: 11/01, !- + For: AllDays, !- + Until: 24:00,21.8377777777778, !- + Through: 11/02, !- + For: AllDays, !- + Until: 24:00,21.7161111111111, !- + Through: 11/03, !- + For: AllDays, !- + Until: 24:00,21.5944444444444, !- + Through: 11/04, !- + For: AllDays, !- + Until: 24:00,21.4727777777778, !- + Through: 11/05, !- + For: AllDays, !- + Until: 24:00,21.3516666666667, !- + Through: 11/06, !- + For: AllDays, !- + Until: 24:00,21.2305555555556, !- + Through: 11/07, !- + For: AllDays, !- + Until: 24:00,21.11, !- + Through: 11/08, !- + For: AllDays, !- + Until: 24:00,20.9894444444444, !- + Through: 11/09, !- + For: AllDays, !- + Until: 24:00,20.8694444444444, !- + Through: 11/10, !- + For: AllDays, !- + Until: 24:00,20.7494444444444, !- + Through: 11/11, !- + For: AllDays, !- + Until: 24:00,20.63, !- + Through: 11/12, !- + For: AllDays, !- + Until: 24:00,20.5111111111111, !- + Through: 11/13, !- + For: AllDays, !- + Until: 24:00,20.3927777777778, !- + Through: 11/14, !- + For: AllDays, !- + Until: 24:00,20.2744444444444, !- + Through: 11/15, !- + For: AllDays, !- + Until: 24:00,20.1572222222222, !- + Through: 11/16, !- + For: AllDays, !- + Until: 24:00,20.04, !- + Through: 11/17, !- + For: AllDays, !- + Until: 24:00,19.9238888888889, !- + Through: 11/18, !- + For: AllDays, !- + Until: 24:00,19.8077777777778, !- + Through: 11/19, !- + For: AllDays, !- + Until: 24:00,19.6927777777778, !- + Through: 11/20, !- + For: AllDays, !- + Until: 24:00,19.5788888888889, !- + Through: 11/21, !- + For: AllDays, !- + Until: 24:00,19.465, !- + Through: 11/22, !- + For: AllDays, !- + Until: 24:00,19.3522222222222, !- + Through: 11/23, !- + For: AllDays, !- + Until: 24:00,19.24, !- + Through: 11/24, !- + For: AllDays, !- + Until: 24:00,19.1288888888889, !- + Through: 11/25, !- + For: AllDays, !- + Until: 24:00,19.0188888888889, !- + Through: 11/26, !- + For: AllDays, !- + Until: 24:00,18.9094444444444, !- + Through: 11/27, !- + For: AllDays, !- + Until: 24:00,18.8005555555556, !- + Through: 11/28, !- + For: AllDays, !- + Until: 24:00,18.6933333333333, !- + Through: 11/29, !- + For: AllDays, !- + Until: 24:00,18.5866666666667, !- + Through: 11/30, !- + For: AllDays, !- + Until: 24:00,18.4811111111111, !- + Through: 12/01, !- + For: AllDays, !- + Until: 24:00,18.3766666666667, !- + Through: 12/02, !- + For: AllDays, !- + Until: 24:00,18.2733333333333, !- + Through: 12/03, !- + For: AllDays, !- + Until: 24:00,18.1711111111111, !- + Through: 12/04, !- + For: AllDays, !- + Until: 24:00,18.0705555555556, !- + Through: 12/05, !- + For: AllDays, !- + Until: 24:00,17.9705555555556, !- + Through: 12/06, !- + For: AllDays, !- + Until: 24:00,17.8716666666667, !- + Through: 12/07, !- + For: AllDays, !- + Until: 24:00,17.7744444444444, !- + Through: 12/08, !- + For: AllDays, !- + Until: 24:00,17.6783333333333, !- + Through: 12/09, !- + For: AllDays, !- + Until: 24:00,17.5833333333333, !- + Through: 12/10, !- + For: AllDays, !- + Until: 24:00,17.49, !- + Through: 12/11, !- + For: AllDays, !- + Until: 24:00,17.3977777777778, !- + Through: 12/12, !- + For: AllDays, !- + Until: 24:00,17.3072222222222, !- + Through: 12/13, !- + For: AllDays, !- + Until: 24:00,17.2177777777778, !- + Through: 12/14, !- + For: AllDays, !- + Until: 24:00,17.1294444444444, !- + Through: 12/15, !- + For: AllDays, !- + Until: 24:00,17.0433333333333, !- + Through: 12/16, !- + For: AllDays, !- + Until: 24:00,16.9583333333333, !- + Through: 12/17, !- + For: AllDays, !- + Until: 24:00,16.875, !- + Through: 12/18, !- + For: AllDays, !- + Until: 24:00,16.7927777777778, !- + Through: 12/19, !- + For: AllDays, !- + Until: 24:00,16.7127777777778, !- + Through: 12/20, !- + For: AllDays, !- + Until: 24:00,16.6338888888889, !- + Through: 12/21, !- + For: AllDays, !- + Until: 24:00,16.5566666666667, !- + Through: 12/22, !- + For: AllDays, !- + Until: 24:00,16.4811111111111, !- + Through: 12/23, !- + For: AllDays, !- + Until: 24:00,16.4072222222222, !- + Through: 12/24, !- + For: AllDays, !- + Until: 24:00,16.335, !- + Through: 12/25, !- + For: AllDays, !- + Until: 24:00,16.2644444444444, !- + Through: 12/26, !- + For: AllDays, !- + Until: 24:00,16.1955555555556, !- + Through: 12/27, !- + For: AllDays, !- + Until: 24:00,16.1288888888889, !- + Through: 12/28, !- + For: AllDays, !- + Until: 24:00,16.0633333333333, !- + Through: 12/29, !- + For: AllDays, !- + Until: 24:00,16, !- + Through: 12/30, !- + For: AllDays, !- + Until: 24:00,15.9383333333333, !- + Through: 12/31, !- + For: AllDays, !- + Until: 24:00,15.8783333333333, !- + Through: 01/01, !- + For: AllDays, !- + Until: 24:00,15.82; !- + + OutdoorAir:Node, + Model Outdoor Air Node; !- Name + + AirLoopHVAC, + central ac and furnace airloop, !- Name + , !- Controller List Name + central ac and furnace airloopAvailability Manager List, !- Availability Manager List Name + 0.942007096627203, !- Design Supply Air Flow Rate {m3/s} + central ac and furnace airloop Supply Branches, !- Branch List Name + , !- Connector List Name + Node 3, !- Supply Side Inlet Node Name + Node 6, !- Demand Side Outlet Node Name + central ac and furnace airloop Demand Inlet Nodes, !- Demand Side Inlet Node Names + central ac and furnace airloop Supply Outlet Nodes, !- Supply Side Outlet Node Names + 1; !- Design Return Air Flow Fraction of Supply Air Flow + + NodeList, + central ac and furnace airloop Supply Outlet Nodes, !- Name + Node 4; !- Node 1 Name + + NodeList, + central ac and furnace airloop Demand Inlet Nodes, !- Name + Node 5; !- Node 1 Name + + Sizing:System, + central ac and furnace airloop, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + Yes, !- 100% Outdoor Air in Cooling + Yes, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate {m3/s} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate {m3/s} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + Autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + Autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + AvailabilityManagerAssignmentList, + central ac and furnace airloopAvailability Manager List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + central ac and furnace airloop Availability Manager; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + central ac and furnace airloop Availability Manager, !- Name + Always On Discrete; !- Schedule Name + + BranchList, + central ac and furnace airloop Supply Branches, !- Name + central ac and furnace airloop Main Branch; !- Branch 1 Name + + Branch, + central ac and furnace airloop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:UnitarySystem, !- Component 1 Object Type + central ac and furnace unitary system, !- Component 1 Name + Node 3, !- Component 1 Inlet Node Name + Node 4; !- Component 1 Outlet Node Name + + AirLoopHVAC:UnitarySystem, + central ac and furnace unitary system, !- Name + Load, !- Control Type + living space, !- Controlling Zone or Thermostat Location + None, !- Dehumidification Control Type + Always On Discrete, !- Availability Schedule Name + Node 3, !- Air Inlet Node Name + Node 4, !- Air Outlet Node Name + Fan:OnOff, !- Supply Fan Object Type + central ac and furnace supply fan, !- Supply Fan Name + BlowThrough, !- Fan Placement + Always Off Discrete, !- Supply Air Fan Operating Mode Schedule Name + Coil:Heating:Fuel, !- Heating Coil Object Type + central ac and furnace htg coil, !- Heating Coil Name + 1, !- DX Heating Coil Sizing Ratio + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + central ac and furnace clg coil, !- Cooling Coil Name + No, !- Use DOAS DX Cooling Coil + 2, !- Minimum Supply Air Temperature {C} + SensibleOnlyLoadControl, !- Latent Load Control + , !- Supplemental Heating Coil Object Type + , !- Supplemental Heating Coil Name + SupplyAirFlowRate, !- Cooling Supply Air Flow Rate Method + 0.942007096627203, !- 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 of Capacity {m3/s-W} + SupplyAirFlowRate, !- Heating Supply Air Flow Rate Method + 0.55857644402728, !- 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 Supply Air Flow Rate Per Unit of Capacity {m3/s-W} + , !- No Load Supply Air Flow Rate Method + 0, !- No Load Supply Air Flow Rate {m3/s} + , !- No Load Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- No Load Fraction of Autosized Cooling Supply Air Flow Rate + , !- No Load Fraction of Autosized Heating Supply Air Flow Rate + , !- No Load Supply Air Flow Rate Per Unit of Capacity During Cooling Operation {m3/s-W} + , !- No Load Supply Air Flow Rate Per Unit of Capacity During Heating Operation {m3/s-W} + 48.8888888888889, !- Maximum Supply Air Temperature {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + 0, !- Ancillary On-Cycle Electric Power {W} + 0; !- Ancillary Off-Cycle Electric Power {W} + + Fan:OnOff, + central ac and furnace supply fan, !- Name + Always On Discrete, !- Availability Schedule Name + 0.75, !- Fan Total Efficiency + 595.93500092512, !- Pressure Rise {Pa} + 0.942011816101635, !- Maximum Flow Rate {m3/s} + 1, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + Node 3, !- Air Inlet Node Name + central ac and furnace unitary system Fan - Cooling Coil Node, !- Air Outlet Node Name + Fan On Off Power Curve, !- Fan Power Ratio Function of Speed Ratio Curve Name + Fan On Off Efficiency Curve, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + supply fan; !- End-Use Subcategory + + Curve:Exponent, + Fan On Off Power Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1; !- Maximum Value of x + + Curve:Cubic, + Fan On Off Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + + Coil:Heating:Fuel, + central ac and furnace htg coil, !- Name + Always On Discrete, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.92, !- Burner Efficiency + 18756.5484910222, !- Nominal Capacity {W} + central ac and furnace unitary system Cooling Coil - Heating Coil Node, !- Air Inlet Node Name + Node 4, !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Fuel Load {W} + + Curve:Biquadratic, + Cool-Cap-fT1, !- Name + 1.557359706, !- Coefficient1 Constant + -0.0744481692, !- Coefficient2 x + 0.00309859668, !- Coefficient3 x**2 + 0.0014595786, !- Coefficient4 y + -4.1148e-05, !- Coefficient5 y**2 + -0.00042671448, !- Coefficient6 x*y + 13.88, !- Minimum Value of x + 23.88, !- Maximum Value of x + 18.33, !- Minimum Value of y + 51.66; !- Maximum Value of y + + Curve:Quadratic, + Cool-Cap-fFF1, !- Name + 0.718664047, !- Coefficient1 Constant + 0.41797409, !- Coefficient2 x + -0.136638137, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 2, !- Maximum Value of x + 0, !- Minimum Curve Output + 2; !- Maximum Curve Output + + Curve:Biquadratic, + Cool-eir-fT1, !- Name + -0.350447695, !- Coefficient1 Constant + 0.116809893, !- Coefficient2 x + -0.00339950844, !- Coefficient3 x**2 + -0.001226088, !- Coefficient4 y + 0.0006008094, !- Coefficient5 y**2 + -0.000466884, !- Coefficient6 x*y + 13.88, !- Minimum Value of x + 23.88, !- Maximum Value of x + 18.33, !- Minimum Value of y + 51.66; !- Maximum Value of y + + Curve:Quadratic, + Cool-eir-fFF1, !- Name + 1.143487507, !- Coefficient1 Constant + -0.13943972, !- Coefficient2 x + -0.004047787, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 2, !- Maximum Value of x + 0, !- Minimum Curve Output + 2; !- Maximum Curve Output + + Curve:Quadratic, + Cool-PLF-fPLR1, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0.7, !- Minimum Curve Output + 1; !- Maximum Curve Output + + Coil:Cooling:DX:SingleSpeed, + central ac and furnace clg coil, !- Name + Always On Discrete, !- Availability Schedule Name + 14067.4113682667, !- Gross Rated Total Cooling Capacity {W} + 0.740612186094823, !- Gross Rated Sensible Heat Ratio + 4.03878394144749, !- Gross Rated Cooling COP {W/W} + 0.744166728437762, !- Rated Air Flow Rate {m3/s} + 773.3912012006, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + central ac and furnace unitary system Fan - Cooling Coil Node, !- Air Inlet Node Name + central ac and furnace unitary system Cooling Coil - Heating Coil Node, !- Air Outlet Node Name + Cool-Cap-fT1, !- Total Cooling Capacity Function of Temperature Curve Name + Cool-Cap-fFF1, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-eir-fT1, !- Energy Input Ratio Function of Temperature Curve Name + Cool-eir-fFF1, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR1, !- Part Load Fraction Correlation Curve Name + -25, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1000, !- Nominal Time for Condensate Removal to Begin {s} + 1.5, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 3, !- Maximum Cycling Rate {cycles/hr} + 45, !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 50, !- Crankcase Heater Capacity {W} + 10, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10; !- Basin Heater Setpoint Temperature {C} + + AirLoopHVAC:SupplyPath, + central ac and furnace airloop Node 5 Supply Path, !- Name + Node 5, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + central ac and furnace zone splitter; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + central ac and furnace zone splitter, !- Name + Node 5, !- Inlet Node Name + Node 9; !- Outlet 1 Node Name + + AirLoopHVAC:ReturnPath, + central ac and furnace airloop Return Path, !- Name + Node 6, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + Air Loop HVAC Return Plenum 1, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + central ac and furnace zone mixer; !- Component 2 Name + + AirLoopHVAC:ReturnPlenum, + Air Loop HVAC Return Plenum 1, !- Name + central ac and furnace airloop ret air zone, !- Zone Name + Node 24, !- Zone Node Name + Node 26, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Node 8; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + central ac and furnace zone mixer, !- Name + Node 6, !- Outlet Node Name + Node 26; !- Inlet 1 Node Name + + PlantLoop, + dhw loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + dhw loop Operation Schemes, !- Plant Equipment Operation Scheme Name + Node 13, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 0, !- Minimum Loop Temperature {C} + 0.01, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + 0.003, !- Plant Loop Volume {m3} + Node 12, !- Plant Side Inlet Node Name + Node 13, !- Plant Side Outlet Node Name + dhw loop Supply Branches,!- Plant Side Branch List Name + dhw loop Supply Connector List, !- Plant Side Connector List Name + Node 15, !- Demand Side Inlet Node Name + Node 16, !- Demand Side Outlet Node Name + dhw loop Demand Branches,!- Demand Side Branch List Name + dhw loop Demand Connector List, !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + , !- Availability Manager List Name + SingleSetpoint, !- Plant Loop Demand Calculation Scheme + ; !- Common Pipe Simulation + + Sizing:Plant, + dhw loop, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 52.6666666666667, !- Design Loop Exit Temperature {C} + 5.55555555555556, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + + BranchList, + dhw loop Supply Branches,!- Name + dhw loop Supply Inlet Branch, !- Branch 1 Name + dhw loop Supply Branch 1,!- Branch 2 Name + dhw loop Supply Branch 2,!- Branch 3 Name + dhw loop Supply Outlet Branch; !- Branch 4 Name + + ConnectorList, + dhw loop Supply Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + dhw loop Supply Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + dhw loop Supply Mixer; !- Connector 2 Name + + Connector:Splitter, + dhw loop Supply Splitter,!- Name + dhw loop Supply Inlet Branch, !- Inlet Branch Name + dhw loop Supply Branch 1,!- Outlet Branch 1 Name + dhw loop Supply Branch 2;!- Outlet Branch 2 Name + + Connector:Mixer, + dhw loop Supply Mixer, !- Name + dhw loop Supply Outlet Branch, !- Outlet Branch Name + dhw loop Supply Branch 1,!- Inlet Branch 1 Name + dhw loop Supply Branch 2;!- Inlet Branch 2 Name + + Branch, + dhw loop Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Pump Variable Speed 1, !- Component 1 Name + Node 12, !- Component 1 Inlet Node Name + Node 20; !- Component 1 Outlet Node Name + + Pump:VariableSpeed, + Pump Variable Speed 1, !- Name + Node 12, !- Inlet Node Name + Node 20, !- Outlet Node Name + 0.01, !- Design Maximum Flow Rate {m3/s} + 1, !- Design Pump Head {Pa} + 0, !- Design Power Consumption {W} + 1, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule + , !- Maximum Pressure Schedule + , !- Minimum RPM Schedule + , !- Maximum RPM Schedule + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + + Branch, + dhw loop Supply Branch 1,!- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 1, !- Component 1 Name + Node 14, !- Component 1 Inlet Node Name + Node 18; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 1, !- Name + Node 14, !- Inlet Node Name + Node 18; !- Outlet Node Name + + Branch, + dhw loop Supply Branch 2,!- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + water heater, !- Component 1 Name + Node 21, !- Component 1 Inlet Node Name + Node 22; !- Component 1 Outlet Node Name + + WaterHeater:Mixed, + water heater, !- Name + 0.136274824222915, !- Tank Volume {m3} + WH Setpoint Temp, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference {deltaC} + 99, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 5500.06477392209, !- Heater Maximum Capacity {W} + 0, !- Heater Minimum Capacity {W} + 0, !- Heater Ignition Minimum Flow Rate {m3/s} + 0, !- Heater Ignition Delay {s} + Electricity, !- Heater Fuel Type + 1, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 0, !- Off Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + 0, !- On Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- On Cycle Parasitic Fuel Type + 0, !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + living space, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 0.704227539803499, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + 1, !- Off Cycle Loss Fraction to Zone + 0.704227539803499, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + 1, !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Node 21, !- Use Side Inlet Node Name + Node 22, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- 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} + IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode + , !- Indirect Alternate Setpoint Temperature Schedule Name + General; !- End-Use Subcategory + + Branch, + dhw loop Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 2, !- Component 1 Name + Node 19, !- Component 1 Inlet Node Name + Node 13; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 2, !- Name + Node 19, !- Inlet Node Name + Node 13; !- Outlet Node Name + + SetpointManager:Scheduled, + Setpoint Manager Scheduled 1, !- Name + Temperature, !- Control Variable + dhw temp, !- Schedule Name + Node 13; !- Setpoint Node or NodeList Name + + BranchList, + dhw loop Demand Branches,!- Name + dhw loop Demand Inlet Branch, !- Branch 1 Name + dhw loop Demand Branch 1,!- Branch 2 Name + dhw loop Demand Bypass Branch, !- Branch 3 Name + dhw loop Demand Outlet Branch; !- Branch 4 Name + + ConnectorList, + dhw loop Demand Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + dhw loop Demand Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + dhw loop Demand Mixer; !- Connector 2 Name + + Connector:Splitter, + dhw loop Demand Splitter,!- Name + dhw loop Demand Inlet Branch, !- Inlet Branch Name + dhw loop Demand Branch 1,!- Outlet Branch 1 Name + dhw loop Demand Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + dhw loop Demand Mixer, !- Name + dhw loop Demand Outlet Branch, !- Outlet Branch Name + dhw loop Demand Branch 1,!- Inlet Branch 1 Name + dhw loop Demand Bypass Branch; !- Inlet Branch 2 Name + + Branch, + dhw loop Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + dhw loop Demand Inlet Pipe, !- Component 1 Name + Node 15, !- Component 1 Inlet Node Name + dhw loop Demand Inlet Pipe Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + dhw loop Demand Inlet Pipe, !- Name + Node 15, !- Inlet Node Name + dhw loop Demand Inlet Pipe Node; !- Outlet Node Name + + Branch, + dhw loop Demand Branch 1,!- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Water Use Connections 1, !- Component 1 Name + Node 17, !- Component 1 Inlet Node Name + Node 23; !- Component 1 Outlet Node Name + + WaterUse:Connections, + Water Use Connections 1, !- Name + Node 17, !- Inlet Node Name + Node 23, !- 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} + dhw fixtures, !- Water Use Equipment 1 Name + dhw distribution waste, !- Water Use Equipment 2 Name + clothes washer, !- Water Use Equipment 3 Name + dishwasher; !- Water Use Equipment 4 Name + + WaterUse:Equipment, + dhw fixtures, !- Name + dhw fixtures, !- End-Use Subcategory + 0.000368893708162033, !- Peak Flow Rate {m3/s} + dhw fixtures schedule, !- Flow Rate Fraction Schedule Name + Schedule Constant 1; !- Target Temperature Schedule Name + + WaterUse:Equipment, + dhw distribution waste, !- Name + dhw distribution waste, !- End-Use Subcategory + 9.08962936681751e-05, !- Peak Flow Rate {m3/s} + dhw fixtures schedule, !- Flow Rate Fraction Schedule Name + Schedule Constant 1; !- Target Temperature Schedule Name + + WaterUse:Equipment, + clothes washer, !- Name + clothes washer, !- End-Use Subcategory + 0.000258778138086567, !- Peak Flow Rate {m3/s} + clothes washer schedule, !- Flow Rate Fraction Schedule Name + WH Setpoint Temp; !- Target Temperature Schedule Name + + WaterUse:Equipment, + dishwasher, !- Name + dishwasher, !- End-Use Subcategory + 0.000110436313142217, !- Peak Flow Rate {m3/s} + dishwasher schedule, !- Flow Rate Fraction Schedule Name + WH Setpoint Temp; !- Target Temperature Schedule Name + + Branch, + dhw loop Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + dhw loop Demand Bypass Pipe, !- Component 1 Name + dhw loop Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + dhw loop Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + dhw loop Demand Bypass Pipe, !- Name + dhw loop Demand Bypass Pipe Inlet Node, !- Inlet Node Name + dhw loop Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Branch, + dhw loop Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + dhw loop Demand Outlet Pipe, !- Component 1 Name + dhw loop Demand Outlet Pipe Node, !- Component 1 Inlet Node Name + Node 16; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + dhw loop Demand Outlet Pipe, !- Name + dhw loop Demand Outlet Pipe Node, !- Inlet Node Name + Node 16; !- Outlet Node Name + + PlantEquipmentOperationSchemes, + dhw loop Operation Schemes, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + dhw loop Heating Operation Scheme, !- Control Scheme 1 Name + Always On Discrete; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + dhw loop Heating Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000000, !- Load Range 1 Upper Limit {W} + dhw loop Heating Equipment List; !- Range 1 Equipment List Name + + PlantEquipmentList, + dhw loop Heating Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + water heater; !- Equipment 1 Name + + RunPeriodControl:DaylightSavingTime, + Mar 12, !- Start Date + Nov 5; !- End Date + + Output:Diagnostics, + DisplayAdvancedReportVariables; !- Key 1 + + Site:Location, + PHOENIX_AZ_USA TMY2-23183, !- Name + 33.43000, !- Latitude {deg} + -112.0200, !- Longitude {deg} + -7.000000, !- Time Zone {hr} + 339.0000; !- Elevation {m} ! PHOENIX_AZ_USA Heating 99.6%, MaxDB= 1.20 Wind Speed= 2.40 Wind Dir= 90.00 -SizingPeriod:DesignDay, - PHOENIX_AZ_USA Heating 99.6% Conditions, !- Name - 1, !- Month - 21, !- Day of Month - WinterDesignDay, !- Day Type - 1.200000, !- Maximum Dry-Bulb Temperature {C} - 0, !- Daily Dry-Bulb Temperature Range {deltaC} - , !- Dry-Bulb Temperature Range Modifier Type - , !- Dry-Bulb Temperature Range Modifier Day Schedule Name - Wetbulb, !- Humidity Condition Type - 1.200000, !- 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} - 97318.24, !- Barometric Pressure {Pa} - 2.400000, !- Wind Speed {m/s} - 90.00000, !- 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; !- Sky Clearness + SizingPeriod:DesignDay, + PHOENIX_AZ_USA Heating 99.6% Conditions, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + 1.200000, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 1.200000, !- 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} + 97318.24, !- Barometric Pressure {Pa} + 2.400000, !- Wind Speed {m/s} + 90.00000, !- 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; !- Sky Clearness ! PHOENIX_AZ_USA Cooling (WB=>MDB) .4%, MDB= 35.80 WB= 24.20 -SizingPeriod:DesignDay, - PHOENIX_AZ_USA Cooling .4% Conditions WB=>MDB, !- Name - 7, !- Month - 21, !- Day of Month - SummerDesignDay, !- Day Type - 35.80000, !- Maximum Dry-Bulb Temperature {C} - 12.80000, !- Daily Dry-Bulb Temperature Range {deltaC} - , !- Dry-Bulb Temperature Range Modifier Type - , !- Dry-Bulb Temperature Range Modifier Day Schedule Name - Wetbulb, !- Humidity Condition Type - 24.20000, !- 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} - 97318.24, !- Barometric Pressure {Pa} - 0, !- Wind Speed {m/s} - 0, !- Wind Direction {deg} - No, !- Rain Indicator - No, !- Snow Indicator - No, !- Daylight Saving Time Indicator - ASHRAEClearSky, !- Solar Model Indicator - , !- Beam Solar Day Schedule Name - , !- Diffuse Solar Day Schedule Name - , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} - , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} - 1.000000; !- Sky Clearness - - -Site:GroundTemperature:Deep, - 18.7339954337899, !- January Deep Ground Temperature {C} - 18.7339954337899, !- February Deep Ground Temperature {C} - 18.7339954337899, !- March Deep Ground Temperature {C} - 18.7339954337899, !- April Deep Ground Temperature {C} - 18.7339954337899, !- May Deep Ground Temperature {C} - 18.7339954337899, !- June Deep Ground Temperature {C} - 18.7339954337899, !- July Deep Ground Temperature {C} - 18.7339954337899, !- August Deep Ground Temperature {C} - 18.7339954337899, !- September Deep Ground Temperature {C} - 18.7339954337899, !- October Deep Ground Temperature {C} - 18.7339954337899, !- November Deep Ground Temperature {C} - 18.7339954337899; !- December Deep Ground Temperature {C} - -Site:GroundTemperature:Shallow, - 14.614074655134, !- January Surface Ground Temperature {C} - 12.8606838667058, !- February Surface Ground Temperature {C} - 12.720266044335, !- March Surface Ground Temperature {C} - 13.5523395654021, !- April Surface Ground Temperature {C} - 16.8926510846715, !- May Surface Ground Temperature {C} - 20.2174020158494, !- June Surface Ground Temperature {C} - 23.0997833843645, !- July Surface Ground Temperature {C} - 24.9257010905938, !- August Surface Ground Temperature {C} - 25.0808228287911, !- September Surface Ground Temperature {C} - 23.5957456696545, !- October Surface Ground Temperature {C} - 20.7868667183252, !- November Surface Ground Temperature {C} - 17.5641056037673; !- December Surface Ground Temperature {C} - -Site:WaterMainsTemperature, - Schedule, !- Calculation Method - mains temperature schedule; !- Temperature Schedule Name - -Foundation:Kiva, - Foundation Kiva 1, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0.1016, !- Wall Height Above Grade {m} - 0.2032; !- Wall Depth Below Slab {m} - -Foundation:Kiva:Settings, - 1.731, !- Soil Conductivity {W/m-K} - 1842.3, !- Soil Density {kg/m3} - 418.7, !- Soil Specific Heat {J/kg-K} - 0.9, !- Ground Solar Absorptivity {dimensionless} - 0.9, !- Ground Thermal Absorptivity {dimensionless} - 0.03, !- Ground Surface Roughness {m} - 40, !- Far-Field Width {m} - ZeroFlux, !- Deep-Ground Boundary Condition - 40, !- Deep-Ground Depth {m} - 0.2, !- Minimum Cell Dimension {m} - 3, !- Maximum Cell Growth Coefficient {dimensionless} - Hourly; !- Simulation Timestep - -Exterior:Lights, - exterior lighting, !- Name - exterior lighting schedule, !- Schedule Name - 25.234754980464, !- Design Level {W} - , !- Control Option - General; !- End-Use Subcategory - -Output:Variable, - *, !- Key Value - central ac and furnace supply fan clg disaggregate, !- Variable Name - monthly; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - central ac and furnace supply fan htg primary disaggregate, !- Variable Name - monthly; !- Reporting Frequency - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_DZ_T; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_DZ_W; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_RetCondToDZ; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_RetCondToRP; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_RetLatLkToRP; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_RetSensLkToRP; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupCondToDZ; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupCondToLv; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupLatLkToDZ; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupLatLkToLv; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupSensLkToDZ; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_0_SupSensLkToLv; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_AH_MFR; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_AH_Tout; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_AH_VFR; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_AH_Wout; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_Fan_RTF; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_RA_T; !- Erl Variable Name 1 - -EnergyManagementSystem:GlobalVariable, - central_ac_and_furnace_airloop_Ra_W; !- Erl Variable Name 1 - -EnergyManagementSystem:InternalVariable, - central_ac_and_furnace_airloop_max_sup_fan_mfr, !- Name - central ac and furnace supply fan, !- Internal Data Index Key Name - Fan Maximum Mass Flow Rate; !- Internal Data Type - -EnergyManagementSystem:Sensor, - airflow_gain, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Infiltration Sensible Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - airflow_loss, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Infiltration Sensible Heat Loss Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - airflow_tin_s, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Mean Air Temperature; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - airflow_tt_s, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - airflow_win_s, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Air Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_0_DZ_T_s, !- Name - under slab, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_0_DZ_W_s_1, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Site Outdoor Air Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_0_DZ_W_s_2, !- Name - living space, !- Output:Variable or Output:Meter Index Key Name - Zone Mean Air Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_AH_MFR_s, !- Name - Node 5, !- Output:Variable or Output:Meter Index Key Name - System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_AH_Tout_s, !- Name - Node 5, !- Output:Variable or Output:Meter Index Key Name - System Node Temperature; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_AH_VFR_s, !- Name - Node 5, !- Output:Variable or Output:Meter Index Key Name - System Node Current Density Volume Flow Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_AH_Wout_s, !- Name - Node 5, !- Output:Variable or Output:Meter Index Key Name - System Node Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_Fan_RTF_s, !- Name - central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name - Fan Runtime Fraction; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_RA_T_s, !- Name - Node 8, !- Output:Variable or Output:Meter Index Key Name - System Node Temperature; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_airloop_Ra_W_s, !- Name - Node 8, !- Output:Variable or Output:Meter Index Key Name - System Node Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_clg_coil_s, !- Name - central ac and furnace clg coil, !- Output:Variable or Output:Meter Index Key Name - Cooling Coil Electricity Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_htg_coil_s, !- Name - central ac and furnace htg coil, !- Output:Variable or Output:Meter Index Key Name - Heating Coil NaturalGas Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_supply_fan_s, !- Name - central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name - Fan Electricity Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - central_ac_and_furnace_supply_fan_s_1, !- Name - central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name - Fan Electricity Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - clg_load_liv, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Cooling:EnergyTransfer:Zone:LIVING SPACE; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - clg_load_tot, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Cooling:EnergyTransfer; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - clg_sp_s, !- Name - cooling setpoint, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - clothes_dryer_exhaust_0_sch_s, !- Name - clothes dryer exhaust schedule, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - cool_season, !- Name - cooling season schedule, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - dhw_loss, !- Name - water heater, !- Output:Variable or Output:Meter Index Key Name - Water Heater Heat Loss Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - dhw_rtf, !- Name - water heater, !- Output:Variable or Output:Meter Index Key Name - Water Heater Runtime Fraction; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv, !- Name - central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv_1, !- Name - central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv_2, !- Name - central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv_3, !- Name - central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv_4, !- Name - central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_conv_5, !- Name - central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad, !- Name - central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad_1, !- Name - central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad_2, !- Name - central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad_3, !- Name - central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad_4, !- Name - central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ducts_rad_5, !- Name - central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ground_temp, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Site Surface Ground Temperature; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - htg_load_liv, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Heating:EnergyTransfer:Zone:LIVING SPACE; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - htg_load_tot, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Heating:EnergyTransfer; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - htg_sp_s, !- Name - heating setpoint, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv, !- Name - clothes dryer, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_1, !- Name - clothes washer, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_2, !- Name - cooking range, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_3, !- Name - dishwasher, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_4, !- Name - fridge, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_5, !- Name - misc plug loads, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_6, !- Name - misc tv, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_conv_7, !- Name - whole house fan, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad, !- Name - clothes dryer, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_1, !- Name - clothes washer, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_2, !- Name - cooking range, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_3, !- Name - dishwasher, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_4, !- Name - fridge, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_5, !- Name - misc plug loads, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_6, !- Name - misc tv, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ee_rad_7, !- Name - whole house fan, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_lgt_conv, !- Name - interior lighting, !- Output:Variable or Output:Meter Index Key Name - Lights Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_lgt_rad, !- Name - interior lighting, !- Output:Variable or Output:Meter Index Key Name - Lights Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_lgt_vis, !- Name - interior lighting, !- Output:Variable or Output:Meter Index Key Name - Lights Visible Radiation Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_conv, !- Name - water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_conv_1, !- Name - water latent, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_conv_2, !- Name - water sensible, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_rad, !- Name - water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_rad_1, !- Name - water latent, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_oe_rad_2, !- Name - water sensible, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ppl_conv, !- Name - occupants, !- Output:Variable or Output:Meter Index Key Name - People Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ig_ppl_rad, !- Name - occupants, !- Output:Variable or Output:Meter Index Key Name - People Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_conv, !- Name - furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_conv_1, !- Name - living space Living Partition, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_ig, !- Name - furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_ig_1, !- Name - living space Living Partition, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_lgt, !- Name - furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_lgt_1, !- Name - living space Living Partition, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_sol, !- Name - furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_sol_1, !- Name - living space Living Partition, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_surf, !- Name - furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - im_surf_1, !- Name - living space Living Partition, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_conv, !- Name - mech vent house fan, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_conv_1, !- Name - mech vent house fan cfis, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_conv_2, !- Name - mech vent house fan latent load equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_conv_3, !- Name - mech vent house fan sensible load equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_rad, !- Name - mech vent house fan, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_rad_1, !- Name - mech vent house fan cfis, !- Output:Variable or Output:Meter Index Key Name - Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_rad_2, !- Name - mech vent house fan latent load equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - mv_rad_3, !- Name - mech vent house fan sensible load equip, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - natural_vent_avail_s, !- Name - natural vent avail schedule, !- Output:Variable or Output:Meter Index Key Name - Schedule Value; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - out_pb_s, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Site Outdoor Air Barometric Pressure; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - out_wt_s, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Site Outdoor Air Humidity Ratio; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - site_vw_s, !- Name - , !- Output:Variable or Output:Meter Index Key Name - Site Wind Speed; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_back_out, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_back_out_1, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_back_out_2, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_back_out_3, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv, !- Name - DoorNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv_1, !- Name - DoorSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv_2, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv_3, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv_4, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_conv_5, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig, !- Name - DoorNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig_1, !- Name - DoorSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig_2, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig_3, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig_4, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_ig_5, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_lgt, !- Name - DoorNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_lgt_1, !- Name - DoorSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol, !- Name - DoorNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol_1, !- Name - DoorSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol_abs, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol_abs_1, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol_abs_2, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sol_abs_3, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf, !- Name - DoorNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf_1, !- Name - DoorSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf_2, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf_3, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf_4, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_surf_5, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sw_abs, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sw_abs_1, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sw_abs_2, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_sw_abs_3, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_in, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_in_1, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_in_2, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_in_3, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_out, !- Name - WindowEast, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_out_1, !- Name - WindowNorth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_out_2, !- Name - WindowSouth, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - ss_trans_out_3, !- Name - WindowWest, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv, !- Name - FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv_1, !- Name - Slab, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv_2, !- Name - Wall:0, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv_3, !- Name - Wall:180, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv_4, !- Name - Wall:270, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_conv_5, !- Name - Wall:90, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig, !- Name - FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig_1, !- Name - Slab, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig_2, !- Name - Wall:0, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig_3, !- Name - Wall:180, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig_4, !- Name - Wall:270, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_ig_5, !- Name - Wall:90, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt, !- Name - FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt_1, !- Name - Slab, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt_2, !- Name - Wall:0, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt_3, !- Name - Wall:180, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt_4, !- Name - Wall:270, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_lgt_5, !- Name - Wall:90, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol, !- Name - FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol_1, !- Name - Slab, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol_2, !- Name - Wall:0, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol_3, !- Name - Wall:180, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol_4, !- Name - Wall:270, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_sol_5, !- Name - Wall:90, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf, !- Name - FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf_1, !- Name - Slab, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf_2, !- Name - Wall:0, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf_3, !- Name - Wall:180, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf_4, !- Name - Wall:270, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - s_surf_5, !- Name - Wall:90, !- Output:Variable or Output:Meter Index Key Name - Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - water_heater_EC_adjustment_energy_consumption, !- Name - water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name - Other Equipment Electricity Energy; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - water_heater_energy, !- Name - water heater, !- Output:Variable or Output:Meter Index Key Name - Water Heater Electricity Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - water_heater_off_cycle_parasitic, !- Name - water heater, !- Output:Variable or Output:Meter Index Key Name - Water Heater Off Cycle Parasitic Electricity Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Sensor, - water_heater_on_cycle_parasitic, !- Name - water heater, !- Output:Variable or Output:Meter Index Key Name - Water Heater On Cycle Parasitic Electricity Rate; !- Output:Variable or Output:Meter Name - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_RetCondToDZ_equip_act, !- Name - central_ac_and_furnace_airloop_0_RetCondToDZ equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_RetCondToRP_equip_act, !- Name - central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_RetLatLkToRP_equip_act, !- Name - central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_RetSensLkToRP_equip_act, !- Name - central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupCondToDZ_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupCondToDZ equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupCondToLv_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupLatLkToDZ_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupLatLkToDZ equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupLatLkToLv_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupSensLkToDZ_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupSensLkToDZ equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - central_ac_and_furnace_airloop_0_SupSensLkToLv_equip_act, !- Name - central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - infil_flow_act, !- Name - infil flow, !- Actuated Component Unique Name - Zone Infiltration, !- Actuated Component Type - Air Exchange Flow Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - mech_vent_house_fan_cfis_act, !- Name - mech vent house fan cfis, !- Actuated Component Unique Name - ElectricEquipment, !- Actuated Component Type - Electricity Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - mech_vent_house_fan_latent_load_equip_act, !- Name - mech vent house fan latent load equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - mech_vent_house_fan_sensible_load_equip_act, !- Name - mech vent house fan sensible load equip, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - natural_vent_flow_act, !- Name - natural vent flow, !- Actuated Component Unique Name - Zone Infiltration, !- Actuated Component Type - Air Exchange Flow Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - under_slab_temp_sch, !- Name - under slab, !- Actuated Component Unique Name - Schedule:Constant, !- Actuated Component Type - Schedule Value; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - water_heater_ec_adj_act, !- Name - water heater EC adjustment, !- Actuated Component Unique Name - OtherEquipment, !- Actuated Component Type - Power Level; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - whole_house_fan_act, !- Name - whole house fan, !- Actuated Component Unique Name - ElectricEquipment, !- Actuated Component Type - Electricity Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - whole_house_fan_flow_act, !- Name - whole house fan flow, !- Actuated Component Unique Name - Zone Infiltration, !- Actuated Component Type - Air Exchange Flow Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Actuator, - whole_house_fan_mix_act, !- Name - whole house fan mix, !- Actuated Component Unique Name - ZoneMixing, !- Actuated Component Type - Air Exchange Flow Rate; !- Actuated Component Control Type - -EnergyManagementSystem:Program, - central_ac_and_furnace_airloop_0_duct_program, !- Name - Set central_ac_and_furnace_airloop_AH_MFR = central_ac_and_furnace_airloop_AH_MFR_s, !- Program Line 1 - Set central_ac_and_furnace_airloop_Fan_RTF = central_ac_and_furnace_airloop_Fan_RTF_s, !- Program Line 2 - Set central_ac_and_furnace_airloop_AH_VFR = central_ac_and_furnace_airloop_AH_VFR_s, !- Program Line 3 - Set central_ac_and_furnace_airloop_AH_Tout = central_ac_and_furnace_airloop_AH_Tout_s, !- Program Line 4 - Set central_ac_and_furnace_airloop_AH_Wout = central_ac_and_furnace_airloop_AH_Wout_s, !- Program Line 5 - Set central_ac_and_furnace_airloop_RA_T = central_ac_and_furnace_airloop_RA_T_s, !- Program Line 6 - Set central_ac_and_furnace_airloop_Ra_W = central_ac_and_furnace_airloop_Ra_W_s, !- Program Line 7 - Set central_ac_and_furnace_airloop_0_DZ_T = central_ac_and_furnace_airloop_0_DZ_T_s, !- Program Line 8 - Set central_ac_and_furnace_airloop_0_DZ_W = (central_ac_and_furnace_airloop_0_DZ_W_s_1 + central_ac_and_furnace_airloop_0_DZ_W_s_2) / 2, !- Program Line 9 - Run central_ac_and_furnace_airloop_0_duct_subroutine, !- Program Line 10 - Set central_ac_and_furnace_airloop_0_SupSensLkToLv_equip_act = central_ac_and_furnace_airloop_0_SupSensLkToLv, !- Program Line 11 - Set central_ac_and_furnace_airloop_0_SupLatLkToLv_equip_act = central_ac_and_furnace_airloop_0_SupLatLkToLv, !- Program Line 12 - Set central_ac_and_furnace_airloop_0_SupCondToLv_equip_act = central_ac_and_furnace_airloop_0_SupCondToLv, !- Program Line 13 - Set central_ac_and_furnace_airloop_0_RetSensLkToRP_equip_act = central_ac_and_furnace_airloop_0_RetSensLkToRP, !- Program Line 14 - Set central_ac_and_furnace_airloop_0_RetLatLkToRP_equip_act = central_ac_and_furnace_airloop_0_RetLatLkToRP, !- Program Line 15 - Set central_ac_and_furnace_airloop_0_RetCondToRP_equip_act = central_ac_and_furnace_airloop_0_RetCondToRP, !- Program Line 16 - Set central_ac_and_furnace_airloop_0_RetCondToDZ_equip_act = central_ac_and_furnace_airloop_0_RetCondToDZ, !- Program Line 17 - Set central_ac_and_furnace_airloop_0_SupCondToDZ_equip_act = central_ac_and_furnace_airloop_0_SupCondToDZ, !- Program Line 18 - Set central_ac_and_furnace_airloop_0_SupSensLkToDZ_equip_act = central_ac_and_furnace_airloop_0_SupSensLkToDZ, !- Program Line 19 - Set central_ac_and_furnace_airloop_0_SupLatLkToDZ_equip_act = central_ac_and_furnace_airloop_0_SupLatLkToDZ; !- Program Line 20 - -EnergyManagementSystem:Program, - central_ac_and_furnace_supply_fan_disaggregate_program, !- Name - Set central_ac_and_furnace_supply_fan_clg = 0, !- Program Line 1 - If central_ac_and_furnace_clg_coil_s > 0, !- Program Line 2 - Set central_ac_and_furnace_supply_fan_clg = central_ac_and_furnace_supply_fan_s, !- Program Line 3 - EndIf; !- Program Line 4 - -EnergyManagementSystem:Program, - central_ac_and_furnace_supply_fan_disaggregate_program_1, !- Name - Set central_ac_and_furnace_supply_fan_primary_htg = 0, !- Program Line 1 - If central_ac_and_furnace_htg_coil_s > 0, !- Program Line 2 - Set central_ac_and_furnace_supply_fan_primary_htg = central_ac_and_furnace_supply_fan_s_1, !- Program Line 3 - EndIf; !- Program Line 4 - -EnergyManagementSystem:Program, - component_loads_program, !- Name - Set hr_walls = 0, !- Program Line 1 - Set hr_walls = hr_walls + s_conv_2 + s_ig_2 + s_sol_2 + s_lgt_2 + s_surf_2, !- Program Line 2 - Set hr_walls = hr_walls + s_conv_3 + s_ig_3 + s_sol_3 + s_lgt_3 + s_surf_3, !- Program Line 3 - Set hr_walls = hr_walls + s_conv_4 + s_ig_4 + s_sol_4 + s_lgt_4 + s_surf_4, !- Program Line 4 - Set hr_walls = hr_walls + s_conv_5 + s_ig_5 + s_sol_5 + s_lgt_5 + s_surf_5, !- Program Line 5 - Set hr_rim_joists = 0, !- Program Line 6 - Set hr_foundation_walls = 0, !- Program Line 7 - Set hr_floors = 0, !- Program Line 8 - Set hr_slabs = 0, !- Program Line 9 - Set hr_slabs = hr_slabs + s_conv_1 + s_ig_1 + s_sol_1 + s_lgt_1 + s_surf_1, !- Program Line 10 - Set hr_ceilings = 0, !- Program Line 11 - Set hr_ceilings = hr_ceilings + s_conv + s_ig + s_sol + s_lgt + s_surf, !- Program Line 12 - Set hr_roofs = 0, !- Program Line 13 - Set hr_windows = 0, !- Program Line 14 - Set hr_windows = hr_windows - ss_trans_in + ss_back_out * ZoneTimestep * 3600 + ss_sw_abs * ZoneTimestep * 3600 - ss_sol_abs + ss_trans_out * ZoneTimestep * 3600 + ss_conv_2 + ss_ig_2 + ss_surf_2, !- Program Line 15 - Set hr_windows = hr_windows - ss_trans_in_1 + ss_back_out_1 * ZoneTimestep * 3600 + ss_sw_abs_1 * ZoneTimestep * 3600 - ss_sol_abs_1 + ss_trans_out_1 * ZoneTimestep * 3600 + ss_conv_3 + ss_ig_3 + ss_surf_3, !- Program Line 16 - Set hr_windows = hr_windows - ss_trans_in_2 + ss_back_out_2 * ZoneTimestep * 3600 + ss_sw_abs_2 * ZoneTimestep * 3600 - ss_sol_abs_2 + ss_trans_out_2 * ZoneTimestep * 3600 + ss_conv_4 + ss_ig_4 + ss_surf_4, !- Program Line 17 - Set hr_windows = hr_windows - ss_trans_in_3 + ss_back_out_3 * ZoneTimestep * 3600 + ss_sw_abs_3 * ZoneTimestep * 3600 - ss_sol_abs_3 + ss_trans_out_3 * ZoneTimestep * 3600 + ss_conv_5 + ss_ig_5 + ss_surf_5, !- Program Line 18 - Set hr_doors = 0, !- Program Line 19 - Set hr_doors = hr_doors + ss_sol + ss_lgt + ss_conv + ss_ig + ss_surf, !- Program Line 20 - Set hr_doors = hr_doors + ss_sol_1 + ss_lgt_1 + ss_conv_1 + ss_ig_1 + ss_surf_1, !- Program Line 21 - Set hr_skylights = 0, !- Program Line 22 - Set hr_internal_mass = 0, !- Program Line 23 - Set hr_internal_mass = hr_internal_mass + im_conv + im_ig + im_sol + im_lgt + im_surf, !- Program Line 24 - Set hr_internal_mass = hr_internal_mass + im_conv_1 + im_ig_1 + im_sol_1 + im_lgt_1 + im_surf_1, !- Program Line 25 - Set hr_intgains = 0, !- Program Line 26 - Set hr_intgains = hr_intgains - ig_ee_conv - ig_ee_rad, !- Program Line 27 - Set hr_intgains = hr_intgains - ig_ee_conv_1 - ig_ee_rad_1, !- Program Line 28 - Set hr_intgains = hr_intgains - ig_ee_conv_2 - ig_ee_rad_2, !- Program Line 29 - Set hr_intgains = hr_intgains - ig_ee_conv_3 - ig_ee_rad_3, !- Program Line 30 - Set hr_intgains = hr_intgains - ig_ee_conv_4 - ig_ee_rad_4, !- Program Line 31 - Set hr_intgains = hr_intgains - ig_ee_conv_5 - ig_ee_rad_5, !- Program Line 32 - Set hr_intgains = hr_intgains - ig_ee_conv_6 - ig_ee_rad_6, !- Program Line 33 - Set hr_intgains = hr_intgains - ig_ee_conv_7 - ig_ee_rad_7, !- Program Line 34 - Set hr_intgains = hr_intgains - ig_oe_conv - ig_oe_rad, !- Program Line 35 - Set hr_intgains = hr_intgains - ig_oe_conv_1 - ig_oe_rad_1, !- Program Line 36 - Set hr_intgains = hr_intgains - ig_oe_conv_2 - ig_oe_rad_2, !- Program Line 37 - Set hr_intgains = hr_intgains - ig_lgt_conv - ig_lgt_rad - ig_lgt_vis, !- Program Line 38 - Set hr_intgains = hr_intgains - ig_ppl_conv - ig_ppl_rad, !- Program Line 39 - Set hr_intgains = hr_intgains + dhw_loss * (1.0*(1-dhw_rtf) + 1.0*dhw_rtf), !- Program Line 40 - Set hr_airflow_rate = infil_flow_act + natural_vent_flow_act + whole_house_fan_flow_act, !- Program Line 41 - If hr_airflow_rate > 0, !- Program Line 42 - Set hr_infil = (airflow_loss - airflow_gain) * infil_flow_act / hr_airflow_rate, !- Program Line 43 - Set hr_natvent = (airflow_loss - airflow_gain) * natural_vent_flow_act / hr_airflow_rate, !- Program Line 44 - Set hr_whf = (airflow_loss - airflow_gain) * whole_house_fan_flow_act / hr_airflow_rate, !- Program Line 45 - Else, !- Program Line 46 - Set hr_infil = 0, !- Program Line 47 - Set hr_natvent = 0, !- Program Line 48 - Set hr_whf = 0, !- Program Line 49 - Set hr_mechvent = 0, !- Program Line 50 - EndIf, !- Program Line 51 - Set hr_mechvent = 0, !- Program Line 52 - Set hr_mechvent = hr_mechvent - mv_conv, !- Program Line 53 - Set hr_mechvent = hr_mechvent - mv_rad, !- Program Line 54 - Set hr_mechvent = hr_mechvent - mv_conv_1, !- Program Line 55 - Set hr_mechvent = hr_mechvent - mv_rad_1, !- Program Line 56 - Set hr_mechvent = hr_mechvent - mv_conv_2, !- Program Line 57 - Set hr_mechvent = hr_mechvent - mv_rad_2, !- Program Line 58 - Set hr_mechvent = hr_mechvent - mv_conv_3, !- Program Line 59 - Set hr_mechvent = hr_mechvent - mv_rad_3, !- Program Line 60 - Set hr_ducts = 0, !- Program Line 61 - Set hr_ducts = hr_ducts - ducts_conv - ducts_rad, !- Program Line 62 - Set hr_ducts = hr_ducts - ducts_conv_1 - ducts_rad_1, !- Program Line 63 - Set hr_ducts = hr_ducts - ducts_conv_2 - ducts_rad_2, !- Program Line 64 - Set hr_ducts = hr_ducts - ducts_conv_3 - ducts_rad_3, !- Program Line 65 - Set hr_ducts = hr_ducts - ducts_conv_4 - ducts_rad_4, !- Program Line 66 - Set hr_ducts = hr_ducts - ducts_conv_5 - ducts_rad_5, !- Program Line 67 - Set htg_mode = 0, !- Program Line 68 - Set clg_mode = 0, !- Program Line 69 - If (htg_load_liv > 0), !- Program Line 70 - Set htg_mode = 1, !- Program Line 71 - ElseIf (clg_load_liv > 0), !- Program Line 72 - Set clg_mode = 1, !- Program Line 73 - ElseIf (cool_season > 0), !- Program Line 74 - Set clg_mode = 1, !- Program Line 75 - Else, !- Program Line 76 - Set htg_mode = 1, !- Program Line 77 - EndIf, !- Program Line 78 - Set loads_htg_walls = hr_walls * htg_mode, !- Program Line 79 - Set loads_htg_rim_joists = hr_rim_joists * htg_mode, !- Program Line 80 - Set loads_htg_foundation_walls = hr_foundation_walls * htg_mode, !- Program Line 81 - Set loads_htg_floors = hr_floors * htg_mode, !- Program Line 82 - Set loads_htg_slabs = hr_slabs * htg_mode, !- Program Line 83 - Set loads_htg_ceilings = hr_ceilings * htg_mode, !- Program Line 84 - Set loads_htg_roofs = hr_roofs * htg_mode, !- Program Line 85 - Set loads_htg_windows = hr_windows * htg_mode, !- Program Line 86 - Set loads_htg_doors = hr_doors * htg_mode, !- Program Line 87 - Set loads_htg_skylights = hr_skylights * htg_mode, !- Program Line 88 - Set loads_htg_internal_mass = hr_internal_mass * htg_mode, !- Program Line 89 - Set loads_htg_intgains = hr_intgains * htg_mode, !- Program Line 90 - Set loads_htg_infil = hr_infil * htg_mode, !- Program Line 91 - Set loads_htg_mechvent = hr_mechvent * htg_mode, !- Program Line 92 - Set loads_htg_natvent = hr_natvent * htg_mode, !- Program Line 93 - Set loads_htg_whf = hr_whf * htg_mode, !- Program Line 94 - Set loads_htg_ducts = hr_ducts * htg_mode, !- Program Line 95 - Set loads_clg_walls = -hr_walls * clg_mode, !- Program Line 96 - Set loads_clg_rim_joists = -hr_rim_joists * clg_mode, !- Program Line 97 - Set loads_clg_foundation_walls = -hr_foundation_walls * clg_mode, !- Program Line 98 - Set loads_clg_floors = -hr_floors * clg_mode, !- Program Line 99 - Set loads_clg_slabs = -hr_slabs * clg_mode, !- Program Line 100 - Set loads_clg_ceilings = -hr_ceilings * clg_mode, !- Program Line 101 - Set loads_clg_roofs = -hr_roofs * clg_mode, !- Program Line 102 - Set loads_clg_windows = -hr_windows * clg_mode, !- Program Line 103 - Set loads_clg_doors = -hr_doors * clg_mode, !- Program Line 104 - Set loads_clg_skylights = -hr_skylights * clg_mode, !- Program Line 105 - Set loads_clg_internal_mass = -hr_internal_mass * clg_mode, !- Program Line 106 - Set loads_clg_intgains = -hr_intgains * clg_mode, !- Program Line 107 - Set loads_clg_infil = -hr_infil * clg_mode, !- Program Line 108 - Set loads_clg_mechvent = -hr_mechvent * clg_mode, !- Program Line 109 - Set loads_clg_natvent = -hr_natvent * clg_mode, !- Program Line 110 - Set loads_clg_whf = -hr_whf * clg_mode, !- Program Line 111 - Set loads_clg_ducts = -hr_ducts * clg_mode, !- Program Line 112 - Set loads_htg_tot = 0, !- Program Line 113 - Set loads_clg_tot = 0, !- Program Line 114 - If htg_load_liv > 0, !- Program Line 115 - Set loads_htg_tot = htg_load_tot - clg_load_tot, !- Program Line 116 - ElseIf clg_load_liv > 0, !- Program Line 117 - Set loads_clg_tot = clg_load_tot - htg_load_tot, !- Program Line 118 - EndIf; !- Program Line 119 - -EnergyManagementSystem:Program, - infil_program, !- Name - Set p_m = 0.14, !- Program Line 1 - Set p_s = 0.22, !- Program Line 2 - Set s_m = 270, !- Program Line 3 - Set s_s = 370, !- Program Line 4 - Set z_m = 9.99744, !- Program Line 5 - Set z_s = 2.4384, !- Program Line 6 - Set f_t = (((s_m/z_m)^p_m)*((z_s/s_s)^p_s)), !- Program Line 7 - Set Tdiff = airflow_tin_s-airflow_tt_s, !- Program Line 8 - Set dT = @Abs Tdiff, !- Program Line 9 - Set c = 0.0202, !- Program Line 10 - Set Cs = 0.0556, !- Program Line 11 - Set Cw = 0.1596, !- Program Line 12 - Set n = 0.65, !- Program Line 13 - Set sft = (f_t*0.5), !- Program Line 14 - Set temp1 = ((c*Cw)*((sft*site_vw_s)^(2*n)))^2, !- Program Line 15 - Set Qinf = (((c*Cs*(dT^n))^2)+temp1)^0.5, !- Program Line 16 - Set Qinf = (@Max Qinf 0), !- Program Line 17 - Set mech_vent_house_fan_sensible_load_equip_act = 0.0, !- Program Line 18 - Set mech_vent_house_fan_latent_load_equip_act = 0.0, !- Program Line 19 - Set OASupInPb = out_pb_s, !- Program Line 20 - Set OASupInTemp = airflow_tt_s, !- Program Line 21 - Set OASupInW = out_wt_s, !- Program Line 22 - Set OASupRho = (@RhoAirFnPbTdbW OASupInPb OASupInTemp OASupInW), !- Program Line 23 - Set OASupCp = (@CpAirFnW OASupInW), !- Program Line 24 - Set OASupInEnth = (@HFnTdbW OASupInTemp OASupInW), !- Program Line 25 - Set ZoneTemp = airflow_tin_s, !- Program Line 26 - Set ZoneW = airflow_win_s, !- Program Line 27 - Set ZoneCp = (@CpAirFnW ZoneW), !- Program Line 28 - Set ZoneAirEnth = (@HFnTdbW ZoneTemp ZoneW), !- Program Line 29 - Set mech_vent_house_fan_cfis_act = 0.0, !- Program Line 30 - Set QWHV_cfis_oa = 0.0, !- Program Line 31 - Set Qrange = 0, !- Program Line 32 - Set Qbath = 0, !- Program Line 33 - Set Qdryer = 0, !- Program Line 34 - Set Qdryer = Qdryer + 0.0708 * clothes_dryer_exhaust_0_sch_s, !- Program Line 35 - Set QWHV_sup = 0.0, !- Program Line 36 - Set QWHV_exh = 0.0, !- Program Line 37 - Set QWHV_bal_erv_hrv = 0.0, !- Program Line 38 - Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_bal_erv_hrv, !- Program Line 39 - Set Qsupply = QWHV_sup + QWHV_bal_erv_hrv + QWHV_cfis_oa, !- Program Line 40 - Set Qfan = (@Max Qexhaust Qsupply), !- Program Line 41 - If Qfan > 0, !- Program Line 42 - Set Qavg = ((Qexhaust + Qsupply) / 2.0), !- Program Line 43 - If ((@Abs (Qexhaust - Qavg)) / Qavg) <= 0.1, !- Program Line 44 - Set phi = 1, !- Program Line 45 - Else, !- Program Line 46 - Set phi = (Qinf / (Qinf + Qfan)), !- Program Line 47 - EndIf, !- Program Line 48 - Set Qinf_adj = phi * Qinf, !- Program Line 49 - Else, !- Program Line 50 - Set Qinf_adj = Qinf, !- Program Line 51 - EndIf, !- Program Line 52 - Set infil_flow_act = Qinf_adj, !- Program Line 53 - Set Qload = Qfan, !- Program Line 54 - Set Effectiveness_Sens = 0.0, !- Program Line 55 - Set Effectiveness_Lat = 0.0, !- Program Line 56 - Set Fan_MFR = Qload * OASupRho, !- Program Line 57 - Set FanTotalToLv = Fan_MFR * (OASupInEnth - ZoneAirEnth), !- Program Line 58 - Set FanSensToLv = Fan_MFR * ZoneCp * (OASupInTemp - ZoneTemp), !- Program Line 59 - Set FanLatToLv = FanTotalToLv - FanSensToLv, !- Program Line 60 - Set mech_vent_house_fan_sensible_load_equip_act = mech_vent_house_fan_sensible_load_equip_act + FanSensToLv, !- Program Line 61 - Set mech_vent_house_fan_latent_load_equip_act = mech_vent_house_fan_latent_load_equip_act + FanLatToLv; !- Program Line 62 - -EnergyManagementSystem:Program, - natural_vent_program, !- Name - Set Tin = airflow_tin_s, !- Program Line 1 - Set Tout = airflow_tt_s, !- Program Line 2 - Set Wout = out_wt_s, !- Program Line 3 - Set Pbar = out_pb_s, !- Program Line 4 - Set Phiout = (@RhFnTdbWPb Tout Wout Pbar), !- Program Line 5 - Set MaxHR = 0.0115, !- Program Line 6 - Set MaxRH = 0.7, !- Program Line 7 - Set Tnvsp = (htg_sp_s + clg_sp_s) / 2, !- Program Line 8 - Set NVavail = natural_vent_avail_s, !- Program Line 9 - Set ClgSsnAvail = cool_season, !- Program Line 10 - If (Wout < MaxHR) && (Phiout < MaxRH) && (Tin > Tout) && (Tin > Tnvsp) && (ClgSsnAvail > 0), !- Program Line 11 - Set WHF_Flow = 0, !- Program Line 12 - Set Adj = (Tin-Tnvsp)/(Tin-Tout), !- Program Line 13 - Set Adj = (@Min Adj 1), !- Program Line 14 - Set Adj = (@Max Adj 0), !- Program Line 15 - If (WHF_Flow > 0), !- Program Line 16 - Set natural_vent_flow_act = 0, !- Program Line 17 - Set whole_house_fan_flow_act = WHF_Flow*Adj, !- Program Line 18 - Set whole_house_fan_mix_act = WHF_Flow*Adj, !- Program Line 19 - Set WHF_W = 0, !- Program Line 20 - Set whole_house_fan_act = WHF_W*Adj, !- Program Line 21 - ElseIf (NVavail > 0), !- Program Line 22 - Set NVArea = 13444.9279488, !- Program Line 23 - Set Cs = 8.963020389461627e-05, !- Program Line 24 - Set Cw = 6.158219665777789e-05, !- Program Line 25 - Set Tdiff = Tin-Tout, !- Program Line 26 - Set dT = (@Abs Tdiff), !- Program Line 27 - Set Vwind = site_vw_s, !- Program Line 28 - Set SGNV = NVArea*Adj*((((Cs*dT)+(Cw*(Vwind^2)))^0.5)/1000), !- Program Line 29 - Set MaxNV = 1.6990107955200002, !- Program Line 30 - Set natural_vent_flow_act = (@Min SGNV MaxNV), !- Program Line 31 - Set whole_house_fan_flow_act = 0, !- Program Line 32 - Set whole_house_fan_mix_act = 0, !- Program Line 33 - Set whole_house_fan_act = 0, !- Program Line 34 - EndIf, !- Program Line 35 - Else, !- Program Line 36 - Set natural_vent_flow_act = 0, !- Program Line 37 - Set whole_house_fan_flow_act = 0, !- Program Line 38 - Set whole_house_fan_mix_act = 0, !- Program Line 39 - Set whole_house_fan_act = 0, !- Program Line 40 - EndIf; !- Program Line 41 - -EnergyManagementSystem:Program, - under_slab_Temperature_Program, !- Name - Set under_slab_temp_sch = 0.0, !- Program Line 1 - Set under_slab_temp_sch = under_slab_temp_sch + (ground_temp * 1.0); !- Program Line 2 - -EnergyManagementSystem:Program, - water_heater_EC_adj, !- Name - Set wh_e_cons = water_heater_energy + water_heater_on_cycle_parasitic + water_heater_off_cycle_parasitic, !- Program Line 1 - Set water_heater_ec_adj_act = -0.0601631712969406 * wh_e_cons; !- Program Line 2 - -EnergyManagementSystem:Subroutine, - central_ac_and_furnace_airloop_0_duct_subroutine, !- Name - Set AH_MFR = central_ac_and_furnace_airloop_AH_MFR, !- Program Line 1 - If AH_MFR>0, !- Program Line 2 - Set AH_Tout = central_ac_and_furnace_airloop_AH_Tout, !- Program Line 3 - Set AH_Wout = central_ac_and_furnace_airloop_AH_Wout, !- Program Line 4 - Set RA_T = central_ac_and_furnace_airloop_RA_T, !- Program Line 5 - Set RA_W = central_ac_and_furnace_airloop_Ra_W, !- Program Line 6 - Set Fan_RTF = central_ac_and_furnace_airloop_Fan_RTF, !- Program Line 7 - Set DZ_T = central_ac_and_furnace_airloop_0_DZ_T, !- Program Line 8 - Set DZ_W = central_ac_and_furnace_airloop_0_DZ_W, !- Program Line 9 - Set AH_VFR = central_ac_and_furnace_airloop_AH_VFR, !- Program Line 10 - Set h_SA = (@HFnTdbW AH_Tout AH_Wout), !- Program Line 11 - Set h_RA = (@HFnTdbW RA_T RA_W), !- Program Line 12 - Set h_fg = (@HfgAirFnWTdb AH_Wout AH_Tout), !- Program Line 13 - Set h_DZ = (@HFnTdbW DZ_T DZ_W), !- Program Line 14 - Set air_cp = 1006.0, !- Program Line 15 - Set f_sup = 0.035396 / (central_ac_and_furnace_airloop_max_sup_fan_mfr * 1.0135), !- Program Line 16 - Set f_ret = 0.011799 / (central_ac_and_furnace_airloop_max_sup_fan_mfr * 1.0135), !- Program Line 17 - Set sup_lk_mfr = f_sup * AH_MFR, !- Program Line 18 - Set ret_lk_mfr = f_ret * AH_MFR, !- Program Line 19 - Set SupTotLkToLiv = sup_lk_mfr*(h_RA - h_SA), !- Program Line 20 - Set SupLatLkToLv = sup_lk_mfr*h_fg*(RA_W-AH_Wout), !- Program Line 21 - Set SupSensLkToLv = SupTotLkToLiv-SupLatLkToLv, !- Program Line 22 - Set supply_ua = 17.617, !- Program Line 23 - Set eTm = 0-((Fan_RTF/(AH_MFR*air_cp))*supply_ua), !- Program Line 24 - Set t_sup = DZ_T+((AH_Tout-DZ_T)*(@Exp eTm)), !- Program Line 25 - Set SupCondToLv = AH_MFR*air_cp*(t_sup-AH_Tout), !- Program Line 26 - Set SupCondToDZ = 0-SupCondToLv, !- Program Line 27 - Set return_ua = 15.515, !- Program Line 28 - Set eTm = 0-((Fan_RTF/(AH_MFR*air_cp))*return_ua), !- Program Line 29 - Set t_ret = DZ_T+((RA_T-DZ_T)*(@Exp eTm)), !- Program Line 30 - Set RetCondToRP = AH_MFR*air_cp*(t_ret-RA_T), !- Program Line 31 - Set RetCondToDZ = 0-RetCondToRP, !- Program Line 32 - Set RetLatLkToRP = 0, !- Program Line 33 - Set RetSensLkToRP = ret_lk_mfr*air_cp*(DZ_T-RA_T), !- Program Line 34 - Set SupTotLkToDZ = sup_lk_mfr*(h_SA-h_DZ), !- Program Line 35 - Set SupLatLkToDZ = sup_lk_mfr*h_fg*(AH_Wout-DZ_W), !- Program Line 36 - Set SupSensLkToDZ = SupTotLkToDZ-SupLatLkToDZ, !- Program Line 37 - Set f_imbalance = f_sup-f_ret, !- Program Line 38 - Set oa_vfr = 1.0 * f_imbalance * AH_VFR, !- Program Line 39 - Set sup_lk_vfr = f_sup * AH_VFR, !- Program Line 40 - Set ret_lk_vfr = f_ret * AH_VFR, !- Program Line 41 - If f_sup > f_ret, !- Program Line 42 - Set ZoneMixLvToDZ = 0, !- Program Line 43 - Set ZoneMixDZToLv = (sup_lk_vfr-ret_lk_vfr)-oa_vfr, !- Program Line 44 - Else, !- Program Line 45 - Set ZoneMixLvToDZ = (ret_lk_vfr-sup_lk_vfr)+oa_vfr, !- Program Line 46 - Set ZoneMixDZToLv = 0, !- Program Line 47 - EndIf, !- Program Line 48 - Else, !- Program Line 49 - Set SupLatLkToLv = 0, !- Program Line 50 - Set SupSensLkToLv = 0, !- Program Line 51 - Set SupCondToLv = 0, !- Program Line 52 - Set RetCondToRP = 0, !- Program Line 53 - Set RetLatLkToRP = 0, !- Program Line 54 - Set RetSensLkToRP = 0, !- Program Line 55 - Set RetCondToDZ = 0, !- Program Line 56 - Set SupCondToDZ = 0, !- Program Line 57 - Set SupLatLkToDZ = 0, !- Program Line 58 - Set SupSensLkToDZ = 0, !- Program Line 59 - Set ZoneMixLvToDZ = 0, !- Program Line 60 - Set ZoneMixDZToLv = 0, !- Program Line 61 - EndIf, !- Program Line 62 - Set central_ac_and_furnace_airloop_0_SupLatLkToLv = SupLatLkToLv, !- Program Line 63 - Set central_ac_and_furnace_airloop_0_SupSensLkToLv = SupSensLkToLv, !- Program Line 64 - Set central_ac_and_furnace_airloop_0_SupCondToLv = SupCondToLv, !- Program Line 65 - Set central_ac_and_furnace_airloop_0_RetCondToRP = RetCondToRP, !- Program Line 66 - Set central_ac_and_furnace_airloop_0_RetLatLkToRP = RetLatLkToRP, !- Program Line 67 - Set central_ac_and_furnace_airloop_0_RetSensLkToRP = RetSensLkToRP, !- Program Line 68 - Set central_ac_and_furnace_airloop_0_RetCondToDZ = RetCondToDZ, !- Program Line 69 - Set central_ac_and_furnace_airloop_0_SupCondToDZ = SupCondToDZ, !- Program Line 70 - Set central_ac_and_furnace_airloop_0_SupLatLkToDZ = SupLatLkToDZ, !- Program Line 71 - Set central_ac_and_furnace_airloop_0_SupSensLkToDZ = SupSensLkToDZ; !- Program Line 72 - -EnergyManagementSystem:ProgramCallingManager, - central ac and furnace supply fan disaggregate program calling manager, !- Name - EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point - central_ac_and_furnace_supply_fan_disaggregate_program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - central ac and furnace supply fan disaggregate program calling manager 1, !- Name - EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point - central_ac_and_furnace_supply_fan_disaggregate_program_1; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - central_ac_and_furnace_airloop_0_duct_program calling manager, !- Name - EndOfSystemTimestepAfterHVACReporting, !- EnergyPlus Model Calling Point - central_ac_and_furnace_airloop_0_duct_program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - component_loads_program calling manager, !- Name - EndOfZoneTimestepAfterZoneReporting, !- EnergyPlus Model Calling Point - component_loads_program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - infil_program calling manager, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - infil_program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - natural_vent_program calling manager, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - natural_vent_program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - under_slab_Temperature_Program calling manager, !- Name - EndOfSystemTimestepAfterHVACReporting, !- EnergyPlus Model Calling Point - under_slab_Temperature_Program; !- Program Name 1 - -EnergyManagementSystem:ProgramCallingManager, - water heater EC_adj ProgramManager, !- Name - EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point - water_heater_EC_adj; !- Program Name 1 - -EnergyManagementSystem:OutputVariable, - central ac and furnace supply fan clg disaggregate, !- Name - central_ac_and_furnace_supply_fan_clg, !- EMS Variable Name - Summed, !- Type of Data in Variable - SystemTimestep, !- Update Frequency - central_ac_and_furnace_supply_fan_disaggregate_program, !- EMS Program or Subroutine Name - J; !- Units - -EnergyManagementSystem:OutputVariable, - central ac and furnace supply fan htg primary disaggregate, !- Name - central_ac_and_furnace_supply_fan_primary_htg, !- EMS Variable Name - Summed, !- Type of Data in Variable - SystemTimestep, !- Update Frequency - central_ac_and_furnace_supply_fan_disaggregate_program_1, !- EMS Program or Subroutine Name - J; !- Units - -EnergyManagementSystem:OutputVariable, - water heater EC adjustment outvar, !- Name - water_heater_EC_adjustment_energy_consumption, !- EMS Variable Name - Summed, !- Type of Data in Variable - SystemTimestep, !- Update Frequency - water_heater_EC_adj, !- EMS Program or Subroutine Name - J; !- Units - -OutputControl:Table:Style, - HTML; !- Column Separator - -Output:VariableDictionary, - IDF, !- Key Field - Unsorted; !- Sort Option - -Output:SQLite, - SimpleAndTabular; !- Option Type - -Output:Meter, - Electricity:Facility, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - NaturalGas:Facility, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - interior lighting:InteriorLights:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - ExteriorLights:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - mech vent:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - whole house fan:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - fridge:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - dishwasher:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - clothes washer:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - clothes dryer:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - cooking range:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - misc tv:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Meter, - misc plug loads:InteriorEquipment:Electricity, !- Key Name - runperiod; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Water Use Equipment Hot Water Volume, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - ideal residual, !- Key Value - Zone Ideal Loads Zone Sensible Heating Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - ideal residual, !- Key Value - Zone Ideal Loads Zone Sensible Cooling Energy, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_roofs_annual_outvar, !- Name - loads_htg_roofs, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_roofs_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_ceilings_annual_outvar, !- Name - loads_htg_ceilings, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_ceilings_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_walls_annual_outvar, !- Name - loads_htg_walls, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_walls_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_rim_joists_annual_outvar, !- Name - loads_htg_rim_joists, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_rim_joists_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_foundation_walls_annual_outvar, !- Name - loads_htg_foundation_walls, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_foundation_walls_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_doors_annual_outvar, !- Name - loads_htg_doors, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_doors_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_windows_annual_outvar, !- Name - loads_htg_windows, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_windows_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_skylights_annual_outvar, !- Name - loads_htg_skylights, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_skylights_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_floors_annual_outvar, !- Name - loads_htg_floors, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_floors_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_slabs_annual_outvar, !- Name - loads_htg_slabs, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_slabs_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_internal_mass_annual_outvar, !- Name - loads_htg_internal_mass, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_internal_mass_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_infil_annual_outvar, !- Name - loads_htg_infil, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_infil_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_natvent_annual_outvar, !- Name - loads_htg_natvent, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_natvent_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_mechvent_annual_outvar, !- Name - loads_htg_mechvent, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_mechvent_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_whf_annual_outvar, !- Name - loads_htg_whf, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_whf_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_ducts_annual_outvar, !- Name - loads_htg_ducts, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_ducts_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_intgains_annual_outvar, !- Name - loads_htg_intgains, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_intgains_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_roofs_annual_outvar, !- Name - loads_clg_roofs, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_roofs_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_ceilings_annual_outvar, !- Name - loads_clg_ceilings, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_ceilings_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_walls_annual_outvar, !- Name - loads_clg_walls, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_walls_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_rim_joists_annual_outvar, !- Name - loads_clg_rim_joists, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_rim_joists_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_foundation_walls_annual_outvar, !- Name - loads_clg_foundation_walls, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_foundation_walls_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_doors_annual_outvar, !- Name - loads_clg_doors, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_doors_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_windows_annual_outvar, !- Name - loads_clg_windows, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_windows_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_skylights_annual_outvar, !- Name - loads_clg_skylights, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_skylights_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_floors_annual_outvar, !- Name - loads_clg_floors, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_floors_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_slabs_annual_outvar, !- Name - loads_clg_slabs, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_slabs_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_internal_mass_annual_outvar, !- Name - loads_clg_internal_mass, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_internal_mass_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_infil_annual_outvar, !- Name - loads_clg_infil, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_infil_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_natvent_annual_outvar, !- Name - loads_clg_natvent, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_natvent_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_mechvent_annual_outvar, !- Name - loads_clg_mechvent, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_mechvent_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_whf_annual_outvar, !- Name - loads_clg_whf, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_whf_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_ducts_annual_outvar, !- Name - loads_clg_ducts, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_ducts_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_intgains_annual_outvar, !- Name - loads_clg_intgains, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_intgains_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_htg_tot_annual_outvar, !- Name - loads_htg_tot, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_htg_tot_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -EnergyManagementSystem:OutputVariable, - loads_clg_tot_annual_outvar, !- Name - loads_clg_tot, !- EMS Variable Name - Summed, !- Type of Data in Variable - ZoneTimestep, !- Update Frequency - component_loads_program, !- EMS Program or Subroutine Name - J; !- Units - -Output:Variable, - *, !- Key Value - loads_clg_tot_annual_outvar, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace clg coil, !- Key Value - Cooling Coil Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace clg coil, !- Key Value - Cooling Coil Crankcase Heater Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace unitary system, !- Key Value - Unitary System Heating Ancillary Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace htg coil, !- Key Value - Heating Coil Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace htg coil, !- Key Value - Heating Coil NaturalGas Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace htg coil, !- Key Value - Heating Coil Heating Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - central ac and furnace unitary system, !- Key Value - Unitary System Heating Ancillary Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - water heater, !- Key Value - Water Heater Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - water heater, !- Key Value - Water Heater Off Cycle Parasitic Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - water heater, !- Key Value - Water Heater On Cycle Parasitic Electricity Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - water heater, !- Key Value - Water Heater Heat Loss Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - Water Use Connections 1, !- Key Value - Water Use Connections Plant Hot Water Energy, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - central ac and furnace supply fan clg disaggregate, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - central ac and furnace supply fan htg primary disaggregate, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - water heater EC adjustment outvar, !- Variable Name - runperiod; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Surface Inside Face Convection Heat Transfer Coefficient, !- Variable Name - Hourly; !- Reporting Frequency + SizingPeriod:DesignDay, + PHOENIX_AZ_USA Cooling .4% Conditions WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 35.80000, !- Maximum Dry-Bulb Temperature {C} + 12.80000, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 24.20000, !- 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} + 97318.24, !- Barometric Pressure {Pa} + 0, !- Wind Speed {m/s} + 0, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.000000; !- Sky Clearness + + Site:GroundTemperature:Deep,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899,18.7339954337899; + + Site:GroundTemperature:Shallow,14.614074655134,12.8606838667058,12.720266044335,13.5523395654021,16.8926510846715,20.2174020158494,23.0997833843645,24.9257010905938,25.0808228287911,23.5957456696545,20.7868667183252,17.5641056037673; + + Site:WaterMainsTemperature, + Schedule, !- Calculation Method + mains temperature schedule; !- Temperature Schedule Name + + Foundation:Kiva, + Foundation Kiva 1, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0.1016, !- Wall Height Above Grade {m} + 0.2032; !- Wall Depth Below Slab {m} + + Foundation:Kiva:Settings, + 1.731, !- Soil Conductivity {W/m-K} + 1842.3, !- Soil Density {kg/m3} + 418.7, !- Soil Specific Heat {J/kg-K} + 0.9, !- Ground Solar Absorptivity {dimensionless} + 0.9, !- Ground Thermal Absorptivity {dimensionless} + 0.03, !- Ground Surface Roughness {m} + 40, !- Far-Field Width {m} + ZeroFlux, !- Deep-Ground Boundary Condition + 40, !- Deep-Ground Depth {m} + 0.2, !- Minimum Cell Dimension {m} + 3, !- Maximum Cell Growth Coefficient {dimensionless} + Hourly; !- Simulation Timestep + + Exterior:Lights, + exterior lighting, !- Name + exterior lighting schedule, !- Schedule Name + 25.234754980464, !- Design Level {W} + , !- Control Option + General; !- End-Use Subcategory + + Output:Variable,*,central ac and furnace supply fan clg disaggregate,monthly; + + Output:Variable,*,central ac and furnace supply fan htg primary disaggregate,monthly; + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_DZ_T; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_DZ_W; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_RetCondToDZ; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_RetCondToRP; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_RetLatLkToRP; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_RetSensLkToRP; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupCondToDZ; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupCondToLv; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupLatLkToDZ; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupLatLkToLv; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupSensLkToDZ; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_0_SupSensLkToLv; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_AH_MFR; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_AH_Tout; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_AH_VFR; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_AH_Wout; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_Fan_RTF; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_RA_T; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + central_ac_and_furnace_airloop_Ra_W; !- Erl Variable 1 Name + + EnergyManagementSystem:InternalVariable, + central_ac_and_furnace_airloop_max_sup_fan_mfr, !- Name + central ac and furnace supply fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:Sensor, + airflow_gain, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Infiltration Sensible Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + airflow_loss, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Infiltration Sensible Heat Loss Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + airflow_tin_s, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Mean Air Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + airflow_tt_s, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + airflow_win_s, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Air Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_0_DZ_T_s, !- Name + under slab, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_0_DZ_W_s_1, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_0_DZ_W_s_2, !- Name + living space, !- Output:Variable or Output:Meter Index Key Name + Zone Mean Air Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_AH_MFR_s, !- Name + Node 5, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_AH_Tout_s, !- Name + Node 5, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_AH_VFR_s, !- Name + Node 5, !- Output:Variable or Output:Meter Index Key Name + System Node Current Density Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_AH_Wout_s, !- Name + Node 5, !- Output:Variable or Output:Meter Index Key Name + System Node Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_Fan_RTF_s, !- Name + central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name + Fan Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_RA_T_s, !- Name + Node 8, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_airloop_Ra_W_s, !- Name + Node 8, !- Output:Variable or Output:Meter Index Key Name + System Node Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_clg_coil_s, !- Name + central ac and furnace clg coil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Electricity Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_htg_coil_s, !- Name + central ac and furnace htg coil, !- Output:Variable or Output:Meter Index Key Name + Heating Coil NaturalGas Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_supply_fan_s, !- Name + central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name + Fan Electricity Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + central_ac_and_furnace_supply_fan_s_1, !- Name + central ac and furnace supply fan, !- Output:Variable or Output:Meter Index Key Name + Fan Electricity Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + clg_load_liv, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Cooling:EnergyTransfer:Zone:LIVING SPACE; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + clg_load_tot, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Cooling:EnergyTransfer; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + clg_sp_s, !- Name + cooling setpoint, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + clothes_dryer_exhaust_0_sch_s, !- Name + clothes dryer exhaust schedule, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cool_season, !- Name + cooling season schedule, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + dhw_loss, !- Name + water heater, !- Output:Variable or Output:Meter Index Key Name + Water Heater Heat Loss Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + dhw_rtf, !- Name + water heater, !- Output:Variable or Output:Meter Index Key Name + Water Heater Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv, !- Name + central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv_1, !- Name + central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv_2, !- Name + central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv_3, !- Name + central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv_4, !- Name + central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_conv_5, !- Name + central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad, !- Name + central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad_1, !- Name + central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad_2, !- Name + central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad_3, !- Name + central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad_4, !- Name + central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ducts_rad_5, !- Name + central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ground_temp, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Surface Ground Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + htg_load_liv, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Heating:EnergyTransfer:Zone:LIVING SPACE; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + htg_load_tot, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Heating:EnergyTransfer; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + htg_sp_s, !- Name + heating setpoint, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv, !- Name + clothes dryer, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_1, !- Name + clothes washer, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_2, !- Name + cooking range, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_3, !- Name + dishwasher, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_4, !- Name + fridge, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_5, !- Name + misc plug loads, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_6, !- Name + misc tv, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_conv_7, !- Name + whole house fan, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad, !- Name + clothes dryer, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_1, !- Name + clothes washer, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_2, !- Name + cooking range, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_3, !- Name + dishwasher, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_4, !- Name + fridge, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_5, !- Name + misc plug loads, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_6, !- Name + misc tv, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ee_rad_7, !- Name + whole house fan, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_lgt_conv, !- Name + interior lighting, !- Output:Variable or Output:Meter Index Key Name + Lights Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_lgt_rad, !- Name + interior lighting, !- Output:Variable or Output:Meter Index Key Name + Lights Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_lgt_vis, !- Name + interior lighting, !- Output:Variable or Output:Meter Index Key Name + Lights Visible Radiation Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_conv, !- Name + water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_conv_1, !- Name + water latent, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_conv_2, !- Name + water sensible, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_rad, !- Name + water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_rad_1, !- Name + water latent, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_oe_rad_2, !- Name + water sensible, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ppl_conv, !- Name + occupants, !- Output:Variable or Output:Meter Index Key Name + People Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ig_ppl_rad, !- Name + occupants, !- Output:Variable or Output:Meter Index Key Name + People Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_conv, !- Name + furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_conv_1, !- Name + living space Living Partition, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_ig, !- Name + furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_ig_1, !- Name + living space Living Partition, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_lgt, !- Name + furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_lgt_1, !- Name + living space Living Partition, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_sol, !- Name + furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_sol_1, !- Name + living space Living Partition, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_surf, !- Name + furniture mass living space living, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + im_surf_1, !- Name + living space Living Partition, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_conv, !- Name + mech vent house fan, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_conv_1, !- Name + mech vent house fan cfis,!- Output:Variable or Output:Meter Index Key Name + Electric Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_conv_2, !- Name + mech vent house fan latent load equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_conv_3, !- Name + mech vent house fan sensible load equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Convective Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_rad, !- Name + mech vent house fan, !- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_rad_1, !- Name + mech vent house fan cfis,!- Output:Variable or Output:Meter Index Key Name + Electric Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_rad_2, !- Name + mech vent house fan latent load equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mv_rad_3, !- Name + mech vent house fan sensible load equip, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Radiant Heating Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + natural_vent_avail_s, !- Name + natural vent avail schedule, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + out_pb_s, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Barometric Pressure; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + out_wt_s, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Humidity Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + site_vw_s, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Wind Speed; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_back_out, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_back_out_1, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_back_out_2, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_back_out_3, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv, !- Name + DoorNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv_1, !- Name + DoorSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv_2, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv_3, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv_4, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_conv_5, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig, !- Name + DoorNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig_1, !- Name + DoorSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig_2, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig_3, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig_4, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_ig_5, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_lgt, !- Name + DoorNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_lgt_1, !- Name + DoorSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol, !- Name + DoorNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol_1, !- Name + DoorSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol_abs, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol_abs_1, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol_abs_2, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sol_abs_3, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf, !- Name + DoorNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf_1, !- Name + DoorSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf_2, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf_3, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf_4, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_surf_5, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sw_abs, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sw_abs_1, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sw_abs_2, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_sw_abs_3, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_in, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_in_1, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_in_2, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_in_3, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Window Transmitted Solar Radiation Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_out, !- Name + WindowEast, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_out_1, !- Name + WindowNorth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_out_2, !- Name + WindowSouth, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ss_trans_out_3, !- Name + WindowWest, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv, !- Name + FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv_1, !- Name + Slab, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv_2, !- Name + Wall:0, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv_3, !- Name + Wall:180, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv_4, !- Name + Wall:270, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_conv_5, !- Name + Wall:90, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Convection Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig, !- Name + FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig_1, !- Name + Slab, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig_2, !- Name + Wall:0, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig_3, !- Name + Wall:180, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig_4, !- Name + Wall:270, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_ig_5, !- Name + Wall:90, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Internal Gains Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt, !- Name + FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt_1, !- Name + Slab, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt_2, !- Name + Wall:0, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt_3, !- Name + Wall:180, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt_4, !- Name + Wall:270, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_lgt_5, !- Name + Wall:90, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Lights Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol, !- Name + FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol_1, !- Name + Slab, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol_2, !- Name + Wall:0, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol_3, !- Name + Wall:180, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol_4, !- Name + Wall:270, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_sol_5, !- Name + Wall:90, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Solar Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf, !- Name + FloorBelowAttic, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf_1, !- Name + Slab, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf_2, !- Name + Wall:0, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf_3, !- Name + Wall:180, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf_4, !- Name + Wall:270, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + s_surf_5, !- Name + Wall:90, !- Output:Variable or Output:Meter Index Key Name + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + water_heater_EC_adjustment_energy_consumption, !- Name + water heater EC adjustment, !- Output:Variable or Output:Meter Index Key Name + Other Equipment Electricity Energy; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + water_heater_energy, !- Name + water heater, !- Output:Variable or Output:Meter Index Key Name + Water Heater Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + water_heater_off_cycle_parasitic, !- Name + water heater, !- Output:Variable or Output:Meter Index Key Name + Water Heater Off Cycle Parasitic Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + water_heater_on_cycle_parasitic, !- Name + water heater, !- Output:Variable or Output:Meter Index Key Name + Water Heater On Cycle Parasitic Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_RetCondToDZ_equip_act, !- Name + central_ac_and_furnace_airloop_0_RetCondToDZ equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_RetCondToRP_equip_act, !- Name + central_ac_and_furnace_airloop_0_RetCondToRP equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_RetLatLkToRP_equip_act, !- Name + central_ac_and_furnace_airloop_0_RetLatLkToRP equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_RetSensLkToRP_equip_act, !- Name + central_ac_and_furnace_airloop_0_RetSensLkToRP equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupCondToDZ_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupCondToDZ equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupCondToLv_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupCondToLv equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupLatLkToDZ_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupLatLkToDZ equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupLatLkToLv_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupLatLkToLv equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupSensLkToDZ_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupSensLkToDZ equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + central_ac_and_furnace_airloop_0_SupSensLkToLv_equip_act, !- Name + central_ac_and_furnace_airloop_0_SupSensLkToLv equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + infil_flow_act, !- Name + infil flow, !- Actuated Component Unique Name + Zone Infiltration, !- Actuated Component Type + Air Exchange Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + mech_vent_house_fan_cfis_act, !- Name + mech vent house fan cfis,!- Actuated Component Unique Name + ElectricEquipment, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + mech_vent_house_fan_latent_load_equip_act, !- Name + mech vent house fan latent load equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + mech_vent_house_fan_sensible_load_equip_act, !- Name + mech vent house fan sensible load equip, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + natural_vent_flow_act, !- Name + natural vent flow, !- Actuated Component Unique Name + Zone Infiltration, !- Actuated Component Type + Air Exchange Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + under_slab_temp_sch, !- Name + under slab, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + water_heater_ec_adj_act, !- Name + water heater EC adjustment, !- Actuated Component Unique Name + OtherEquipment, !- Actuated Component Type + Power Level; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + whole_house_fan_act, !- Name + whole house fan, !- Actuated Component Unique Name + ElectricEquipment, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + whole_house_fan_flow_act,!- Name + whole house fan flow, !- Actuated Component Unique Name + Zone Infiltration, !- Actuated Component Type + Air Exchange Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + whole_house_fan_mix_act, !- Name + whole house fan mix, !- Actuated Component Unique Name + ZoneMixing, !- Actuated Component Type + Air Exchange Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + central_ac_and_furnace_airloop_0_duct_program, !- Name + Set central_ac_and_furnace_airloop_AH_MFR = central_ac_and_furnace_airloop_AH_MFR_s, !- Program Line 1 + Set central_ac_and_furnace_airloop_Fan_RTF = central_ac_and_furnace_airloop_Fan_RTF_s, !- Program Line 2 + Set central_ac_and_furnace_airloop_AH_VFR = central_ac_and_furnace_airloop_AH_VFR_s, !- + Set central_ac_and_furnace_airloop_AH_Tout = central_ac_and_furnace_airloop_AH_Tout_s, !- + Set central_ac_and_furnace_airloop_AH_Wout = central_ac_and_furnace_airloop_AH_Wout_s, !- + Set central_ac_and_furnace_airloop_RA_T = central_ac_and_furnace_airloop_RA_T_s, !- + Set central_ac_and_furnace_airloop_Ra_W = central_ac_and_furnace_airloop_Ra_W_s, !- + Set central_ac_and_furnace_airloop_0_DZ_T = central_ac_and_furnace_airloop_0_DZ_T_s, !- + Set central_ac_and_furnace_airloop_0_DZ_W = (central_ac_and_furnace_airloop_0_DZ_W_s_1 + central_ac_and_furnace_airloop_0_DZ_W_s_2) / 2, !- + Run central_ac_and_furnace_airloop_0_duct_subroutine, !- + Set central_ac_and_furnace_airloop_0_SupSensLkToLv_equip_act = central_ac_and_furnace_airloop_0_SupSensLkToLv, !- + Set central_ac_and_furnace_airloop_0_SupLatLkToLv_equip_act = central_ac_and_furnace_airloop_0_SupLatLkToLv, !- + Set central_ac_and_furnace_airloop_0_SupCondToLv_equip_act = central_ac_and_furnace_airloop_0_SupCondToLv, !- + Set central_ac_and_furnace_airloop_0_RetSensLkToRP_equip_act = central_ac_and_furnace_airloop_0_RetSensLkToRP, !- + Set central_ac_and_furnace_airloop_0_RetLatLkToRP_equip_act = central_ac_and_furnace_airloop_0_RetLatLkToRP, !- + Set central_ac_and_furnace_airloop_0_RetCondToRP_equip_act = central_ac_and_furnace_airloop_0_RetCondToRP, !- + Set central_ac_and_furnace_airloop_0_RetCondToDZ_equip_act = central_ac_and_furnace_airloop_0_RetCondToDZ, !- + Set central_ac_and_furnace_airloop_0_SupCondToDZ_equip_act = central_ac_and_furnace_airloop_0_SupCondToDZ, !- + Set central_ac_and_furnace_airloop_0_SupSensLkToDZ_equip_act = central_ac_and_furnace_airloop_0_SupSensLkToDZ, !- + Set central_ac_and_furnace_airloop_0_SupLatLkToDZ_equip_act = central_ac_and_furnace_airloop_0_SupLatLkToDZ; !- + + EnergyManagementSystem:Program, + central_ac_and_furnace_supply_fan_disaggregate_program, !- Name + Set central_ac_and_furnace_supply_fan_clg = 0, !- Program Line 1 + If central_ac_and_furnace_clg_coil_s > 0, !- Program Line 2 + Set central_ac_and_furnace_supply_fan_clg = central_ac_and_furnace_supply_fan_s, !- + EndIf; !- + + EnergyManagementSystem:Program, + central_ac_and_furnace_supply_fan_disaggregate_program_1, !- Name + Set central_ac_and_furnace_supply_fan_primary_htg = 0, !- Program Line 1 + If central_ac_and_furnace_htg_coil_s > 0, !- Program Line 2 + Set central_ac_and_furnace_supply_fan_primary_htg = central_ac_and_furnace_supply_fan_s_1, !- + EndIf; !- + + EnergyManagementSystem:Program, + component_loads_program, !- Name + Set hr_walls = 0, !- Program Line 1 + Set hr_walls = hr_walls + s_conv_2 + s_ig_2 + s_sol_2 + s_lgt_2 + s_surf_2, !- Program Line 2 + Set hr_walls = hr_walls + s_conv_3 + s_ig_3 + s_sol_3 + s_lgt_3 + s_surf_3, !- + Set hr_walls = hr_walls + s_conv_4 + s_ig_4 + s_sol_4 + s_lgt_4 + s_surf_4, !- + Set hr_walls = hr_walls + s_conv_5 + s_ig_5 + s_sol_5 + s_lgt_5 + s_surf_5, !- + Set hr_rim_joists = 0, !- + Set hr_foundation_walls = 0, !- + Set hr_floors = 0, !- + Set hr_slabs = 0, !- + Set hr_slabs = hr_slabs + s_conv_1 + s_ig_1 + s_sol_1 + s_lgt_1 + s_surf_1, !- + Set hr_ceilings = 0, !- + Set hr_ceilings = hr_ceilings + s_conv + s_ig + s_sol + s_lgt + s_surf, !- + Set hr_roofs = 0, !- + Set hr_windows = 0, !- + Set hr_windows = hr_windows - ss_trans_in + ss_back_out * ZoneTimestep * 3600 + ss_sw_abs * ZoneTimestep * 3600 - ss_sol_abs + ss_trans_out * ZoneTimestep * 3600 + ss_conv_2 + ss_ig_2 + ss_surf_2, !- + Set hr_windows = hr_windows - ss_trans_in_1 + ss_back_out_1 * ZoneTimestep * 3600 + ss_sw_abs_1 * ZoneTimestep * 3600 - ss_sol_abs_1 + ss_trans_out_1 * ZoneTimestep * 3600 + ss_conv_3 + ss_ig_3 + ss_surf_3, !- + Set hr_windows = hr_windows - ss_trans_in_2 + ss_back_out_2 * ZoneTimestep * 3600 + ss_sw_abs_2 * ZoneTimestep * 3600 - ss_sol_abs_2 + ss_trans_out_2 * ZoneTimestep * 3600 + ss_conv_4 + ss_ig_4 + ss_surf_4, !- + Set hr_windows = hr_windows - ss_trans_in_3 + ss_back_out_3 * ZoneTimestep * 3600 + ss_sw_abs_3 * ZoneTimestep * 3600 - ss_sol_abs_3 + ss_trans_out_3 * ZoneTimestep * 3600 + ss_conv_5 + ss_ig_5 + ss_surf_5, !- + Set hr_doors = 0, !- + Set hr_doors = hr_doors + ss_sol + ss_lgt + ss_conv + ss_ig + ss_surf, !- + Set hr_doors = hr_doors + ss_sol_1 + ss_lgt_1 + ss_conv_1 + ss_ig_1 + ss_surf_1, !- + Set hr_skylights = 0, !- + Set hr_internal_mass = 0,!- + Set hr_internal_mass = hr_internal_mass + im_conv + im_ig + im_sol + im_lgt + im_surf, !- + Set hr_internal_mass = hr_internal_mass + im_conv_1 + im_ig_1 + im_sol_1 + im_lgt_1 + im_surf_1, !- + Set hr_intgains = 0, !- + Set hr_intgains = hr_intgains - ig_ee_conv - ig_ee_rad, !- + Set hr_intgains = hr_intgains - ig_ee_conv_1 - ig_ee_rad_1, !- + Set hr_intgains = hr_intgains - ig_ee_conv_2 - ig_ee_rad_2, !- + Set hr_intgains = hr_intgains - ig_ee_conv_3 - ig_ee_rad_3, !- + Set hr_intgains = hr_intgains - ig_ee_conv_4 - ig_ee_rad_4, !- + Set hr_intgains = hr_intgains - ig_ee_conv_5 - ig_ee_rad_5, !- + Set hr_intgains = hr_intgains - ig_ee_conv_6 - ig_ee_rad_6, !- + Set hr_intgains = hr_intgains - ig_ee_conv_7 - ig_ee_rad_7, !- + Set hr_intgains = hr_intgains - ig_oe_conv - ig_oe_rad, !- + Set hr_intgains = hr_intgains - ig_oe_conv_1 - ig_oe_rad_1, !- + Set hr_intgains = hr_intgains - ig_oe_conv_2 - ig_oe_rad_2, !- + Set hr_intgains = hr_intgains - ig_lgt_conv - ig_lgt_rad - ig_lgt_vis, !- + Set hr_intgains = hr_intgains - ig_ppl_conv - ig_ppl_rad, !- + Set hr_intgains = hr_intgains + dhw_loss * (1.0*(1-dhw_rtf) + 1.0*dhw_rtf), !- + Set hr_airflow_rate = infil_flow_act + natural_vent_flow_act + whole_house_fan_flow_act, !- + If hr_airflow_rate > 0, !- + Set hr_infil = (airflow_loss - airflow_gain) * infil_flow_act / hr_airflow_rate, !- + Set hr_natvent = (airflow_loss - airflow_gain) * natural_vent_flow_act / hr_airflow_rate, !- + Set hr_whf = (airflow_loss - airflow_gain) * whole_house_fan_flow_act / hr_airflow_rate, !- + Else, !- + Set hr_infil = 0, !- + Set hr_natvent = 0, !- + Set hr_whf = 0, !- + Set hr_mechvent = 0, !- + EndIf, !- + Set hr_mechvent = 0, !- + Set hr_mechvent = hr_mechvent - mv_conv, !- + Set hr_mechvent = hr_mechvent - mv_rad, !- + Set hr_mechvent = hr_mechvent - mv_conv_1, !- + Set hr_mechvent = hr_mechvent - mv_rad_1, !- + Set hr_mechvent = hr_mechvent - mv_conv_2, !- + Set hr_mechvent = hr_mechvent - mv_rad_2, !- + Set hr_mechvent = hr_mechvent - mv_conv_3, !- + Set hr_mechvent = hr_mechvent - mv_rad_3, !- + Set hr_ducts = 0, !- + Set hr_ducts = hr_ducts - ducts_conv - ducts_rad, !- + Set hr_ducts = hr_ducts - ducts_conv_1 - ducts_rad_1, !- + Set hr_ducts = hr_ducts - ducts_conv_2 - ducts_rad_2, !- + Set hr_ducts = hr_ducts - ducts_conv_3 - ducts_rad_3, !- + Set hr_ducts = hr_ducts - ducts_conv_4 - ducts_rad_4, !- + Set hr_ducts = hr_ducts - ducts_conv_5 - ducts_rad_5, !- + Set htg_mode = 0, !- + Set clg_mode = 0, !- + If (htg_load_liv > 0), !- + Set htg_mode = 1, !- + ElseIf (clg_load_liv > 0), !- + Set clg_mode = 1, !- + ElseIf (cool_season > 0),!- + Set clg_mode = 1, !- + Else, !- + Set htg_mode = 1, !- + EndIf, !- + Set loads_htg_walls = hr_walls * htg_mode, !- + Set loads_htg_rim_joists = hr_rim_joists * htg_mode, !- + Set loads_htg_foundation_walls = hr_foundation_walls * htg_mode, !- + Set loads_htg_floors = hr_floors * htg_mode, !- + Set loads_htg_slabs = hr_slabs * htg_mode, !- + Set loads_htg_ceilings = hr_ceilings * htg_mode, !- + Set loads_htg_roofs = hr_roofs * htg_mode, !- + Set loads_htg_windows = hr_windows * htg_mode, !- + Set loads_htg_doors = hr_doors * htg_mode, !- + Set loads_htg_skylights = hr_skylights * htg_mode, !- + Set loads_htg_internal_mass = hr_internal_mass * htg_mode, !- + Set loads_htg_intgains = hr_intgains * htg_mode, !- + Set loads_htg_infil = hr_infil * htg_mode, !- + Set loads_htg_mechvent = hr_mechvent * htg_mode, !- + Set loads_htg_natvent = hr_natvent * htg_mode, !- + Set loads_htg_whf = hr_whf * htg_mode, !- + Set loads_htg_ducts = hr_ducts * htg_mode, !- + Set loads_clg_walls = -hr_walls * clg_mode, !- + Set loads_clg_rim_joists = -hr_rim_joists * clg_mode, !- + Set loads_clg_foundation_walls = -hr_foundation_walls * clg_mode, !- + Set loads_clg_floors = -hr_floors * clg_mode, !- + Set loads_clg_slabs = -hr_slabs * clg_mode, !- + Set loads_clg_ceilings = -hr_ceilings * clg_mode, !- + Set loads_clg_roofs = -hr_roofs * clg_mode, !- + Set loads_clg_windows = -hr_windows * clg_mode, !- + Set loads_clg_doors = -hr_doors * clg_mode, !- + Set loads_clg_skylights = -hr_skylights * clg_mode, !- + Set loads_clg_internal_mass = -hr_internal_mass * clg_mode, !- + Set loads_clg_intgains = -hr_intgains * clg_mode, !- + Set loads_clg_infil = -hr_infil * clg_mode, !- + Set loads_clg_mechvent = -hr_mechvent * clg_mode, !- + Set loads_clg_natvent = -hr_natvent * clg_mode, !- + Set loads_clg_whf = -hr_whf * clg_mode, !- + Set loads_clg_ducts = -hr_ducts * clg_mode, !- + Set loads_htg_tot = 0, !- + Set loads_clg_tot = 0, !- + If htg_load_liv > 0, !- + Set loads_htg_tot = htg_load_tot - clg_load_tot, !- + ElseIf clg_load_liv > 0, !- + Set loads_clg_tot = clg_load_tot - htg_load_tot, !- + EndIf; !- + + EnergyManagementSystem:Program, + infil_program, !- Name + Set p_m = 0.14, !- Program Line 1 + Set p_s = 0.22, !- Program Line 2 + Set s_m = 270, !- + Set s_s = 370, !- + Set z_m = 9.99744, !- + Set z_s = 2.4384, !- + Set f_t = (((s_m/z_m)^p_m)*((z_s/s_s)^p_s)), !- + Set Tdiff = airflow_tin_s-airflow_tt_s, !- + Set dT = @Abs Tdiff, !- + Set c = 0.0202, !- + Set Cs = 0.0556, !- + Set Cw = 0.1596, !- + Set n = 0.65, !- + Set sft = (f_t*0.5), !- + Set temp1 = ((c*Cw)*((sft*site_vw_s)^(2*n)))^2, !- + Set Qinf = (((c*Cs*(dT^n))^2)+temp1)^0.5, !- + Set Qinf = (@Max Qinf 0),!- + Set mech_vent_house_fan_sensible_load_equip_act = 0.0, !- + Set mech_vent_house_fan_latent_load_equip_act = 0.0, !- + Set OASupInPb = out_pb_s,!- + Set OASupInTemp = airflow_tt_s, !- + Set OASupInW = out_wt_s, !- + Set OASupRho = (@RhoAirFnPbTdbW OASupInPb OASupInTemp OASupInW), !- + Set OASupCp = (@CpAirFnW OASupInW), !- + Set OASupInEnth = (@HFnTdbW OASupInTemp OASupInW), !- + Set ZoneTemp = airflow_tin_s, !- + Set ZoneW = airflow_win_s, !- + Set ZoneCp = (@CpAirFnW ZoneW), !- + Set ZoneAirEnth = (@HFnTdbW ZoneTemp ZoneW), !- + Set mech_vent_house_fan_cfis_act = 0.0, !- + Set QWHV_cfis_oa = 0.0, !- + Set Qrange = 0, !- + Set Qbath = 0, !- + Set Qdryer = 0, !- + Set Qdryer = Qdryer + 0.0708 * clothes_dryer_exhaust_0_sch_s, !- + Set QWHV_sup = 0.0, !- + Set QWHV_exh = 0.0, !- + Set QWHV_bal_erv_hrv = 0.0, !- + Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_bal_erv_hrv, !- + Set Qsupply = QWHV_sup + QWHV_bal_erv_hrv + QWHV_cfis_oa, !- + Set Qfan = (@Max Qexhaust Qsupply), !- + If Qfan > 0, !- + Set Qavg = ((Qexhaust + Qsupply) / 2.0), !- + If ((@Abs (Qexhaust - Qavg)) / Qavg) <= 0.1, !- + Set phi = 1, !- + Else, !- + Set phi = (Qinf / (Qinf + Qfan)), !- + EndIf, !- + Set Qinf_adj = phi * Qinf, !- + Else, !- + Set Qinf_adj = Qinf, !- + EndIf, !- + Set infil_flow_act = Qinf_adj, !- + Set Qload = Qfan, !- + Set Effectiveness_Sens = 0.0, !- + Set Effectiveness_Lat = 0.0, !- + Set Fan_MFR = Qload * OASupRho, !- + Set FanTotalToLv = Fan_MFR * (OASupInEnth - ZoneAirEnth), !- + Set FanSensToLv = Fan_MFR * ZoneCp * (OASupInTemp - ZoneTemp), !- + Set FanLatToLv = FanTotalToLv - FanSensToLv, !- + Set mech_vent_house_fan_sensible_load_equip_act = mech_vent_house_fan_sensible_load_equip_act + FanSensToLv, !- + Set mech_vent_house_fan_latent_load_equip_act = mech_vent_house_fan_latent_load_equip_act + FanLatToLv; !- + + EnergyManagementSystem:Program, + natural_vent_program, !- Name + Set Tin = airflow_tin_s, !- Program Line 1 + Set Tout = airflow_tt_s, !- Program Line 2 + Set Wout = out_wt_s, !- + Set Pbar = out_pb_s, !- + Set Phiout = (@RhFnTdbWPb Tout Wout Pbar), !- + Set MaxHR = 0.0115, !- + Set MaxRH = 0.7, !- + Set Tnvsp = (htg_sp_s + clg_sp_s) / 2, !- + Set NVavail = natural_vent_avail_s, !- + Set ClgSsnAvail = cool_season, !- + If (Wout < MaxHR) && (Phiout < MaxRH) && (Tin > Tout) && (Tin > Tnvsp) && (ClgSsnAvail > 0), !- + Set WHF_Flow = 0, !- + Set Adj = (Tin-Tnvsp)/(Tin-Tout), !- + Set Adj = (@Min Adj 1), !- + Set Adj = (@Max Adj 0), !- + If (WHF_Flow > 0), !- + Set natural_vent_flow_act = 0, !- + Set whole_house_fan_flow_act = WHF_Flow*Adj, !- + Set whole_house_fan_mix_act = WHF_Flow*Adj, !- + Set WHF_W = 0, !- + Set whole_house_fan_act = WHF_W*Adj, !- + ElseIf (NVavail > 0), !- + Set NVArea = 13444.9279488, !- + Set Cs = 8.963020389461627e-05, !- + Set Cw = 6.158219665777789e-05, !- + Set Tdiff = Tin-Tout, !- + Set dT = (@Abs Tdiff), !- + Set Vwind = site_vw_s, !- + Set SGNV = NVArea*Adj*((((Cs*dT)+(Cw*(Vwind^2)))^0.5)/1000), !- + Set MaxNV = 1.6990107955200002, !- + Set natural_vent_flow_act = (@Min SGNV MaxNV), !- + Set whole_house_fan_flow_act = 0, !- + Set whole_house_fan_mix_act = 0, !- + Set whole_house_fan_act = 0, !- + EndIf, !- + Else, !- + Set natural_vent_flow_act = 0, !- + Set whole_house_fan_flow_act = 0, !- + Set whole_house_fan_mix_act = 0, !- + Set whole_house_fan_act = 0, !- + EndIf; !- + + EnergyManagementSystem:Program, + under_slab_Temperature_Program, !- Name + Set under_slab_temp_sch = 0.0, !- Program Line 1 + Set under_slab_temp_sch = under_slab_temp_sch + (ground_temp * 1.0); !- Program Line 2 + + EnergyManagementSystem:Program, + water_heater_EC_adj, !- Name + Set wh_e_cons = water_heater_energy + water_heater_on_cycle_parasitic + water_heater_off_cycle_parasitic, !- Program Line 1 + Set water_heater_ec_adj_act = -0.0601631712969406 * wh_e_cons; !- Program Line 2 + + EnergyManagementSystem:Subroutine, + central_ac_and_furnace_airloop_0_duct_subroutine, !- Name + Set AH_MFR = central_ac_and_furnace_airloop_AH_MFR, !- Program Line 1 + If AH_MFR>0, !- Program Line 2 + Set AH_Tout = central_ac_and_furnace_airloop_AH_Tout, !- + Set AH_Wout = central_ac_and_furnace_airloop_AH_Wout, !- + Set RA_T = central_ac_and_furnace_airloop_RA_T, !- + Set RA_W = central_ac_and_furnace_airloop_Ra_W, !- + Set Fan_RTF = central_ac_and_furnace_airloop_Fan_RTF, !- + Set DZ_T = central_ac_and_furnace_airloop_0_DZ_T, !- + Set DZ_W = central_ac_and_furnace_airloop_0_DZ_W, !- + Set AH_VFR = central_ac_and_furnace_airloop_AH_VFR, !- + Set h_SA = (@HFnTdbW AH_Tout AH_Wout), !- + Set h_RA = (@HFnTdbW RA_T RA_W), !- + Set h_fg = (@HfgAirFnWTdb AH_Wout AH_Tout), !- + Set h_DZ = (@HFnTdbW DZ_T DZ_W), !- + Set air_cp = 1006.0, !- + Set f_sup = 0.035396 / (central_ac_and_furnace_airloop_max_sup_fan_mfr * 1.0135), !- + Set f_ret = 0.011799 / (central_ac_and_furnace_airloop_max_sup_fan_mfr * 1.0135), !- + Set sup_lk_mfr = f_sup * AH_MFR, !- + Set ret_lk_mfr = f_ret * AH_MFR, !- + Set SupTotLkToLiv = sup_lk_mfr*(h_RA - h_SA), !- + Set SupLatLkToLv = sup_lk_mfr*h_fg*(RA_W-AH_Wout), !- + Set SupSensLkToLv = SupTotLkToLiv-SupLatLkToLv, !- + Set supply_ua = 17.617, !- + Set eTm = 0-((Fan_RTF/(AH_MFR*air_cp))*supply_ua), !- + Set t_sup = DZ_T+((AH_Tout-DZ_T)*(@Exp eTm)), !- + Set SupCondToLv = AH_MFR*air_cp*(t_sup-AH_Tout), !- + Set SupCondToDZ = 0-SupCondToLv, !- + Set return_ua = 15.515, !- + Set eTm = 0-((Fan_RTF/(AH_MFR*air_cp))*return_ua), !- + Set t_ret = DZ_T+((RA_T-DZ_T)*(@Exp eTm)), !- + Set RetCondToRP = AH_MFR*air_cp*(t_ret-RA_T), !- + Set RetCondToDZ = 0-RetCondToRP, !- + Set RetLatLkToRP = 0, !- + Set RetSensLkToRP = ret_lk_mfr*air_cp*(DZ_T-RA_T), !- + Set SupTotLkToDZ = sup_lk_mfr*(h_SA-h_DZ), !- + Set SupLatLkToDZ = sup_lk_mfr*h_fg*(AH_Wout-DZ_W), !- + Set SupSensLkToDZ = SupTotLkToDZ-SupLatLkToDZ, !- + Set f_imbalance = f_sup-f_ret, !- + Set oa_vfr = 1.0 * f_imbalance * AH_VFR, !- + Set sup_lk_vfr = f_sup * AH_VFR, !- + Set ret_lk_vfr = f_ret * AH_VFR, !- + If f_sup > f_ret, !- + Set ZoneMixLvToDZ = 0, !- + Set ZoneMixDZToLv = (sup_lk_vfr-ret_lk_vfr)-oa_vfr, !- + Else, !- + Set ZoneMixLvToDZ = (ret_lk_vfr-sup_lk_vfr)+oa_vfr, !- + Set ZoneMixDZToLv = 0, !- + EndIf, !- + Else, !- + Set SupLatLkToLv = 0, !- + Set SupSensLkToLv = 0, !- + Set SupCondToLv = 0, !- + Set RetCondToRP = 0, !- + Set RetLatLkToRP = 0, !- + Set RetSensLkToRP = 0, !- + Set RetCondToDZ = 0, !- + Set SupCondToDZ = 0, !- + Set SupLatLkToDZ = 0, !- + Set SupSensLkToDZ = 0, !- + Set ZoneMixLvToDZ = 0, !- + Set ZoneMixDZToLv = 0, !- + EndIf, !- + Set central_ac_and_furnace_airloop_0_SupLatLkToLv = SupLatLkToLv, !- + Set central_ac_and_furnace_airloop_0_SupSensLkToLv = SupSensLkToLv, !- + Set central_ac_and_furnace_airloop_0_SupCondToLv = SupCondToLv, !- + Set central_ac_and_furnace_airloop_0_RetCondToRP = RetCondToRP, !- + Set central_ac_and_furnace_airloop_0_RetLatLkToRP = RetLatLkToRP, !- + Set central_ac_and_furnace_airloop_0_RetSensLkToRP = RetSensLkToRP, !- + Set central_ac_and_furnace_airloop_0_RetCondToDZ = RetCondToDZ, !- + Set central_ac_and_furnace_airloop_0_SupCondToDZ = SupCondToDZ, !- + Set central_ac_and_furnace_airloop_0_SupLatLkToDZ = SupLatLkToDZ, !- + Set central_ac_and_furnace_airloop_0_SupSensLkToDZ = SupSensLkToDZ; !- + + EnergyManagementSystem:ProgramCallingManager, + central ac and furnace supply fan disaggregate program calling manager, !- Name + EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point + central_ac_and_furnace_supply_fan_disaggregate_program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + central ac and furnace supply fan disaggregate program calling manager 1, !- Name + EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point + central_ac_and_furnace_supply_fan_disaggregate_program_1; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + central_ac_and_furnace_airloop_0_duct_program calling manager, !- Name + EndOfSystemTimestepAfterHVACReporting, !- EnergyPlus Model Calling Point + central_ac_and_furnace_airloop_0_duct_program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + component_loads_program calling manager, !- Name + EndOfZoneTimestepAfterZoneReporting, !- EnergyPlus Model Calling Point + component_loads_program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + infil_program calling manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + infil_program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + natural_vent_program calling manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + natural_vent_program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + under_slab_Temperature_Program calling manager, !- Name + EndOfSystemTimestepAfterHVACReporting, !- EnergyPlus Model Calling Point + under_slab_Temperature_Program; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + water heater EC_adj ProgramManager, !- Name + EndOfSystemTimestepBeforeHVACReporting, !- EnergyPlus Model Calling Point + water_heater_EC_adj; !- Program Name 1 + + EnergyManagementSystem:OutputVariable, + central ac and furnace supply fan clg disaggregate, !- Name + central_ac_and_furnace_supply_fan_clg, !- EMS Variable Name + Summed, !- Type of Data in Variable + SystemTimestep, !- Update Frequency + central_ac_and_furnace_supply_fan_disaggregate_program, !- EMS Program or Subroutine Name + J; !- Units + + EnergyManagementSystem:OutputVariable, + central ac and furnace supply fan htg primary disaggregate, !- Name + central_ac_and_furnace_supply_fan_primary_htg, !- EMS Variable Name + Summed, !- Type of Data in Variable + SystemTimestep, !- Update Frequency + central_ac_and_furnace_supply_fan_disaggregate_program_1, !- EMS Program or Subroutine Name + J; !- Units + + EnergyManagementSystem:OutputVariable, + water heater EC adjustment outvar, !- Name + water_heater_EC_adjustment_energy_consumption, !- EMS Variable Name + Summed, !- Type of Data in Variable + SystemTimestep, !- Update Frequency + water_heater_EC_adj, !- EMS Program or Subroutine Name + J; !- Units + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:VariableDictionary,IDF,Unsorted; + + Output:SQLite, + SimpleAndTabular; !- Option Type + + Output:Meter,Electricity:Facility,runperiod; + + Output:Meter,NaturalGas:Facility,runperiod; + + Output:Meter,interior lighting:InteriorLights:Electricity,runperiod; + + Output:Meter,ExteriorLights:Electricity,runperiod; + + Output:Meter,mech vent:InteriorEquipment:Electricity,runperiod; + + Output:Meter,whole house fan:InteriorEquipment:Electricity,runperiod; + + Output:Meter,fridge:InteriorEquipment:Electricity,runperiod; + + Output:Meter,dishwasher:InteriorEquipment:Electricity,runperiod; + + Output:Meter,clothes washer:InteriorEquipment:Electricity,runperiod; + + Output:Meter,clothes dryer:InteriorEquipment:Electricity,runperiod; + + Output:Meter,cooking range:InteriorEquipment:Electricity,runperiod; + + Output:Meter,misc tv:InteriorEquipment:Electricity,runperiod; + + Output:Meter,misc plug loads:InteriorEquipment:Electricity,runperiod; + + Output:Variable,*,Water Use Equipment Hot Water Volume,runperiod; + + Output:Variable,ideal residual,Zone Ideal Loads Zone Sensible Heating Energy,runperiod; + + Output:Variable,ideal residual,Zone Ideal Loads Zone Sensible Cooling Energy,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_roofs_annual_outvar, !- Name + loads_htg_roofs, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_roofs_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_ceilings_annual_outvar, !- Name + loads_htg_ceilings, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_ceilings_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_walls_annual_outvar, !- Name + loads_htg_walls, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_walls_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_rim_joists_annual_outvar, !- Name + loads_htg_rim_joists, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_rim_joists_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_foundation_walls_annual_outvar, !- Name + loads_htg_foundation_walls, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_foundation_walls_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_doors_annual_outvar, !- Name + loads_htg_doors, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_doors_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_windows_annual_outvar, !- Name + loads_htg_windows, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_windows_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_skylights_annual_outvar, !- Name + loads_htg_skylights, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_skylights_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_floors_annual_outvar, !- Name + loads_htg_floors, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_floors_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_slabs_annual_outvar, !- Name + loads_htg_slabs, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_slabs_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_internal_mass_annual_outvar, !- Name + loads_htg_internal_mass, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_internal_mass_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_infil_annual_outvar, !- Name + loads_htg_infil, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_infil_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_natvent_annual_outvar, !- Name + loads_htg_natvent, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_natvent_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_mechvent_annual_outvar, !- Name + loads_htg_mechvent, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_mechvent_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_whf_annual_outvar, !- Name + loads_htg_whf, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_whf_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_ducts_annual_outvar, !- Name + loads_htg_ducts, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_ducts_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_intgains_annual_outvar, !- Name + loads_htg_intgains, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_intgains_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_roofs_annual_outvar, !- Name + loads_clg_roofs, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_roofs_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_ceilings_annual_outvar, !- Name + loads_clg_ceilings, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_ceilings_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_walls_annual_outvar, !- Name + loads_clg_walls, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_walls_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_rim_joists_annual_outvar, !- Name + loads_clg_rim_joists, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_rim_joists_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_foundation_walls_annual_outvar, !- Name + loads_clg_foundation_walls, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_foundation_walls_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_doors_annual_outvar, !- Name + loads_clg_doors, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_doors_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_windows_annual_outvar, !- Name + loads_clg_windows, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_windows_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_skylights_annual_outvar, !- Name + loads_clg_skylights, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_skylights_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_floors_annual_outvar, !- Name + loads_clg_floors, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_floors_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_slabs_annual_outvar, !- Name + loads_clg_slabs, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_slabs_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_internal_mass_annual_outvar, !- Name + loads_clg_internal_mass, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_internal_mass_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_infil_annual_outvar, !- Name + loads_clg_infil, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_infil_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_natvent_annual_outvar, !- Name + loads_clg_natvent, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_natvent_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_mechvent_annual_outvar, !- Name + loads_clg_mechvent, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_mechvent_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_whf_annual_outvar, !- Name + loads_clg_whf, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_whf_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_ducts_annual_outvar, !- Name + loads_clg_ducts, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_ducts_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_intgains_annual_outvar, !- Name + loads_clg_intgains, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_intgains_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_htg_tot_annual_outvar, !- Name + loads_htg_tot, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_htg_tot_annual_outvar,runperiod; + + EnergyManagementSystem:OutputVariable, + loads_clg_tot_annual_outvar, !- Name + loads_clg_tot, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimestep, !- Update Frequency + component_loads_program, !- EMS Program or Subroutine Name + J; !- Units + + Output:Variable,*,loads_clg_tot_annual_outvar,runperiod; + + Output:Variable,central ac and furnace clg coil,Cooling Coil Electricity Energy,runperiod; + + Output:Variable,central ac and furnace clg coil,Cooling Coil Crankcase Heater Electricity Energy,runperiod; + + Output:Variable,central ac and furnace unitary system,Unitary System Heating Ancillary Electricity Energy,runperiod; + + Output:Variable,central ac and furnace htg coil,Heating Coil Electricity Energy,runperiod; + + Output:Variable,central ac and furnace htg coil,Heating Coil NaturalGas Energy,runperiod; + + Output:Variable,central ac and furnace htg coil,Heating Coil Heating Energy,runperiod; + + Output:Variable,central ac and furnace unitary system,Unitary System Heating Ancillary Electricity Energy,runperiod; + + Output:Variable,water heater,Water Heater Electricity Energy,runperiod; + + Output:Variable,water heater,Water Heater Off Cycle Parasitic Electricity Energy,runperiod; + + Output:Variable,water heater,Water Heater On Cycle Parasitic Electricity Energy,runperiod; + + Output:Variable,water heater,Water Heater Heat Loss Energy,runperiod; + + Output:Variable,Water Use Connections 1,Water Use Connections Plant Hot Water Energy,runperiod; + + Output:Variable,*,central ac and furnace supply fan clg disaggregate,runperiod; + + Output:Variable,*,central ac and furnace supply fan htg primary disaggregate,runperiod; + + Output:Variable,*,water heater EC adjustment outvar,runperiod; + Output:Variable,*,Surface Inside Face Convection Heat Transfer Coefficient,Hourly; diff --git a/testfiles/BaseBoardElectric.idf b/testfiles/BaseBoardElectric.idf index 542ac39bf0d..fc8b396c368 100644 --- a/testfiles/BaseBoardElectric.idf +++ b/testfiles/BaseBoardElectric.idf @@ -689,6 +689,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +706,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +723,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +740,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +757,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +774,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name SOUTHWEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +791,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +808,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +825,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +842,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -849,6 +859,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -865,6 +876,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +893,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +910,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -913,6 +927,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +944,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -945,6 +961,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +978,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +995,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1012,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/BasicsFiles/AdultEducationCenter.idf b/testfiles/BasicsFiles/AdultEducationCenter.idf index 7e4bb1712dc..473d9fd8164 100644 --- a/testfiles/BasicsFiles/AdultEducationCenter.idf +++ b/testfiles/BasicsFiles/AdultEducationCenter.idf @@ -375,6 +375,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -408,6 +409,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -439,6 +441,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -470,6 +473,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -501,6 +505,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +537,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +569,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -594,6 +601,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -625,6 +633,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +665,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +682,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +714,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +748,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -770,6 +783,7 @@ Wall, !- Surface Type Medium Exterior Wall, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +821,7 @@ Floor, !- Surface Type Medium Floor, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +840,7 @@ Roof, !- Surface Type Medium Roof/Ceiling, !- Construction Name Full Building - 1 Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,13 +858,15 @@ Zn001:IntM001, !- Name Medium Partitions, !- Construction Name Full Building - 1 Zone, !- Zone or ZoneList Name - 956.9014; !- Surface Area {m2} + , !- Surface Area {m2} + 956.9014; !- Extended Field InternalMass, Zn001:IntM002, !- Name Medium/Heavy Partitions, !- Construction Name Full Building - 1 Zone, !- Zone or ZoneList Name - 1757.725; !- Surface Area {m2} + , !- Surface Area {m2} + 1757.725; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE =========== ! Not limited diff --git a/testfiles/BasicsFiles/Exercise1A.idf b/testfiles/BasicsFiles/Exercise1A.idf index c3c14535cac..d449df7897c 100644 --- a/testfiles/BasicsFiles/Exercise1A.idf +++ b/testfiles/BasicsFiles/Exercise1A.idf @@ -260,6 +260,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -276,6 +277,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -292,6 +294,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -308,6 +311,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -324,6 +328,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -340,6 +345,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise1B-Solution.idf b/testfiles/BasicsFiles/Exercise1B-Solution.idf index 61ba9eeb523..b3533bfac95 100644 --- a/testfiles/BasicsFiles/Exercise1B-Solution.idf +++ b/testfiles/BasicsFiles/Exercise1B-Solution.idf @@ -292,6 +292,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -308,6 +309,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -324,6 +326,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -340,6 +343,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -356,6 +360,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -372,6 +377,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise1C-Solution.idf b/testfiles/BasicsFiles/Exercise1C-Solution.idf index b1c3913c320..2ba90581765 100644 --- a/testfiles/BasicsFiles/Exercise1C-Solution.idf +++ b/testfiles/BasicsFiles/Exercise1C-Solution.idf @@ -338,6 +338,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +355,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -370,6 +372,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +389,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -402,6 +406,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -418,6 +423,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise1D-Solution.idf b/testfiles/BasicsFiles/Exercise1D-Solution.idf index 1a4f7c458da..14ecf168462 100644 --- a/testfiles/BasicsFiles/Exercise1D-Solution.idf +++ b/testfiles/BasicsFiles/Exercise1D-Solution.idf @@ -362,6 +362,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -378,6 +379,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -394,6 +396,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -410,6 +413,7 @@ Wall, !- Surface Type LTWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -426,6 +430,7 @@ Floor, !- Surface Type LTFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -442,6 +447,7 @@ Roof, !- Surface Type LTROOF, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise2.idf b/testfiles/BasicsFiles/Exercise2.idf index e1890b55a5b..f8986dbab48 100644 --- a/testfiles/BasicsFiles/Exercise2.idf +++ b/testfiles/BasicsFiles/Exercise2.idf @@ -515,6 +515,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -531,6 +532,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +549,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +566,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +583,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +600,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +617,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -627,6 +634,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -643,6 +651,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +668,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +685,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +702,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +719,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +736,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +753,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +770,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +787,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +804,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +821,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +838,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +855,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +872,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +889,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +906,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +923,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +940,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +957,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +974,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +991,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +1008,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1025,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1042,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1059,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1076,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1093,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1110,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1127,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1144,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1161,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1178,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise2A-Solution.idf b/testfiles/BasicsFiles/Exercise2A-Solution.idf index 988d1189a81..147b5d490cc 100644 --- a/testfiles/BasicsFiles/Exercise2A-Solution.idf +++ b/testfiles/BasicsFiles/Exercise2A-Solution.idf @@ -611,6 +611,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +628,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +645,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +662,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +679,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +696,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +713,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +730,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +747,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +764,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +781,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +798,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +815,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +832,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +849,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +866,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +883,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +900,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +917,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +934,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +951,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +968,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +985,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +1002,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1019,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1036,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1053,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1070,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1087,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1104,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1121,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1138,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1155,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1172,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1189,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1206,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1223,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1240,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1257,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1274,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise2B-Solution.idf b/testfiles/BasicsFiles/Exercise2B-Solution.idf index b687cae89c6..a3ff63b1727 100644 --- a/testfiles/BasicsFiles/Exercise2B-Solution.idf +++ b/testfiles/BasicsFiles/Exercise2B-Solution.idf @@ -890,6 +890,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +907,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +924,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +941,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +958,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +975,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +992,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1009,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1026,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1043,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1060,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1077,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1094,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1111,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1128,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1145,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1162,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1162,6 +1179,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1196,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1213,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1230,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1247,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1264,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1258,6 +1281,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1298,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1315,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1332,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1349,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1366,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1354,6 +1383,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1400,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1417,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1434,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1451,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1468,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1485,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1502,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1519,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1536,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1553,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/BasicsFiles/Exercise2C-Solution.idf b/testfiles/BasicsFiles/Exercise2C-Solution.idf index b992dbb1857..1f61a2ea975 100644 --- a/testfiles/BasicsFiles/Exercise2C-Solution.idf +++ b/testfiles/BasicsFiles/Exercise2C-Solution.idf @@ -910,6 +910,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +927,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +944,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +961,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +978,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +995,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1012,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1029,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1046,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1063,7 @@ Floor, !- Surface Type CLNG-1, !- Construction Name PLENUM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1080,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1097,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1114,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1131,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1148,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1165,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name SOUTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1182,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1182,6 +1199,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1216,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1233,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1230,6 +1250,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1267,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name EAST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1262,6 +1284,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1278,6 +1301,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1318,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1335,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1352,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1369,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name NORTH PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1386,7 @@ Wall, !- Surface Type WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1374,6 +1403,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1420,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1437,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1454,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1471,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name WEST PERIMETER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1488,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1505,7 @@ Floor, !- Surface Type FLOOR-SLAB-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1522,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1539,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1556,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1573,7 @@ Wall, !- Surface Type INT-WALL-1, !- Construction Name CORE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CVRhMinHum.idf b/testfiles/CVRhMinHum.idf index 9fb618f1188..10285307ab6 100644 --- a/testfiles/CVRhMinHum.idf +++ b/testfiles/CVRhMinHum.idf @@ -801,6 +801,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +833,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +850,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +867,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +884,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +901,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +918,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +935,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +952,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -960,6 +969,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +986,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1003,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1020,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1037,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1054,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1071,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1088,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1105,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1122,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1139,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CarrollMRT-RefBldgLargeOfficeNew2004_Chicago.idf b/testfiles/CarrollMRT-RefBldgLargeOfficeNew2004_Chicago.idf index 5d4582048e1..e5fb3d0202b 100644 --- a/testfiles/CarrollMRT-RefBldgLargeOfficeNew2004_Chicago.idf +++ b/testfiles/CarrollMRT-RefBldgLargeOfficeNew2004_Chicago.idf @@ -898,6 +898,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +915,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +932,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +949,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +966,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +983,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1000,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1017,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1034,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1051,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1068,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1085,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1102,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1119,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1136,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1153,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1170,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1187,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1204,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1221,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1238,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1255,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,6 +1272,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1266,6 +1289,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1306,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1323,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1340,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1357,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1374,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1362,6 +1391,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1378,6 +1408,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1425,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1442,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1459,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1476,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1493,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1474,6 +1510,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1490,6 +1527,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1506,6 +1544,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1522,6 +1561,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1578,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1595,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1612,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1629,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1646,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1663,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1634,6 +1680,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1650,6 +1697,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1666,6 +1714,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1682,6 +1731,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,6 +1748,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1714,6 +1765,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1730,6 +1782,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1746,6 +1799,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1762,6 +1816,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1778,6 +1833,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1794,6 +1850,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,6 +1867,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1826,6 +1884,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1842,6 +1901,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1858,6 +1918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1874,6 +1935,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1890,6 +1952,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1906,6 +1969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1922,6 +1986,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1938,6 +2003,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1954,6 +2020,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1970,6 +2037,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1986,6 +2054,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2002,6 +2071,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2018,6 +2088,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2034,6 +2105,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2050,6 +2122,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2066,6 +2139,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2082,6 +2156,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2098,6 +2173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2114,6 +2190,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2207,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2146,6 +2224,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2241,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2178,6 +2258,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2275,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2210,6 +2292,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2226,6 +2309,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2242,6 +2326,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2258,6 +2343,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2274,6 +2360,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2290,6 +2377,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2306,6 +2394,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2322,6 +2411,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2338,6 +2428,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2354,6 +2445,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2370,6 +2462,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2386,6 +2479,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2402,6 +2496,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2418,6 +2513,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2434,6 +2530,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2450,6 +2547,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2466,6 +2564,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2482,6 +2581,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2498,6 +2598,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2514,6 +2615,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2530,6 +2632,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2546,6 +2649,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2562,6 +2666,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2578,6 +2683,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2594,6 +2700,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2610,6 +2717,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2626,6 +2734,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2642,6 +2751,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2658,6 +2768,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2674,6 +2785,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2690,6 +2802,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2706,6 +2819,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2722,6 +2836,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2738,6 +2853,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2754,6 +2870,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2770,6 +2887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2786,6 +2904,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2802,6 +2921,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2818,6 +2938,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2834,6 +2955,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2850,6 +2972,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2866,6 +2989,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2882,6 +3006,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2898,6 +3023,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2914,6 +3040,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2930,6 +3057,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2946,6 +3074,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2962,6 +3091,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4203,97 +4333,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/CentralChillerHeaterSystem_Cooling_Heating.idf b/testfiles/CentralChillerHeaterSystem_Cooling_Heating.idf index 050da4a4246..983a11db654 100644 --- a/testfiles/CentralChillerHeaterSystem_Cooling_Heating.idf +++ b/testfiles/CentralChillerHeaterSystem_Cooling_Heating.idf @@ -897,6 +897,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -913,6 +914,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +931,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -945,6 +948,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +965,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -977,6 +982,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +999,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1016,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1033,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1041,6 +1050,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1057,6 +1067,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1084,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1089,6 +1101,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1118,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1135,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1152,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1169,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1169,6 +1186,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1185,6 +1203,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1201,6 +1220,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1217,6 +1237,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1254,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1271,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1265,6 +1288,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1305,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1322,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1339,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1356,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1373,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1361,6 +1390,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1377,6 +1407,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1393,6 +1424,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1409,6 +1441,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1425,6 +1458,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1441,6 +1475,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,6 +1492,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1509,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CentralChillerHeaterSystem_Simultaneous_Cooling_Heating.idf b/testfiles/CentralChillerHeaterSystem_Simultaneous_Cooling_Heating.idf index 5cefa1d1c7c..dad169573dd 100644 --- a/testfiles/CentralChillerHeaterSystem_Simultaneous_Cooling_Heating.idf +++ b/testfiles/CentralChillerHeaterSystem_Simultaneous_Cooling_Heating.idf @@ -876,6 +876,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +893,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +910,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +927,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +944,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +961,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +978,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +995,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1012,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1029,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1063,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1080,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1148,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1165,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1182,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1250,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1244,6 +1267,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1284,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1301,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1318,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1352,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1340,6 +1369,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1386,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1403,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1420,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1437,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1454,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1471,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1488,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ChangeoverBypassVAV.idf b/testfiles/ChangeoverBypassVAV.idf index 03ef877eb25..7e67ab5d1fa 100644 --- a/testfiles/ChangeoverBypassVAV.idf +++ b/testfiles/ChangeoverBypassVAV.idf @@ -602,6 +602,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +619,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +636,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -650,6 +653,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +670,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +687,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +721,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +738,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +755,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +772,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +789,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +806,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +823,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +840,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +874,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +891,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +908,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +925,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ChangeoverBypassVAV_AirToAir.idf b/testfiles/ChangeoverBypassVAV_AirToAir.idf index 2e5344760ed..148ab8a34ec 100644 --- a/testfiles/ChangeoverBypassVAV_AirToAir.idf +++ b/testfiles/ChangeoverBypassVAV_AirToAir.idf @@ -609,6 +609,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -625,6 +626,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +643,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -657,6 +660,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +677,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +694,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +711,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +728,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +745,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +762,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +779,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +796,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +813,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +830,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +847,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +864,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +881,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +898,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +915,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +932,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ChangeoverBypassVAV_AirToAirHeatPump.idf b/testfiles/ChangeoverBypassVAV_AirToAirHeatPump.idf index 1ff6165f18c..f9b017fd00c 100644 --- a/testfiles/ChangeoverBypassVAV_AirToAirHeatPump.idf +++ b/testfiles/ChangeoverBypassVAV_AirToAirHeatPump.idf @@ -609,6 +609,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -625,6 +626,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +643,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -657,6 +660,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +677,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +694,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +711,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +728,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +745,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +762,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +779,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +796,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +813,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +830,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +847,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +864,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +881,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +898,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +915,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +932,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ChangeoverBypassVAV_MaxTemp.idf b/testfiles/ChangeoverBypassVAV_MaxTemp.idf index 9aa95c812d8..b6858b8a380 100644 --- a/testfiles/ChangeoverBypassVAV_MaxTemp.idf +++ b/testfiles/ChangeoverBypassVAV_MaxTemp.idf @@ -611,6 +611,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +628,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +645,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +662,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +679,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +696,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +713,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +730,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +798,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +815,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -835,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +917,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +934,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ChillerPartLoadCurve_RefBldgLargeOfficeNew2004_Chicago.idf b/testfiles/ChillerPartLoadCurve_RefBldgLargeOfficeNew2004_Chicago.idf index 03704ca0eff..0fba132fa2b 100644 --- a/testfiles/ChillerPartLoadCurve_RefBldgLargeOfficeNew2004_Chicago.idf +++ b/testfiles/ChillerPartLoadCurve_RefBldgLargeOfficeNew2004_Chicago.idf @@ -894,6 +894,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +911,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +928,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +945,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +962,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +979,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +996,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1013,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1030,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1047,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1064,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1081,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1098,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1132,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1183,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1200,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1234,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1230,6 +1251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1262,6 +1285,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1278,6 +1302,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1319,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1387,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1374,6 +1404,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1421,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1438,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1455,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1472,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1489,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1470,6 +1506,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1486,6 +1523,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1502,6 +1540,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1557,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1574,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1591,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1566,6 +1608,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1625,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1642,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1659,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1630,6 +1676,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1646,6 +1693,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1662,6 +1710,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1678,6 +1727,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1744,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1710,6 +1761,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1726,6 +1778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1742,6 +1795,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1758,6 +1812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1774,6 +1829,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1790,6 +1846,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1806,6 +1863,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1822,6 +1880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1838,6 +1897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1931,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1948,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1902,6 +1965,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1918,6 +1982,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1934,6 +1999,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1950,6 +2016,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1966,6 +2033,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1982,6 +2050,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1998,6 +2067,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2014,6 +2084,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2030,6 +2101,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2046,6 +2118,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2062,6 +2135,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2078,6 +2152,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2094,6 +2169,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2186,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2203,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2142,6 +2220,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2237,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2254,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2271,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2206,6 +2288,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2222,6 +2305,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2238,6 +2322,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2254,6 +2339,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2270,6 +2356,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2286,6 +2373,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2302,6 +2390,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2318,6 +2407,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2334,6 +2424,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2350,6 +2441,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2366,6 +2458,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2382,6 +2475,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2398,6 +2492,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2414,6 +2509,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2430,6 +2526,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2446,6 +2543,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2462,6 +2560,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2478,6 +2577,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2494,6 +2594,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2510,6 +2611,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2526,6 +2628,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2542,6 +2645,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2558,6 +2662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2574,6 +2679,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2590,6 +2696,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2606,6 +2713,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2622,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2638,6 +2747,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2654,6 +2764,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2670,6 +2781,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2686,6 +2798,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2702,6 +2815,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2718,6 +2832,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2734,6 +2849,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2750,6 +2866,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2766,6 +2883,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2782,6 +2900,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2798,6 +2917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2814,6 +2934,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2830,6 +2951,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2846,6 +2968,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2862,6 +2985,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2878,6 +3002,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +3019,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2910,6 +3036,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2926,6 +3053,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2942,6 +3070,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2958,6 +3087,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4199,97 +4329,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/CmplxGlz_Daylighting_SouthVB45deg.idf b/testfiles/CmplxGlz_Daylighting_SouthVB45deg.idf index bc2a5434457..d81a00403ee 100644 --- a/testfiles/CmplxGlz_Daylighting_SouthVB45deg.idf +++ b/testfiles/CmplxGlz_Daylighting_SouthVB45deg.idf @@ -85237,6 +85237,7 @@ WALL, !- Surface Type ExtWall_Const, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -85256,6 +85257,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Floor-COMFENZone, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85274,6 +85276,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Left, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85292,6 +85295,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Back, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85310,6 +85314,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Right, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85328,6 +85333,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Ceiling-COMFENZone, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85505,7 +85511,8 @@ COMFENZone Internal Mass,!- Name InteriorFurnishings, !- Construction Name COMFENZone, !- Zone or ZoneList Name - 55.753993988; !- Surface Area {m2} + , !- Surface Area {m2} + 55.753993988; !- Extended Field ! Schedule.inc ! Office diff --git a/testfiles/CmplxGlz_Daylighting_SouthVerticalVB45deg.idf b/testfiles/CmplxGlz_Daylighting_SouthVerticalVB45deg.idf index ebabffbde6d..bfbbae6444f 100644 --- a/testfiles/CmplxGlz_Daylighting_SouthVerticalVB45deg.idf +++ b/testfiles/CmplxGlz_Daylighting_SouthVerticalVB45deg.idf @@ -85237,6 +85237,7 @@ WALL, !- Surface Type ExtWall_Const, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -85256,6 +85257,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Floor-COMFENZone, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85274,6 +85276,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Left, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85292,6 +85295,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Back, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85310,6 +85314,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IntWall-Right, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85328,6 +85333,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COMFENZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Ceiling-COMFENZone, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -85505,7 +85511,8 @@ COMFENZone Internal Mass,!- Name InteriorFurnishings, !- Construction Name COMFENZone, !- Zone or ZoneList Name - 55.753993988; !- Surface Area {m2} + , !- Surface Area {m2} + 55.753993988; !- Extended Field ! Schedule.inc ! Office diff --git a/testfiles/CmplxGlz_InShadeGasMix.idf b/testfiles/CmplxGlz_InShadeGasMix.idf index 07c8cc5cb07..2d83d024cfc 100644 --- a/testfiles/CmplxGlz_InShadeGasMix.idf +++ b/testfiles/CmplxGlz_InShadeGasMix.idf @@ -370,6 +370,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -391,6 +392,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -412,6 +414,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -433,6 +436,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +458,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_MeasuredDeflectionAndShading.idf b/testfiles/CmplxGlz_MeasuredDeflectionAndShading.idf index 75806a1eb40..f7d1ae33caa 100644 --- a/testfiles/CmplxGlz_MeasuredDeflectionAndShading.idf +++ b/testfiles/CmplxGlz_MeasuredDeflectionAndShading.idf @@ -377,6 +377,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -393,6 +394,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -409,6 +411,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -425,6 +428,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -441,6 +445,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +462,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_SchedSurfGains.idf b/testfiles/CmplxGlz_SchedSurfGains.idf index 58d6968526c..fc4c260a6d4 100644 --- a/testfiles/CmplxGlz_SchedSurfGains.idf +++ b/testfiles/CmplxGlz_SchedSurfGains.idf @@ -487,6 +487,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -503,6 +504,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -519,6 +521,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +538,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +555,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +572,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_SingleZone_Deflection.idf b/testfiles/CmplxGlz_SingleZone_Deflection.idf index b18679f174e..2bacc661a70 100644 --- a/testfiles/CmplxGlz_SingleZone_Deflection.idf +++ b/testfiles/CmplxGlz_SingleZone_Deflection.idf @@ -374,6 +374,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -395,6 +396,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -416,6 +418,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -437,6 +440,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +462,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -479,6 +484,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_SingleZone_DoubleClearAir.idf b/testfiles/CmplxGlz_SingleZone_DoubleClearAir.idf index b394b32c7c0..0492c5e4fe6 100644 --- a/testfiles/CmplxGlz_SingleZone_DoubleClearAir.idf +++ b/testfiles/CmplxGlz_SingleZone_DoubleClearAir.idf @@ -370,6 +370,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -391,6 +392,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -412,6 +414,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -433,6 +436,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +458,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_SingleZone_Vacuum.idf b/testfiles/CmplxGlz_SingleZone_Vacuum.idf index 98eec787b67..4f27b17c304 100644 --- a/testfiles/CmplxGlz_SingleZone_Vacuum.idf +++ b/testfiles/CmplxGlz_SingleZone_Vacuum.idf @@ -370,6 +370,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -391,6 +392,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -412,6 +414,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -433,6 +436,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +458,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CmplxGlz_SmOff_IntExtShading.idf b/testfiles/CmplxGlz_SmOff_IntExtShading.idf index ab93422c4dc..daa6f0e74af 100644 --- a/testfiles/CmplxGlz_SmOff_IntExtShading.idf +++ b/testfiles/CmplxGlz_SmOff_IntExtShading.idf @@ -425,6 +425,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -441,6 +442,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +459,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +476,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -489,6 +493,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -505,6 +510,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -521,6 +527,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +544,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +561,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +578,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +595,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +612,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +629,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +646,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +663,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +680,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +697,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +714,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +731,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +748,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +765,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +782,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +799,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +816,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +833,7 @@ FLOOR, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +850,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +867,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +884,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +901,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,25 +1097,29 @@ ZSF1-MASS, !- Name FURNITURE, !- Construction Name ZSF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF1-MASS, !- Name FURNITURE, !- Construction Name ZNF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZSF2-MASS, !- Name FURNITURE, !- Construction Name ZSF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF2-MASS, !- Name FURNITURE, !- Construction Name ZNF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/CoilWaterDesuperheating.idf b/testfiles/CoilWaterDesuperheating.idf index 9c653e82bd4..df2800dc7e4 100644 --- a/testfiles/CoilWaterDesuperheating.idf +++ b/testfiles/CoilWaterDesuperheating.idf @@ -436,6 +436,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -452,6 +453,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -468,6 +470,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -484,6 +487,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -500,6 +504,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -516,6 +521,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +538,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +555,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +572,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +589,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +606,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +623,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +640,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +657,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +674,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +691,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +708,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +725,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +742,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +759,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CommonPipe_Pri-Sec.idf b/testfiles/CommonPipe_Pri-Sec.idf index 10b49e3c4aa..60cc6ddf99e 100644 --- a/testfiles/CommonPipe_Pri-Sec.idf +++ b/testfiles/CommonPipe_Pri-Sec.idf @@ -617,6 +617,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +651,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +685,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +702,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +736,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +850,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +917,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +951,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +968,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +985,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1065,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1097,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1114,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1245,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1269,6 +1292,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1309,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1440,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1472,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1489,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1506,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1620,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1637,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1654,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1671,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1688,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CompSetPtControl.idf b/testfiles/CompSetPtControl.idf index 1aaf6dda880..742285a258e 100644 --- a/testfiles/CompSetPtControl.idf +++ b/testfiles/CompSetPtControl.idf @@ -711,6 +711,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -727,6 +728,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +745,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +762,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +779,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +796,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +813,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +830,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +847,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +864,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +881,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +898,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +915,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +932,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +949,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +966,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +983,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +1000,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1017,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1015,6 +1034,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CondFD1ZonePurchAirAutoSizeWithPCM.idf b/testfiles/CondFD1ZonePurchAirAutoSizeWithPCM.idf index e217a029842..ec0a675a048 100644 --- a/testfiles/CondFD1ZonePurchAirAutoSizeWithPCM.idf +++ b/testfiles/CondFD1ZonePurchAirAutoSizeWithPCM.idf @@ -366,6 +366,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -382,6 +383,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -398,6 +400,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -414,6 +417,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -430,6 +434,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -446,6 +451,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Convection.idf b/testfiles/Convection.idf index b8d295d6ad5..ab14737bbc0 100644 --- a/testfiles/Convection.idf +++ b/testfiles/Convection.idf @@ -558,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -589,6 +590,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -605,6 +607,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +624,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -637,6 +641,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -653,6 +658,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +675,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +709,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +743,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +760,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +777,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -797,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -813,6 +828,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -829,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +862,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +879,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -877,6 +896,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ConvectionAdaptiveSmallOffice.idf b/testfiles/ConvectionAdaptiveSmallOffice.idf index baf1a4b6abf..c1e131215d8 100644 --- a/testfiles/ConvectionAdaptiveSmallOffice.idf +++ b/testfiles/ConvectionAdaptiveSmallOffice.idf @@ -791,6 +791,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -807,6 +808,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +825,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +842,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +859,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +876,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +892,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +909,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +926,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +942,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +959,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +976,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +993,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1010,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1027,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1078,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1077,6 +1095,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1112,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1129,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1180,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1173,6 +1197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1214,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1231,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1248,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1237,6 +1265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1253,6 +1282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1269,6 +1299,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1316,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1333,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1350,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1367,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1349,6 +1384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1365,6 +1401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1381,6 +1418,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1397,6 +1435,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1445,6 +1486,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1503,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2150,31 +2193,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/CoolingCoilFreezingPrevention.idf b/testfiles/CoolingCoilFreezingPrevention.idf index 2c92c0bb147..a7f353c77e3 100644 --- a/testfiles/CoolingCoilFreezingPrevention.idf +++ b/testfiles/CoolingCoilFreezingPrevention.idf @@ -400,6 +400,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -416,6 +417,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -432,6 +434,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -448,6 +451,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -464,6 +468,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +485,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -496,6 +502,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -512,6 +519,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +536,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +553,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +570,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -576,6 +587,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +604,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -608,6 +621,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +638,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +655,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +672,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -672,6 +689,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -688,6 +706,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +723,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTower.idf b/testfiles/CoolingTower.idf index db8999f2df3..a866e3b01f5 100644 --- a/testfiles/CoolingTower.idf +++ b/testfiles/CoolingTower.idf @@ -662,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +694,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +728,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +745,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +762,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +813,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +847,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +864,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +881,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +932,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +966,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +983,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +1000,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTowerDryBulbRangeOp.idf b/testfiles/CoolingTowerDryBulbRangeOp.idf index 05bb2b839ed..d0814bae336 100644 --- a/testfiles/CoolingTowerDryBulbRangeOp.idf +++ b/testfiles/CoolingTowerDryBulbRangeOp.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTowerNomCap.idf b/testfiles/CoolingTowerNomCap.idf index e4d313bdf0c..f0c7d0eb474 100644 --- a/testfiles/CoolingTowerNomCap.idf +++ b/testfiles/CoolingTowerNomCap.idf @@ -650,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +682,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +699,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +716,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +733,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +750,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -761,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -777,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +801,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +818,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +835,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +852,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +869,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +920,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +954,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +971,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +988,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTowerRHRangeOp.idf b/testfiles/CoolingTowerRHRangeOp.idf index c662629e2f1..464b716f8cd 100644 --- a/testfiles/CoolingTowerRHRangeOp.idf +++ b/testfiles/CoolingTowerRHRangeOp.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTowerWetBulbRangeOp.idf b/testfiles/CoolingTowerWetBulbRangeOp.idf index 6a14ff30cf4..ba3703aee0d 100644 --- a/testfiles/CoolingTowerWetBulbRangeOp.idf +++ b/testfiles/CoolingTowerWetBulbRangeOp.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTowerWithDBDeltaTempOp.idf b/testfiles/CoolingTowerWithDBDeltaTempOp.idf index 2598ba507c3..28ab62ff4ca 100644 --- a/testfiles/CoolingTowerWithDBDeltaTempOp.idf +++ b/testfiles/CoolingTowerWithDBDeltaTempOp.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTowerWithWBDeltaTempOp.idf b/testfiles/CoolingTowerWithWBDeltaTempOp.idf index 5bf735ffcc3..53acfe91642 100644 --- a/testfiles/CoolingTowerWithWBDeltaTempOp.idf +++ b/testfiles/CoolingTowerWithWBDeltaTempOp.idf @@ -887,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +919,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +936,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +953,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +970,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +987,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1004,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1021,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1038,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1055,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1072,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1089,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1106,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1123,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1140,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1142,6 +1157,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1158,6 +1174,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1191,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1208,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1225,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTower_FluidBypass.idf b/testfiles/CoolingTower_FluidBypass.idf index add650a9de5..a2736ca3b80 100644 --- a/testfiles/CoolingTower_FluidBypass.idf +++ b/testfiles/CoolingTower_FluidBypass.idf @@ -1280,6 +1280,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1297,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1314,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1331,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1348,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1365,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1399,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1416,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1433,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,7 +1449,8 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement People, !- Name @@ -1671,6 +1682,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1699,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1716,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1733,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1750,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,7 +1783,8 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom People, !- Name @@ -2053,6 +2071,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2069,6 +2088,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2085,6 +2105,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2101,6 +2122,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2117,6 +2139,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2133,6 +2156,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2148,7 +2172,8 @@ Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid People, !- Name @@ -2435,6 +2460,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2451,6 +2477,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2467,6 +2494,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2483,6 +2511,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2499,6 +2528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2515,6 +2545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2530,7 +2561,8 @@ Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2846,6 +2878,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2877,6 +2910,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2927,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +2944,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2925,6 +2961,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,7 +2994,8 @@ Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3217,6 +3256,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3248,6 +3288,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3264,6 +3305,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3280,6 +3322,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3296,6 +3339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3312,6 +3356,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3327,7 +3372,8 @@ Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3588,6 +3634,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3619,6 +3666,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3635,6 +3683,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3651,6 +3700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3667,6 +3717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3683,6 +3734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,7 +3750,8 @@ Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3959,6 +4012,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3990,6 +4044,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4006,6 +4061,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4078,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4095,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4054,6 +4112,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4069,7 +4128,8 @@ Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4330,6 +4390,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4361,6 +4422,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4377,6 +4439,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4393,6 +4456,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4409,6 +4473,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4425,6 +4490,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4440,7 +4506,8 @@ Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4701,6 +4768,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4732,6 +4800,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4748,6 +4817,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4764,6 +4834,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4780,6 +4851,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4796,6 +4868,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4811,7 +4884,8 @@ Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5072,6 +5146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5088,6 +5163,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5119,6 +5195,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5135,6 +5212,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5151,6 +5229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5167,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5182,7 +5262,8 @@ Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5443,6 +5524,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5474,6 +5556,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5490,6 +5573,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5506,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5522,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5538,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5553,7 +5640,8 @@ Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5814,6 +5902,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5845,6 +5934,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5861,6 +5951,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5877,6 +5968,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5893,6 +5985,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5909,6 +6002,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,7 +6018,8 @@ Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6185,6 +6280,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6216,6 +6312,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6232,6 +6329,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6248,6 +6346,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6264,6 +6363,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6280,6 +6380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6295,7 +6396,8 @@ Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6556,6 +6658,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6587,6 +6690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6603,6 +6707,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6619,6 +6724,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6635,6 +6741,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6651,6 +6758,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,7 +6774,8 @@ Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6927,6 +7036,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6958,6 +7068,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6974,6 +7085,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6990,6 +7102,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7006,6 +7119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7022,6 +7136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7037,7 +7152,8 @@ Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7298,6 +7414,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7314,6 +7431,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7330,6 +7448,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7346,6 +7465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7482,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7499,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7394,6 +7516,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7410,6 +7533,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7426,6 +7550,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7442,6 +7567,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7502,6 +7628,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7518,6 +7645,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7534,6 +7662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7550,6 +7679,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7566,6 +7696,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7582,6 +7713,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7598,6 +7730,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7614,6 +7747,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7630,6 +7764,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7646,6 +7781,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7706,6 +7842,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7722,6 +7859,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7738,6 +7876,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7754,6 +7893,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7770,6 +7910,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7786,6 +7927,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7802,6 +7944,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7818,6 +7961,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7834,6 +7978,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7850,6 +7995,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_MerkelVariableSpeed.idf b/testfiles/CoolingTower_MerkelVariableSpeed.idf index f195cc162cb..4f39aea4560 100644 --- a/testfiles/CoolingTower_MerkelVariableSpeed.idf +++ b/testfiles/CoolingTower_MerkelVariableSpeed.idf @@ -854,6 +854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +871,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +888,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +905,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +922,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +939,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +956,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +973,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +990,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1007,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1024,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1041,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1058,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1075,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1092,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1109,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1143,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1160,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1177,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1245,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1262,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1347,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1364,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1381,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1398,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1415,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1432,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1449,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1466,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1483,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1500,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1478,6 +1517,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1534,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1551,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1568,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1585,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1602,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1574,6 +1619,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1590,6 +1636,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1606,6 +1653,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1622,6 +1670,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1687,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1704,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1721,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1755,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1718,6 +1772,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1734,6 +1789,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1750,6 +1806,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,6 +1823,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1782,6 +1840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1798,6 +1857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1891,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1908,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1942,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1894,6 +1959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1910,6 +1976,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1926,6 +1993,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +2010,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +2027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2078,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2095,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2038,6 +2112,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2054,6 +2129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2163,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2197,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2214,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2231,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2166,6 +2248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2299,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2316,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2350,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2278,6 +2367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2310,6 +2401,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2326,6 +2418,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2342,6 +2435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2374,6 +2469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2390,6 +2486,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2406,6 +2503,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2520,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2554,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2470,6 +2571,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2486,6 +2588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2502,6 +2605,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2518,6 +2622,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2534,6 +2639,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2550,6 +2656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2566,6 +2673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2582,6 +2690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2707,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2614,6 +2724,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2630,6 +2741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2646,6 +2758,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2662,6 +2775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2809,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2826,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2726,6 +2843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2758,6 +2877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2774,6 +2894,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2790,6 +2911,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2806,6 +2928,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2945,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2838,6 +2962,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2854,6 +2979,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2870,6 +2996,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2886,6 +3013,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2902,6 +3030,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2918,6 +3047,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,97 +4289,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/CoolingTower_SingleSpeed_MultiCell.idf b/testfiles/CoolingTower_SingleSpeed_MultiCell.idf index 8bcf5cb01d1..86fa3935522 100644 --- a/testfiles/CoolingTower_SingleSpeed_MultiCell.idf +++ b/testfiles/CoolingTower_SingleSpeed_MultiCell.idf @@ -1280,6 +1280,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1297,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1314,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1331,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1348,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1365,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1399,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1416,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1433,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,7 +1449,8 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement People, !- Name @@ -1671,6 +1682,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1699,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1716,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1733,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1750,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,7 +1783,8 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom People, !- Name @@ -2053,6 +2071,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2069,6 +2088,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2085,6 +2105,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2101,6 +2122,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2117,6 +2139,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2133,6 +2156,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2148,7 +2172,8 @@ Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid People, !- Name @@ -2435,6 +2460,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2451,6 +2477,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2467,6 +2494,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2483,6 +2511,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2499,6 +2528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2515,6 +2545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2530,7 +2561,8 @@ Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2846,6 +2878,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2877,6 +2910,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2927,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +2944,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2925,6 +2961,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,7 +2994,8 @@ Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3217,6 +3256,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3248,6 +3288,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3264,6 +3305,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3280,6 +3322,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3296,6 +3339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3312,6 +3356,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3327,7 +3372,8 @@ Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3588,6 +3634,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3619,6 +3666,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3635,6 +3683,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3651,6 +3700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3667,6 +3717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3683,6 +3734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,7 +3750,8 @@ Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3959,6 +4012,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3990,6 +4044,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4006,6 +4061,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4078,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4095,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4054,6 +4112,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4069,7 +4128,8 @@ Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4330,6 +4390,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4361,6 +4422,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4377,6 +4439,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4393,6 +4456,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4409,6 +4473,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4425,6 +4490,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4440,7 +4506,8 @@ Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4701,6 +4768,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4732,6 +4800,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4748,6 +4817,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4764,6 +4834,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4780,6 +4851,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4796,6 +4868,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4811,7 +4884,8 @@ Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5072,6 +5146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5088,6 +5163,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5119,6 +5195,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5135,6 +5212,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5151,6 +5229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5167,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5182,7 +5262,8 @@ Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5443,6 +5524,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5474,6 +5556,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5490,6 +5573,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5506,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5522,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5538,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5553,7 +5640,8 @@ Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5814,6 +5902,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5845,6 +5934,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5861,6 +5951,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5877,6 +5968,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5893,6 +5985,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5909,6 +6002,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,7 +6018,8 @@ Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6185,6 +6280,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6216,6 +6312,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6232,6 +6329,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6248,6 +6346,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6264,6 +6363,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6280,6 +6380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6295,7 +6396,8 @@ Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6556,6 +6658,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6587,6 +6690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6603,6 +6707,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6619,6 +6724,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6635,6 +6741,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6651,6 +6758,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,7 +6774,8 @@ Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6927,6 +7036,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6958,6 +7068,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6974,6 +7085,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6990,6 +7102,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7006,6 +7119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7022,6 +7136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7037,7 +7152,8 @@ Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7298,6 +7414,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7314,6 +7431,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7330,6 +7448,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7346,6 +7465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7482,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7499,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7394,6 +7516,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7410,6 +7533,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7426,6 +7550,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7442,6 +7567,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7502,6 +7628,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7518,6 +7645,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7534,6 +7662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7550,6 +7679,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7566,6 +7696,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7582,6 +7713,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7598,6 +7730,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7614,6 +7747,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7630,6 +7764,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7646,6 +7781,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7706,6 +7842,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7722,6 +7859,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7738,6 +7876,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7754,6 +7893,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7770,6 +7910,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7786,6 +7927,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7802,6 +7944,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7818,6 +7961,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7834,6 +7978,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7850,6 +7995,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_TwoSpeed.idf b/testfiles/CoolingTower_TwoSpeed.idf index aba5afc802b..81f92dd7d91 100644 --- a/testfiles/CoolingTower_TwoSpeed.idf +++ b/testfiles/CoolingTower_TwoSpeed.idf @@ -654,6 +654,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +686,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +703,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +720,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +737,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +754,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +771,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -797,6 +805,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -813,6 +822,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +839,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +856,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +873,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +890,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +907,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +924,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +941,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +958,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +975,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +992,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTower_TwoSpeed_CondEntTempReset.idf b/testfiles/CoolingTower_TwoSpeed_CondEntTempReset.idf index 6519267dab9..90a0e130788 100644 --- a/testfiles/CoolingTower_TwoSpeed_CondEntTempReset.idf +++ b/testfiles/CoolingTower_TwoSpeed_CondEntTempReset.idf @@ -655,6 +655,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +687,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +721,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +738,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +755,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +772,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +789,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +806,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +823,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +840,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +857,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +874,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +891,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +908,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +925,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +942,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +959,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +976,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +993,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CoolingTower_TwoSpeed_MultiCell.idf b/testfiles/CoolingTower_TwoSpeed_MultiCell.idf index 4e5ffa5db3a..2f2bac494f3 100644 --- a/testfiles/CoolingTower_TwoSpeed_MultiCell.idf +++ b/testfiles/CoolingTower_TwoSpeed_MultiCell.idf @@ -1280,6 +1280,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1297,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1314,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1331,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1348,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1365,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1399,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1416,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1433,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,7 +1449,8 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement People, !- Name @@ -1671,6 +1682,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1699,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1716,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1733,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1750,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,7 +1783,8 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom People, !- Name @@ -2053,6 +2071,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2069,6 +2088,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2085,6 +2105,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2101,6 +2122,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2117,6 +2139,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2133,6 +2156,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2148,7 +2172,8 @@ Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid People, !- Name @@ -2435,6 +2460,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2451,6 +2477,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2467,6 +2494,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2483,6 +2511,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2499,6 +2528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2515,6 +2545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2530,7 +2561,8 @@ Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2846,6 +2878,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2877,6 +2910,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2927,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +2944,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2925,6 +2961,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,7 +2994,8 @@ Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3217,6 +3256,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3248,6 +3288,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3264,6 +3305,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3280,6 +3322,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3296,6 +3339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3312,6 +3356,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3327,7 +3372,8 @@ Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3588,6 +3634,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3619,6 +3666,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3635,6 +3683,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3651,6 +3700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3667,6 +3717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3683,6 +3734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,7 +3750,8 @@ Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3959,6 +4012,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3990,6 +4044,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4006,6 +4061,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4078,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4095,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4054,6 +4112,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4069,7 +4128,8 @@ Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4330,6 +4390,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4361,6 +4422,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4377,6 +4439,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4393,6 +4456,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4409,6 +4473,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4425,6 +4490,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4440,7 +4506,8 @@ Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4701,6 +4768,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4732,6 +4800,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4748,6 +4817,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4764,6 +4834,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4780,6 +4851,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4796,6 +4868,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4811,7 +4884,8 @@ Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5072,6 +5146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5088,6 +5163,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5119,6 +5195,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5135,6 +5212,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5151,6 +5229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5167,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5182,7 +5262,8 @@ Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5443,6 +5524,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5474,6 +5556,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5490,6 +5573,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5506,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5522,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5538,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5553,7 +5640,8 @@ Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5814,6 +5902,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5845,6 +5934,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5861,6 +5951,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5877,6 +5968,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5893,6 +5985,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5909,6 +6002,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,7 +6018,8 @@ Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6185,6 +6280,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6216,6 +6312,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6232,6 +6329,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6248,6 +6346,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6264,6 +6363,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6280,6 +6380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6295,7 +6396,8 @@ Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6556,6 +6658,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6587,6 +6690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6603,6 +6707,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6619,6 +6724,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6635,6 +6741,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6651,6 +6758,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,7 +6774,8 @@ Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6927,6 +7036,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6958,6 +7068,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6974,6 +7085,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6990,6 +7102,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7006,6 +7119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7022,6 +7136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7037,7 +7152,8 @@ Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7298,6 +7414,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7314,6 +7431,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7330,6 +7448,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7346,6 +7465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7482,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7499,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7394,6 +7516,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7410,6 +7533,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7426,6 +7550,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7442,6 +7567,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7502,6 +7628,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7518,6 +7645,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7534,6 +7662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7550,6 +7679,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7566,6 +7696,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7582,6 +7713,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7598,6 +7730,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7614,6 +7747,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7630,6 +7764,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7646,6 +7781,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7706,6 +7842,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7722,6 +7859,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7738,6 +7876,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7754,6 +7893,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7770,6 +7910,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7786,6 +7927,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7802,6 +7944,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7818,6 +7961,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7834,6 +7978,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7850,6 +7995,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed.idf b/testfiles/CoolingTower_VariableSpeed.idf index 1fe8d02d174..c9f2538d23f 100644 --- a/testfiles/CoolingTower_VariableSpeed.idf +++ b/testfiles/CoolingTower_VariableSpeed.idf @@ -666,6 +666,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +717,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +734,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +751,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +768,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +785,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +802,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +819,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +899,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -955,6 +966,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +983,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1017,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1034,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1114,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1146,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1163,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1197,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1214,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1272,6 +1294,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1318,6 +1341,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1358,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1375,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1392,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1409,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1489,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1492,6 +1521,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1538,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1555,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1572,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1556,6 +1589,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1669,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1686,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1703,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1683,6 +1720,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1699,6 +1737,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1715,6 +1754,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed_CondEntTempReset.idf b/testfiles/CoolingTower_VariableSpeed_CondEntTempReset.idf index af900a093ca..da99c40f3b0 100644 --- a/testfiles/CoolingTower_VariableSpeed_CondEntTempReset.idf +++ b/testfiles/CoolingTower_VariableSpeed_CondEntTempReset.idf @@ -668,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +685,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +702,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +719,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +736,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +787,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +804,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +821,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -957,6 +968,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +985,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1002,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1019,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1036,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1116,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1131,6 +1148,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1296,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1320,6 +1343,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1336,6 +1360,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1368,6 +1394,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1384,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1491,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1494,6 +1523,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1540,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1557,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1574,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1591,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1637,6 +1671,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1688,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1685,6 +1722,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1701,6 +1739,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1717,6 +1756,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed_CondEntTempReset_MultipleTowers.idf b/testfiles/CoolingTower_VariableSpeed_CondEntTempReset_MultipleTowers.idf index 2a051698fad..c39b3635831 100644 --- a/testfiles/CoolingTower_VariableSpeed_CondEntTempReset_MultipleTowers.idf +++ b/testfiles/CoolingTower_VariableSpeed_CondEntTempReset_MultipleTowers.idf @@ -668,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +685,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +702,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +719,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +736,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +787,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +804,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +821,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -957,6 +968,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +985,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1002,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1019,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1036,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1116,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1131,6 +1148,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1296,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1320,6 +1343,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1336,6 +1360,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1368,6 +1394,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1384,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1491,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1494,6 +1523,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1540,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1557,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1574,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1591,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1637,6 +1671,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1688,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1685,6 +1722,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1701,6 +1739,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1717,6 +1756,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint.idf b/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint.idf index 59319f42b22..41022821d22 100644 --- a/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint.idf +++ b/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint.idf @@ -673,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +707,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +741,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +809,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +826,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +906,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +973,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +990,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1007,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1024,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1041,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1121,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1153,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1170,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1187,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1204,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1221,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1301,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1325,6 +1348,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1365,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1382,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1399,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1496,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1528,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1545,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1562,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1579,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1596,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1676,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1693,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1727,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1744,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1722,6 +1761,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint_MultipleTowers.idf b/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint_MultipleTowers.idf index 9880ddc9ae8..bcd277f2e29 100644 --- a/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint_MultipleTowers.idf +++ b/testfiles/CoolingTower_VariableSpeed_IdealCondEntTempSetpoint_MultipleTowers.idf @@ -653,6 +653,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +687,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +704,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +721,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +738,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +806,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +953,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +970,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +987,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1101,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1133,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1150,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1281,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1305,6 +1328,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1345,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1396,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1448,6 +1476,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1479,6 +1508,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1495,6 +1525,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1576,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1622,6 +1656,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1673,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CoolingTower_VariableSpeed_MultiCell.idf b/testfiles/CoolingTower_VariableSpeed_MultiCell.idf index 856e185e680..560b4966ddf 100644 --- a/testfiles/CoolingTower_VariableSpeed_MultiCell.idf +++ b/testfiles/CoolingTower_VariableSpeed_MultiCell.idf @@ -1280,6 +1280,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1297,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1314,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1331,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1348,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1365,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1399,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1416,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1433,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,7 +1449,8 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement People, !- Name @@ -1671,6 +1682,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1699,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1716,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1733,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1750,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,7 +1783,8 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom People, !- Name @@ -2053,6 +2071,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2069,6 +2088,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2085,6 +2105,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2101,6 +2122,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2117,6 +2139,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2133,6 +2156,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2148,7 +2172,8 @@ Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid People, !- Name @@ -2435,6 +2460,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2451,6 +2477,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2467,6 +2494,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2483,6 +2511,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2499,6 +2528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2515,6 +2545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2530,7 +2561,8 @@ Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2846,6 +2878,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2877,6 +2910,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2927,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +2944,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2925,6 +2961,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,7 +2994,8 @@ Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3217,6 +3256,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3248,6 +3288,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3264,6 +3305,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3280,6 +3322,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3296,6 +3339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3312,6 +3356,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3327,7 +3372,8 @@ Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3588,6 +3634,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3619,6 +3666,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3635,6 +3683,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3651,6 +3700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3667,6 +3717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3683,6 +3734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3698,7 +3750,8 @@ Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3959,6 +4012,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3990,6 +4044,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4006,6 +4061,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4078,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4095,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4054,6 +4112,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4069,7 +4128,8 @@ Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4330,6 +4390,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4361,6 +4422,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4377,6 +4439,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4393,6 +4456,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4409,6 +4473,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4425,6 +4490,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4440,7 +4506,8 @@ Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4701,6 +4768,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4732,6 +4800,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4748,6 +4817,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4764,6 +4834,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4780,6 +4851,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4796,6 +4868,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4811,7 +4884,8 @@ Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5072,6 +5146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5088,6 +5163,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5119,6 +5195,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5135,6 +5212,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5151,6 +5229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5167,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5182,7 +5262,8 @@ Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5443,6 +5524,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5474,6 +5556,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5490,6 +5573,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5506,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5522,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5538,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5553,7 +5640,8 @@ Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5814,6 +5902,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5845,6 +5934,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5861,6 +5951,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5877,6 +5968,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5893,6 +5985,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5909,6 +6002,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5924,7 +6018,8 @@ Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6185,6 +6280,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6216,6 +6312,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6232,6 +6329,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6248,6 +6346,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6264,6 +6363,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6280,6 +6380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6295,7 +6396,8 @@ Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6556,6 +6658,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6587,6 +6690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6603,6 +6707,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6619,6 +6724,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6635,6 +6741,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6651,6 +6758,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,7 +6774,8 @@ Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6927,6 +7036,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6958,6 +7068,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6974,6 +7085,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6990,6 +7102,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7006,6 +7119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7022,6 +7136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7037,7 +7152,8 @@ Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7298,6 +7414,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7314,6 +7431,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7330,6 +7448,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7346,6 +7465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7362,6 +7482,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7378,6 +7499,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7394,6 +7516,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7410,6 +7533,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7426,6 +7550,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7442,6 +7567,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7502,6 +7628,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7518,6 +7645,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7534,6 +7662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7550,6 +7679,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7566,6 +7696,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7582,6 +7713,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7598,6 +7730,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7614,6 +7747,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7630,6 +7764,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7646,6 +7781,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7706,6 +7842,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7722,6 +7859,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7738,6 +7876,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7754,6 +7893,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7770,6 +7910,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7786,6 +7927,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7802,6 +7944,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7818,6 +7961,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7834,6 +7978,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7850,6 +7995,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/CooltowerSimpleTest.idf b/testfiles/CooltowerSimpleTest.idf index cd216ac02dc..199a15a33ab 100644 --- a/testfiles/CooltowerSimpleTest.idf +++ b/testfiles/CooltowerSimpleTest.idf @@ -378,6 +378,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -394,6 +395,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -410,6 +412,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -426,6 +429,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -442,6 +446,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +463,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -474,6 +480,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -490,6 +497,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -506,6 +514,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -522,6 +531,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -538,6 +548,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -554,6 +565,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -570,6 +582,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +599,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +616,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +633,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +656,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -674,6 +691,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +720,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +737,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +754,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +771,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +788,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +805,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +822,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +839,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,6 +856,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +873,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +890,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +907,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +924,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +941,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +975,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +998,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1033,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1062,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1042,6 +1079,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1058,6 +1096,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1113,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1130,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1147,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1164,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1138,6 +1181,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1154,6 +1198,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1170,6 +1215,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1186,6 +1232,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1202,6 +1249,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1218,6 +1266,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1234,6 +1283,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1250,6 +1300,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1317,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1340,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1375,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CooltowerSimpleTestwithVentilation.idf b/testfiles/CooltowerSimpleTestwithVentilation.idf index 3d00cba9c79..ca5e13ba40f 100644 --- a/testfiles/CooltowerSimpleTestwithVentilation.idf +++ b/testfiles/CooltowerSimpleTestwithVentilation.idf @@ -378,6 +378,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -394,6 +395,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -410,6 +412,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -426,6 +429,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -442,6 +446,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +463,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -474,6 +480,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -490,6 +497,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -506,6 +514,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -522,6 +531,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -538,6 +548,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -554,6 +565,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -570,6 +582,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +599,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +616,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +633,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +656,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -674,6 +691,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +720,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +737,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +754,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +771,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +788,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +805,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +822,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +839,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,6 +856,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +873,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +890,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +907,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +924,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +941,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +975,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +998,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1033,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1062,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1042,6 +1079,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1058,6 +1096,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1113,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1130,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1147,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1164,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1138,6 +1181,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1154,6 +1198,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1170,6 +1215,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1186,6 +1232,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1202,6 +1249,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1218,6 +1266,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1234,6 +1283,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1250,6 +1300,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1317,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1340,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1375,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CrossVent_1Zone_AirflowNetwork.idf b/testfiles/CrossVent_1Zone_AirflowNetwork.idf index 2c2f6ac874a..0076124c8d0 100644 --- a/testfiles/CrossVent_1Zone_AirflowNetwork.idf +++ b/testfiles/CrossVent_1Zone_AirflowNetwork.idf @@ -753,6 +753,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +770,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +787,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +804,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +821,7 @@ Floor, !- Surface Type FloorConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +838,7 @@ ceiling, !- Surface Type RoofConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CrossVent_1Zone_AirflowNetwork_with2CrossflowJets.idf b/testfiles/CrossVent_1Zone_AirflowNetwork_with2CrossflowJets.idf index 91d2e87dae1..ee2586e1986 100644 --- a/testfiles/CrossVent_1Zone_AirflowNetwork_with2CrossflowJets.idf +++ b/testfiles/CrossVent_1Zone_AirflowNetwork_with2CrossflowJets.idf @@ -753,6 +753,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +770,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +787,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +804,7 @@ Wall, !- Surface Type ExteriorWallConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +821,7 @@ Floor, !- Surface Type FloorConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +838,7 @@ ceiling, !- Surface Type RoofConst, !- Construction Name ZONA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/CustomSolarVisibleSpectrum_RefBldgSmallOfficeNew2004_Chicago.idf b/testfiles/CustomSolarVisibleSpectrum_RefBldgSmallOfficeNew2004_Chicago.idf index 467261652e5..11de3064ff2 100644 --- a/testfiles/CustomSolarVisibleSpectrum_RefBldgSmallOfficeNew2004_Chicago.idf +++ b/testfiles/CustomSolarVisibleSpectrum_RefBldgSmallOfficeNew2004_Chicago.idf @@ -785,6 +785,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +802,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +819,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +836,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -849,6 +853,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -865,6 +870,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +886,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +903,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +920,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +936,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +953,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +970,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +987,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1004,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1021,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1038,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1039,6 +1055,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1072,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1089,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1106,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1123,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1140,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1157,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1174,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1167,6 +1191,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1183,6 +1208,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1225,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1215,6 +1242,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1231,6 +1259,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1276,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1293,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1279,6 +1310,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1327,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1344,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1361,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1343,6 +1378,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1412,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1391,6 +1429,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1407,6 +1446,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1463,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1480,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1497,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2135,31 +2178,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/DDAutoSize.idf b/testfiles/DDAutoSize.idf index 6a116ed5da8..24115524ed6 100644 --- a/testfiles/DDAutoSize.idf +++ b/testfiles/DDAutoSize.idf @@ -809,6 +809,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -840,6 +841,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +858,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -872,6 +875,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -888,6 +892,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -904,6 +909,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +926,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -936,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -952,6 +960,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -968,6 +977,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +994,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1011,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1016,6 +1028,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1032,6 +1045,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1048,6 +1062,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1064,6 +1079,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1096,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1113,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1130,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1147,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DElight-Detailed-Comparison.idf b/testfiles/DElight-Detailed-Comparison.idf index 1b3e2538148..dd07fa3c81c 100644 --- a/testfiles/DElight-Detailed-Comparison.idf +++ b/testfiles/DElight-Detailed-Comparison.idf @@ -512,6 +512,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3i2eFc1ofBz80jvIMxrXvL1fNY1vx3jAvesY6geZTgIV>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -530,6 +531,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1fNY1vx3jAvesY6geZTgIV3i2eFc1ofBz80jvIMxrXvL>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -552,6 +554,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +576,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -594,6 +598,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +639,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +661,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -676,6 +683,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +705,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +746,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -758,6 +768,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +790,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DElightCFSLightShelf.idf b/testfiles/DElightCFSLightShelf.idf index 95e50dc4a8c..d8b0b37dc79 100644 --- a/testfiles/DElightCFSLightShelf.idf +++ b/testfiles/DElightCFSLightShelf.idf @@ -520,6 +520,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3i2eFc1ofBz80jvIMxrXvL1fNY1vx3jAvesY6geZTgIV>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -538,6 +539,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1fNY1vx3jAvesY6geZTgIV3i2eFc1ofBz80jvIMxrXvL>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +562,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -581,6 +584,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +606,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +647,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +669,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +691,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +713,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +754,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +776,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +798,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DElightCFSWindow.idf b/testfiles/DElightCFSWindow.idf index f4447e24cf9..84b581a6831 100644 --- a/testfiles/DElightCFSWindow.idf +++ b/testfiles/DElightCFSWindow.idf @@ -520,6 +520,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3i2eFc1ofBz80jvIMxrXvL1fNY1vx3jAvesY6geZTgIV>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -538,6 +539,7 @@ WALL, !- Surface Type INTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1fNY1vx3jAvesY6geZTgIV3i2eFc1ofBz80jvIMxrXvL>O0>WF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +562,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -581,6 +584,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +606,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +647,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +669,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 1fNY1vx3jAvesY6geZTgIV, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +691,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +713,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +754,7 @@ WALL, !- Surface Type EXTERIOR, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +776,7 @@ ROOF, !- Surface Type ROOFSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +798,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name 3i2eFc1ofBz80jvIMxrXvL, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOASDXCOIL_wADPBFMethod.idf b/testfiles/DOASDXCOIL_wADPBFMethod.idf index dfedfacb153..f6e30ddafef 100644 --- a/testfiles/DOASDXCOIL_wADPBFMethod.idf +++ b/testfiles/DOASDXCOIL_wADPBFMethod.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOASDXCOIL_wADPBFMethod_NoReturnPath.idf b/testfiles/DOASDXCOIL_wADPBFMethod_NoReturnPath.idf index 4bc2230037b..82210592f88 100644 --- a/testfiles/DOASDXCOIL_wADPBFMethod_NoReturnPath.idf +++ b/testfiles/DOASDXCOIL_wADPBFMethod_NoReturnPath.idf @@ -618,6 +618,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +686,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +703,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +918,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +935,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +952,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1066,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1224,6 +1246,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1270,6 +1293,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1310,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1327,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1441,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1444,6 +1473,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1490,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1507,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1621,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1638,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1655,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOASDualDuctSchool.idf b/testfiles/DOASDualDuctSchool.idf index 4084d1ebbd8..3d3f50bc856 100644 --- a/testfiles/DOASDualDuctSchool.idf +++ b/testfiles/DOASDualDuctSchool.idf @@ -1250,6 +1250,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1391,6 +1392,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1407,6 +1409,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1426,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1484,6 +1488,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1505,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Corner_Class_1_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1515,7 +1521,8 @@ Corner_Class_1_Pod_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Corner_Class_1_Pod_1_Infiltration, !- Name @@ -1790,6 +1797,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2306,6 +2314,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2322,6 +2331,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2338,6 +2348,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2354,6 +2365,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2370,6 +2382,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Mult_Class_1_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2385,7 +2398,8 @@ Mult_Class_1_Pod_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Mult_Class_1_Pod_1_Infiltration, !- Name @@ -2660,6 +2674,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2676,6 +2691,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2692,6 +2708,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_Wall_7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2708,6 +2725,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2724,6 +2742,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2740,6 +2759,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2771,6 +2791,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2787,6 +2808,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Corridor_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2802,7 +2824,8 @@ Corridor_Pod_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_1, !- Zone or ZoneList Name - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Corridor_Pod_1_Infiltration, !- Name @@ -3042,6 +3065,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3058,6 +3082,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3074,6 +3099,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3165,6 +3191,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3226,6 +3253,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3242,6 +3270,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Corner_Class_2_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3257,7 +3286,8 @@ Corner_Class_2_Pod_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Corner_Class_2_Pod_1_Infiltration, !- Name @@ -3532,6 +3562,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3548,6 +3579,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3564,6 +3596,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3880,6 +3913,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3896,6 +3930,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3912,6 +3947,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Mult_Class_2_Pod_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3927,7 +3963,8 @@ Mult_Class_2_Pod_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Mult_Class_2_Pod_1_Infiltration, !- Name @@ -4202,6 +4239,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4218,6 +4256,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4234,6 +4273,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4250,6 +4290,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4386,6 +4427,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4447,6 +4489,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4463,6 +4506,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4479,6 +4523,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4495,6 +4540,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Main_Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4510,7 +4556,8 @@ Main_Corridor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Main_Corridor, !- Zone or ZoneList Name - 1092.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1092.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Main_Corridor_Infiltration, !- Name @@ -4676,6 +4723,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4892,6 +4940,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4908,6 +4957,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4924,6 +4974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4940,6 +4991,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4956,6 +5008,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4972,6 +5025,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4987,7 +5041,8 @@ Lobby Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby, !- Zone or ZoneList Name - 342.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 342.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Lobby_Infiltration, !- Name @@ -5153,6 +5208,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mech, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5169,6 +5225,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mech, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5185,6 +5242,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Mech, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5366,6 +5424,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mech, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5382,6 +5441,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Mech, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5398,6 +5458,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Mech, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5414,6 +5475,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Mech, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5429,7 +5491,8 @@ Mech Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mech, !- Zone or ZoneList Name - 504.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 504.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Mech_Infiltration, !- Name @@ -5595,6 +5658,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5611,6 +5675,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5627,6 +5692,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5703,6 +5769,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5719,6 +5786,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5795,6 +5863,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5811,6 +5880,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Bathrooms, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5826,7 +5896,8 @@ Bathrooms Internal Mass, !- Name InteriorFurnishings, !- Construction Name Bathrooms, !- Zone or ZoneList Name - 380.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 380.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Bathrooms_Infiltration, !- Name @@ -6067,6 +6138,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Offices, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6308,6 +6380,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Offices, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6444,6 +6517,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Offices, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6595,6 +6669,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Offices, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6686,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Offices, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6703,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Offices, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6643,6 +6720,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Offices, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6658,7 +6736,8 @@ Offices Internal Mass, !- Name InteriorFurnishings, !- Construction Name Offices, !- Zone or ZoneList Name - 882.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 882.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Offices_Infiltration, !- Name @@ -6860,6 +6939,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6876,6 +6956,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7012,6 +7093,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7148,6 +7230,7 @@ Wall, !- Surface Type Steel-Framed_R-13_Ext-wall, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7284,6 +7367,7 @@ Floor, !- Surface Type ASHRAE 90.1-1999_Table B-2_Unheated_Ext-slab, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7300,6 +7384,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Media_Center, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7315,7 +7400,8 @@ Media_Center Internal Mass, !- Name InteriorFurnishings, !- Construction Name Media_Center, !- Zone or ZoneList Name - 798.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 798.0000; !- Extended Field ZoneInfiltration:DesignFlowRate, Media_Center_Infiltration, !- Name diff --git a/testfiles/DOAS_wNeutralSupplyAir_wFanCoilUnits.idf b/testfiles/DOAS_wNeutralSupplyAir_wFanCoilUnits.idf index 507ba4ca18a..93ea68a30a0 100644 --- a/testfiles/DOAS_wNeutralSupplyAir_wFanCoilUnits.idf +++ b/testfiles/DOAS_wNeutralSupplyAir_wFanCoilUnits.idf @@ -944,6 +944,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +961,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +978,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +995,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1012,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1029,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1063,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1080,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1097,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1114,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1131,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1148,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1216,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1216,6 +1233,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1250,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1248,6 +1267,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1264,6 +1284,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1280,6 +1301,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1318,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1312,6 +1335,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1352,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1369,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1386,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1403,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1420,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1437,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1440,6 +1471,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1456,6 +1488,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1472,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1522,7 @@ Ceiling, !- Surface Type CLNG-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1504,6 +1539,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1520,6 +1556,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1573,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1552,6 +1590,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1568,6 +1607,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1 Thermal Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToFanCoilInlet.idf b/testfiles/DOAToFanCoilInlet.idf index 88b300250c9..cc12e31add2 100644 --- a/testfiles/DOAToFanCoilInlet.idf +++ b/testfiles/DOAToFanCoilInlet.idf @@ -816,6 +816,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +833,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +850,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +884,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +901,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +918,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +935,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +952,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +986,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -992,6 +1003,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1020,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1037,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1054,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1071,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1105,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1122,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1190,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1184,6 +1207,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1224,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1216,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1258,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1275,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1264,6 +1292,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1280,6 +1309,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1326,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1394,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1411,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1462,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1440,6 +1479,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToFanCoilSupply.idf b/testfiles/DOAToFanCoilSupply.idf index 11fc88fd936..bb42a54e130 100644 --- a/testfiles/DOAToFanCoilSupply.idf +++ b/testfiles/DOAToFanCoilSupply.idf @@ -816,6 +816,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +833,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +850,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +884,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +901,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +918,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +935,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +952,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +986,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -992,6 +1003,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1020,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1037,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1054,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1071,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1105,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1122,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1190,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1184,6 +1207,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1224,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1216,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1258,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1275,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1264,6 +1292,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1280,6 +1309,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1326,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1360,6 +1394,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1411,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1445,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1424,6 +1462,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1440,6 +1479,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToPTAC.idf b/testfiles/DOAToPTAC.idf index 0e8b28c3ab3..9933886c2ca 100644 --- a/testfiles/DOAToPTAC.idf +++ b/testfiles/DOAToPTAC.idf @@ -835,6 +835,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +852,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +869,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +886,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +903,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +920,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +937,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +954,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +971,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +988,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1005,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1022,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1039,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1056,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1073,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1090,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1107,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1124,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1141,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1175,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1192,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1209,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1203,6 +1226,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1243,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1260,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,6 +1277,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1267,6 +1294,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1283,6 +1311,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1299,6 +1328,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1345,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1396,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1379,6 +1413,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1430,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1447,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1464,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1443,6 +1481,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1498,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToPTHP.idf b/testfiles/DOAToPTHP.idf index 0d43ea2aa6b..e3e23a43a31 100644 --- a/testfiles/DOAToPTHP.idf +++ b/testfiles/DOAToPTHP.idf @@ -845,6 +845,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +913,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1015,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1021,6 +1032,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1049,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1066,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1083,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1100,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1117,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1117,6 +1134,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1151,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1168,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1185,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1202,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1219,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1213,6 +1236,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1253,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1270,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1287,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1304,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1321,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1309,6 +1338,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1355,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1372,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1389,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1406,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1423,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1440,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1457,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1508,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToUnitVentilator.idf b/testfiles/DOAToUnitVentilator.idf index 3f0bec71548..4a6abf6d51c 100644 --- a/testfiles/DOAToUnitVentilator.idf +++ b/testfiles/DOAToUnitVentilator.idf @@ -576,6 +576,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -592,6 +593,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -608,6 +610,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +627,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +644,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +661,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -672,6 +678,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -688,6 +695,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +712,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +746,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +763,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +780,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +797,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +814,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +831,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +848,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +865,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +882,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +899,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +916,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +933,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +950,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +967,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +984,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +1001,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1018,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1035,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1052,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1069,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1086,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1103,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1120,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1137,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1154,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1171,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1188,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1205,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1222,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1239,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToUnitarySystem.idf b/testfiles/DOAToUnitarySystem.idf index 82e70873946..b3644f9e558 100644 --- a/testfiles/DOAToUnitarySystem.idf +++ b/testfiles/DOAToUnitarySystem.idf @@ -867,6 +867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +884,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +901,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +918,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +935,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +952,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +969,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +986,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1003,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1020,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1037,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1054,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1071,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1088,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1105,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1139,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1156,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1173,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1241,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1235,6 +1258,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,6 +1275,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1267,6 +1292,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1283,6 +1309,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1343,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1331,6 +1360,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1377,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1394,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1379,6 +1411,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1428,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1445,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1462,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1443,6 +1479,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1496,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1513,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1530,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToVRF.idf b/testfiles/DOAToVRF.idf index 049621b46c5..26a874877df 100644 --- a/testfiles/DOAToVRF.idf +++ b/testfiles/DOAToVRF.idf @@ -1447,6 +1447,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1463,6 +1464,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1479,6 +1481,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1495,6 +1498,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1511,6 +1515,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1527,6 +1532,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1549,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1559,6 +1566,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1583,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1600,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1680,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1736,6 +1747,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1752,6 +1764,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1768,6 +1781,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1784,6 +1798,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1800,6 +1815,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1879,6 +1895,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1910,6 +1927,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1926,6 +1944,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +1961,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +1978,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +1995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2053,6 +2075,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2099,6 +2122,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2115,6 +2139,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2131,6 +2156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2147,6 +2173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2163,6 +2190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2242,6 +2270,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2273,6 +2302,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2289,6 +2319,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2305,6 +2336,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2321,6 +2353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2337,6 +2370,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2416,6 +2450,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2432,6 +2467,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2448,6 +2484,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2464,6 +2501,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2480,6 +2518,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2496,6 +2535,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DOAToWaterToAirHPInlet.idf b/testfiles/DOAToWaterToAirHPInlet.idf index cde9eac490b..3b0cda689f8 100644 --- a/testfiles/DOAToWaterToAirHPInlet.idf +++ b/testfiles/DOAToWaterToAirHPInlet.idf @@ -815,6 +815,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +832,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +866,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -879,6 +883,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -895,6 +900,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +917,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +934,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +951,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +968,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +985,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -991,6 +1002,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1019,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1036,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1039,6 +1053,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1070,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1087,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1087,6 +1104,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1121,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1138,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1189,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1183,6 +1206,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1223,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1215,6 +1240,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1257,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1291,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1279,6 +1308,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1325,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1393,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1410,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1391,6 +1427,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1407,6 +1444,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1461,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1478,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2767,99 +2807,99 @@ !- =========== ALL OBJECTS IN CLASS: CURVE:QUADLINEAR =========== Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: CURVE:QUINTLINEAR =========== Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== diff --git a/testfiles/DOAToWaterToAirHPSupply.idf b/testfiles/DOAToWaterToAirHPSupply.idf index 54212ce29fd..19a4f7db460 100644 --- a/testfiles/DOAToWaterToAirHPSupply.idf +++ b/testfiles/DOAToWaterToAirHPSupply.idf @@ -815,6 +815,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +832,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +866,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -879,6 +883,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -895,6 +900,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +917,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +934,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +951,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +968,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +985,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -991,6 +1002,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1019,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1036,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1039,6 +1053,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1070,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1087,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1087,6 +1104,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1121,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1138,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1155,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1189,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1183,6 +1206,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1223,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1215,6 +1240,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1257,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1291,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1279,6 +1308,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1325,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1393,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1410,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1391,6 +1427,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1407,6 +1444,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1461,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1439,6 +1478,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2767,99 +2807,99 @@ !- =========== ALL OBJECTS IN CLASS: CURVE:QUADLINEAR =========== Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: CURVE:QUINTLINEAR =========== Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== diff --git a/testfiles/DXCoilSystemAuto.idf b/testfiles/DXCoilSystemAuto.idf index c961648bf54..2c16301a0c8 100644 --- a/testfiles/DXCoilSystemAuto.idf +++ b/testfiles/DXCoilSystemAuto.idf @@ -413,6 +413,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -429,6 +430,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -445,6 +447,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -461,6 +464,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -477,6 +481,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -493,6 +498,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -509,6 +515,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -525,6 +532,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -541,6 +549,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -557,6 +566,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -573,6 +583,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -589,6 +600,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -605,6 +617,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +634,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +719,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +736,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DaylightingDeviceShelf.idf b/testfiles/DaylightingDeviceShelf.idf index b8f3a8c3474..45d216fc9c1 100644 --- a/testfiles/DaylightingDeviceShelf.idf +++ b/testfiles/DaylightingDeviceShelf.idf @@ -323,6 +323,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -339,6 +340,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -355,6 +357,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -371,6 +374,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -387,6 +391,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Standard Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -403,6 +408,7 @@ Roof, !- Surface Type ROOF, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -460,6 +466,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -476,6 +483,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -492,6 +500,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -508,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -524,6 +534,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Daylit Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -540,6 +551,7 @@ Roof, !- Surface Type ROOF, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -593,6 +605,7 @@ WALL, !- Surface Type Shelf, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Inside Shelf, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DaylightingDeviceTubular.idf b/testfiles/DaylightingDeviceTubular.idf index 2f092fd2750..6fd0741f137 100644 --- a/testfiles/DaylightingDeviceTubular.idf +++ b/testfiles/DaylightingDeviceTubular.idf @@ -365,6 +365,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -381,6 +382,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -397,6 +399,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -413,6 +416,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -429,6 +433,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Daylit Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -445,6 +450,7 @@ Roof, !- Surface Type CEILING IN ZONE, !- Construction Name Daylit Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Daylit Attic Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +478,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -488,6 +495,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -504,6 +512,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +529,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +546,7 @@ Floor, !- Surface Type CEILING IN ATTIC, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Daylit Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -552,6 +563,7 @@ Roof, !- Surface Type ROOF, !- Construction Name Daylit Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +591,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +608,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +625,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +642,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +659,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Standard Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +676,7 @@ Roof, !- Surface Type CEILING IN ZONE, !- Construction Name Standard Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Standard Attic Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +721,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +738,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +755,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +772,7 @@ Floor, !- Surface Type CEILING IN ATTIC, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Standard Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +789,7 @@ Roof, !- Surface Type ROOF, !- Construction Name Standard Attic Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DesiccantCVRh.idf b/testfiles/DesiccantCVRh.idf index 0c2041b3bb6..649c0198efe 100644 --- a/testfiles/DesiccantCVRh.idf +++ b/testfiles/DesiccantCVRh.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DesiccantCVRhZoneRHCtrl.idf b/testfiles/DesiccantCVRhZoneRHCtrl.idf index 61473df75ae..b864851b6e8 100644 --- a/testfiles/DesiccantCVRhZoneRHCtrl.idf +++ b/testfiles/DesiccantCVRhZoneRHCtrl.idf @@ -432,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +449,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -464,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +483,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -496,6 +500,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -512,6 +517,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -560,6 +568,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -576,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +602,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +619,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +636,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +687,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +721,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +738,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +755,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DesiccantCVRhZoneRHCtrl_AddedAutosize.idf b/testfiles/DesiccantCVRhZoneRHCtrl_AddedAutosize.idf index 3bb73a3b714..b86c8ac2b24 100644 --- a/testfiles/DesiccantCVRhZoneRHCtrl_AddedAutosize.idf +++ b/testfiles/DesiccantCVRhZoneRHCtrl_AddedAutosize.idf @@ -432,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +449,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -464,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +483,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -496,6 +500,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -512,6 +517,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -560,6 +568,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -576,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +602,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +619,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +636,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +687,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +721,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +738,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +755,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DesiccantDehumidifierWithAirToAirCoil.idf b/testfiles/DesiccantDehumidifierWithAirToAirCoil.idf index f4ee3b5dd53..e1f850fb3e3 100644 --- a/testfiles/DesiccantDehumidifierWithAirToAirCoil.idf +++ b/testfiles/DesiccantDehumidifierWithAirToAirCoil.idf @@ -568,6 +568,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -584,6 +585,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -616,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +636,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +653,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -664,6 +670,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -680,6 +687,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +738,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +755,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +772,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -776,6 +789,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -792,6 +806,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +823,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +840,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -840,6 +857,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -856,6 +874,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -872,6 +891,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -888,6 +908,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -904,6 +925,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -920,6 +942,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -936,6 +959,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +976,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +993,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +1010,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1000,6 +1027,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1016,6 +1044,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1032,6 +1061,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1078,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1064,6 +1095,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1080,6 +1112,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1129,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1146,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1163,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,6 +1197,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1176,6 +1214,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1192,6 +1231,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DesiccantDehumidifierWithCompanionCoil.idf b/testfiles/DesiccantDehumidifierWithCompanionCoil.idf index 2902d4183d0..52323880f09 100644 --- a/testfiles/DesiccantDehumidifierWithCompanionCoil.idf +++ b/testfiles/DesiccantDehumidifierWithCompanionCoil.idf @@ -569,6 +569,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +586,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +603,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +620,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +637,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +654,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +671,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +688,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +705,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +739,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +756,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +773,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +790,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +807,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +841,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +858,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +875,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +892,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +909,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +926,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +943,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -937,6 +960,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +977,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +994,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +1011,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1045,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1062,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1079,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1096,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1113,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1147,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1164,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1181,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1198,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1215,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1232,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/DirectIndirectEvapCoolers.idf b/testfiles/DirectIndirectEvapCoolers.idf index 1cc691b7015..a192eb0f973 100644 --- a/testfiles/DirectIndirectEvapCoolers.idf +++ b/testfiles/DirectIndirectEvapCoolers.idf @@ -2124,6 +2124,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2155,6 +2156,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2186,6 +2188,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_other:unit_s_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2205,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2222,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_other:unit_n_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2239,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2265,6 +2271,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2296,6 +2303,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2312,6 +2320,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2328,6 +2337,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2344,6 +2354,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2359,7 +2370,8 @@ units_gr_lf_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name units_gr_lf, !- Zone or ZoneList Name - 499.4097; !- Surface Area {m2} + , !- Surface Area {m2} + 499.4097; !- Extended Field ZoneInfiltration:EffectiveLeakageArea, units_gr_lf_Infiltration,!- Name @@ -2622,6 +2634,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2653,6 +2666,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2684,6 +2698,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2700,6 +2715,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2731,6 +2747,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2764,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2781,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2798,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2810,6 +2830,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2841,6 +2862,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2872,6 +2894,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2888,6 +2911,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2903,7 +2927,8 @@ units_gr_rt_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name units_gr_rt, !- Zone or ZoneList Name - 749.1145; !- Surface Area {m2} + , !- Surface Area {m2} + 749.1145; !- Extended Field ZoneInfiltration:EffectiveLeakageArea, units_gr_rt_Infiltration,!- Name @@ -3166,6 +3191,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3197,6 +3223,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3213,6 +3240,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3229,6 +3257,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_unita:units_gr_lf, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3245,6 +3274,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3261,6 +3291,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,7 +3307,8 @@ unit_s_g_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name unit_s_g, !- Zone or ZoneList Name - 111.8807; !- Surface Area {m2} + , !- Surface Area {m2} + 111.8807; !- Extended Field ZoneInfiltration:FlowCoefficient, unit_s_g_Infiltration, !- Name @@ -3541,6 +3573,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3572,6 +3605,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3588,6 +3622,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3604,6 +3639,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_unitb:units_gr_lf, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3620,6 +3656,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3636,6 +3673,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3651,7 +3689,8 @@ unit_n_g_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name unit_n_g, !- Zone or ZoneList Name - 111.8807; !- Surface Area {m2} + , !- Surface Area {m2} + 111.8807; !- Extended Field ZoneInfiltration:FlowCoefficient, unit_n_g_Infiltration, !- Name diff --git a/testfiles/DirectIndirectEvapCoolersVSAS.idf b/testfiles/DirectIndirectEvapCoolersVSAS.idf index 466ebad1462..646a41fe77c 100644 --- a/testfiles/DirectIndirectEvapCoolersVSAS.idf +++ b/testfiles/DirectIndirectEvapCoolersVSAS.idf @@ -2701,6 +2701,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2732,6 +2733,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2763,6 +2765,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_other:unit_s_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2782,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2795,6 +2799,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_other:unit_n_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2816,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2842,6 +2848,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2873,6 +2880,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2889,6 +2897,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2905,6 +2914,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2921,6 +2931,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name units_gr_lf, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2936,7 +2947,8 @@ units_gr_lf_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name units_gr_lf, !- Zone or ZoneList Name - 499.4097; !- Surface Area {m2} + , !- Surface Area {m2} + 499.4097; !- Extended Field ZoneInfiltration:EffectiveLeakageArea, units_gr_lf_Infiltration,!- Name @@ -3199,6 +3211,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3230,6 +3243,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3261,6 +3275,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3277,6 +3292,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3308,6 +3324,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3341,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3358,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3356,6 +3375,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3387,6 +3407,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3418,6 +3439,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3449,6 +3471,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3465,6 +3488,7 @@ Wall, !- Surface Type IntWall, !- Construction Name units_gr_rt, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3480,7 +3504,8 @@ units_gr_rt_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name units_gr_rt, !- Zone or ZoneList Name - 749.1145; !- Surface Area {m2} + , !- Surface Area {m2} + 749.1145; !- Extended Field ZoneInfiltration:EffectiveLeakageArea, units_gr_rt_Infiltration,!- Name @@ -3743,6 +3768,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3774,6 +3800,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3790,6 +3817,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3806,6 +3834,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_unita:units_gr_lf, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3822,6 +3851,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3838,6 +3868,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name unit_s_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3853,7 +3884,8 @@ unit_s_g_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name unit_s_g, !- Zone or ZoneList Name - 111.8807; !- Surface Area {m2} + , !- Surface Area {m2} + 111.8807; !- Extended Field ZoneInfiltration:FlowCoefficient, unit_s_g_Infiltration, !- Name @@ -4118,6 +4150,7 @@ Wall, !- Surface Type ExtWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4149,6 +4182,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4165,6 +4199,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4181,6 +4216,7 @@ Wall, !- Surface Type IntWall, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ptn_unitb:units_gr_lf, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4197,6 +4233,7 @@ Ceiling, !- Surface Type susp_ceil, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4213,6 +4250,7 @@ Floor, !- Surface Type ExtSlab, !- Construction Name unit_n_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4228,7 +4266,8 @@ unit_n_g_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name unit_n_g, !- Zone or ZoneList Name - 111.8807; !- Surface Area {m2} + , !- Surface Area {m2} + 111.8807; !- Extended Field ZoneInfiltration:FlowCoefficient, unit_n_g_Infiltration, !- Name diff --git a/testfiles/DisplacementVent_1ZoneOffice.idf b/testfiles/DisplacementVent_1ZoneOffice.idf index 8e42359bf5f..c611502d3dd 100644 --- a/testfiles/DisplacementVent_1ZoneOffice.idf +++ b/testfiles/DisplacementVent_1ZoneOffice.idf @@ -503,6 +503,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -519,6 +520,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +537,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -551,6 +554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +571,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -583,6 +588,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name ZONE1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,31 +664,36 @@ Internal-ZONE1, !- Name Medium Furniture, !- Construction Name ZONE1, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-PER-2T, !- Name Medium Furniture, !- Construction Name ZONE1, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-PER-3T, !- Name Medium Furniture, !- Construction Name ZONE1, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-PER-4T, !- Name Medium Furniture, !- Construction Name ZONE1, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-COR-1T, !- Name Medium Furniture, !- Construction Name ZONE1, !- Zone or ZoneList Name - 390.; !- Surface Area {m2} + , !- Surface Area {m2} + 390.; !- Extended Field RoomAirModelType, DV, !- Name diff --git a/testfiles/DisplacementVent_Nat_AirflowNetwork.idf b/testfiles/DisplacementVent_Nat_AirflowNetwork.idf index 4512104a669..68250292e59 100644 --- a/testfiles/DisplacementVent_Nat_AirflowNetwork.idf +++ b/testfiles/DisplacementVent_Nat_AirflowNetwork.idf @@ -295,6 +295,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -311,6 +312,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -327,6 +329,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -343,6 +346,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -359,6 +363,7 @@ FLOOR, !- Surface Type Floor1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -375,6 +380,7 @@ CEILING, !- Surface Type Ceiling1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DisplacementVent_Nat_AirflowNetwork_AdaptiveComfort.idf b/testfiles/DisplacementVent_Nat_AirflowNetwork_AdaptiveComfort.idf index 04640083ed5..7a13e2a8ada 100644 --- a/testfiles/DisplacementVent_Nat_AirflowNetwork_AdaptiveComfort.idf +++ b/testfiles/DisplacementVent_Nat_AirflowNetwork_AdaptiveComfort.idf @@ -297,6 +297,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -313,6 +314,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -329,6 +331,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -345,6 +348,7 @@ Wall, !- Surface Type Wall1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -361,6 +365,7 @@ FLOOR, !- Surface Type Floor1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -377,6 +382,7 @@ CEILING, !- Surface Type Ceiling1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DisplacementVent_VAV.idf b/testfiles/DisplacementVent_VAV.idf index e23f8537f9b..9d9a886f278 100644 --- a/testfiles/DisplacementVent_VAV.idf +++ b/testfiles/DisplacementVent_VAV.idf @@ -280,6 +280,7 @@ Wall, !- Surface Type WALL1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -296,6 +297,7 @@ Wall, !- Surface Type WALL1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -312,6 +314,7 @@ Wall, !- Surface Type WALL1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -328,6 +331,7 @@ Wall, !- Surface Type WALL1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -344,6 +348,7 @@ FLOOR, !- Surface Type Floor1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -360,6 +365,7 @@ CEILING, !- Surface Type Ceiling1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DualDuctConstVolDamper.idf b/testfiles/DualDuctConstVolDamper.idf index a5e55cb238d..3033bd0fb82 100644 --- a/testfiles/DualDuctConstVolDamper.idf +++ b/testfiles/DualDuctConstVolDamper.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DualDuctConstVolGasHC.idf b/testfiles/DualDuctConstVolGasHC.idf index 8ef3e122195..05b2db64684 100644 --- a/testfiles/DualDuctConstVolGasHC.idf +++ b/testfiles/DualDuctConstVolGasHC.idf @@ -423,6 +423,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -439,6 +440,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -455,6 +457,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -471,6 +474,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +491,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -503,6 +508,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -519,6 +525,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +542,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +559,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +576,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -583,6 +593,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +610,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -615,6 +627,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -631,6 +644,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +661,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +695,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +712,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +729,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +746,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DualDuctVarVolDamper.idf b/testfiles/DualDuctVarVolDamper.idf index fca5c35a26e..261d3dd9f46 100644 --- a/testfiles/DualDuctVarVolDamper.idf +++ b/testfiles/DualDuctVarVolDamper.idf @@ -432,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +449,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -464,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +483,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -496,6 +500,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -512,6 +517,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -560,6 +568,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -576,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +602,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +619,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +636,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +687,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +721,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +738,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +755,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DualDuctWaterCoils.idf b/testfiles/DualDuctWaterCoils.idf index a1bc920dbc0..16990e39991 100644 --- a/testfiles/DualDuctWaterCoils.idf +++ b/testfiles/DualDuctWaterCoils.idf @@ -675,6 +675,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +709,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +743,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +760,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +777,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +862,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +879,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +981,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +998,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/DynamicClothing.idf b/testfiles/DynamicClothing.idf index dc6c681e393..19a86ac37bc 100644 --- a/testfiles/DynamicClothing.idf +++ b/testfiles/DynamicClothing.idf @@ -665,6 +665,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +682,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +699,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +716,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +733,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +750,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -761,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -777,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +801,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +818,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +835,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +852,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +869,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +920,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +954,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +971,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +988,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMPD5ZoneWaterCooled_HighRHControl.idf b/testfiles/EMPD5ZoneWaterCooled_HighRHControl.idf index c479624b3a9..14a7d3f2c24 100644 --- a/testfiles/EMPD5ZoneWaterCooled_HighRHControl.idf +++ b/testfiles/EMPD5ZoneWaterCooled_HighRHControl.idf @@ -704,6 +704,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +721,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +738,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +755,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +772,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +806,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +823,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +840,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +857,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +937,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -993,6 +1004,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1021,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1041,6 +1055,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1057,6 +1072,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1152,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1167,6 +1184,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1183,6 +1201,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1215,6 +1235,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1252,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1332,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1356,6 +1379,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1396,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1413,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1430,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1447,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1527,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,6 +1559,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1576,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1593,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1610,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1627,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1707,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1724,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1758,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1775,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1792,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/EMSAirflowNetworkOpeningControlByHumidity.idf b/testfiles/EMSAirflowNetworkOpeningControlByHumidity.idf index ea4b9309822..2e2de713b4c 100644 --- a/testfiles/EMSAirflowNetworkOpeningControlByHumidity.idf +++ b/testfiles/EMSAirflowNetworkOpeningControlByHumidity.idf @@ -606,6 +606,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -622,6 +623,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +640,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -654,6 +657,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +674,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +691,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +708,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +725,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +742,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +759,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +776,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +793,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +810,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +827,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,6 +844,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +861,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +878,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +895,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +912,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +929,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +946,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +963,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +980,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +997,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1014,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1031,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1048,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1065,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1054,6 +1082,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1099,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1116,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1133,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1150,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1167,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/EMSConstantVolumePurchasedAir.idf b/testfiles/EMSConstantVolumePurchasedAir.idf index 299d8e4fe03..8a6c09b7e37 100644 --- a/testfiles/EMSConstantVolumePurchasedAir.idf +++ b/testfiles/EMSConstantVolumePurchasedAir.idf @@ -715,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +798,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +815,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +917,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +951,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1002,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1019,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1036,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1053,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1332,21 +1352,21 @@ SET Zone_1_State = 2.0, !- Program Line 2 ELSEIF (Sensible_Load_Zone_1 > 0.0), !- SET Zone_1_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_1_State = 0.0, !- ENDIF, !- IF (Sensible_Load_Zone_2 < 0.0), !- SET Zone_2_State = 2.0, !- ELSEIF (Sensible_Load_Zone_2 > 0.0), !- SET Zone_2_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_2_State = 0.0, !- ENDIF, !- IF (Sensible_Load_Zone_3 < 0.0), !- SET Zone_3_State = 2.0, !- ELSEIF (Sensible_Load_Zone_3 > 0.0), !- SET Zone_3_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_3_State = 0.0, !- ENDIF; !- @@ -1360,7 +1380,7 @@ SET ZONE_1_AIR_Mdot = 0.1, !- SET ZONE_1_AIR_SupplyT = 50.0, !- SET ZONE_1_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_1_AIR_Mdot = 0.0, !- ENDIF, !- IF ( Zone_2_State == 2.0), !- @@ -1371,7 +1391,7 @@ SET ZONE_2_AIR_Mdot = 0.1, !- SET ZONE_2_AIR_SupplyT = 50.0, !- SET ZONE_2_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_2_AIR_Mdot = 0.0, !- ENDIF, !- IF ( Zone_3_State == 2.0), !- @@ -1382,7 +1402,7 @@ SET ZONE_3_AIR_Mdot = 0.15, !- SET ZONE_3_AIR_SupplyT = 50.0, !- SET ZONE_3_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_3_AIR_Mdot = 0.0, !- ENDIF; !- diff --git a/testfiles/EMSCurveOverride_PackagedTerminalHeatPump.idf b/testfiles/EMSCurveOverride_PackagedTerminalHeatPump.idf index bca73f641ba..ee34f1090c1 100644 --- a/testfiles/EMSCurveOverride_PackagedTerminalHeatPump.idf +++ b/testfiles/EMSCurveOverride_PackagedTerminalHeatPump.idf @@ -142,13 +142,13 @@ SET IVOnea = MyWB, !- SET IVTwo = OAT, !- SET IVThree = IVOnea*IVTwo, !- - SET C1 = 0.942567793, !- - SET C2 = 0.009543347, !- + SET C1 = 0.942567793, !- + SET C2 = 0.009543347, !- SET C2a = 0.009543347e0, !- SET C3 = 0.00068377E0, !- - SET C4 = 0.011042676, !- - SET C5 = 0.000005249, !- - SET C6 = 0.000009720, !- + SET C4 = 0.011042676, !- + SET C5 = 0.000005249, !- + SET C6 = 0.000009720, !- SET CurveInput = C1+(C2*IVOnea) + (C3*IVOnea*IVonea) - (C4*IVTwo) + (C5*IVTwo*IVTwo) - (C6*IVThree), !- SET CurveInput2 = CurveInput, !- IF OAT > 31.0, !- @@ -850,6 +850,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +867,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -882,6 +884,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +901,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +918,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +935,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +952,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +969,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +986,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -994,6 +1003,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1020,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1037,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1054,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1058,6 +1071,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1088,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1105,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1122,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1139,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1156,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1173,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSCustomOutputVariable.idf b/testfiles/EMSCustomOutputVariable.idf index 95b771c22d5..bd1e4a60613 100644 --- a/testfiles/EMSCustomOutputVariable.idf +++ b/testfiles/EMSCustomOutputVariable.idf @@ -1281,6 +1281,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1298,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1315,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1332,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1349,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1361,6 +1366,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,7 +1382,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1648,6 +1655,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1689,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1811,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1848,7 +1861,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2094,6 +2108,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2125,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2186,6 +2202,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2219,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2249,7 +2269,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2495,6 +2516,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2533,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2527,6 +2550,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2567,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2559,6 +2584,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2665,6 +2691,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2680,7 +2707,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2926,6 +2954,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2942,6 +2971,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2958,6 +2988,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2974,6 +3005,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2990,6 +3022,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3006,6 +3039,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3081,7 +3115,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3327,6 +3362,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3343,6 +3379,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3359,6 +3396,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3375,6 +3413,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3391,6 +3430,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3407,6 +3447,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3423,6 +3464,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3439,6 +3481,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3455,6 +3498,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3471,6 +3515,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3487,6 +3532,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3502,6 +3548,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3517,6 +3564,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSCustomSchedule.idf b/testfiles/EMSCustomSchedule.idf index 8bdc56b3c83..0bdd5a0961f 100644 --- a/testfiles/EMSCustomSchedule.idf +++ b/testfiles/EMSCustomSchedule.idf @@ -1365,6 +1365,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1381,6 +1382,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1397,6 +1399,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1416,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1433,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1445,6 +1450,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,7 +1466,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1732,6 +1739,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1756,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1764,6 +1773,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1885,6 +1895,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1901,6 +1912,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1917,6 +1929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,7 +1945,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2178,6 +2192,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2209,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2270,6 +2286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2286,6 +2303,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2302,6 +2320,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2318,6 +2337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2333,7 +2353,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2579,6 +2600,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2595,6 +2617,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2611,6 +2634,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2627,6 +2651,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2643,6 +2668,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2749,6 +2775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2764,7 +2791,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -3010,6 +3038,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3026,6 +3055,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3042,6 +3072,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3058,6 +3089,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3074,6 +3106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3090,6 +3123,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3165,7 +3199,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3411,6 +3446,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3427,6 +3463,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3443,6 +3480,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3459,6 +3497,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3475,6 +3514,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3491,6 +3531,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3507,6 +3548,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3523,6 +3565,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3539,6 +3582,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3555,6 +3599,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3571,6 +3616,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3586,6 +3632,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3601,6 +3648,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSDemandManager_LargeOffice.idf b/testfiles/EMSDemandManager_LargeOffice.idf index 7b304e7d9ca..4f41e3d17c6 100644 --- a/testfiles/EMSDemandManager_LargeOffice.idf +++ b/testfiles/EMSDemandManager_LargeOffice.idf @@ -1308,6 +1308,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1325,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1342,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1359,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1376,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1393,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1410,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1427,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1444,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1461,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,7 +1477,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement, !- Name @@ -1699,6 +1710,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1715,6 +1727,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1731,6 +1744,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1747,6 +1761,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1763,6 +1778,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1779,6 +1795,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1794,7 +1811,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom, !- Name @@ -2081,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2097,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2133,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2150,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2167,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2176,7 +2200,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid, !- Name @@ -2463,6 +2488,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2479,6 +2505,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2495,6 +2522,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2539,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2527,6 +2556,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2573,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2558,7 +2589,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2874,6 +2906,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2905,6 +2938,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2921,6 +2955,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2937,6 +2972,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2953,6 +2989,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2969,6 +3006,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2984,7 +3022,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3245,6 +3284,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3276,6 +3316,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3333,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3308,6 +3350,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3367,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3384,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3355,7 +3400,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3616,6 +3662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3647,6 +3694,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3663,6 +3711,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3679,6 +3728,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3695,6 +3745,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3711,6 +3762,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3726,7 +3778,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3987,6 +4040,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4018,6 +4072,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4034,6 +4089,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4050,6 +4106,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4066,6 +4123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4082,6 +4140,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4097,7 +4156,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4358,6 +4418,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4389,6 +4450,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4405,6 +4467,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4421,6 +4484,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4437,6 +4501,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4453,6 +4518,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4468,7 +4534,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4729,6 +4796,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4760,6 +4828,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4776,6 +4845,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4792,6 +4862,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4808,6 +4879,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4824,6 +4896,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4839,7 +4912,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5100,6 +5174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5116,6 +5191,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5147,6 +5223,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5163,6 +5240,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5179,6 +5257,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5195,6 +5274,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5210,7 +5290,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5471,6 +5552,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5502,6 +5584,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5518,6 +5601,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5534,6 +5618,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5550,6 +5635,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5566,6 +5652,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5581,7 +5668,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5842,6 +5930,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5873,6 +5962,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5889,6 +5979,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5905,6 +5996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5921,6 +6013,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5937,6 +6030,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5952,7 +6046,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6213,6 +6308,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6244,6 +6340,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6260,6 +6357,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6276,6 +6374,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6292,6 +6391,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6308,6 +6408,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6323,7 +6424,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6584,6 +6686,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6615,6 +6718,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6631,6 +6735,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6647,6 +6752,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6663,6 +6769,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6679,6 +6786,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6694,7 +6802,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6955,6 +7064,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6986,6 +7096,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7002,6 +7113,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7018,6 +7130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7034,6 +7147,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7050,6 +7164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7065,7 +7180,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7326,6 +7442,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7342,6 +7459,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7358,6 +7476,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7374,6 +7493,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7390,6 +7510,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7406,6 +7527,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7422,6 +7544,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7438,6 +7561,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7454,6 +7578,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7470,6 +7595,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7530,6 +7656,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7546,6 +7673,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7562,6 +7690,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7578,6 +7707,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7594,6 +7724,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7610,6 +7741,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7626,6 +7758,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7642,6 +7775,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7658,6 +7792,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7674,6 +7809,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7734,6 +7870,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7750,6 +7887,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7766,6 +7904,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7782,6 +7921,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7798,6 +7938,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7814,6 +7955,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7830,6 +7972,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7846,6 +7989,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7862,6 +8006,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7878,6 +8023,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12219,3 +12365,4 @@ Perimeter_top_ZN_4_Lights, !- Name Perimeter_top_ZN_4_Lights, !- Internal Data Index Key Name Lighting Power Design Level; !- Internal Data Type + diff --git a/testfiles/EMSDiscreteAirSystemSizes.idf b/testfiles/EMSDiscreteAirSystemSizes.idf index 4db77e6848a..9a447fa6fa8 100644 --- a/testfiles/EMSDiscreteAirSystemSizes.idf +++ b/testfiles/EMSDiscreteAirSystemSizes.idf @@ -1142,6 +1142,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1159,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1174,6 +1176,7 @@ Roof, !- Surface Type roofs, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1190,6 +1193,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1236,6 +1240,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1257,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1357,7 +1363,8 @@ LGstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, LGstore1_Infiltration, !- Name @@ -1603,6 +1610,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1627,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1680,6 +1689,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1696,6 +1706,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1712,6 +1723,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1743,6 +1755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1758,7 +1771,8 @@ SMstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore1_Infiltration, !- Name @@ -2004,6 +2018,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2020,6 +2035,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2081,6 +2097,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2097,6 +2114,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2131,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2144,6 +2163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2159,7 +2179,8 @@ SMstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore2_Infiltration, !- Name @@ -2405,6 +2426,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2421,6 +2443,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2482,6 +2505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2498,6 +2522,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2514,6 +2539,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2545,6 +2571,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2560,7 +2587,8 @@ SMstore3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore3_Infiltration, !- Name @@ -2806,6 +2834,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2851,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2883,6 +2913,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2899,6 +2930,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2915,6 +2947,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2946,6 +2979,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2961,7 +2995,8 @@ SMstore4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore4_Infiltration, !- Name @@ -3207,6 +3242,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3223,6 +3259,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3239,6 +3276,7 @@ Roof, !- Surface Type roofs, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3255,6 +3293,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3301,6 +3340,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3317,6 +3357,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3422,7 +3463,8 @@ LGstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, LGstore2_Infiltration, !- Name @@ -3668,6 +3710,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3684,6 +3727,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3745,6 +3789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3761,6 +3806,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3777,6 +3823,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3808,6 +3855,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3823,7 +3871,8 @@ SMstore5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore5_Infiltration, !- Name @@ -4069,6 +4118,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4085,6 +4135,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4146,6 +4197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4162,6 +4214,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4178,6 +4231,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4209,6 +4263,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4224,7 +4279,8 @@ SMstore6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore6_Infiltration, !- Name @@ -4470,6 +4526,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4486,6 +4543,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4547,6 +4605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4563,6 +4622,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4579,6 +4639,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4610,6 +4671,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4625,7 +4687,8 @@ SMstore7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore7_Infiltration, !- Name @@ -4871,6 +4934,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4887,6 +4951,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4948,6 +5013,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4964,6 +5030,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4980,6 +5047,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5011,6 +5079,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5026,7 +5095,8 @@ SMstore8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore8_Infiltration, !- Name diff --git a/testfiles/EMSPlantLoopOverrideControl.idf b/testfiles/EMSPlantLoopOverrideControl.idf index f91c8f18c20..abe4e3dfbc5 100644 --- a/testfiles/EMSPlantLoopOverrideControl.idf +++ b/testfiles/EMSPlantLoopOverrideControl.idf @@ -764,6 +764,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +781,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +798,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +815,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +832,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +849,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +866,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +883,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +900,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +917,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +934,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +951,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +968,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +985,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1002,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1019,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1036,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1053,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1070,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1087,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1104,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1121,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1138,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1155,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1172,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1189,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1206,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1223,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1240,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1257,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1274,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1260,6 +1291,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1308,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1325,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1342,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1359,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1340,6 +1376,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1393,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1372,6 +1410,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1427,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1444,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1461,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1436,6 +1478,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1495,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1512,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1484,6 +1529,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1546,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1563,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1532,6 +1580,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1548,6 +1597,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1564,6 +1614,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1631,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1596,6 +1648,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1665,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1628,6 +1682,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1699,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1716,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1733,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1750,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1767,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1843,61 +1903,71 @@ ZN1_S_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN1_S_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN2_E_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN2_E_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN3_N_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN3_N_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN4_W_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN4_W_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN5_Core_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN5_Core_Space_1, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field InternalMass, ZN6_S_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN6_S_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN7_E_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN7_E_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN8_N_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN8_N_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN9_W_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN9_W_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN10_Core_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN10_Core_Space_2, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/EMSPlantOperation_largeOff.idf b/testfiles/EMSPlantOperation_largeOff.idf index 91a085cb001..82b639da78c 100644 --- a/testfiles/EMSPlantOperation_largeOff.idf +++ b/testfiles/EMSPlantOperation_largeOff.idf @@ -854,6 +854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +871,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +888,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +905,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +922,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +939,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +956,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +973,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +990,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1007,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1024,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1041,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1058,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1075,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1092,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1109,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1143,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1160,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1177,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1245,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1262,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1347,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1364,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1381,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1398,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1415,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1432,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1449,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1466,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1483,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1500,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1478,6 +1517,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1534,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1551,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1568,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1585,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1602,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1574,6 +1619,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1590,6 +1636,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1606,6 +1653,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1622,6 +1670,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1687,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1704,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1721,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1755,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1718,6 +1772,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1734,6 +1789,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1750,6 +1806,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,6 +1823,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1782,6 +1840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1798,6 +1857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1891,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1908,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1942,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1894,6 +1959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1910,6 +1976,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1926,6 +1993,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +2010,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +2027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2078,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2095,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2038,6 +2112,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2054,6 +2129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2163,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2197,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2214,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2231,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2166,6 +2248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2299,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2316,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2350,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2278,6 +2367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2310,6 +2401,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2326,6 +2418,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2342,6 +2435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2374,6 +2469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2390,6 +2486,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2406,6 +2503,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2520,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2554,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2470,6 +2571,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2486,6 +2588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2502,6 +2605,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2518,6 +2622,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2534,6 +2639,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2550,6 +2656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2566,6 +2673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2582,6 +2690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2707,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2614,6 +2724,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2630,6 +2741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2646,6 +2758,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2662,6 +2775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2809,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2826,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2726,6 +2843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2758,6 +2877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2774,6 +2894,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2790,6 +2911,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2806,6 +2928,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2945,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2838,6 +2962,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2854,6 +2979,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2870,6 +2996,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2886,6 +3013,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2902,6 +3030,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2918,6 +3047,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,97 +4289,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/EMSReplaceTraditionalManagers_LargeOffice.idf b/testfiles/EMSReplaceTraditionalManagers_LargeOffice.idf index 8fd15b25892..2a26ba9f015 100644 --- a/testfiles/EMSReplaceTraditionalManagers_LargeOffice.idf +++ b/testfiles/EMSReplaceTraditionalManagers_LargeOffice.idf @@ -1298,6 +1298,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1315,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1332,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1349,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1362,6 +1366,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1378,6 +1383,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1400,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1417,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1451,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,7 +1467,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement, !- Name @@ -1689,6 +1700,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1717,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1751,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1768,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1785,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1784,7 +1801,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom, !- Name @@ -2071,6 +2089,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2087,6 +2106,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2103,6 +2123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2119,6 +2140,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2135,6 +2157,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2151,6 +2174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2166,7 +2190,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid, !- Name @@ -2453,6 +2478,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2469,6 +2495,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2485,6 +2512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2501,6 +2529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2517,6 +2546,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2533,6 +2563,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2548,7 +2579,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2864,6 +2896,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2895,6 +2928,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2911,6 +2945,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2927,6 +2962,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2943,6 +2979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2959,6 +2996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2974,7 +3012,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3235,6 +3274,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3266,6 +3306,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3282,6 +3323,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3298,6 +3340,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3314,6 +3357,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3330,6 +3374,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3345,7 +3390,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3606,6 +3652,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3637,6 +3684,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3653,6 +3701,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3669,6 +3718,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3685,6 +3735,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3701,6 +3752,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3716,7 +3768,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3977,6 +4030,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4008,6 +4062,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4024,6 +4079,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4040,6 +4096,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4056,6 +4113,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4072,6 +4130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4087,7 +4146,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4348,6 +4408,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4379,6 +4440,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4395,6 +4457,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4411,6 +4474,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4427,6 +4491,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4443,6 +4508,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4458,7 +4524,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4719,6 +4786,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4750,6 +4818,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4766,6 +4835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4782,6 +4852,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4798,6 +4869,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4814,6 +4886,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4829,7 +4902,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5090,6 +5164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5106,6 +5181,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5137,6 +5213,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5153,6 +5230,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5169,6 +5247,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5185,6 +5264,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5200,7 +5280,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5461,6 +5542,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5492,6 +5574,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5508,6 +5591,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5524,6 +5608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5540,6 +5625,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5556,6 +5642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5571,7 +5658,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5832,6 +5920,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5863,6 +5952,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5879,6 +5969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5895,6 +5986,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5911,6 +6003,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5927,6 +6020,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5942,7 +6036,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6203,6 +6298,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6234,6 +6330,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6250,6 +6347,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6266,6 +6364,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6282,6 +6381,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6298,6 +6398,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6313,7 +6414,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6574,6 +6676,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6605,6 +6708,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6621,6 +6725,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6637,6 +6742,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6653,6 +6759,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6669,6 +6776,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6684,7 +6792,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6945,6 +7054,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6976,6 +7086,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6992,6 +7103,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7008,6 +7120,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7024,6 +7137,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7040,6 +7154,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7055,7 +7170,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7316,6 +7432,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7332,6 +7449,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7348,6 +7466,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7364,6 +7483,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7380,6 +7500,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7396,6 +7517,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7412,6 +7534,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7428,6 +7551,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7444,6 +7568,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7460,6 +7585,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7520,6 +7646,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7536,6 +7663,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7552,6 +7680,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7568,6 +7697,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7584,6 +7714,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7600,6 +7731,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7616,6 +7748,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7632,6 +7765,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7648,6 +7782,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7664,6 +7799,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7724,6 +7860,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7740,6 +7877,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7756,6 +7894,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7772,6 +7911,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7788,6 +7928,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7804,6 +7945,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7820,6 +7962,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7836,6 +7979,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7852,6 +7996,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7868,6 +8013,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/EMSTestMathAndKill.idf b/testfiles/EMSTestMathAndKill.idf index 225dc547657..b76ddbabac9 100644 --- a/testfiles/EMSTestMathAndKill.idf +++ b/testfiles/EMSTestMathAndKill.idf @@ -1462,6 +1462,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1479,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1496,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1513,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1530,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1547,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,7 +1563,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1829,6 +1836,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1845,6 +1853,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1861,6 +1870,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1982,6 +1992,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1998,6 +2009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2014,6 +2026,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2029,7 +2042,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2275,6 +2289,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2291,6 +2306,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2367,6 +2383,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2383,6 +2400,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2399,6 +2417,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2415,6 +2434,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2430,7 +2450,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2676,6 +2697,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2692,6 +2714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2708,6 +2731,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2724,6 +2748,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2740,6 +2765,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2846,6 +2872,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2861,7 +2888,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -3107,6 +3135,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3123,6 +3152,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3139,6 +3169,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3155,6 +3186,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3171,6 +3203,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3187,6 +3220,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3262,7 +3296,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3508,6 +3543,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3524,6 +3560,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3540,6 +3577,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3556,6 +3594,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3572,6 +3611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3588,6 +3628,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3604,6 +3645,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3620,6 +3662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3636,6 +3679,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3652,6 +3696,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3668,6 +3713,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3683,6 +3729,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3698,6 +3745,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSThermochromicWindow.idf b/testfiles/EMSThermochromicWindow.idf index 5ad5ad7b93c..3fd6e17c557 100644 --- a/testfiles/EMSThermochromicWindow.idf +++ b/testfiles/EMSThermochromicWindow.idf @@ -1207,6 +1207,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1224,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1239,6 +1241,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1258,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1292,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,7 +1308,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1569,6 +1576,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1610,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1732,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1766,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,7 +1782,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2010,6 +2024,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2026,6 +2041,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2118,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2135,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2152,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2169,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2165,7 +2185,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2406,6 +2427,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2444,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2461,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2478,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2470,6 +2495,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2576,6 +2602,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2591,7 +2618,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2832,6 +2860,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2848,6 +2877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2864,6 +2894,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2880,6 +2911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2945,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2987,7 +3021,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3228,6 +3263,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3244,6 +3280,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3260,6 +3297,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,6 +3314,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3331,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3308,6 +3348,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3365,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3382,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3356,6 +3399,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3372,6 +3416,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3388,6 +3433,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3403,6 +3449,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3418,6 +3465,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSUserDefined5ZoneAirCooled.idf b/testfiles/EMSUserDefined5ZoneAirCooled.idf index 6a39a0749e6..4ebb0bfa8bb 100644 --- a/testfiles/EMSUserDefined5ZoneAirCooled.idf +++ b/testfiles/EMSUserDefined5ZoneAirCooled.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/EMSUserDefinedWindACAuto.idf b/testfiles/EMSUserDefinedWindACAuto.idf index 92831d9e026..7f8df296b5c 100644 --- a/testfiles/EMSUserDefinedWindACAuto.idf +++ b/testfiles/EMSUserDefinedWindACAuto.idf @@ -755,6 +755,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -786,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -802,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -818,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -834,6 +838,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -850,6 +855,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -882,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -898,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -914,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +957,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +974,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +991,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -994,6 +1008,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1010,6 +1025,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1042,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1059,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1076,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1093,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EMSWindowShadeControl.idf b/testfiles/EMSWindowShadeControl.idf index b35b63a95a1..f59b54c7cab 100644 --- a/testfiles/EMSWindowShadeControl.idf +++ b/testfiles/EMSWindowShadeControl.idf @@ -707,6 +707,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -754,6 +756,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +773,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +790,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -802,6 +807,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -818,6 +824,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -834,6 +841,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +858,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +875,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +892,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +909,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +926,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +960,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +977,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +994,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1011,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1028,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1045,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EarthTubeSimpleTest.idf b/testfiles/EarthTubeSimpleTest.idf index d21d5ead6e5..03b40a901c1 100644 --- a/testfiles/EarthTubeSimpleTest.idf +++ b/testfiles/EarthTubeSimpleTest.idf @@ -612,6 +612,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +671,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -710,6 +713,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +730,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +772,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -783,6 +789,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -824,6 +831,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -840,6 +848,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +890,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +907,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +949,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +966,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1008,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1025,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1042,6 +1057,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1064,6 +1080,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1115,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1144,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1167,6 +1186,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1183,6 +1203,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1224,6 +1245,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1240,6 +1262,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1281,6 +1304,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1297,6 +1321,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1338,6 +1363,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1354,6 +1380,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1395,6 +1422,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1411,6 +1439,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1452,6 +1481,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1468,6 +1498,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1509,6 +1540,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1525,6 +1557,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1556,6 +1589,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1578,6 +1612,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1647,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1640,6 +1676,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1681,6 +1718,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1697,6 +1735,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1738,6 +1777,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1754,6 +1794,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1795,6 +1836,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1811,6 +1853,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1852,6 +1895,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1868,6 +1912,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1909,6 +1954,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1925,6 +1971,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1966,6 +2013,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1982,6 +2030,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2023,6 +2072,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2039,6 +2089,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2070,6 +2121,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2092,6 +2144,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2179,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EcoroofOrlando.idf b/testfiles/EcoroofOrlando.idf index b6c29120248..fda6a48eefa 100644 --- a/testfiles/EcoroofOrlando.idf +++ b/testfiles/EcoroofOrlando.idf @@ -762,6 +762,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +779,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +796,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +813,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +830,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +847,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +864,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +881,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +898,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +915,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +932,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +949,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +966,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +983,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1000,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1002,6 +1017,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1034,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1051,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1068,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1085,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1102,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1119,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1114,6 +1136,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1153,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1170,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1187,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1204,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1221,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1238,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1255,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1272,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1258,6 +1289,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1306,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1323,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1340,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1357,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1338,6 +1374,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1391,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1370,6 +1408,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1425,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1442,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1459,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1476,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1493,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1510,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1527,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1544,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1561,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,6 +1578,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1595,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1612,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1629,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1646,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1663,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1680,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1697,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1714,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1731,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1748,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1765,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1841,61 +1901,71 @@ ZN1_S_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN1_S_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN2_E_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN2_E_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN3_N_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN3_N_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN4_W_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN4_W_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN5_Core_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN5_Core_Space_1, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field InternalMass, ZN6_S_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN6_S_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN7_E_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN7_E_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN8_N_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN8_N_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN9_W_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN9_W_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN10_Core_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN10_Core_Space_2, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/ElectricChiller.idf b/testfiles/ElectricChiller.idf index 15317d7b1f4..6773669b930 100644 --- a/testfiles/ElectricChiller.idf +++ b/testfiles/ElectricChiller.idf @@ -579,6 +579,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +596,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +647,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +664,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +681,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +749,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +766,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +783,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +800,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +817,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +953,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +970,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +987,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1055,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1072,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1089,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1106,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1123,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1157,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1174,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1191,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1208,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ElectricEIRChiller.idf b/testfiles/ElectricEIRChiller.idf index 470a891c7fc..cedd7289539 100644 --- a/testfiles/ElectricEIRChiller.idf +++ b/testfiles/ElectricEIRChiller.idf @@ -649,6 +649,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +681,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +698,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +715,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +732,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +749,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +766,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +783,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +800,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -808,6 +817,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +834,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +851,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -856,6 +868,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +885,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +902,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +919,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +936,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +953,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +970,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +987,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ElectricEIRChillerHeatRecoveryAuto.idf b/testfiles/ElectricEIRChillerHeatRecoveryAuto.idf index aa979c5db9c..57bf293f068 100644 --- a/testfiles/ElectricEIRChillerHeatRecoveryAuto.idf +++ b/testfiles/ElectricEIRChillerHeatRecoveryAuto.idf @@ -531,6 +531,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +565,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -579,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -595,6 +599,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +616,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +684,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +718,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +735,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +752,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +769,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +803,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +820,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +837,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +854,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ElectricEIRChiller_EvapCooledCondenser.idf b/testfiles/ElectricEIRChiller_EvapCooledCondenser.idf index 989ab54d81b..838df7c40d5 100644 --- a/testfiles/ElectricEIRChiller_EvapCooledCondenser.idf +++ b/testfiles/ElectricEIRChiller_EvapCooledCondenser.idf @@ -1,12 +1,8 @@ !-Generator IDFEditor 1.51 !-Option SortedOrder - !-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. !- Use '!' comments if they need to be retained when using the IDFEditor. - - !- =========== ALL OBJECTS IN CLASS: VERSION =========== - ! ElectricEIRChiller_EvapCooledCondenser.idf ! Basic file description: 1 story building divided into 3 interior conditioned zones. Roof with no plenum. ! No ground contact with floor. @@ -107,22 +103,23 @@ ! Environmental Emissions: None ! Utility Tariffs: None ! -Version,9.6; !- Version Identifier + Version,9.6; !- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== -SimulationControl, + SimulationControl, No, !- Do Zone Sizing Calculation No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods - + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes !- =========== ALL OBJECTS IN CLASS: BUILDING =========== -Building, + Building, NONE, !- Name 0, !- North Axis {deg} Suburbs, !- Terrain @@ -132,46 +129,36 @@ Building, 25, !- Maximum Number of Warmup Days 6; !- Minimum Number of Warmup Days - !- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE =========== -SurfaceConvectionAlgorithm:Inside, - TARP; !- Algorithm - + SurfaceConvectionAlgorithm:Inside,TARP; !- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:OUTSIDE =========== -SurfaceConvectionAlgorithm:Outside, - DOE-2; !- Algorithm - + SurfaceConvectionAlgorithm:Outside,DOE-2; !- =========== ALL OBJECTS IN CLASS: HEATBALANCEALGORITHM =========== -HeatBalanceAlgorithm, - ConductionTransferFunction; !- Algorithm - + HeatBalanceAlgorithm,ConductionTransferFunction; !- =========== ALL OBJECTS IN CLASS: TIMESTEP =========== -Timestep, - 6; !- Number of Timesteps per Hour - + Timestep,6; !- =========== ALL OBJECTS IN CLASS: SITE:LOCATION =========== - ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" -Site:Location, + + Site:Location, Chicago Ohare Intl Ap IL USA WMO=725300, !- Name 41.99, !- Latitude {deg} -87.91, !- Longitude {deg} -6.00, !- Time Zone {hr} 205.00; !- Elevation {m} - !- =========== ALL OBJECTS IN CLASS: SIZINGPERIOD:DESIGNDAY =========== - ! Chicago Ohare Intl Ap IL USA Annual Heating 99%, MaxDB=-16.6°C -SizingPeriod:DesignDay, + + SizingPeriod:DesignDay, Chicago Ohare Intl Ap Ann Htg 99% Condns DB, !- Name 1, !- Month 21, !- Day of Month @@ -200,7 +187,8 @@ SizingPeriod:DesignDay, 0.00; !- Sky Clearness ! Chicago Ohare Intl Ap IL USA Annual Cooling (DB=>MWB) 1%, MaxDB=31.6°C MWB=23°C -SizingPeriod:DesignDay, + + SizingPeriod:DesignDay, Chicago Ohare Intl Ap Ann Clg 1% Condns DB=>MWB, !- Name 7, !- Month 21, !- Day of Month @@ -228,10 +216,9 @@ SizingPeriod:DesignDay, , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} 1.00; !- Sky Clearness - !- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== -RunPeriod, + RunPeriod, Run Period 1, !- Name 1, !- Begin Month 14, !- Begin Day of Month @@ -246,7 +233,7 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators -RunPeriod, + RunPeriod, Run Period 2, !- Name 7, !- Begin Month 7, !- Begin Day of Month @@ -261,310 +248,235 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators No; !- Use Weather File Snow Indicators - !- =========== ALL OBJECTS IN CLASS: SITE:GROUNDTEMPERATURE:BUILDINGSURFACE =========== -Site:GroundTemperature:BuildingSurface, - 20.03, !- January Ground Temperature {C} - 20.03, !- February Ground Temperature {C} - 20.13, !- March Ground Temperature {C} - 20.30, !- April Ground Temperature {C} - 20.43, !- May Ground Temperature {C} - 20.52, !- June Ground Temperature {C} - 20.62, !- July Ground Temperature {C} - 20.77, !- August Ground Temperature {C} - 20.78, !- September Ground Temperature {C} - 20.55, !- October Ground Temperature {C} - 20.44, !- November Ground Temperature {C} - 20.20; !- December Ground Temperature {C} - + Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS =========== -ScheduleTypeLimits, + ScheduleTypeLimits, Any Number; !- Name -ScheduleTypeLimits, + ScheduleTypeLimits, Fraction, !- Name 0.0, !- Lower Limit Value 1.0, !- Upper Limit Value CONTINUOUS; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, Temperature, !- Name -60, !- Lower Limit Value 200, !- Upper Limit Value CONTINUOUS, !- Numeric Type Temperature; !- Unit Type -ScheduleTypeLimits, + ScheduleTypeLimits, Control Type, !- Name 0, !- Lower Limit Value 4, !- Upper Limit Value DISCRETE; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, On/Off, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value DISCRETE; !- Numeric Type - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== -Schedule:Compact, + Schedule:Compact, Activity Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 131.8; !- Field 4 + Until: 24:00,131.8; !- Field 3 -Schedule:Compact, + Schedule:Compact, Work Eff Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 0.0; !- Field 4 + Until: 24:00,0.0; !- Field 3 -Schedule:Compact, + Schedule:Compact, Clothing Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 1.0; !- Field 4 + Until: 24:00,1.0; !- Field 3 -Schedule:Compact, + Schedule:Compact, Air Velo Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 0.137; !- Field 4 + Until: 24:00,0.137; !- Field 3 -Schedule:Compact, + Schedule:Compact, OFFICE OCCUPANCY, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 - For: WeekDays SummerDesignDay, !- Field 2 - Until: 6:00, !- Field 3 - 0.0, !- Field 4 - Until: 7:00, !- Field 5 - 0.10, !- Field 6 - Until: 8:00, !- Field 7 - 0.50, !- Field 8 - Until: 12:00, !- Field 9 - 1.00, !- Field 10 - Until: 13:00, !- Field 11 - 0.50, !- Field 12 - Until: 16:00, !- Field 13 - 1.00, !- Field 14 - Until: 17:00, !- Field 15 - 0.50, !- Field 16 - Until: 18:00, !- Field 17 - 0.10, !- Field 18 - Until: 24:00, !- Field 19 - 0.0, !- Field 20 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 7:00,0.10, !- Field 5 + Until: 8:00,0.50, !- Field 7 + Until: 12:00,1.00, !- Field 9 + Until: 13:00,0.50, !- Field 11 + Until: 16:00,1.00, !- Field 13 + Until: 17:00,0.50, !- Field 15 + Until: 18:00,0.10, !- Field 17 + Until: 24:00,0.0, !- Field 19 For: AllOtherDays, !- Field 21 - Until: 24:00, !- Field 22 - 0.0; !- Field 23 + Until: 24:00,0.0; !- Field 22 -Schedule:Compact, + Schedule:Compact, INTERMITTENT, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 - For: WeekDays SummerDesignDay, !- Field 2 - Until: 8:00, !- Field 3 - 0.0, !- Field 4 - Until: 18:00, !- Field 5 - 1.00, !- Field 6 - Until: 24:00, !- Field 7 - 0.0, !- Field 8 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 8:00,0.0, !- Field 3 + Until: 18:00,1.00, !- Field 5 + Until: 24:00,0.0, !- Field 7 For: AllOtherDays, !- Field 9 - Until: 24:00, !- Field 10 - 0.0; !- Field 11 + Until: 24:00,0.0; !- Field 10 -Schedule:Compact, + Schedule:Compact, OFFICE LIGHTING, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 - For: WeekDays SummerDesignDay, !- Field 2 - Until: 6:00, !- Field 3 - 0.05, !- Field 4 - Until: 7:00, !- Field 5 - 0.20, !- Field 6 - Until: 17:00, !- Field 7 - 1.00, !- Field 8 - Until: 18:00, !- Field 9 - 0.50, !- Field 10 - Until: 24:00, !- Field 11 - 0.05, !- Field 12 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 6:00,0.05, !- Field 3 + Until: 7:00,0.20, !- Field 5 + Until: 17:00,1.00, !- Field 7 + Until: 18:00,0.50, !- Field 9 + Until: 24:00,0.05, !- Field 11 For: AllOtherDays, !- Field 13 - Until: 24:00, !- Field 14 - 0.05; !- Field 15 + Until: 24:00,0.05; !- Field 14 -Schedule:Compact, + Schedule:Compact, On Peak, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 9:00, !- Field 3 - 0.0, !- Field 4 - Until: 18:00, !- Field 5 - 1.0, !- Field 6 - Until: 24:00, !- Field 7 - 0.0; !- Field 8 - -Schedule:Compact, + Until: 9:00,0.0, !- Field 3 + Until: 18:00,1.0, !- Field 5 + Until: 24:00,0.0; !- Field 7 + + Schedule:Compact, Off Peak, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 9:00, !- Field 3 - 1.0, !- Field 4 - Until: 18:00, !- Field 5 - 0.0, !- Field 6 - Until: 24:00, !- Field 7 - 1.0; !- Field 8 - -Schedule:Compact, + Until: 9:00,1.0, !- Field 3 + Until: 18:00,0.0, !- Field 5 + Until: 24:00,1.0; !- Field 7 + + Schedule:Compact, ON, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 1.0; !- Field 4 + Until: 24:00,1.0; !- Field 3 -Schedule:Compact, + Schedule:Compact, Seasonal Reset Supply Air Temp Sch, !- Name Temperature, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 16.0, !- Field 4 + Until: 24:00,16.0, !- Field 3 Through: 9/30, !- Field 5 For: AllDays, !- Field 6 - Until: 24:00, !- Field 7 - 13.0, !- Field 8 + Until: 24:00,13.0, !- Field 7 Through: 12/31, !- Field 9 For: AllDays, !- Field 10 - Until: 24:00, !- Field 11 - 16.0; !- Field 12 + Until: 24:00,16.0; !- Field 11 -Schedule:Compact, + Schedule:Compact, CW Loop Temp Schedule, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 6.67; !- Field 4 + Until: 24:00,6.67; !- Field 3 -Schedule:Compact, + Schedule:Compact, HW Loop Temp Schedule, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 60; !- Field 4 + Until: 24:00,60; !- Field 3 -Schedule:Compact, + Schedule:Compact, FanAndCoilAvailSched, !- Name Fraction, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 1.0, !- Field 4 + Until: 24:00,1.0, !- Field 3 Through: 9/30, !- Field 5 - For: WeekDays SummerDesignDay, !- Field 6 - Until: 7:00, !- Field 7 - 0.0, !- Field 8 - Until: 17:00, !- Field 9 - 1.0, !- Field 10 - Until: 24:00, !- Field 11 - 0.0, !- Field 12 + For: WeekDays SummerDesignDay, !- Field 6 + Until: 7:00,0.0, !- Field 7 + Until: 17:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 For: WinterDesignDay, !- Field 13 - Until: 24:00, !- Field 14 - 0.0, !- Field 15 + Until: 24:00,0.0, !- Field 14 For: AllOtherDays, !- Field 16 - Until: 24:00, !- Field 17 - 0.0, !- Field 18 + Until: 24:00,0.0, !- Field 17 Through: 12/31, !- Field 19 For: AllDays, !- Field 20 - Until: 24:00, !- Field 21 - 1.0; !- Field 22 + Until: 24:00,1.0; !- Field 21 -Schedule:Compact, + Schedule:Compact, CoolingCoilAvailSched, !- Name Fraction, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 0.0, !- Field 4 + Until: 24:00,0.0, !- Field 3 Through: 9/30, !- Field 5 - For: WeekDays SummerDesignDay, !- Field 6 - Until: 7:00, !- Field 7 - 0.0, !- Field 8 - Until: 17:00, !- Field 9 - 1.0, !- Field 10 - Until: 24:00, !- Field 11 - 0.0, !- Field 12 + For: WeekDays SummerDesignDay, !- Field 6 + Until: 7:00,0.0, !- Field 7 + Until: 17:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 For: WinterDesignDay, !- Field 13 - Until: 24:00, !- Field 14 - 0.0, !- Field 15 + Until: 24:00,0.0, !- Field 14 For: AllOtherDays, !- Field 16 - Until: 24:00, !- Field 17 - 0.0, !- Field 18 + Until: 24:00,0.0, !- Field 17 Through: 12/31, !- Field 19 For: AllDays, !- Field 20 - Until: 24:00, !- Field 21 - 0.0; !- Field 22 + Until: 24:00,0.0; !- Field 21 -Schedule:Compact, + Schedule:Compact, Heating Setpoints, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 7:00, !- Field 3 - 15.0, !- Field 4 - Until: 17:00, !- Field 5 - 20.0, !- Field 6 - Until: 24:00, !- Field 7 - 15.0; !- Field 8 - -Schedule:Compact, + Until: 7:00,15.0, !- Field 3 + Until: 17:00,20.0, !- Field 5 + Until: 24:00,15.0; !- Field 7 + + Schedule:Compact, Cooling Setpoints, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 7:00, !- Field 3 - 30.0, !- Field 4 - Until: 17:00, !- Field 5 - 24.0, !- Field 6 - Until: 24:00, !- Field 7 - 30.0; !- Field 8 - -Schedule:Compact, + Until: 7:00,30.0, !- Field 3 + Until: 17:00,24.0, !- Field 5 + Until: 24:00,30.0; !- Field 7 + + Schedule:Compact, Zone Control Type Sched, !- Name Control Type, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, !- Field 3 - 1, !- Field 4 + Until: 24:00,1, !- Field 3 Through: 9/30, !- Field 5 For: AllDays, !- Field 6 - Until: 24:00, !- Field 7 - 2, !- Field 8 + Until: 24:00,2, !- Field 7 Through: 12/31, !- Field 9 For: AllDays, !- Field 10 - Until: 24:00, !- Field 11 - 1; !- Field 12 - + Until: 24:00,1; !- Field 11 !- =========== ALL OBJECTS IN CLASS: MATERIAL =========== -Material, + Material, A1 - 1 IN STUCCO, !- Name Smooth, !- Roughness 2.5389841E-02, !- Thickness {m} @@ -575,7 +487,7 @@ Material, 0.9200000, !- Solar Absorptance 0.9200000; !- Visible Absorptance -Material, + Material, C4 - 4 IN COMMON BRICK, !- Name Rough, !- Roughness 0.1014984, !- Thickness {m} @@ -586,7 +498,7 @@ Material, 0.7600000, !- Solar Absorptance 0.7600000; !- Visible Absorptance -Material, + Material, E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Name Smooth, !- Roughness 1.9050000E-02, !- Thickness {m} @@ -597,7 +509,7 @@ Material, 0.9200000, !- Solar Absorptance 0.9200000; !- Visible Absorptance -Material, + Material, C6 - 8 IN CLAY TILE, !- Name Smooth, !- Roughness 0.2033016, !- Thickness {m} @@ -608,7 +520,7 @@ Material, 0.8200000, !- Solar Absorptance 0.8200000; !- Visible Absorptance -Material, + Material, C10 - 8 IN HW CONCRETE, !- Name MediumRough, !- Roughness 0.2033016, !- Thickness {m} @@ -619,7 +531,7 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance -Material, + Material, E2 - 1 / 2 IN SLAG OR STONE, !- Name Rough, !- Roughness 1.2710161E-02, !- Thickness {m} @@ -630,7 +542,7 @@ Material, 0.5500000, !- Solar Absorptance 0.5500000; !- Visible Absorptance -Material, + Material, E3 - 3 / 8 IN FELT AND MEMBRANE, !- Name Rough, !- Roughness 9.5402403E-03, !- Thickness {m} @@ -641,7 +553,7 @@ Material, 0.7500000, !- Solar Absorptance 0.7500000; !- Visible Absorptance -Material, + Material, B5 - 1 IN DENSE INSULATION, !- Name VeryRough, !- Roughness 2.5389841E-02, !- Thickness {m} @@ -652,7 +564,7 @@ Material, 0.5000000, !- Solar Absorptance 0.5000000; !- Visible Absorptance -Material, + Material, C12 - 2 IN HW CONCRETE, !- Name MediumRough, !- Roughness 5.0901599E-02, !- Thickness {m} @@ -663,10 +575,9 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:GLAZING =========== -WindowMaterial:Glazing, + WindowMaterial:Glazing, WIN-LAY-GLASS-LIGHT, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -682,49 +593,46 @@ WindowMaterial:Glazing, 0.84, !- Back Side Infrared Hemispherical Emissivity 0.9; !- Conductivity {W/m-K} - !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== -Construction, + Construction, EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 -Construction, + Construction, PARTITION06, !- Name E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Outside Layer C6 - 8 IN CLAY TILE, !- Layer 2 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 -Construction, + Construction, FLOOR SLAB 8 IN, !- Name C10 - 8 IN HW CONCRETE; !- Outside Layer -Construction, + Construction, ROOF34, !- Name E2 - 1 / 2 IN SLAG OR STONE, !- Outside Layer E3 - 3 / 8 IN FELT AND MEMBRANE, !- Layer 2 B5 - 1 IN DENSE INSULATION, !- Layer 3 C12 - 2 IN HW CONCRETE; !- Layer 4 -Construction, + Construction, WIN-CON-LIGHT, !- Name WIN-LAY-GLASS-LIGHT; !- Outside Layer - !- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES =========== -GlobalGeometryRules, + GlobalGeometryRules, UpperLeftCorner, !- Starting Vertex Position CounterClockWise, !- Vertex Entry Direction World; !- Coordinate System - !- =========== ALL OBJECTS IN CLASS: ZONE =========== - ! original zone origin (0,0,0) -Zone, + + Zone, West Zone, !- Name 0, !- Direction of Relative North {deg} 0, !- X Origin {m} @@ -736,7 +644,8 @@ Zone, autocalculate; !- Volume {m3} ! original zone origin (6.096,0,0) -Zone, + + Zone, EAST ZONE, !- Name 0, !- Direction of Relative North {deg} 0, !- X Origin {m} @@ -748,7 +657,8 @@ Zone, autocalculate; !- Volume {m3} ! original zone origin (0,6.096,0) -Zone, + + Zone, NORTH ZONE, !- Name 0, !- Direction of Relative North {deg} 0, !- X Origin {m} @@ -759,493 +669,351 @@ Zone, autocalculate, !- Ceiling Height {m} autocalculate; !- Volume {m3} - !- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED =========== -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn001:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 0, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 0, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,0,0, !- X,Y,Z ==> Vertex 3 {m} + 0,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn001:Wall003, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 0, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 0, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn001:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn001:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 0, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 0; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,0,0, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn001:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 3.048000, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 3.048000, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,0,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 12.19200, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 12.19200, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 9.144000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 9.144000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 12.19200,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 12.19200, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 12.19200, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,0,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Wall003, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 12.19200, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 12.19200, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 12.19200, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 12.19200, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 12.19200,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 12.19200,0,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Wall005, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 9.144000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 0, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 12.19200, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 12.19200, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 0; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,0,0, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,0,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn002:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 3.048000, !- Vertex 2 Z-coordinate {m} - 12.19200, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 3.048000, !- Vertex 3 Z-coordinate {m} - 12.19200, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,0,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 12.19200, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 12.19200, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 0, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 0, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, !- Vertex 1 X-coordinate {m} - 12.19200, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 9.144000, !- Vertex 2 X-coordinate {m} - 12.19200, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 0, !- Vertex 3 X-coordinate {m} - 12.19200, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 0, !- Vertex 4 X-coordinate {m} - 12.19200, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 9.144000,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 0,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Wall003, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 9.144000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 9.144000, !- Vertex 3 X-coordinate {m} - 12.19200, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 9.144000, !- Vertex 4 X-coordinate {m} - 12.19200, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 6.096000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 6.096000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Wall005, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 6.096000, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 9.144000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 9.144000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 6.096000, !- Vertex 1 Y-coordinate {m} - 0, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 12.19200, !- Vertex 2 Y-coordinate {m} - 0, !- Vertex 2 Z-coordinate {m} - 9.144000, !- Vertex 3 X-coordinate {m} - 12.19200, !- Vertex 3 Y-coordinate {m} - 0, !- Vertex 3 Z-coordinate {m} - 9.144000, !- Vertex 4 X-coordinate {m} - 6.096000, !- Vertex 4 Y-coordinate {m} - 0; !- Vertex 4 Z-coordinate {m} - -BuildingSurface:Detailed, + 0,6.096000,0, !- X,Y,Z ==> Vertex 1 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, Zn003:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 0, !- Vertex 1 X-coordinate {m} - 12.19200, !- Vertex 1 Y-coordinate {m} - 3.048000, !- Vertex 1 Z-coordinate {m} - 0, !- Vertex 2 X-coordinate {m} - 6.096000, !- Vertex 2 Y-coordinate {m} - 3.048000, !- Vertex 2 Z-coordinate {m} - 9.144000, !- Vertex 3 X-coordinate {m} - 6.096000, !- Vertex 3 Y-coordinate {m} - 3.048000, !- Vertex 3 Z-coordinate {m} - 9.144000, !- Vertex 4 X-coordinate {m} - 12.19200, !- Vertex 4 Y-coordinate {m} - 3.048000; !- Vertex 4 Z-coordinate {m} - + 0,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} !- =========== ALL OBJECTS IN CLASS: FENESTRATIONSURFACE:DETAILED =========== -FenestrationSurface:Detailed, + FenestrationSurface:Detailed, Zn001:Wall001:Win001, !- Name Window, !- Surface Type WIN-CON-LIGHT, !- Construction Name @@ -1255,23 +1023,14 @@ FenestrationSurface:Detailed, , !- Frame and Divider Name 1.0, !- Multiplier 4, !- Number of Vertices - 0.548000, !- Vertex 1 X-coordinate {m} - 0, !- Vertex 1 Y-coordinate {m} - 2.5000, !- Vertex 1 Z-coordinate {m} - 0.548000, !- Vertex 2 X-coordinate {m} - 0, !- Vertex 2 Y-coordinate {m} - 0.5000, !- Vertex 2 Z-coordinate {m} - 5.548000, !- Vertex 3 X-coordinate {m} - 0, !- Vertex 3 Y-coordinate {m} - 0.5000, !- Vertex 3 Z-coordinate {m} - 5.548000, !- Vertex 4 X-coordinate {m} - 0, !- Vertex 4 Y-coordinate {m} - 2.5000; !- Vertex 4 Z-coordinate {m} - + 0.548000,0,2.5000, !- X,Y,Z ==> Vertex 1 {m} + 0.548000,0,0.5000, !- X,Y,Z ==> Vertex 2 {m} + 5.548000,0,0.5000, !- X,Y,Z ==> Vertex 3 {m} + 5.548000,0,2.5000; !- X,Y,Z ==> Vertex 4 {m} !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== -People, + People, West Zone, !- Name West Zone, !- Zone or ZoneList Name OFFICE OCCUPANCY, !- Number of People Schedule Name @@ -1293,7 +1052,7 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type -People, + People, EAST ZONE, !- Name EAST ZONE, !- Zone or ZoneList Name OFFICE OCCUPANCY, !- Number of People Schedule Name @@ -1315,7 +1074,7 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type -People, + People, NORTH ZONE, !- Name NORTH ZONE, !- Zone or ZoneList Name OFFICE OCCUPANCY, !- Number of People Schedule Name @@ -1337,10 +1096,9 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type - !- =========== ALL OBJECTS IN CLASS: LIGHTS =========== -Lights, + Lights, EAST ZONE Lights 1, !- Name EAST ZONE, !- Zone or ZoneList Name OFFICE LIGHTING, !- Schedule Name @@ -1354,7 +1112,7 @@ Lights, 0, !- Fraction Replaceable GeneralLights; !- End-Use Subcategory -Lights, + Lights, NORTH ZONE Lights 1, !- Name NORTH ZONE, !- Zone or ZoneList Name OFFICE LIGHTING, !- Schedule Name @@ -1368,10 +1126,9 @@ Lights, 0, !- Fraction Replaceable GeneralLights; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== -ElectricEquipment, + ElectricEquipment, West Zone ElecEq 1, !- Name West Zone, !- Zone or ZoneList Name INTERMITTENT, !- Schedule Name @@ -1383,7 +1140,7 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost -ElectricEquipment, + ElectricEquipment, EAST ZONE ElecEq 1, !- Name EAST ZONE, !- Zone or ZoneList Name INTERMITTENT, !- Schedule Name @@ -1395,7 +1152,7 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost -ElectricEquipment, + ElectricEquipment, NORTH ZONE ElecEq 1, !- Name NORTH ZONE, !- Zone or ZoneList Name INTERMITTENT, !- Schedule Name @@ -1407,10 +1164,9 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost - !- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 1 Thermostat, !- Name West Zone, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1419,7 +1175,7 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 2 Thermostat, !- Name EAST ZONE, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1428,7 +1184,7 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 3 Thermostat, !- Name NORTH ZONE, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1437,24 +1193,21 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name - !- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLEHEATING =========== -ThermostatSetpoint:SingleHeating, + ThermostatSetpoint:SingleHeating, Heating Setpoint with SB,!- Name Heating Setpoints; !- Setpoint Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:SINGLECOOLING =========== -ThermostatSetpoint:SingleCooling, + ThermostatSetpoint:SingleCooling, Cooling Setpoint with SB,!- Name Cooling Setpoints; !- Setpoint Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:CONSTANTVOLUME:REHEAT =========== -AirTerminal:SingleDuct:ConstantVolume:Reheat, + AirTerminal:SingleDuct:ConstantVolume:Reheat, Reheat Zone 1, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone 1 Reheat Air Outlet Node, !- Air Outlet Node Name @@ -1466,7 +1219,7 @@ AirTerminal:SingleDuct:ConstantVolume:Reheat, 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} 0.001; !- Convergence Tolerance -AirTerminal:SingleDuct:ConstantVolume:Reheat, + AirTerminal:SingleDuct:ConstantVolume:Reheat, Reheat Zone 2, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone 2 Reheat Air Outlet Node, !- Air Outlet Node Name @@ -1478,7 +1231,7 @@ AirTerminal:SingleDuct:ConstantVolume:Reheat, 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} 0.001; !- Convergence Tolerance -AirTerminal:SingleDuct:ConstantVolume:Reheat, + AirTerminal:SingleDuct:ConstantVolume:Reheat, Reheat Zone 3, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone 3 Reheat Air Outlet Node, !- Air Outlet Node Name @@ -1490,31 +1243,29 @@ AirTerminal:SingleDuct:ConstantVolume:Reheat, 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} 0.001; !- Convergence Tolerance - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:AIRDISTRIBUTIONUNIT =========== -ZoneHVAC:AirDistributionUnit, + ZoneHVAC:AirDistributionUnit, Zone1TermReheat, !- Name Zone 1 Reheat Air Outlet Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:ConstantVolume:Reheat, !- Air Terminal Object Type Reheat Zone 1; !- Air Terminal Name -ZoneHVAC:AirDistributionUnit, + ZoneHVAC:AirDistributionUnit, Zone2TermReheat, !- Name Zone 2 Reheat Air Outlet Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:ConstantVolume:Reheat, !- Air Terminal Object Type Reheat Zone 2; !- Air Terminal Name -ZoneHVAC:AirDistributionUnit, + ZoneHVAC:AirDistributionUnit, Zone3TermReheat, !- Name Zone 3 Reheat Air Outlet Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:ConstantVolume:Reheat, !- Air Terminal Object Type Reheat Zone 3; !- Air Terminal Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone1Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type @@ -1524,7 +1275,7 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone2Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type @@ -1534,7 +1285,7 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone3Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type @@ -1544,10 +1295,9 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS =========== -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, West Zone, !- Zone Name Zone1Equipment, !- Zone Conditioning Equipment List Name Zone1Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1555,7 +1305,7 @@ ZoneHVAC:EquipmentConnections, Zone 1 Node, !- Zone Air Node Name Zone 1 Outlet Node; !- Zone Return Air Node or NodeList Name -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, EAST ZONE, !- Zone Name Zone2Equipment, !- Zone Conditioning Equipment List Name Zone2Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1563,7 +1313,7 @@ ZoneHVAC:EquipmentConnections, Zone 2 Node, !- Zone Air Node Name Zone 2 Outlet Node; !- Zone Return Air Node or NodeList Name -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, NORTH ZONE, !- Zone Name Zone3Equipment, !- Zone Conditioning Equipment List Name Zone3Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1571,10 +1321,9 @@ ZoneHVAC:EquipmentConnections, Zone 3 Node, !- Zone Air Node Name Zone 3 Outlet Node; !- Zone Return Air Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: FAN:CONSTANTVOLUME =========== -Fan:ConstantVolume, + Fan:ConstantVolume, Supply Fan 1, !- Name FanAndCoilAvailSched, !- Availability Schedule Name 0.7, !- Fan Total Efficiency @@ -1585,10 +1334,9 @@ Fan:ConstantVolume, Air Loop Inlet Node, !- Air Inlet Node Name Cooling Coil Air Inlet Node; !- Air Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATER:DETAILEDGEOMETRY =========== -Coil:Cooling:Water:DetailedGeometry, + Coil:Cooling:Water:DetailedGeometry, Detailed Cooling Coil, !- Name CoolingCoilAvailSched, !- Availability Schedule Name 0.0011, !- Maximum Water Flow Rate {m3/s} @@ -1612,10 +1360,9 @@ Coil:Cooling:Water:DetailedGeometry, Cooling Coil Air Inlet Node, !- Air Inlet Node Name Air Loop Outlet Node; !- Air Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATER =========== -Coil:Heating:Water, + Coil:Heating:Water, Reheat Coil Zone 1, !- Name FanAndCoilAvailSched, !- Availability Schedule Name 400.0, !- U-Factor Times Area Value {W/K} @@ -1632,7 +1379,7 @@ Coil:Heating:Water, 32.2, !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -Coil:Heating:Water, + Coil:Heating:Water, Reheat Coil Zone 2, !- Name FanAndCoilAvailSched, !- Availability Schedule Name 400.0, !- U-Factor Times Area Value {W/K} @@ -1649,7 +1396,7 @@ Coil:Heating:Water, 32.2, !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -Coil:Heating:Water, + Coil:Heating:Water, Reheat Coil Zone 3, !- Name FanAndCoilAvailSched, !- Availability Schedule Name 400.0, !- U-Factor Times Area Value {W/K} @@ -1666,10 +1413,9 @@ Coil:Heating:Water, 32.2, !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection - !- =========== ALL OBJECTS IN CLASS: CONTROLLER:WATERCOIL =========== -Controller:WaterCoil, + Controller:WaterCoil, Main Cooling Coil Controller, !- Name Temperature, !- Control Variable Reverse, !- Action @@ -1680,18 +1426,16 @@ Controller:WaterCoil, 0.0011, !- Maximum Actuated Flow {m3/s} 0.0; !- Minimum Actuated Flow {m3/s} - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST =========== -AirLoopHVAC:ControllerList, + AirLoopHVAC:ControllerList, Reheat System 1 Controllers, !- Name Controller:WaterCoil, !- Controller 1 Object Type Main Cooling Coil Controller; !- Controller 1 Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== -AirLoopHVAC, + AirLoopHVAC, Typical Terminal Reheat 1, !- Name Reheat System 1 Controllers, !- Controller List Name Reheat System 1 Avail List, !- Availability Manager List Name @@ -1703,48 +1447,43 @@ AirLoopHVAC, Zone Equipment Inlet Node, !- Demand Side Inlet Node Names Air Loop Outlet Node; !- Supply Side Outlet Node Names - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== -AirLoopHVAC:ZoneSplitter, + AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter,!- Name Zone Equipment Inlet Node, !- Inlet Node Name Zone 1 Reheat Air Inlet Node, !- Outlet 1 Node Name Zone 2 Reheat Air Inlet Node, !- Outlet 2 Node Name Zone 3 Reheat Air Inlet Node; !- Outlet 3 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== -AirLoopHVAC:SupplyPath, + AirLoopHVAC:SupplyPath, TermReheatSupplyPath, !- Name Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type Zone Supply Air Splitter;!- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== -AirLoopHVAC:ZoneMixer, + AirLoopHVAC:ZoneMixer, Zone Return Air Mixer, !- Name Return Air Mixer Outlet, !- Outlet Node Name Zone 1 Outlet Node, !- Inlet 1 Node Name Zone 2 Outlet Node, !- Inlet 2 Node Name Zone 3 Outlet Node; !- Inlet 3 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== -AirLoopHVAC:ReturnPath, + AirLoopHVAC:ReturnPath, TermReheatReturnPath, !- Name Return Air Mixer Outlet, !- Return Air Path Outlet Node Name AirLoopHVAC:ZoneMixer, !- Component 1 Object Type Zone Return Air Mixer; !- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: BRANCH =========== -Branch, + Branch, Air Loop Main Branch, !- Name , !- Pressure Drop Curve Name Fan:ConstantVolume, !- Component 1 Object Type @@ -1756,7 +1495,7 @@ Branch, Cooling Coil Air Inlet Node, !- Component 2 Inlet Node Name Air Loop Outlet Node; !- Component 2 Outlet Node Name -Branch, + Branch, Cooling Demand Inlet, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1764,7 +1503,7 @@ Branch, CW Demand Inlet Node, !- Component 1 Inlet Node Name CW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Cooling Coil Branch, !- Name , !- Pressure Drop Curve Name Coil:Cooling:Water:DetailedGeometry, !- Component 1 Object Type @@ -1772,7 +1511,7 @@ Branch, Cooling Coil Water Inlet Node, !- Component 1 Inlet Node Name Cooling Coil Water Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Demand Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1780,7 +1519,7 @@ Branch, CW Demand Bypass Inlet Node, !- Component 1 Inlet Node Name CW Demand Bypass Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Cooling Demand Outlet, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1788,7 +1527,7 @@ Branch, CW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name CW Demand Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Cooling Supply Outlet, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1796,7 +1535,7 @@ Branch, Supply Side Exit Pipe Inlet Node, !- Component 1 Inlet Node Name CW Supply Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, CW Pump Branch, !- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -1804,7 +1543,7 @@ Branch, CW Supply Inlet Node, !- Component 1 Inlet Node Name CW Pump Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Little Chiller Branch, !- Name , !- Pressure Drop Curve Name Chiller:ConstantCOP, !- Component 1 Object Type @@ -1812,7 +1551,7 @@ Branch, Little Chiller Inlet Node, !- Component 1 Inlet Node Name Little Chiller Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Big Chiller Branch, !- Name , !- Pressure Drop Curve Name Chiller:Electric:EIR, !- Component 1 Object Type @@ -1820,7 +1559,7 @@ Branch, Big Chiller Inlet Node, !- Component 1 Inlet Node Name Big Chiller Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Purchased Cooling Branch,!- Name , !- Pressure Drop Curve Name DistrictCooling, !- Component 1 Object Type @@ -1828,7 +1567,7 @@ Branch, Purchased Cooling Inlet Node, !- Component 1 Inlet Node Name Purchased Cooling Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Supply Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1836,7 +1575,7 @@ Branch, CW Supply Bypass Inlet Node, !- Component 1 Inlet Node Name CW Supply Bypass Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Supply Inlet Branch, !- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -1844,7 +1583,7 @@ Branch, HW Supply Inlet Node, !- Component 1 Inlet Node Name HW Pump Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Purchased Hot Water Branch, !- Name , !- Pressure Drop Curve Name DistrictHeating, !- Component 1 Object Type @@ -1852,7 +1591,7 @@ Branch, Purchased Heat Inlet Node, !- Component 1 Inlet Node Name Purchased Heat Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Supply Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1860,7 +1599,7 @@ Branch, Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Supply Outlet Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1868,7 +1607,7 @@ Branch, Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name HW Supply Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Reheat Inlet Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1876,7 +1615,7 @@ Branch, HW Demand Inlet Node, !- Component 1 Inlet Node Name HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Reheat Outlet Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1884,7 +1623,7 @@ Branch, HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name HW Demand Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Zone 1 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type @@ -1892,7 +1631,7 @@ Branch, Zone 1 Reheat Water Inlet Node, !- Component 1 Inlet Node Name Zone 1 Reheat Water Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Zone 2 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type @@ -1900,7 +1639,7 @@ Branch, Zone 2 Reheat Water Inlet Node, !- Component 1 Inlet Node Name Zone 2 Reheat Water Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Zone 3 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type @@ -1908,7 +1647,7 @@ Branch, Zone 3 Reheat Water Inlet Node, !- Component 1 Inlet Node Name Zone 3 Reheat Water Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Reheat Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1916,14 +1655,13 @@ Branch, Reheat Bypass Inlet Node,!- Component 1 Inlet Node Name Reheat Bypass Outlet Node; !- Component 1 Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== -BranchList, + BranchList, Air Loop Branches, !- Name Air Loop Main Branch; !- Branch 1 Name -BranchList, + BranchList, Cooling Supply Side Branches, !- Name CW Pump Branch, !- Branch 1 Name Little Chiller Branch, !- Branch 2 Name @@ -1932,21 +1670,21 @@ BranchList, Supply Bypass Branch, !- Branch 5 Name Cooling Supply Outlet; !- Branch 6 Name -BranchList, + BranchList, Cooling Demand Side Branches, !- Name Cooling Demand Inlet, !- Branch 1 Name Cooling Coil Branch, !- Branch 2 Name Demand Bypass Branch, !- Branch 3 Name Cooling Demand Outlet; !- Branch 4 Name -BranchList, + BranchList, Heating Supply Side Branches, !- Name Heating Supply Inlet Branch, !- Branch 1 Name Heating Purchased Hot Water Branch, !- Branch 2 Name Heating Supply Bypass Branch, !- Branch 3 Name Heating Supply Outlet Branch; !- Branch 4 Name -BranchList, + BranchList, Heating Demand Side Branches, !- Name Reheat Inlet Branch, !- Branch 1 Name Zone 1 Reheat Branch, !- Branch 2 Name @@ -1955,10 +1693,9 @@ BranchList, Reheat Bypass Branch, !- Branch 5 Name Reheat Outlet Branch; !- Branch 6 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== -Connector:Splitter, + Connector:Splitter, CW Loop Splitter, !- Name CW Pump Branch, !- Inlet Branch Name Little Chiller Branch, !- Outlet Branch 1 Name @@ -1966,13 +1703,13 @@ Connector:Splitter, Purchased Cooling Branch,!- Outlet Branch 3 Name Supply Bypass Branch; !- Outlet Branch 4 Name -Connector:Splitter, + Connector:Splitter, CW Demand Splitter, !- Name Cooling Demand Inlet, !- Inlet Branch Name Demand Bypass Branch, !- Outlet Branch 1 Name Cooling Coil Branch; !- Outlet Branch 2 Name -Connector:Splitter, + Connector:Splitter, Reheat Splitter, !- Name Reheat Inlet Branch, !- Inlet Branch Name Zone 1 Reheat Branch, !- Outlet Branch 1 Name @@ -1980,16 +1717,15 @@ Connector:Splitter, Zone 3 Reheat Branch, !- Outlet Branch 3 Name Reheat Bypass Branch; !- Outlet Branch 4 Name -Connector:Splitter, + Connector:Splitter, Heating Supply Splitter, !- Name Heating Supply Inlet Branch, !- Inlet Branch Name Heating Purchased Hot Water Branch, !- Outlet Branch 1 Name Heating Supply Bypass Branch; !- Outlet Branch 2 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== -Connector:Mixer, + Connector:Mixer, CW Loop Mixer, !- Name Cooling Supply Outlet, !- Outlet Branch Name Little Chiller Branch, !- Inlet Branch 1 Name @@ -1997,13 +1733,13 @@ Connector:Mixer, Purchased Cooling Branch,!- Inlet Branch 3 Name Supply Bypass Branch; !- Inlet Branch 4 Name -Connector:Mixer, + Connector:Mixer, CW Demand Mixer, !- Name Cooling Demand Outlet, !- Outlet Branch Name Cooling Coil Branch, !- Inlet Branch 1 Name Demand Bypass Branch; !- Inlet Branch 2 Name -Connector:Mixer, + Connector:Mixer, Reheat Mixer, !- Name Reheat Outlet Branch, !- Outlet Branch Name Zone 1 Reheat Branch, !- Inlet Branch 1 Name @@ -2011,138 +1747,133 @@ Connector:Mixer, Zone 3 Reheat Branch, !- Inlet Branch 3 Name Reheat Bypass Branch; !- Inlet Branch 4 Name -Connector:Mixer, + Connector:Mixer, Heating Supply Mixer, !- Name Heating Supply Outlet Branch, !- Outlet Branch Name Heating Purchased Hot Water Branch, !- Inlet Branch 1 Name Heating Supply Bypass Branch; !- Inlet Branch 2 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== -ConnectorList, + ConnectorList, Cooling Supply Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type CW Loop Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type CW Loop Mixer; !- Connector 2 Name -ConnectorList, + ConnectorList, Cooling Demand Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type CW Demand Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type CW Demand Mixer; !- Connector 2 Name -ConnectorList, + ConnectorList, Heating Supply Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Heating Supply Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Heating Supply Mixer; !- Connector 2 Name -ConnectorList, + ConnectorList, Heating Demand Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Reheat Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Reheat Mixer; !- Connector 2 Name - !- =========== ALL OBJECTS IN CLASS: NODELIST =========== -NodeList, + NodeList, Chilled Water Loop Setpoint Node List, !- Name CW Supply Outlet Node; !- Node 1 Name -NodeList, + NodeList, Supply Air Temp Nodes, !- Name Air Loop Outlet Node; !- Node 1 Name -NodeList, + NodeList, Hot Water Loop Setpoint Node List, !- Name HW Supply Outlet Node; !- Node 1 Name -NodeList, + NodeList, Zone1Inlets, !- Name Zone 1 Reheat Air Outlet Node; !- Node 1 Name -NodeList, + NodeList, Zone2Inlets, !- Name Zone 2 Reheat Air Outlet Node; !- Node 1 Name -NodeList, + NodeList, Zone3Inlets, !- Name Zone 3 Reheat Air Outlet Node; !- Node 1 Name - !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE =========== -OutdoorAir:Node, + OutdoorAir:Node, Big Chiller Condenser Inlet Node, !- Name -1.0; !- Height Above Ground {m} -OutdoorAir:Node, + OutdoorAir:Node, Little Chiller Condenser Inlet Node, !- Name -1.0; !- Height Above Ground {m} - !- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC =========== -Pipe:Adiabatic, + Pipe:Adiabatic, Demand Side Inlet Pipe, !- Name CW Demand Inlet Node, !- Inlet Node Name CW Demand Entrance Pipe Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Demand Side Bypass, !- Name CW Demand Bypass Inlet Node, !- Inlet Node Name CW Demand Bypass Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, CW Demand Side Outlet Pipe, !- Name CW Demand Exit Pipe Inlet Node, !- Inlet Node Name CW Demand Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Supply Side Outlet Pipe, !- Name Supply Side Exit Pipe Inlet Node, !- Inlet Node Name CW Supply Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Supply Side Bypass, !- Name CW Supply Bypass Inlet Node, !- Inlet Node Name CW Supply Bypass Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Heating Supply Side Bypass, !- Name Heating Supply Bypass Inlet Node, !- Inlet Node Name Heating Supply Bypass Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Heating Supply Outlet, !- Name Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name HW Supply Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Reheat Inlet Pipe, !- Name HW Demand Inlet Node, !- Inlet Node Name HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Reheat Outlet Pipe, !- Name HW Demand Exit Pipe Inlet Node, !- Inlet Node Name HW Demand Outlet Node; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Reheat Bypass, !- Name Reheat Bypass Inlet Node,!- Inlet Node Name Reheat Bypass Outlet Node; !- Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLESPEED =========== -Pump:VariableSpeed, + Pump:VariableSpeed, Circ Pump, !- Name CW Supply Inlet Node, !- Inlet Node Name CW Pump Outlet Node, !- Outlet Node Name @@ -2158,7 +1889,7 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} INTERMITTENT; !- Pump Control Type -Pump:VariableSpeed, + Pump:VariableSpeed, HW Circ Pump, !- Name HW Supply Inlet Node, !- Inlet Node Name HW Pump Outlet Node, !- Outlet Node Name @@ -2174,10 +1905,9 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} INTERMITTENT; !- Pump Control Type - !- =========== ALL OBJECTS IN CLASS: CHILLER:ELECTRIC:EIR =========== -Chiller:Electric:EIR, + Chiller:Electric:EIR, Big Chiller, !- Name 25000, !- Reference Capacity {W} 2.75, !- Reference COP {W/W} @@ -2203,10 +1933,9 @@ Chiller:Electric:EIR, NotModulated, !- Chiller Flow Mode 0.0; !- Design Heat Recovery Water Flow Rate {m3/s} - !- =========== ALL OBJECTS IN CLASS: CHILLER:CONSTANTCOP =========== -Chiller:ConstantCOP, + Chiller:ConstantCOP, Little Chiller, !- Name 25000, !- Nominal Capacity {W} 2.5, !- Nominal COP {W/W} @@ -2220,28 +1949,25 @@ Chiller:ConstantCOP, LeavingSetpointModulated,!- Chiller Flow Mode ; !- Sizing Factor - !- =========== ALL OBJECTS IN CLASS: DISTRICTCOOLING =========== -DistrictCooling, + DistrictCooling, Purchased Cooling, !- Name Purchased Cooling Inlet Node, !- Chilled Water Inlet Node Name Purchased Cooling Outlet Node, !- Chilled Water Outlet Node Name 680000; !- Nominal Capacity {W} - !- =========== ALL OBJECTS IN CLASS: DISTRICTHEATING =========== -DistrictHeating, + DistrictHeating, Purchased Heating, !- Name Purchased Heat Inlet Node, !- Hot Water Inlet Node Name Purchased Heat Outlet Node, !- Hot Water Outlet Node Name 1000000; !- Nominal Capacity {W} - !- =========== ALL OBJECTS IN CLASS: PLANTLOOP =========== -PlantLoop, + PlantLoop, Chilled Water Loop, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -2262,7 +1988,7 @@ PlantLoop, Cooling Demand Side Connectors, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme -PlantLoop, + PlantLoop, Hot Water Loop, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -2283,71 +2009,67 @@ PlantLoop, Heating Demand Side Connectors, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTLIST =========== -PlantEquipmentList, + PlantEquipmentList, Chiller Plant, !- Name Chiller:Electric:EIR, !- Equipment 1 Object Type Big Chiller; !- Equipment 1 Name -PlantEquipmentList, + PlantEquipmentList, Chiller Plant and Purchased, !- Name Chiller:Electric:EIR, !- Equipment 1 Object Type Big Chiller, !- Equipment 1 Name DistrictCooling, !- Equipment 2 Object Type Purchased Cooling; !- Equipment 2 Name -PlantEquipmentList, + PlantEquipmentList, Purchased Only, !- Name DistrictCooling, !- Equipment 1 Object Type Purchased Cooling; !- Equipment 1 Name -PlantEquipmentList, + PlantEquipmentList, Electric Only, !- Name Chiller:Electric:EIR, !- Equipment 1 Object Type Big Chiller; !- Equipment 1 Name -PlantEquipmentList, + PlantEquipmentList, All Chillers, !- Name Chiller:Electric:EIR, !- Equipment 1 Object Type Big Chiller, !- Equipment 1 Name Chiller:ConstantCOP, !- Equipment 2 Object Type Little Chiller; !- Equipment 2 Name -PlantEquipmentList, + PlantEquipmentList, heating plant, !- Name DistrictHeating, !- Equipment 1 Object Type Purchased Heating; !- Equipment 1 Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:COOLINGLOAD =========== -PlantEquipmentOperation:CoolingLoad, + PlantEquipmentOperation:CoolingLoad, Peak Operation, !- Name 0, !- Load Range 1 Lower Limit {W} 500000, !- Load Range 1 Upper Limit {W} Electric Only; !- Range 1 Equipment List Name -PlantEquipmentOperation:CoolingLoad, + PlantEquipmentOperation:CoolingLoad, Off Peak Operation, !- Name 0, !- Load Range 1 Lower Limit {W} 900000, !- Load Range 1 Upper Limit {W} Electric Only; !- Range 1 Equipment List Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD =========== -PlantEquipmentOperation:HeatingLoad, + PlantEquipmentOperation:HeatingLoad, Purchased Only, !- Name 0, !- Load Range 1 Lower Limit {W} 1000000, !- Load Range 1 Upper Limit {W} heating plant; !- Range 1 Equipment List Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES =========== -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, CW Loop Operation, !- Name PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type Peak Operation, !- Control Scheme 1 Name @@ -2356,60 +2078,56 @@ PlantEquipmentOperationSchemes, Peak Operation, !- Control Scheme 2 Name Off Peak; !- Control Scheme 2 Schedule Name -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, Hot Loop Operation, !- Name PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type Purchased Only, !- Control Scheme 1 Name ON; !- Control Scheme 1 Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:SCHEDULED =========== -AvailabilityManager:Scheduled, + AvailabilityManager:Scheduled, Reheat System 1 Avail, !- Name FanAndCoilAvailSched; !- Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST =========== -AvailabilityManagerAssignmentList, + AvailabilityManagerAssignmentList, Reheat System 1 Avail List, !- Name AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type Reheat System 1 Avail; !- Availability Manager 1 Name - !- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED =========== -SetpointManager:Scheduled, + SetpointManager:Scheduled, Chilled Water Loop Setpoint Manager, !- Name Temperature, !- Control Variable CW Loop Temp Schedule, !- Schedule Name Chilled Water Loop Setpoint Node List; !- Setpoint Node or NodeList Name -SetpointManager:Scheduled, + SetpointManager:Scheduled, Supply Air Temp Manager, !- Name Temperature, !- Control Variable Seasonal Reset Supply Air Temp Sch, !- Schedule Name Supply Air Temp Nodes; !- Setpoint Node or NodeList Name -SetpointManager:Scheduled, + SetpointManager:Scheduled, Little Chiller Setpoint Manager, !- Name Temperature, !- Control Variable CW Loop Temp Schedule, !- Schedule Name Little Chiller Outlet Node; !- Setpoint Node or NodeList Name -SetpointManager:Scheduled, + SetpointManager:Scheduled, Hot Water Loop Setpoint Manager, !- Name Temperature, !- Control Variable HW Loop Temp Schedule, !- Schedule Name Hot Water Loop Setpoint Node List; !- Setpoint Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== - ! Energy Input to Cooling Output Ratio Function of Part Load Ratio Curve for open or hermetic water-cooled centrifugal chillers ! Same as DOE-2.1E HERM-CENT-EIR-FPLR (EIRPLR3) and OPEN-CENT-EIR-FPLR (EIRPLR1) -Curve:Quadratic, + + Curve:Quadratic, ChillerCentEIRFPLR, !- Name 0.222903, !- Coefficient1 Constant 0.313387, !- Coefficient2 x @@ -2419,7 +2137,8 @@ Curve:Quadratic, ! Energy Input to Cooling Output Ratio Function of Part Load Ratio Curve for open or hermetic water-cooled reciprocating chillers ! Same as DOE-2.1E HERM-REC-EIR-FPLR (EIRPLR4) and OPEN-REC-EIR-FPLR (EIRPLR2) -Curve:Quadratic, + + Curve:Quadratic, ChillerRecipEIRFPLR, !- Name 0.088065, !- Coefficient1 Constant 1.137742, !- Coefficient2 x @@ -2427,12 +2146,11 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x - !- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== - ! Cooling Capacity Function of Temperature Curve for open or hermetic water-cooled centrifugal chillers ! Same as DOE-2.1E HERM-CENT-CAP-FT (CCAPT3) and OPEN-CENT-CAP-FT (CCAPT1) -Curve:Biquadratic, + + Curve:Biquadratic, ChillerCentCapFT, !- Name 0.257896E+00, !- Coefficient1 Constant 0.389016E-01, !- Coefficient2 x @@ -2452,7 +2170,8 @@ Curve:Biquadratic, ! Energy Input to Cooling Output Ratio Function of Temperature Curve for open or hermetic water-cooled centrifugal chillers ! Same as DOE-2.1E HERM-CENT-EIR-FT (EIRT3) and OPEN-CENT-EIR-FT (EIRT1) -Curve:Biquadratic, + + Curve:Biquadratic, ChillerCentEIRFT, !- Name 0.933884E+00, !- Coefficient1 Constant -0.582120E-01, !- Coefficient2 x @@ -2472,7 +2191,8 @@ Curve:Biquadratic, ! Cooling Capacity Function of Temperature Curve for open or hermetic water-cooled reciprocating chillers ! Same as DOE-2.1E HERM-REC-CAP-FT (CCAPT4) and OPEN-REC-CAP-FT (CCAPT2) -Curve:Biquadratic, + + Curve:Biquadratic, ChillerRecipCapFT, !- Name 0.507883E+00, !- Coefficient1 Constant 0.145228E+00, !- Coefficient2 x @@ -2492,7 +2212,8 @@ Curve:Biquadratic, ! Energy Input to Cooling Output Ratio Function of Temperature Curve for open or hermetic water-cooled reciprocating chillers ! Same as DOE-2.1E HERM-REC-EIR-FT (EIRT4) and OPEN-REC-EIR-FT (EIRT2) -Curve:Biquadratic, + + Curve:Biquadratic, ChillerRecipEIRFT, !- Name 0.103076E+01, !- Coefficient1 Constant -0.103536E+00, !- Coefficient2 x @@ -2510,203 +2231,98 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== -Output:VariableDictionary, - Regular; !- Key Field - + Output:VariableDictionary,Regular; !- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS =========== -Output:Table:SummaryReports, + Output:Table:SummaryReports, AllSummary; !- Report 1 Name - !- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE =========== -OutputControl:Table:Style, + OutputControl:Table:Style, HTML; !- Column Separator - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== -Output:Variable, - *, !- Key Value - Zone Air Temperature, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Site Outdoor Air Drybulb Temperature, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Cooling Coil Total Cooling Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Heating Coil Heating Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Plant Supply Side Cooling Demand Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Plant Supply Side Unmet Demand Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Plant Supply Side Heating Demand Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Electricity Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Electricity Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporator Cooling Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporator Cooling Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporator Inlet Temperature, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporator Outlet Temperature, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporator Mass Flow Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Condenser Heat Transfer Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Condenser Heat Transfer Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Condenser Inlet Temperature, !- Variable Name - timestep; !- Reporting Frequency + Output:Variable,*,Zone Air Temperature,timestep; + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; + + Output:Variable,*,Cooling Coil Total Cooling Energy,timestep; + + Output:Variable,*,Heating Coil Heating Energy,timestep; + + Output:Variable,*,Plant Supply Side Cooling Demand Rate,timestep; + + Output:Variable,*,Plant Supply Side Unmet Demand Rate,timestep; + + Output:Variable,*,Plant Supply Side Heating Demand Rate,timestep; + + Output:Variable,*,Chiller Electricity Rate,timestep; + + Output:Variable,*,Chiller Electricity Energy,timestep; + + Output:Variable,*,Chiller Evaporator Cooling Rate,timestep; + + Output:Variable,*,Chiller Evaporator Cooling Energy,timestep; + + Output:Variable,*,Chiller Evaporator Inlet Temperature,timestep; + + Output:Variable,*,Chiller Evaporator Outlet Temperature,timestep; + + Output:Variable,*,Chiller Evaporator Mass Flow Rate,timestep; + + Output:Variable,*,Chiller Condenser Heat Transfer Rate,timestep; + + Output:Variable,*,Chiller Condenser Heat Transfer Energy,timestep; + + Output:Variable,*,Chiller Condenser Inlet Temperature,timestep; ! Output:Variable,*,Chiller Condenser Outlet Temperature,timestep; ! Output:Variable,*,Chiller Condenser Mass Flow Rate,timestep; -Output:Variable, - *, !- Key Value - Chiller Capacity Temperature Modifier Multiplier, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller EIR Temperature Modifier Multiplier, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller EIR Part Load Modifier Multiplier, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller COP, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Part Load Ratio, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Cycling Ratio, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller False Load Heat Transfer Rate, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller False Load Heat Transfer Energy, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporative Condenser Water Volume, !- Variable Name - timestep; !- Reporting Frequency - -Output:Variable, - *, !- Key Value - Chiller Evaporative Condenser Mains Supply Water Volume, !- Variable Name - timestep; !- Reporting Frequency + Output:Variable,*,Chiller Capacity Temperature Modifier Multiplier,timestep; + + Output:Variable,*,Chiller EIR Temperature Modifier Multiplier,timestep; + + Output:Variable,*,Chiller EIR Part Load Modifier Multiplier,timestep; + + Output:Variable,*,Chiller COP,timestep; + + Output:Variable,*,Chiller Part Load Ratio,timestep; + + Output:Variable,*,Chiller Cycling Ratio,timestep; + + Output:Variable,*,Chiller False Load Heat Transfer Rate,timestep; + + Output:Variable,*,Chiller False Load Heat Transfer Energy,timestep; + + Output:Variable,*,Chiller Evaporative Condenser Water Volume,timestep; + + Output:Variable,*,Chiller Evaporative Condenser Mains Supply Water Volume,timestep; !- =========== ALL OBJECTS IN CLASS: OUTPUT:METER:METERFILEONLY =========== -Output:Meter:MeterFileOnly, - Electricity:Facility, !- Key Name - monthly; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; -Output:Meter:MeterFileOnly, - Electricity:Building, !- Key Name - monthly; !- Reporting Frequency + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; -Output:Meter:MeterFileOnly, - InteriorLights:Electricity, !- Key Name - monthly; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; -Output:Meter:MeterFileOnly, - Electricity:HVAC, !- Key Name - monthly; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:Plant,monthly; -Output:Meter:MeterFileOnly, - Electricity:Plant, !- Key Name - monthly; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; -Output:Meter:MeterFileOnly, - Electricity:Facility, !- Key Name - runperiod; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; -Output:Meter:MeterFileOnly, - Electricity:Building, !- Key Name - runperiod; !- Reporting Frequency + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; -Output:Meter:MeterFileOnly, - InteriorLights:Electricity, !- Key Name - runperiod; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; -Output:Meter:MeterFileOnly, - Electricity:HVAC, !- Key Name - runperiod; !- Reporting Frequency + Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; -Output:Meter:MeterFileOnly, - Electricity:Plant, !- Key Name - runperiod; !- Reporting Frequency diff --git a/testfiles/EngineChiller.idf b/testfiles/EngineChiller.idf index 5aea5f59b7b..9dcdd8b63f8 100644 --- a/testfiles/EngineChiller.idf +++ b/testfiles/EngineChiller.idf @@ -422,6 +422,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -438,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +456,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -486,6 +490,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -502,6 +507,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +524,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -566,6 +575,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -598,6 +609,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -614,6 +626,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +643,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EquivalentLayerWindow.idf b/testfiles/EquivalentLayerWindow.idf index 5a59a7d4588..0899934e06d 100644 --- a/testfiles/EquivalentLayerWindow.idf +++ b/testfiles/EquivalentLayerWindow.idf @@ -320,7 +320,8 @@ ZONE ONE IM, !- Name InternalMass, !- Construction Name ZONE ONE, !- Zone or ZoneList Name - 42.36; !- Surface Area {m2} + , !- Surface Area {m2} + 42.36; !- Extended Field Construction, InternalMass, !- Name @@ -366,6 +367,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -412,6 +414,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -443,6 +446,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -459,6 +463,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -491,6 +497,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EvaporativeFluidCooler.idf b/testfiles/EvaporativeFluidCooler.idf index 1a4116f527d..d4f6eb3d284 100644 --- a/testfiles/EvaporativeFluidCooler.idf +++ b/testfiles/EvaporativeFluidCooler.idf @@ -645,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +847,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +864,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +966,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/EvaporativeFluidCooler_TwoSpeed.idf b/testfiles/EvaporativeFluidCooler_TwoSpeed.idf index 8851f2b5580..bc470ebe628 100644 --- a/testfiles/EvaporativeFluidCooler_TwoSpeed.idf +++ b/testfiles/EvaporativeFluidCooler_TwoSpeed.idf @@ -651,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +717,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +734,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +751,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +768,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +802,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +819,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +836,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +853,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +870,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +921,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +938,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +955,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +972,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +989,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ExhFiredAbsorptionChiller.idf b/testfiles/ExhFiredAbsorptionChiller.idf index db49221abd4..d505db84d91 100644 --- a/testfiles/ExhFiredAbsorptionChiller.idf +++ b/testfiles/ExhFiredAbsorptionChiller.idf @@ -648,6 +648,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +680,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +697,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +714,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +731,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +748,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -759,6 +765,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -775,6 +782,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +799,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +816,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +833,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +850,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +867,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +884,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -887,6 +901,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +918,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +935,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +952,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +969,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +986,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ExteriorLightsAndEq.idf b/testfiles/ExteriorLightsAndEq.idf index e9a4152b287..8602b1b3e2f 100644 --- a/testfiles/ExteriorLightsAndEq.idf +++ b/testfiles/ExteriorLightsAndEq.idf @@ -267,13 +267,13 @@ 1000; !- Design Level {W} Exterior:FuelEquipment, - OutsideDistrictHeatingEq, !- Name + OutsideDistrictHeatingEq,!- Name DistrictHeating, !- Fuel Use Type ON, !- Schedule Name 1000; !- Design Level {W} Exterior:FuelEquipment, - OutsideDistrictCoolingEq, !- Name + OutsideDistrictCoolingEq,!- Name DistrictCooling, !- Fuel Use Type ON, !- Schedule Name 1000; !- Design Level {W} @@ -298,15 +298,15 @@ , !- Key Name 2 ExteriorEquipment:Electricity; !- Output Variable or Meter Name 2 - Output:Meter:MeterFileOnly, MyExteriorElectric, monthly; + Output:Meter:MeterFileOnly,MyExteriorElectric,monthly; Meter:Custom, MyExteriorNaturalGas, !- Name NaturalGas, !- Resource Type , !- Key Name 1 - ExteriorEquipment:NaturalGas; !- Output Variable or Meter Name 1 + ExteriorEquipment:NaturalGas; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorNaturalGas, monthly; + Output:Meter:MeterFileOnly,MyExteriorNaturalGas,monthly; Meter:Custom, MyExteriorCoal, !- Name @@ -314,7 +314,7 @@ , !- Key Name 1 ExteriorEquipment:Coal; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorCoal, monthly; + Output:Meter:MeterFileOnly,MyExteriorCoal,monthly; Meter:Custom, MyExteriorFuelOilNo1, !- Name @@ -322,7 +322,7 @@ , !- Key Name 1 ExteriorEquipment:FuelOilNo1; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorFuelOilNo1, monthly; + Output:Meter:MeterFileOnly,MyExteriorFuelOilNo1,monthly; Meter:Custom, MyExteriorFuelOilNo2, !- Name @@ -330,7 +330,7 @@ , !- Key Name 1 ExteriorEquipment:FuelOilNo2; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorFuelOilNo2, monthly; + Output:Meter:MeterFileOnly,MyExteriorFuelOilNo2,monthly; Meter:Custom, MyExteriorPropane, !- Name @@ -338,7 +338,7 @@ , !- Key Name 1 ExteriorEquipment:Propane; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorPropane, monthly; + Output:Meter:MeterFileOnly,MyExteriorPropane,monthly; Meter:Custom, MyExteriorGasoline, !- Name @@ -346,15 +346,15 @@ , !- Key Name 1 ExteriorEquipment:Gasoline; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorGasoline, monthly; + Output:Meter:MeterFileOnly,MyExteriorGasoline,monthly; Meter:Custom, MyExteriorDiesel, !- Name Diesel, !- Resource Type , !- Key Name 1 - ExteriorEquipment:Diesel; !- Output Variable or Meter Name 1 + ExteriorEquipment:Diesel;!- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorDiesel, monthly; + Output:Meter:MeterFileOnly,MyExteriorDiesel,monthly; Meter:Custom, MyExteriorOtherFuel1, !- Name @@ -362,7 +362,7 @@ , !- Key Name 1 ExteriorEquipment:OtherFuel1; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorOtherFuel1, monthly; + Output:Meter:MeterFileOnly,MyExteriorOtherFuel1,monthly; Meter:Custom, MyExteriorOtherFuel2, !- Name @@ -370,15 +370,15 @@ , !- Key Name 1 ExteriorEquipment:OtherFuel2; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorOtherFuel2, monthly; + Output:Meter:MeterFileOnly,MyExteriorOtherFuel2,monthly; Meter:Custom, MyExteriorSteam, !- Name Steam, !- Resource Type , !- Key Name 1 - ExteriorEquipment:Steam; !- Output Variable or Meter Name 1 + ExteriorEquipment:Steam; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorSteam, monthly; + Output:Meter:MeterFileOnly,MyExteriorSteam,monthly; Meter:Custom, MyExteriorDistrictHeating, !- Name @@ -386,7 +386,7 @@ , !- Key Name 1 ExteriorEquipment:DistrictHeating; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorDistrictHeating, monthly; + Output:Meter:MeterFileOnly,MyExteriorDistrictHeating,monthly; Meter:Custom, MyExteriorDistrictCooling, !- Name @@ -394,15 +394,15 @@ , !- Key Name 1 ExteriorEquipment:DistrictCooling; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorDistrictCooling, monthly; + Output:Meter:MeterFileOnly,MyExteriorDistrictCooling,monthly; Meter:Custom, MyExteriorWater, !- Name Water, !- Resource Type , !- Key Name 1 - ExteriorEquipment:Water; !- Output Variable or Meter Name 1 + ExteriorEquipment:Water; !- Output Variable or Meter Name 1 - Output:Meter:MeterFileOnly, MyExteriorWater, monthly; + Output:Meter:MeterFileOnly,MyExteriorWater,monthly; Output:Variable,*,Exterior Lights Electricity Energy,timestep; diff --git a/testfiles/FanCoilAutoSize.idf b/testfiles/FanCoilAutoSize.idf index 71783cd39af..1c194224a79 100644 --- a/testfiles/FanCoilAutoSize.idf +++ b/testfiles/FanCoilAutoSize.idf @@ -785,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +817,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +834,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +851,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +868,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +885,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +902,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +919,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +936,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +953,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +970,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +987,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1004,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1008,6 +1021,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1038,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1055,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1072,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1089,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1106,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1123,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FanCoilAutoSizeScalableSizing.idf b/testfiles/FanCoilAutoSizeScalableSizing.idf index e4043ae33e7..2a8aa817dad 100644 --- a/testfiles/FanCoilAutoSizeScalableSizing.idf +++ b/testfiles/FanCoilAutoSizeScalableSizing.idf @@ -785,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +817,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +834,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +851,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +868,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +885,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +902,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +919,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +936,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +953,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +970,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +987,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1004,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1008,6 +1021,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1038,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1055,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1072,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1089,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1106,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1123,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FanCoilAutoSize_ASHRAE90VariableFan.idf b/testfiles/FanCoilAutoSize_ASHRAE90VariableFan.idf index c8cae0f9af5..92a18069ffd 100644 --- a/testfiles/FanCoilAutoSize_ASHRAE90VariableFan.idf +++ b/testfiles/FanCoilAutoSize_ASHRAE90VariableFan.idf @@ -1,17 +1,16 @@ !-Generator IDFEditor 1.51 !-Option OriginalOrderTop UseSpecialFormat - !-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. !- Use '!' comments if they need to be retained when using the IDFEditor. ! ! FanCoilAutosize_ASHRAE90VariableFan.idf ! ! Basic file description: 1 story building divided into 3 interior conditioned zones. Roof with no plenum. -! No ground contact with floor. Fancoil units with ASHRAE90VariableFan capacity +! No ground contact with floor. Fancoil units with ASHRAE90VariableFan capacity ! control method serves zone 1 using electric heating coil and serve zones 2 and 3 ! using hot water heating coil. ! -! Highlights: Illustrates use of fan coil units with ASHRAE90VariableFan capacity control and +! Highlights: Illustrates use of fan coil units with ASHRAE90VariableFan capacity control and ! electric and hot water heating coils ! ! Simulation Location/Run: CHICAGO_IL_USA TMY2-94846, 2 design days, 2 run periods, @@ -102,11 +101,11 @@ ! Environmental Emissions: None ! Utility Tariffs: None -Version,9.6; + Version,9.6; -Timestep,6; + Timestep,6; -Building, + Building, NONE, !- Name 0, !- North Axis {deg} Suburbs, !- Terrain @@ -116,11 +115,13 @@ Building, 25, !- Maximum Number of Warmup Days 6; !- Minimum Number of Warmup Days -HeatBalanceAlgorithm,ConductionTransferFunction; -SurfaceConvectionAlgorithm:Inside,TARP; -SurfaceConvectionAlgorithm:Outside,DOE-2; + HeatBalanceAlgorithm,ConductionTransferFunction; + + SurfaceConvectionAlgorithm:Inside,TARP; -RunPeriod, + SurfaceConvectionAlgorithm:Outside,DOE-2; + + RunPeriod, Run Period 1, !- Name 1, !- Begin Month 14, !- Begin Day of Month @@ -135,7 +136,7 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators -RunPeriod, + RunPeriod, Run Period 2, !- Name 7, !- Begin Month 7, !- Begin Day of Month @@ -150,22 +151,25 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators -Site:Location, + Site:Location, CHICAGO_IL_USA TMY2-94846, !- Name 41.78, !- Latitude {deg} -87.75, !- Longitude {deg} -6.00, !- Time Zone {hr} 190.00; !- Elevation {m} -SimulationControl, + SimulationControl, Yes, !- Do Zone Sizing Calculation No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation No, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes ! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C -SizingPeriod:DesignDay, + + SizingPeriod:DesignDay, CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name 1, !- Month 21, !- Day of Month @@ -194,7 +198,8 @@ SizingPeriod:DesignDay, 0.0; !- Sky Clearness ! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C -SizingPeriod:DesignDay, + + SizingPeriod:DesignDay, CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name 7, !- Month 21, !- Day of Month @@ -222,9 +227,9 @@ SizingPeriod:DesignDay, , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} 1.0; !- Sky Clearness -Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; + Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; -Material, + Material, A1 - 1 IN STUCCO, !- Name Smooth, !- Roughness 2.5389841E-02, !- Thickness {m} @@ -235,7 +240,7 @@ Material, 0.9200000, !- Solar Absorptance 0.9200000; !- Visible Absorptance -Material, + Material, C4 - 4 IN COMMON BRICK, !- Name Rough, !- Roughness 0.1014984, !- Thickness {m} @@ -246,7 +251,7 @@ Material, 0.7600000, !- Solar Absorptance 0.7600000; !- Visible Absorptance -Material, + Material, E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Name Smooth, !- Roughness 1.9050000E-02, !- Thickness {m} @@ -257,7 +262,7 @@ Material, 0.9200000, !- Solar Absorptance 0.9200000; !- Visible Absorptance -Material, + Material, C6 - 8 IN CLAY TILE, !- Name Smooth, !- Roughness 0.2033016, !- Thickness {m} @@ -268,7 +273,7 @@ Material, 0.8200000, !- Solar Absorptance 0.8200000; !- Visible Absorptance -Material, + Material, C10 - 8 IN HW CONCRETE, !- Name MediumRough, !- Roughness 0.2033016, !- Thickness {m} @@ -279,7 +284,7 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance -Material, + Material, E2 - 1 / 2 IN SLAG OR STONE, !- Name Rough, !- Roughness 1.2710161E-02, !- Thickness {m} @@ -290,7 +295,7 @@ Material, 0.5500000, !- Solar Absorptance 0.5500000; !- Visible Absorptance -Material, + Material, E3 - 3 / 8 IN FELT AND MEMBRANE, !- Name Rough, !- Roughness 9.5402403E-03, !- Thickness {m} @@ -301,7 +306,7 @@ Material, 0.7500000, !- Solar Absorptance 0.7500000; !- Visible Absorptance -Material, + Material, B5 - 1 IN DENSE INSULATION, !- Name VeryRough, !- Roughness 2.5389841E-02, !- Thickness {m} @@ -312,7 +317,7 @@ Material, 0.5000000, !- Solar Absorptance 0.5000000; !- Visible Absorptance -Material, + Material, C12 - 2 IN HW CONCRETE, !- Name MediumRough, !- Roughness 5.0901599E-02, !- Thickness {m} @@ -323,7 +328,7 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance -WindowMaterial:Glazing, + WindowMaterial:Glazing, WIN-LAY-GLASS-LIGHT, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -339,292 +344,300 @@ WindowMaterial:Glazing, 0.84, !- Back Side Infrared Hemispherical Emissivity 0.9; !- Conductivity {W/m-K} -Construction, + Construction, EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 -Construction, + Construction, PARTITION06, !- Name E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Outside Layer C6 - 8 IN CLAY TILE, !- Layer 2 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 -Construction, + Construction, FLOOR SLAB 8 IN, !- Name C10 - 8 IN HW CONCRETE; !- Outside Layer -Construction, + Construction, ROOF34, !- Name E2 - 1 / 2 IN SLAG OR STONE, !- Outside Layer E3 - 3 / 8 IN FELT AND MEMBRANE, !- Layer 2 B5 - 1 IN DENSE INSULATION, !- Layer 3 C12 - 2 IN HW CONCRETE; !- Layer 4 -Construction, + Construction, WIN-CON-LIGHT, !- Name WIN-LAY-GLASS-LIGHT; !- Outside Layer -ScheduleTypeLimits, + ScheduleTypeLimits, Any Number; !- Name -ScheduleTypeLimits, + ScheduleTypeLimits, Fraction, !- Name 0.0, !- Lower Limit Value 1.0, !- Upper Limit Value CONTINUOUS; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, Temperature, !- Name -60, !- Lower Limit Value 200, !- Upper Limit Value CONTINUOUS, !- Numeric Type Temperature; !- Unit Type -ScheduleTypeLimits, + ScheduleTypeLimits, Control Type, !- Name 0, !- Lower Limit Value 4, !- Upper Limit Value DISCRETE; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, On/Off, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value DISCRETE; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, FractionOutAir, !- Name 0.0, !- Lower Limit Value 2.0, !- Upper Limit Value CONTINUOUS; !- Numeric Type -Schedule:Compact, + Schedule:Compact, Activity Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 131.80; !- Field 4 + Until: 24:00,131.80; !- Field 3 -Schedule:Compact, + Schedule:Compact, Work Eff Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 0.00; !- Field 4 + Until: 24:00,0.00; !- Field 3 -Schedule:Compact, + Schedule:Compact, Clothing Sch, !- Name Any Number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 1.00; !- Field 4 + Until: 24:00,1.00; !- Field 3 -Schedule:Compact, + 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.137; !- Field 4 + Until: 24:00,0.137; !- Field 3 -Schedule:Compact, + Schedule:Compact, Office Occupancy, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Weekdays, !- Field 2 - Until: 6:00, 0.00, !- Field 4 - Until: 7:00, 0.10, !- Field 6 - Until: 8:00, 0.50, !- Field 8 - Until: 12:00, 1.00, !- Field 10 - Until: 13:00, 0.50, !- Field 12 - Until: 16:00, 1.00, !- Field 14 - Until: 17:00, 0.50, !- Field 16 - Until: 18:00, 0.10, !- Field 18 - Until: 24:00, 0.00, !- Field 20 + Until: 6:00,0.00, !- Field 3 + Until: 7:00,0.10, !- Field 5 + Until: 8:00,0.50, !- Field 7 + Until: 12:00,1.00, !- Field 9 + Until: 13:00,0.50, !- Field 11 + Until: 16:00,1.00, !- Field 13 + Until: 17:00,0.50, !- Field 15 + Until: 18:00,0.10, !- Field 17 + Until: 24:00,0.00, !- Field 19 For: Weekends Holidays, !- Field 21 - Until: 24:00, 0.00, !- Field 23 + Until: 24:00,0.00, !- Field 22 For: SummerDesignDay, !- Field 24 - Until: 6:00, 0.00, !- Field 26 - Until: 7:00, 0.10, !- Field 28 - Until: 8:00, 0.50, !- Field 30 - Until: 12:00, 1.00, !- Field 32 - Until: 13:00, 0.50, !- Field 34 - Until: 16:00, 1.00, !- Field 36 - Until: 17:00, 0.50, !- Field 38 - Until: 18:00, 0.10, !- Field 40 - Until: 24:00, 0.00, !- Field 42 + Until: 6:00,0.00, !- Field 25 + Until: 7:00,0.10, !- Field 27 + Until: 8:00,0.50, !- Field 29 + Until: 12:00,1.00, !- Field 31 + Until: 13:00,0.50, !- Field 33 + Until: 16:00,1.00, !- Field 35 + Until: 17:00,0.50, !- Field 37 + Until: 18:00,0.10, !- Field 39 + Until: 24:00,0.00, !- Field 41 For: WinterDesignDay, !- Field 43 - Until: 24:00, 0.00, !- Field 45 + Until: 24:00,0.00, !- Field 44 For: CustomDay1, !- Field 46 - Until: 24:00, 0.00, !- Field 48 + Until: 24:00,0.00, !- Field 47 For: CustomDay2, !- Field 49 - Until: 24:00, 0.00; !- Field 51 + Until: 24:00,0.00; !- Field 50 -Schedule:Compact, + Schedule:Compact, Intermittent, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Weekdays, !- Field 2 - Until: 8:00, 0.00, !- Field 4 - Until: 18:00, 1.00, !- Field 6 - Until: 24:00, 0.00, !- Field 8 + Until: 8:00,0.00, !- Field 3 + Until: 18:00,1.00, !- Field 5 + Until: 24:00,0.00, !- Field 7 For: Weekends Holidays, !- Field 9 - Until: 24:00, 0.00, !- Field 11 + Until: 24:00,0.00, !- Field 10 For: SummerDesignDay, !- Field 12 - Until: 8:00, 0.00, !- Field 14 - Until: 18:00, 1.00, !- Field 16 - Until: 24:00, 0.00, !- Field 18 + Until: 8:00,0.00, !- Field 13 + Until: 18:00,1.00, !- Field 15 + Until: 24:00,0.00, !- Field 17 For: WinterDesignDay, !- Field 19 - Until: 24:00, 0.00, !- Field 21 + Until: 24:00,0.00, !- Field 20 For: CustomDay1, !- Field 22 - Until: 24:00, 0.00, !- Field 24 + Until: 24:00,0.00, !- Field 23 For: CustomDay2, !- Field 25 - Until: 24:00, 0.00; !- Field 27 + Until: 24:00,0.00; !- Field 26 -Schedule:Compact, + Schedule:Compact, Office Lighting, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Weekdays, !- Field 2 - Until: 6:00, 5.00E-002, !- Field 4 - Until: 7:00, 0.20, !- Field 6 - Until: 17:00, 1.00, !- Field 8 - Until: 18:00, 0.50, !- Field 10 - Until: 24:00, 5.00E-002, !- Field 12 + Until: 6:00,5.00E-002, !- Field 3 + Until: 7:00,0.20, !- Field 5 + Until: 17:00,1.00, !- Field 7 + Until: 18:00,0.50, !- Field 9 + Until: 24:00,5.00E-002, !- Field 11 For: Weekends Holidays, !- Field 13 - Until: 24:00, 5.00E-002, !- Field 15 + Until: 24:00,5.00E-002, !- Field 14 For: SummerDesignDay, !- Field 16 - Until: 6:00, 5.00E-002, !- Field 18 - Until: 7:00, 0.20, !- Field 20 - Until: 17:00, 1.00, !- Field 22 - Until: 18:00, 0.50, !- Field 24 - Until: 24:00, 5.00E-002, !- Field 26 + Until: 6:00,5.00E-002, !- Field 17 + Until: 7:00,0.20, !- Field 19 + Until: 17:00,1.00, !- Field 21 + Until: 18:00,0.50, !- Field 23 + Until: 24:00,5.00E-002, !- Field 25 For: WinterDesignDay, !- Field 27 - Until: 24:00, 5.00E-002, !- Field 29 + Until: 24:00,5.00E-002, !- Field 28 For: CustomDay1, !- Field 30 - Until: 24:00, 5.00E-002, !- Field 32 + Until: 24:00,5.00E-002, !- Field 31 For: CustomDay2, !- Field 33 - Until: 24:00, 5.00E-002; !- Field 35 + Until: 24:00,5.00E-002; !- Field 34 -Schedule:Compact, + Schedule:Compact, ON, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 1.00; !- Field 4 + Until: 24:00,1.00; !- Field 3 -Schedule:Compact, + Schedule:Compact, CW LOOP TEMP SCHEDULE, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 7.22; !- Field 4 + Until: 24:00,7.22; !- Field 3 -Schedule:Compact, + 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.00; !- Field 4 + Until: 24:00,82.00; !- Field 3 -Schedule:Compact, + Schedule:Compact, FANANDCOILAVAILSCHED, !- Name FRACTION, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 1.00, !- Field 4 + Until: 24:00,1.00, !- Field 3 Through: 9/30, !- Field 5 For: Weekdays, !- Field 6 - Until: 7:00, 0.00, !- Field 8 - Until: 17:00, 1.00, !- Field 10 - Until: 24:00, 0.00, !- Field 12 - For: Weekends Holidays CustomDay1 CustomDay2, !- Field 13 - Until: 24:00, 0.00, !- Field 15 + Until: 7:00,0.00, !- Field 7 + Until: 17:00,1.00, !- Field 9 + Until: 24:00,0.00, !- Field 11 + For: Weekends Holidays CustomDay1 CustomDay2, !- Field 13 + Until: 24:00,0.00, !- Field 14 For: SummerDesignDay, !- Field 16 - Until: 24:00, 1.00, !- Field 18 + Until: 24:00,1.00, !- Field 17 For: WinterDesignDay, !- Field 19 - Until: 24:00, 1.00, !- Field 21 + Until: 24:00,1.00, !- Field 20 Through: 12/31, !- Field 22 For: Alldays, !- Field 23 - Until: 24:00, 1.00; !- Field 25 + Until: 24:00,1.00; !- Field 24 -Schedule:Compact, + Schedule:Compact, HEATING SETPOINTS, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 - For: Weekdays Weekends Holidays CustomDay1 CustomDay2, !- Field 2 - Until: 7:00, 15.00, !- Field 4 - Until: 17:00, 20.00, !- Field 6 - Until: 24:00, 15.00, !- Field 8 + For: Weekdays Weekends Holidays CustomDay1 CustomDay2, !- Field 2 + Until: 7:00,15.00, !- Field 3 + Until: 17:00,20.00, !- Field 5 + Until: 24:00,15.00, !- Field 7 For: SummerDesignDay, !- Field 9 - Until: 24:00, 15.00, !- Field 11 + Until: 24:00,15.00, !- Field 10 For: WinterDesignDay, !- Field 12 - Until: 24:00, 20.00; !- Field 14 + Until: 24:00,20.00; !- Field 13 -Schedule:Compact, + Schedule:Compact, COOLING SETPOINTS, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 - For: Weekdays Weekends Holidays CustomDay1 CustomDay2, !- Field 2 - Until: 7:00, 30.00, !- Field 4 - Until: 17:00, 24.00, !- Field 6 - Until: 24:00, 30.00, !- Field 8 + For: Weekdays Weekends Holidays CustomDay1 CustomDay2, !- Field 2 + Until: 7:00,30.00, !- Field 3 + Until: 17:00,24.00, !- Field 5 + Until: 24:00,30.00, !- Field 7 For: SummerDesignDay, !- Field 9 - Until: 24:00, 24.00, !- Field 11 + Until: 24:00,24.00, !- Field 10 For: WinterDesignDay, !- Field 12 - Until: 24:00, 50.00; !- Field 14 + Until: 24:00,50.00; !- Field 13 -Schedule:Compact, + Schedule:Compact, ZONE CONTROL TYPE SCHED, !- Name CONTROL TYPE, !- Schedule Type Limits Name Through: 3/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 1, !- Field 4 + Until: 24:00,1, !- Field 3 Through: 9/30, !- Field 5 For: Alldays, !- Field 6 - Until: 24:00, 2, !- Field 8 + Until: 24:00,2, !- Field 7 Through: 12/31, !- Field 9 For: Alldays, !- Field 10 - Until: 24:00, 1; !- Field 12 + Until: 24:00,1; !- Field 11 -Schedule:Compact, + Schedule:Compact, OUTAIRFANCOILSCHEDULE, !- Name FractionOutAir, !- Schedule Type Limits Name Through : 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00, 1.00; !- Field 4 + Until: 24:00,1.00; !- Field 3 -Zone, + Zone, West Zone, !- Name 0, !- Direction of Relative North {deg} - 0, 0, 0, !- X,Y,Z {m} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} 1, !- Type 1, !- Multiplier autocalculate, !- Ceiling Height {m} autocalculate; !- Volume {m3} ! original zone origin (6.096,0,0) -Zone, + + Zone, EAST ZONE, !- Name 0, !- Direction of Relative North {deg} - 0, 0, 0, !- X,Y,Z {m} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} 1, !- Type 1, !- Multiplier autocalculate, !- Ceiling Height {m} autocalculate; !- Volume {m3} ! original zone origin (0,6.096,0) -Zone, + + Zone, NORTH ZONE, !- Name 0, !- Direction of Relative North {deg} - 0, 0, 0, !- X,Y,Z {m} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} 1, !- Type 1, !- Multiplier autocalculate, !- Ceiling Height {m} autocalculate; !- Volume {m3} -People, + People, West Zone, !- Name West Zone, !- Zone or ZoneList Name Office Occupancy, !- Number of People Schedule Name @@ -646,7 +659,7 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type -ElectricEquipment, + ElectricEquipment, West Zone ElecEq 1, !- Name West Zone, !- Zone or ZoneList Name Intermittent, !- Schedule Name @@ -658,7 +671,7 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost -People, + People, EAST ZONE, !- Name EAST ZONE, !- Zone or ZoneList Name Office Occupancy, !- Number of People Schedule Name @@ -680,7 +693,7 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type -Lights, + Lights, EAST ZONE Lights 1, !- Name EAST ZONE, !- Zone or ZoneList Name Office Lighting, !- Schedule Name @@ -694,7 +707,7 @@ Lights, 0, !- Fraction Replaceable GeneralLights; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, EAST ZONE ElecEq 1, !- Name EAST ZONE, !- Zone or ZoneList Name Intermittent, !- Schedule Name @@ -706,7 +719,7 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost -People, + People, NORTH ZONE, !- Name NORTH ZONE, !- Zone or ZoneList Name Office Occupancy, !- Number of People Schedule Name @@ -728,7 +741,7 @@ People, Air Velo Sch, !- Air Velocity Schedule Name FANGER; !- Thermal Comfort Model 1 Type -Lights, + Lights, NORTH ZONE Lights 1, !- Name NORTH ZONE, !- Zone or ZoneList Name Office Lighting, !- Schedule Name @@ -742,7 +755,7 @@ Lights, 0, !- Fraction Replaceable GeneralLights; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, NORTH ZONE ElecEq 1, !- Name NORTH ZONE, !- Zone or ZoneList Name Intermittent, !- Schedule Name @@ -754,28 +767,29 @@ ElectricEquipment, 0.3000000, !- Fraction Radiant 0; !- Fraction Lost -GlobalGeometryRules, + GlobalGeometryRules, UpperLeftCorner, !- Starting Vertex Position CounterClockWise, !- Vertex Entry Direction World; !- Coordinate System -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 3.048000, !- X,Y,Z 1 {m} - 0, 0, 0, !- X,Y,Z 2 {m} - 6.096000, 0, 0, !- X,Y,Z 3 {m} - 6.096000, 0, 3.048000; !- X,Y,Z 4 {m} + 0,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} -FenestrationSurface:Detailed, + FenestrationSurface:Detailed, Zn001:Wall001:Win001, !- Name Window, !- Surface Type WIN-CON-LIGHT, !- Construction Name @@ -785,316 +799,335 @@ FenestrationSurface:Detailed, , !- Frame and Divider Name 1.0, !- Multiplier 4, !- Number of Vertices - 0.548000, 0, 2.5000, !- X,Y,Z 1 {m} - 0.548000, 0, 0.5000, !- X,Y,Z 2 {m} - 5.548000, 0, 0.5000, !- X,Y,Z 3 {m} - 5.548000, 0, 2.5000; !- X,Y,Z 4 {m} + 0.548000,0,2.5000, !- X,Y,Z ==> Vertex 1 {m} + 0.548000,0,0.5000, !- X,Y,Z ==> Vertex 2 {m} + 5.548000,0,0.5000, !- X,Y,Z ==> Vertex 3 {m} + 5.548000,0,2.5000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 0, 6.096000, 0, !- X,Y,Z 2 {m} - 0, 0, 0, !- X,Y,Z 3 {m} - 0, 0, 3.048000; !- X,Y,Z 4 {m} + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,0,0, !- X,Y,Z ==> Vertex 3 {m} + 0,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Wall003, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 2 {m} - 0, 6.096000, 0, !- X,Y,Z 3 {m} - 0, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 0, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 0, 0, !- X,Y,Z 2 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 3 {m} - 6.096000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 0, !- X,Y,Z 1 {m} - 0, 6.096000, 0, !- X,Y,Z 2 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 3 {m} - 6.096000, 0, 0; !- X,Y,Z 4 {m} + 0,0,0, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,0; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn001:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 0, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 0, 0, 3.048000, !- X,Y,Z 2 {m} - 6.096000, 0, 3.048000, !- X,Y,Z 3 {m} - 6.096000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,0,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 12.19200, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 12.19200, 6.096000, 0, !- X,Y,Z 2 {m} - 9.144000, 6.096000, 0, !- X,Y,Z 3 {m} - 9.144000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 12.19200,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 0, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 0, 0, !- X,Y,Z 2 {m} - 12.19200, 0, 0, !- X,Y,Z 3 {m} - 12.19200, 0, 3.048000; !- X,Y,Z 4 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,0,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Wall003, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 12.19200, 0, 3.048000, !- X,Y,Z 1 {m} - 12.19200, 0, 0, !- X,Y,Z 2 {m} - 12.19200, 6.096000, 0, !- X,Y,Z 3 {m} - 12.19200, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 12.19200,0,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 12.19200,0,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 2 {m} - 6.096000, 0, 0, !- X,Y,Z 3 {m} - 6.096000, 0, 3.048000; !- X,Y,Z 4 {m} + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Wall005, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 9.144000, 6.096000, 0, !- X,Y,Z 2 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 3 {m} - 6.096000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 0, 0, !- X,Y,Z 1 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 2 {m} - 12.19200, 6.096000, 0, !- X,Y,Z 3 {m} - 12.19200, 0, 0; !- X,Y,Z 4 {m} + 6.096000,0,0, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,0,0; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn002:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 0, 3.048000, !- X,Y,Z 2 {m} - 12.19200, 0, 3.048000, !- X,Y,Z 3 {m} - 12.19200, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,0,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 12.19200,0,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Wall001, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 12.19200, 3.048000, !- X,Y,Z 1 {m} - 0, 12.19200, 0, !- X,Y,Z 2 {m} - 0, 6.096000, 0, !- X,Y,Z 3 {m} - 0, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 0,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Wall002, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, 12.19200, 3.048000, !- X,Y,Z 1 {m} - 9.144000, 12.19200, 0, !- X,Y,Z 2 {m} - 0, 12.19200, 0, !- X,Y,Z 3 {m} - 0, 12.19200, 3.048000; !- X,Y,Z 4 {m} + 9.144000,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 0,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Wall003, !- Name Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 9.144000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 9.144000, 6.096000, 0, !- X,Y,Z 2 {m} - 9.144000, 12.19200, 0, !- X,Y,Z 3 {m} - 9.144000, 12.19200, 3.048000; !- X,Y,Z 4 {m} + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Wall004, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 0, 6.096000, 0, !- X,Y,Z 2 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 3 {m} - 6.096000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Wall005, !- Name Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.5000000, !- View Factor to Ground 4, !- Number of Vertices - 6.096000, 6.096000, 3.048000, !- X,Y,Z 1 {m} - 6.096000, 6.096000, 0, !- X,Y,Z 2 {m} - 9.144000, 6.096000, 0, !- X,Y,Z 3 {m} - 9.144000, 6.096000, 3.048000; !- X,Y,Z 4 {m} + 6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Flr001, !- Name Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 1.000000, !- View Factor to Ground 4, !- Number of Vertices - 0, 6.096000, 0, !- X,Y,Z 1 {m} - 0, 12.19200, 0, !- X,Y,Z 2 {m} - 9.144000, 12.19200, 0, !- X,Y,Z 3 {m} - 9.144000, 6.096000, 0; !- X,Y,Z 4 {m} + 0,6.096000,0, !- X,Y,Z ==> Vertex 1 {m} + 0,12.19200,0, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,12.19200,0, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,6.096000,0; !- X,Y,Z ==> Vertex 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Zn003:Roof001, !- Name Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0, !- View Factor to Ground 4, !- Number of Vertices - 0, 12.19200, 3.048000, !- X,Y,Z 1 {m} - 0, 6.096000, 3.048000, !- X,Y,Z 2 {m} - 9.144000, 6.096000, 3.048000, !- X,Y,Z 3 {m} - 9.144000, 12.19200, 3.048000; !- X,Y,Z 4 {m} + 0,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m} + 0,6.096000,3.048000, !- X,Y,Z ==> Vertex 2 {m} + 9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 3 {m} + 9.144000,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m} -Sizing:Zone, + Sizing:Zone, West Zone, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} @@ -1123,14 +1156,14 @@ Sizing:Zone, autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} -DesignSpecification:OutdoorAir, + DesignSpecification:OutdoorAir, SZ DSOA West Zone, !- Name flow/person, !- Outdoor Air Method 0.00944, !- Outdoor Air Flow per Person {m3/s-person} 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} -Sizing:Zone, + Sizing:Zone, EAST ZONE, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} @@ -1159,14 +1192,14 @@ Sizing:Zone, autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} -DesignSpecification:OutdoorAir, + DesignSpecification:OutdoorAir, SZ DSOA EAST ZONE, !- Name flow/person, !- Outdoor Air Method 0.00944, !- Outdoor Air Flow per Person {m3/s-person} 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} -Sizing:Zone, + Sizing:Zone, NORTH ZONE, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} @@ -1195,26 +1228,26 @@ Sizing:Zone, autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} -DesignSpecification:OutdoorAir, + DesignSpecification:OutdoorAir, SZ DSOA NORTH ZONE, !- Name flow/person, !- Outdoor Air Method 0.00944, !- Outdoor Air Flow per Person {m3/s-person} 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} -Sizing:Plant, + Sizing:Plant, Hot Water Loop, !- Plant or Condenser Loop Name heating, !- Loop Type 82., !- Design Loop Exit Temperature {C} 11; !- Loop Design Temperature Difference {deltaC} -Sizing:Plant, + Sizing:Plant, Chilled Water Loop, !- Plant or Condenser Loop Name cooling, !- Loop Type 7.22, !- Design Loop Exit Temperature {C} 6.67; !- Loop Design Temperature Difference {deltaC} -PlantLoop, + PlantLoop, Chilled Water Loop, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -1235,43 +1268,43 @@ PlantLoop, Cooling Demand Side Connectors, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme -SetpointManager:Scheduled, + SetpointManager:Scheduled, Chilled Water Loop Setpoint Manager, !- Name Temperature, !- Control Variable CW Loop Temp Schedule, !- Schedule Name Chilled Water Loop Setpoint Node List; !- Setpoint Node or NodeList Name -NodeList, + NodeList, Chilled Water Loop Setpoint Node List, !- Name ChW Supply Outlet Node; !- Node 1 Name -BranchList, + BranchList, Cooling Supply Side Branches, !- Name Cooling Supply Inlet Branch, !- Branch 1 Name Cooling Purchased Chilled Water Branch, !- Branch 2 Name Cooling Supply Bypass Branch, !- Branch 3 Name Cooling Supply Outlet Branch; !- Branch 4 Name -ConnectorList, + ConnectorList, Cooling Supply Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Cooling Supply Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Cooling Supply Mixer; !- Connector 2 Name -Connector:Splitter, + Connector:Splitter, Cooling Supply Splitter, !- Name Cooling Supply Inlet Branch, !- Inlet Branch Name Cooling Purchased Chilled Water Branch, !- Outlet Branch 1 Name Cooling Supply Bypass Branch; !- Outlet Branch 2 Name -Connector:Mixer, + Connector:Mixer, Cooling Supply Mixer, !- Name Cooling Supply Outlet Branch, !- Outlet Branch Name Cooling Purchased Chilled Water Branch, !- Inlet Branch 1 Name Cooling Supply Bypass Branch; !- Inlet Branch 2 Name -Branch, + Branch, Cooling Supply Inlet Branch, !- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -1279,7 +1312,7 @@ Branch, ChW Supply Inlet Node, !- Component 1 Inlet Node Name ChW Pump Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Cooling Purchased Chilled Water Branch, !- Name , !- Pressure Drop Curve Name DistrictCooling, !- Component 1 Object Type @@ -1287,7 +1320,7 @@ Branch, Purchased Cooling Inlet Node, !- Component 1 Inlet Node Name Purchased Cooling Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Cooling Supply Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1295,12 +1328,12 @@ Branch, Cooling Supply Bypass Inlet Node, !- Component 1 Inlet Node Name Cooling Supply Bypass Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Cooling Supply Side Bypass, !- Name Cooling Supply Bypass Inlet Node, !- Inlet Node Name Cooling Supply Bypass Outlet Node; !- Outlet Node Name -Branch, + Branch, Cooling Supply Outlet Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1308,12 +1341,12 @@ Branch, Cooling Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name ChW Supply Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Cooling Supply Outlet, !- Name Cooling Supply Exit Pipe Inlet Node, !- Inlet Node Name ChW Supply Outlet Node; !- Outlet Node Name -Pump:VariableSpeed, + Pump:VariableSpeed, ChW Circ Pump, !- Name ChW Supply Inlet Node, !- Inlet Node Name ChW Pump Outlet Node, !- Outlet Node Name @@ -1329,7 +1362,7 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} INTERMITTENT; !- Pump Control Type -BranchList, + BranchList, Cooling Demand Side Branches, !- Name ZonesChWInletBranch, !- Branch 1 Name Zone1ChWBranch, !- Branch 2 Name @@ -1338,14 +1371,14 @@ BranchList, ZonesChWBypassBranch, !- Branch 5 Name ZonesChWOutletBranch; !- Branch 6 Name -ConnectorList, + ConnectorList, Cooling Demand Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Zones ChW Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Zones ChW Mixer; !- Connector 2 Name -Connector:Splitter, + Connector:Splitter, Zones ChW Splitter, !- Name ZonesChWInletBranch, !- Inlet Branch Name Zone1ChWBranch, !- Outlet Branch 1 Name @@ -1353,7 +1386,7 @@ Connector:Splitter, Zone3ChWBranch, !- Outlet Branch 3 Name ZonesChWBypassBranch; !- Outlet Branch 4 Name -Connector:Mixer, + Connector:Mixer, Zones ChW Mixer, !- Name ZonesChWOutletBranch, !- Outlet Branch Name Zone1ChWBranch, !- Inlet Branch 1 Name @@ -1361,7 +1394,7 @@ Connector:Mixer, Zone3ChWBranch, !- Inlet Branch 3 Name ZonesChWBypassBranch; !- Inlet Branch 4 Name -Branch, + Branch, ZonesChWInletBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1369,12 +1402,12 @@ Branch, ChW Demand Inlet Node, !- Component 1 Inlet Node Name ChW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesChWInletPipe, !- Name ChW Demand Inlet Node, !- Inlet Node Name ChW Demand Entrance Pipe Outlet Node; !- Outlet Node Name -Branch, + Branch, ZonesChWOutletBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1382,12 +1415,12 @@ Branch, ChW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name ChW Demand Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesChWOutletPipe, !- Name ChW Demand Exit Pipe Inlet Node, !- Inlet Node Name ChW Demand Outlet Node; !- Outlet Node Name -Branch, + Branch, Zone1ChWBranch, !- Name , !- Pressure Drop Curve Name Coil:Cooling:Water, !- Component 1 Object Type @@ -1395,7 +1428,7 @@ Branch, Zone1FanCoilChWInletNode,!- Component 1 Inlet Node Name Zone1FanCoilChWOutletNode; !- Component 1 Outlet Node Name -Branch, + Branch, Zone2ChWBranch, !- Name , !- Pressure Drop Curve Name Coil:Cooling:Water, !- Component 1 Object Type @@ -1403,7 +1436,7 @@ Branch, Zone2FanCoilChWInletNode,!- Component 1 Inlet Node Name Zone2FanCoilChWOutletNode; !- Component 1 Outlet Node Name -Branch, + Branch, Zone3ChWBranch, !- Name , !- Pressure Drop Curve Name Coil:Cooling:Water, !- Component 1 Object Type @@ -1411,7 +1444,7 @@ Branch, Zone3FanCoilChWInletNode,!- Component 1 Inlet Node Name Zone3FanCoilChWOutletNode; !- Component 1 Outlet Node Name -Branch, + Branch, ZonesChWBypassBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1419,35 +1452,35 @@ Branch, ZonesChWBypassInletNode, !- Component 1 Inlet Node Name ZonesChWBypassOutletNode;!- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesChWBypassPipe, !- Name ZonesChWBypassInletNode, !- Inlet Node Name ZonesChWBypassOutletNode;!- Outlet Node Name -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, Chilled Loop Operation, !- Name PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type Purchased Cooling Only, !- Control Scheme 1 Name ON; !- Control Scheme 1 Schedule Name -PlantEquipmentOperation:CoolingLoad, + PlantEquipmentOperation:CoolingLoad, Purchased Cooling Only, !- Name 0, !- Load Range 1 Lower Limit {W} 1000000, !- Load Range 1 Upper Limit {W} cooling plant; !- Range 1 Equipment List Name -PlantEquipmentList, + PlantEquipmentList, cooling plant, !- Name DistrictCooling, !- Equipment 1 Object Type Purchased Cooling; !- Equipment 1 Name -DistrictCooling, + DistrictCooling, Purchased Cooling, !- Name Purchased Cooling Inlet Node, !- Chilled Water Inlet Node Name Purchased Cooling Outlet Node, !- Chilled Water Outlet Node Name 1000000; !- Nominal Capacity {W} -PlantLoop, + PlantLoop, Hot Water Loop, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -1468,43 +1501,43 @@ PlantLoop, Heating Demand Side Connectors, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme -SetpointManager:Scheduled, + SetpointManager:Scheduled, Hot Water Loop Setpoint Manager, !- Name Temperature, !- Control Variable HW Loop Temp Schedule, !- Schedule Name Hot Water Loop Setpoint Node List; !- Setpoint Node or NodeList Name -NodeList, + NodeList, Hot Water Loop Setpoint Node List, !- Name HW Supply Outlet Node; !- Node 1 Name -BranchList, + BranchList, Heating Supply Side Branches, !- Name Heating Supply Inlet Branch, !- Branch 1 Name Heating Purchased Hot Water Branch, !- Branch 2 Name Heating Supply Bypass Branch, !- Branch 3 Name Heating Supply Outlet Branch; !- Branch 4 Name -ConnectorList, + ConnectorList, Heating Supply Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Heating Supply Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Heating Supply Mixer; !- Connector 2 Name -Connector:Splitter, + Connector:Splitter, Heating Supply Splitter, !- Name Heating Supply Inlet Branch, !- Inlet Branch Name Heating Purchased Hot Water Branch, !- Outlet Branch 1 Name Heating Supply Bypass Branch; !- Outlet Branch 2 Name -Connector:Mixer, + Connector:Mixer, Heating Supply Mixer, !- Name Heating Supply Outlet Branch, !- Outlet Branch Name Heating Purchased Hot Water Branch, !- Inlet Branch 1 Name Heating Supply Bypass Branch; !- Inlet Branch 2 Name -Branch, + Branch, Heating Supply Inlet Branch, !- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -1512,7 +1545,7 @@ Branch, HW Supply Inlet Node, !- Component 1 Inlet Node Name HW Pump Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Purchased Hot Water Branch, !- Name , !- Pressure Drop Curve Name DistrictHeating, !- Component 1 Object Type @@ -1520,7 +1553,7 @@ Branch, Purchased Heat Inlet Node, !- Component 1 Inlet Node Name Purchased Heat Outlet Node; !- Component 1 Outlet Node Name -Branch, + Branch, Heating Supply Bypass Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1528,12 +1561,12 @@ Branch, Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Heating Supply Side Bypass, !- Name Heating Supply Bypass Inlet Node, !- Inlet Node Name Heating Supply Bypass Outlet Node; !- Outlet Node Name -Branch, + Branch, Heating Supply Outlet Branch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1541,12 +1574,12 @@ Branch, Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name HW Supply Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Heating Supply Outlet, !- Name Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name HW Supply Outlet Node; !- Outlet Node Name -Pump:VariableSpeed, + Pump:VariableSpeed, HW Circ Pump, !- Name HW Supply Inlet Node, !- Inlet Node Name HW Pump Outlet Node, !- Outlet Node Name @@ -1562,36 +1595,36 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} INTERMITTENT; !- Pump Control Type -BranchList, + BranchList, Heating Demand Side Branches, !- Name ZonesHWInletBranch, !- Branch 1 Name - Zone2HWBranch, !- Branch 3 Name - Zone3HWBranch, !- Branch 4 Name - ZonesHWBypassBranch, !- Branch 5 Name - ZonesHWOutletBranch; !- Branch 6 Name + Zone2HWBranch, !- Branch 2 Name + Zone3HWBranch, !- Branch 3 Name + ZonesHWBypassBranch, !- Branch 4 Name + ZonesHWOutletBranch; !- Branch 5 Name -ConnectorList, + ConnectorList, Heating Demand Side Connectors, !- Name Connector:Splitter, !- Connector 1 Object Type Zones HW Splitter, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type Zones HW Mixer; !- Connector 2 Name -Connector:Splitter, + Connector:Splitter, Zones HW Splitter, !- Name ZonesHWInletBranch, !- Inlet Branch Name - Zone2HWBranch, !- Outlet Branch 2 Name - Zone3HWBranch, !- Outlet Branch 3 Name - ZonesHWBypassBranch; !- Outlet Branch 4 Name + Zone2HWBranch, !- Outlet Branch 1 Name + Zone3HWBranch, !- Outlet Branch 2 Name + ZonesHWBypassBranch; !- Outlet Branch 3 Name -Connector:Mixer, + Connector:Mixer, Zones HW Mixer, !- Name ZonesHWOutletBranch, !- Outlet Branch Name - Zone2HWBranch, !- Inlet Branch 2 Name - Zone3HWBranch, !- Inlet Branch 3 Name - ZonesHWBypassBranch; !- Inlet Branch 4 Name + Zone2HWBranch, !- Inlet Branch 1 Name + Zone3HWBranch, !- Inlet Branch 2 Name + ZonesHWBypassBranch; !- Inlet Branch 3 Name -Branch, + Branch, ZonesHWInletBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1599,12 +1632,12 @@ Branch, HW Demand Inlet Node, !- Component 1 Inlet Node Name HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesHWInletPipe, !- Name HW Demand Inlet Node, !- Inlet Node Name HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name -Branch, + Branch, ZonesHWOutletBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1612,12 +1645,12 @@ Branch, HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name HW Demand Outlet Node; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesHWOutletPipe, !- Name HW Demand Exit Pipe Inlet Node, !- Inlet Node Name HW Demand Outlet Node; !- Outlet Node Name -Branch, + Branch, Zone2HWBranch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type @@ -1625,7 +1658,7 @@ Branch, Zone2FanCoilHWInletNode, !- Component 1 Inlet Node Name Zone2FanCoilHWOutletNode;!- Component 1 Outlet Node Name -Branch, + Branch, Zone3HWBranch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type @@ -1633,7 +1666,7 @@ Branch, Zone3FanCoilHWInletNode, !- Component 1 Inlet Node Name Zone3FanCoilHWOutletNode;!- Component 1 Outlet Node Name -Branch, + Branch, ZonesHWBypassBranch, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -1641,44 +1674,44 @@ Branch, ZonesHWBypassInletNode, !- Component 1 Inlet Node Name ZonesHWBypassOutletNode; !- Component 1 Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, ZonesHWBypassPipe, !- Name ZonesHWBypassInletNode, !- Inlet Node Name ZonesHWBypassOutletNode; !- Outlet Node Name -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, Hot Loop Operation, !- Name PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type Purchased Heating Only, !- Control Scheme 1 Name ON; !- Control Scheme 1 Schedule Name -PlantEquipmentOperation:HeatingLoad, + PlantEquipmentOperation:HeatingLoad, Purchased Heating Only, !- Name 0, !- Load Range 1 Lower Limit {W} 1000000, !- Load Range 1 Upper Limit {W} heating plant; !- Range 1 Equipment List Name -PlantEquipmentList, + PlantEquipmentList, heating plant, !- Name DistrictHeating, !- Equipment 1 Object Type Purchased Heating; !- Equipment 1 Name -DistrictHeating, + DistrictHeating, Purchased Heating, !- Name Purchased Heat Inlet Node, !- Hot Water Inlet Node Name Purchased Heat Outlet Node, !- Hot Water Outlet Node Name 1000000; !- Nominal Capacity {W} -OutdoorAir:NodeList, + OutdoorAir:NodeList, OutsideAirInletNodes; !- Node or NodeList Name 1 -NodeList, + NodeList, OutsideAirInletNodes, !- Name Zone1FanCoilOAInNode, !- Node 1 Name Zone2FanCoilOAInNode, !- Node 2 Name Zone3FanCoilOAInNode; !- Node 3 Name -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 1 Thermostat, !- Name West Zone, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1687,7 +1720,7 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 2 Thermostat, !- Name EAST ZONE, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1696,7 +1729,7 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone 3 Thermostat, !- Name NORTH ZONE, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name @@ -1705,15 +1738,15 @@ ZoneControl:Thermostat, ThermostatSetpoint:SingleCooling, !- Control 2 Object Type Cooling Setpoint with SB;!- Control 2 Name -ThermostatSetpoint:SingleHeating, + ThermostatSetpoint:SingleHeating, Heating Setpoint with SB,!- Name Heating Setpoints; !- Setpoint Temperature Schedule Name -ThermostatSetpoint:SingleCooling, + ThermostatSetpoint:SingleCooling, Cooling Setpoint with SB,!- Name Cooling Setpoints; !- Setpoint Temperature Schedule Name -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, West Zone, !- Zone Name Zone1Equipment, !- Zone Conditioning Equipment List Name Zone1Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1721,7 +1754,7 @@ ZoneHVAC:EquipmentConnections, Zone 1 Node, !- Zone Air Node Name Zone 1 Outlet Node; !- Zone Return Air Node or NodeList Name -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone1Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:FourPipeFanCoil,!- Zone Equipment 1 Object Type @@ -1731,15 +1764,15 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name -NodeList, + NodeList, Zone1Inlets, !- Name Zone1FanCoilAirOutletNode; !- Node 1 Name -NodeList, + NodeList, Zone1Exhausts, !- Name Zone1FanCoilAirInletNode;!- Node 1 Name -ZoneHVAC:FourPipeFanCoil, + ZoneHVAC:FourPipeFanCoil, Zone1FanCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name ASHRAE90VariableFan, !- Capacity Control Method @@ -1768,14 +1801,14 @@ ZoneHVAC:FourPipeFanCoil, , !- Design Specification ZoneHVAC Sizing Object Name ; !- Supply Air Fan Operating Mode Schedule Name -OutdoorAir:Mixer, + OutdoorAir:Mixer, Zone1FanCoilOAMixer, !- Name Zone1FanCoilOAMixerOutletNode, !- Mixed Air Node Name Zone1FanCoilOAInNode, !- Outdoor Air Stream Node Name Zone1FanCoilExhNode, !- Relief Air Stream Node Name Zone1FanCoilAirInletNode;!- Return Air Stream Node Name -Fan:SystemModel, + Fan:SystemModel, Zone1FanCoilFan, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone1FanCoilOAMixerOutletNode, !- Air Inlet Node Name @@ -1812,7 +1845,7 @@ Fan:SystemModel, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Coil:Cooling:Water, + Coil:Cooling:Water, Zone1FanCoilCoolingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name autosize, !- Design Water Flow Rate {m3/s} @@ -1829,7 +1862,7 @@ Coil:Cooling:Water, SimpleAnalysis, !- Type of Analysis CrossFlow; !- Heat Exchanger Configuration -Coil:Heating:Electric, + Coil:Heating:Electric, Zone1FanCoilHeatingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name 1, !- Efficiency @@ -1837,7 +1870,7 @@ Coil:Heating:Electric, Zone1FanCoilCCOutletNode,!- Air Inlet Node Name Zone1FanCoilAirOutletNode; !- Air Outlet Node Name -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, EAST ZONE, !- Zone Name Zone2Equipment, !- Zone Conditioning Equipment List Name Zone2Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1845,7 +1878,7 @@ ZoneHVAC:EquipmentConnections, Zone 2 Node, !- Zone Air Node Name Zone 2 Outlet Node; !- Zone Return Air Node or NodeList Name -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone2Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:FourPipeFanCoil,!- Zone Equipment 1 Object Type @@ -1855,15 +1888,15 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name -NodeList, + NodeList, Zone2Inlets, !- Name Zone2FanCoilAirOutletNode; !- Node 1 Name -NodeList, + NodeList, Zone2Exhausts, !- Name Zone2FanCoilAirInletNode;!- Node 1 Name -ZoneHVAC:FourPipeFanCoil, + ZoneHVAC:FourPipeFanCoil, Zone2FanCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name ASHRAE90VariableFan, !- Capacity Control Method @@ -1892,14 +1925,14 @@ ZoneHVAC:FourPipeFanCoil, , !- Design Specification ZoneHVAC Sizing Object Name ; !- Supply Air Fan Operating Mode Schedule Name -OutdoorAir:Mixer, + OutdoorAir:Mixer, Zone2FanCoilOAMixer, !- Name Zone2FanCoilOAMixerOutletNode, !- Mixed Air Node Name Zone2FanCoilOAInNode, !- Outdoor Air Stream Node Name Zone2FanCoilExhNode, !- Relief Air Stream Node Name Zone2FanCoilAirInletNode;!- Return Air Stream Node Name -Fan:SystemModel, + Fan:SystemModel, Zone2FanCoilFan, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone2FanCoilOAMixerOutletNode, !- Air Inlet Node Name @@ -1922,7 +1955,7 @@ Fan:SystemModel, , !- Motor Loss Radiative Fraction General; !- End-Use Subcategory -Coil:Cooling:Water, + Coil:Cooling:Water, Zone2FanCoilCoolingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name autosize, !- Design Water Flow Rate {m3/s} @@ -1939,7 +1972,7 @@ Coil:Cooling:Water, SimpleAnalysis, !- Type of Analysis CrossFlow; !- Heat Exchanger Configuration -Coil:Heating:Water, + Coil:Heating:Water, Zone2FanCoilHeatingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} @@ -1956,7 +1989,7 @@ Coil:Heating:Water, 32.2, !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, NORTH ZONE, !- Zone Name Zone3Equipment, !- Zone Conditioning Equipment List Name Zone3Inlets, !- Zone Air Inlet Node or NodeList Name @@ -1964,7 +1997,7 @@ ZoneHVAC:EquipmentConnections, Zone 3 Node, !- Zone Air Node Name Zone 3 Outlet Node; !- Zone Return Air Node or NodeList Name -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, Zone3Equipment, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:FourPipeFanCoil,!- Zone Equipment 1 Object Type @@ -1974,15 +2007,15 @@ ZoneHVAC:EquipmentList, , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name -NodeList, + NodeList, Zone3Inlets, !- Name Zone3FanCoilAirOutletNode; !- Node 1 Name -NodeList, + NodeList, Zone3Exhausts, !- Name Zone3FanCoilAirInletNode;!- Node 1 Name -ZoneHVAC:FourPipeFanCoil, + ZoneHVAC:FourPipeFanCoil, Zone3FanCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name ASHRAE90VariableFan, !- Capacity Control Method @@ -2008,14 +2041,14 @@ ZoneHVAC:FourPipeFanCoil, 0.0, !- Minimum Hot Water Flow Rate {m3/s} 0.001; !- Heating Convergence Tolerance -OutdoorAir:Mixer, + OutdoorAir:Mixer, Zone3FanCoilOAMixer, !- Name Zone3FanCoilOAMixerOutletNode, !- Mixed Air Node Name Zone3FanCoilOAInNode, !- Outdoor Air Stream Node Name Zone3FanCoilExhNode, !- Relief Air Stream Node Name Zone3FanCoilAirInletNode;!- Return Air Stream Node Name -Fan:SystemModel, + Fan:SystemModel, Zone3FanCoilFan, !- Name FanAndCoilAvailSched, !- Availability Schedule Name Zone3FanCoilOAMixerOutletNode, !- Air Inlet Node Name @@ -2038,7 +2071,7 @@ Fan:SystemModel, , !- Motor Loss Radiative Fraction General; !- End-Use Subcategory -Coil:Cooling:Water, + Coil:Cooling:Water, Zone3FanCoilCoolingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name autosize, !- Design Water Flow Rate {m3/s} @@ -2055,7 +2088,7 @@ Coil:Cooling:Water, SimpleAnalysis, !- Type of Analysis CrossFlow; !- Heat Exchanger Configuration -Coil:Heating:Water, + Coil:Heating:Water, Zone3FanCoilHeatingCoil, !- Name FanAndCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} @@ -2072,50 +2105,91 @@ Coil:Heating:Water, 32.2, !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -Output:Variable,*,Zone Air System Sensible Cooling Rate,timestep; -Output:Variable,*,Zone Air System Sensible Heating Rate,timestep; -Output:Variable,*,Zone Air Temperature,timestep; -Output:Variable,*,Zone Air Humidity Ratio,timestep; -Output:Variable,*,Fan Coil Sensible Cooling Rate,timestep; -Output:Variable,*,Fan Coil Heating Rate,timestep; -Output:Variable,Zone1FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone2FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone3FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone1FanCoilAirOutletNode,System Node Temperature,timestep; -Output:Variable,Zone2FanCoilAirOutletNode,System Node Temperature,timestep; -Output:Variable,Zone3FanCoilAirOutletNode,System Node Temperature,timestep; -Output:Variable,Zone1FanCoilAirOutletNode,System Node Humidity Ratio,timestep; -Output:Variable,Zone2FanCoilAirOutletNode,System Node Humidity Ratio,timestep; -Output:Variable,Zone3FanCoilAirOutletNode,System Node Humidity Ratio,timestep; -Output:Variable,Zone1FanCoilAirInletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone2FanCoilAirInletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone3FanCoilAirInletNode,System Node Mass Flow Rate,timestep; -Output:Variable,Zone1FanCoilAirInletNode,System Node Temperature,timestep; -Output:Variable,Zone2FanCoilAirInletNode,System Node Temperature,timestep; -Output:Variable,Zone3FanCoilAirInletNode,System Node Temperature,timestep; -Output:Variable,Zone1FanCoilAirInletNode,System Node Humidity Ratio,timestep; -Output:Variable,Zone2FanCoilAirInletNode,System Node Humidity Ratio,timestep; -Output:Variable,Zone3FanCoilAirInletNode,System Node Humidity Ratio,timestep; -Output:Variable,*,Heating Coil Heating Rate,timestep; -Output:Variable,*,Cooling Coil Total Cooling Rate,timestep; -Output:Variable,*,Cooling Coil Sensible Cooling Rate,timestep; -Output:Variable,*,Fan Electricity Rate,timestep; -Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; -Output:Variable,*,Fan Coil Fan Electricity Rate,timestep; -Output:VariableDictionary,Regular; -Output:Meter:MeterFileOnly,Electricity:Facility,monthly; -Output:Meter:MeterFileOnly,Electricity:Building,monthly; -Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; -Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; -Output:Meter:MeterFileOnly,Electricity:Plant,monthly; -Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; -Output:Meter:MeterFileOnly,Electricity:Building,runperiod; -Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; -Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; -Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; - -OutputControl:Table:Style, + Output:Variable,*,Zone Air System Sensible Cooling Rate,timestep; + + Output:Variable,*,Zone Air System Sensible Heating Rate,timestep; + + Output:Variable,*,Zone Air Temperature,timestep; + + Output:Variable,*,Zone Air Humidity Ratio,timestep; + + Output:Variable,*,Fan Coil Sensible Cooling Rate,timestep; + + Output:Variable,*,Fan Coil Heating Rate,timestep; + + Output:Variable,Zone1FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone2FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone3FanCoilAirOutletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone1FanCoilAirOutletNode,System Node Temperature,timestep; + + Output:Variable,Zone2FanCoilAirOutletNode,System Node Temperature,timestep; + + Output:Variable,Zone3FanCoilAirOutletNode,System Node Temperature,timestep; + + Output:Variable,Zone1FanCoilAirOutletNode,System Node Humidity Ratio,timestep; + + Output:Variable,Zone2FanCoilAirOutletNode,System Node Humidity Ratio,timestep; + + Output:Variable,Zone3FanCoilAirOutletNode,System Node Humidity Ratio,timestep; + + Output:Variable,Zone1FanCoilAirInletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone2FanCoilAirInletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone3FanCoilAirInletNode,System Node Mass Flow Rate,timestep; + + Output:Variable,Zone1FanCoilAirInletNode,System Node Temperature,timestep; + + Output:Variable,Zone2FanCoilAirInletNode,System Node Temperature,timestep; + + Output:Variable,Zone3FanCoilAirInletNode,System Node Temperature,timestep; + + Output:Variable,Zone1FanCoilAirInletNode,System Node Humidity Ratio,timestep; + + Output:Variable,Zone2FanCoilAirInletNode,System Node Humidity Ratio,timestep; + + Output:Variable,Zone3FanCoilAirInletNode,System Node Humidity Ratio,timestep; + + Output:Variable,*,Heating Coil Heating Rate,timestep; + + Output:Variable,*,Cooling Coil Total Cooling Rate,timestep; + + Output:Variable,*,Cooling Coil Sensible Cooling Rate,timestep; + + Output:Variable,*,Fan Electricity Rate,timestep; + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; + + Output:Variable,*,Fan Coil Fan Electricity Rate,timestep; + + Output:VariableDictionary,Regular; + + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; + + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; + + Output:Meter:MeterFileOnly,Electricity:Plant,monthly; + + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; + + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + + OutputControl:Table:Style, HTML; !- Column Separator -Output:Table:SummaryReports, + Output:Table:SummaryReports, AllSummary; !- Report 1 Name + diff --git a/testfiles/FanCoilAutoSize_MultiSpeedFan.idf b/testfiles/FanCoilAutoSize_MultiSpeedFan.idf index e97cd0511b9..a6125dad530 100644 --- a/testfiles/FanCoilAutoSize_MultiSpeedFan.idf +++ b/testfiles/FanCoilAutoSize_MultiSpeedFan.idf @@ -792,6 +792,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +824,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +841,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +858,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +875,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +892,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +909,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +926,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +960,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +977,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +994,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1011,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1028,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1045,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1062,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1063,6 +1079,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1096,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FanCoil_HybridVent_VentSch.idf b/testfiles/FanCoil_HybridVent_VentSch.idf index 53ff01fc9d4..0388f0de16f 100644 --- a/testfiles/FanCoil_HybridVent_VentSch.idf +++ b/testfiles/FanCoil_HybridVent_VentSch.idf @@ -901,6 +901,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +933,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +950,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +967,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +984,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1001,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1012,6 +1018,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1035,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1044,6 +1052,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1069,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1086,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1103,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1120,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1137,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1140,6 +1154,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1171,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1172,6 +1188,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1205,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1222,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1239,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Fault_ChillerSWTSensorOffset_RefBldgLargeOfficeNew2004.idf b/testfiles/Fault_ChillerSWTSensorOffset_RefBldgLargeOfficeNew2004.idf index 50f3cb43ce2..fbb36323971 100644 --- a/testfiles/Fault_ChillerSWTSensorOffset_RefBldgLargeOfficeNew2004.idf +++ b/testfiles/Fault_ChillerSWTSensorOffset_RefBldgLargeOfficeNew2004.idf @@ -891,6 +891,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +908,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +925,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +942,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +959,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +976,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +993,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1010,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1027,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1044,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1061,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1067,6 +1078,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1112,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1180,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1197,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1214,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1231,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1282,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1299,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1316,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1350,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1384,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1401,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1387,6 +1418,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1435,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1452,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1469,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1486,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1467,6 +1503,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1483,6 +1520,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1537,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1515,6 +1554,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1571,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1588,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1605,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1622,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1639,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1656,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1673,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1643,6 +1690,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1659,6 +1707,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1675,6 +1724,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1741,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1792,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1755,6 +1809,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1826,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1787,6 +1843,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1803,6 +1860,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1819,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1928,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1945,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1899,6 +1962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1915,6 +1979,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1931,6 +1996,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1947,6 +2013,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1963,6 +2030,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1979,6 +2047,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1995,6 +2064,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2011,6 +2081,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2027,6 +2098,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2115,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,6 +2132,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2075,6 +2149,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2107,6 +2183,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2123,6 +2200,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2234,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2171,6 +2251,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2268,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2203,6 +2285,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2319,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2251,6 +2336,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2267,6 +2353,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2283,6 +2370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2299,6 +2387,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2315,6 +2404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,6 +2421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2438,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2455,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2379,6 +2472,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2395,6 +2489,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2411,6 +2506,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2427,6 +2523,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2443,6 +2540,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2459,6 +2557,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2574,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2491,6 +2591,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2608,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2523,6 +2625,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2539,6 +2642,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2555,6 +2659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2571,6 +2676,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2587,6 +2693,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2603,6 +2710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2619,6 +2727,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2635,6 +2744,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2667,6 +2778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2683,6 +2795,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2829,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2846,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2863,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2795,6 +2914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2931,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2827,6 +2948,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2843,6 +2965,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2859,6 +2982,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2875,6 +2999,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2891,6 +3016,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2907,6 +3033,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2923,6 +3050,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2939,6 +3067,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2955,6 +3084,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4196,97 +4326,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/Fault_CoilSATSensorOffset.idf b/testfiles/Fault_CoilSATSensorOffset.idf index 6c5c71ea92a..1bc6c47451e 100644 --- a/testfiles/Fault_CoilSATSensorOffset.idf +++ b/testfiles/Fault_CoilSATSensorOffset.idf @@ -636,6 +636,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +653,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +687,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +704,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +738,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -859,6 +869,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +936,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +953,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +987,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1084,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1099,6 +1116,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1133,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1150,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1264,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1311,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1304,6 +1328,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1320,6 +1345,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1336,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1459,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1491,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1508,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1605,6 +1639,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1621,6 +1656,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1637,6 +1673,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1685,6 +1724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/Fault_CondenserSWTSensorOffset.idf b/testfiles/Fault_CondenserSWTSensorOffset.idf index 36034687959..24f1976c52e 100644 --- a/testfiles/Fault_CondenserSWTSensorOffset.idf +++ b/testfiles/Fault_CondenserSWTSensorOffset.idf @@ -645,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +847,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +864,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +966,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Fault_FoulingAirFilter_RefBldgMediumOfficeNew2004.idf b/testfiles/Fault_FoulingAirFilter_RefBldgMediumOfficeNew2004.idf index 3145cfe9f20..3bc76e78e42 100644 --- a/testfiles/Fault_FoulingAirFilter_RefBldgMediumOfficeNew2004.idf +++ b/testfiles/Fault_FoulingAirFilter_RefBldgMediumOfficeNew2004.idf @@ -859,6 +859,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +876,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +893,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +910,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +927,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +944,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +961,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +978,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1046,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1063,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1080,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1233,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1250,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1267,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1284,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1301,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1318,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1335,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1352,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1369,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1386,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1403,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1387,6 +1420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1437,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1454,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1471,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1488,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1505,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1522,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1539,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1556,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1531,6 +1573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1547,6 +1590,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1607,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1624,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1658,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1692,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1709,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1726,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1794,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1811,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1787,6 +1845,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1803,6 +1862,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1819,6 +1879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1896,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1913,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1930,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1899,6 +1964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1915,6 +1981,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1931,6 +1998,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1947,6 +2015,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1963,6 +2032,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1979,6 +2049,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1995,6 +2066,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2011,6 +2083,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2027,6 +2100,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2117,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2059,6 +2134,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2075,6 +2151,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2168,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2107,6 +2185,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2123,6 +2202,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2219,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2171,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2270,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2287,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2304,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2321,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2251,6 +2338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2267,6 +2355,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2283,6 +2372,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2299,6 +2389,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2315,6 +2406,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,6 +2423,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2440,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2457,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2379,6 +2474,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2395,6 +2491,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2411,6 +2508,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2427,6 +2525,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2443,6 +2542,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2459,6 +2559,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2576,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2491,6 +2593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2610,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2523,6 +2627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2539,6 +2644,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2555,6 +2661,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2571,6 +2678,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2587,6 +2695,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2603,6 +2712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2619,6 +2729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2635,6 +2746,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2667,6 +2780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2683,6 +2797,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2848,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2865,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2795,6 +2916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2933,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2827,6 +2950,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2843,6 +2967,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2859,6 +2984,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2875,6 +3001,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2891,6 +3018,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4088,91 +4216,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/Fault_FoulingChillerBoiler_RefBldgLargeOfficeNew2004.idf b/testfiles/Fault_FoulingChillerBoiler_RefBldgLargeOfficeNew2004.idf index d888411178c..82855e1a96a 100644 --- a/testfiles/Fault_FoulingChillerBoiler_RefBldgLargeOfficeNew2004.idf +++ b/testfiles/Fault_FoulingChillerBoiler_RefBldgLargeOfficeNew2004.idf @@ -906,6 +906,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +923,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +940,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +957,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +974,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +991,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1008,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1025,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1042,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1059,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1076,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1082,6 +1093,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1110,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1127,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1144,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1161,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1178,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1195,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1212,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1229,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1246,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1263,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1280,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1297,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1314,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1331,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1348,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1365,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1382,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1399,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1416,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1433,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1450,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1467,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1484,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1501,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1518,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1498,6 +1535,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1514,6 +1552,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,6 +1569,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1586,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1603,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1620,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1637,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1654,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1671,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1688,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1658,6 +1705,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1674,6 +1722,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1690,6 +1739,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1756,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1722,6 +1773,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1790,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1807,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1770,6 +1824,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1786,6 +1841,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1858,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1875,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1834,6 +1892,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1909,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1926,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1943,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1898,6 +1960,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1914,6 +1977,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1930,6 +1994,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1946,6 +2011,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1962,6 +2028,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2045,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1994,6 +2062,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2079,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2026,6 +2096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2042,6 +2113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2130,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2074,6 +2147,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2164,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2106,6 +2181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2198,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2215,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2154,6 +2232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2170,6 +2249,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2266,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2283,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2218,6 +2300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2250,6 +2334,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2266,6 +2351,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2282,6 +2368,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2298,6 +2385,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2314,6 +2402,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2330,6 +2419,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2346,6 +2436,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2362,6 +2453,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2378,6 +2470,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2394,6 +2487,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2410,6 +2504,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2521,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2538,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2458,6 +2555,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2572,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2490,6 +2589,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2506,6 +2606,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2623,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2538,6 +2640,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2554,6 +2657,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2570,6 +2674,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2691,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2602,6 +2708,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2725,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2742,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2759,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2666,6 +2776,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2793,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2810,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2714,6 +2827,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2861,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2878,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2895,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2794,6 +2912,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2946,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2842,6 +2963,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2980,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +2997,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2890,6 +3014,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2906,6 +3031,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2922,6 +3048,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2938,6 +3065,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2954,6 +3082,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2970,6 +3099,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4211,97 +4341,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/Fault_FoulingCoil.idf b/testfiles/Fault_FoulingCoil.idf index 72050f45ae6..17cf4aee7a5 100644 --- a/testfiles/Fault_FoulingCoil.idf +++ b/testfiles/Fault_FoulingCoil.idf @@ -576,6 +576,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -592,6 +593,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -608,6 +610,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +627,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +644,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +661,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -672,6 +678,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -688,6 +695,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +712,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +809,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +876,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +893,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +910,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +944,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1024,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1056,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1073,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1090,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1107,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1124,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1204,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1228,6 +1251,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1268,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1285,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1302,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1319,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1399,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1402,6 +1431,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1448,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1465,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1482,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1499,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1579,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1596,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1577,6 +1613,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1630,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1647,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1664,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/Fault_FoulingCoolingTower.idf b/testfiles/Fault_FoulingCoolingTower.idf index 413583d4972..62f7a0ef753 100644 --- a/testfiles/Fault_FoulingCoolingTower.idf +++ b/testfiles/Fault_FoulingCoolingTower.idf @@ -653,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +685,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +719,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +736,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +753,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +770,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +804,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +838,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +855,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +872,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +923,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +957,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +974,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +991,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Fault_FoulingEvapCooler_StripMallZoneEvapCooler.idf b/testfiles/Fault_FoulingEvapCooler_StripMallZoneEvapCooler.idf index 2e6b71c4c84..92cae6b8649 100644 --- a/testfiles/Fault_FoulingEvapCooler_StripMallZoneEvapCooler.idf +++ b/testfiles/Fault_FoulingEvapCooler_StripMallZoneEvapCooler.idf @@ -708,6 +708,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +725,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -740,6 +742,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +759,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +776,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +793,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -804,6 +810,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +827,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +844,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -852,6 +861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +878,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +895,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -900,6 +912,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +929,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +946,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +980,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +997,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1014,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1031,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1048,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1044,6 +1065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1082,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1099,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1116,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1133,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1150,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1140,6 +1167,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1184,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1172,6 +1201,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1218,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1235,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1252,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1236,6 +1269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1286,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1303,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1320,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1337,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1316,6 +1354,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1332,6 +1371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1388,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1364,6 +1405,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1422,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1439,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1412,6 +1456,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1428,6 +1473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1490,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1460,6 +1507,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1524,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1541,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1508,6 +1558,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1524,6 +1575,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1592,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1556,6 +1609,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1572,6 +1626,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1643,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1604,6 +1660,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1620,6 +1677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1694,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1652,6 +1711,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3056,61 +3116,71 @@ LGstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, LGstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, SMstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore7 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore8 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/Fault_HumidistatOffset_Supermarket.idf b/testfiles/Fault_HumidistatOffset_Supermarket.idf index 31693c852a9..8d482348595 100644 --- a/testfiles/Fault_HumidistatOffset_Supermarket.idf +++ b/testfiles/Fault_HumidistatOffset_Supermarket.idf @@ -951,6 +951,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +968,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1002,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1019,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1036,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1053,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1070,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1087,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1104,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1121,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1138,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,25 +1203,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Fault_HumidistatOffset_ThermostatOffset_Supermarket.idf b/testfiles/Fault_HumidistatOffset_ThermostatOffset_Supermarket.idf index ce55b8c226b..b515aaab126 100644 --- a/testfiles/Fault_HumidistatOffset_ThermostatOffset_Supermarket.idf +++ b/testfiles/Fault_HumidistatOffset_ThermostatOffset_Supermarket.idf @@ -951,6 +951,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +968,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1002,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1019,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1036,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1053,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1070,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1087,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1104,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1121,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1138,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,25 +1203,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Fault_ThermostatOffset_RefBldgMediumOfficeNew2004.idf b/testfiles/Fault_ThermostatOffset_RefBldgMediumOfficeNew2004.idf index 2ba82e91e6d..5c059c0bc88 100644 --- a/testfiles/Fault_ThermostatOffset_RefBldgMediumOfficeNew2004.idf +++ b/testfiles/Fault_ThermostatOffset_RefBldgMediumOfficeNew2004.idf @@ -859,6 +859,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +876,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +893,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +910,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +927,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +944,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +961,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +978,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1046,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1063,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1080,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1233,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1250,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1267,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1284,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1301,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1318,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1335,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1352,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1369,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1386,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1403,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1387,6 +1420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1437,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1454,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1471,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1488,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1505,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1522,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1539,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1556,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1531,6 +1573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1547,6 +1590,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1607,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1624,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1658,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1692,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1709,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1726,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1794,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1811,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1787,6 +1845,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1803,6 +1862,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1819,6 +1879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1896,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1913,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1930,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1899,6 +1964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1915,6 +1981,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1931,6 +1998,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1947,6 +2015,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1963,6 +2032,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1979,6 +2049,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1995,6 +2066,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2011,6 +2083,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2027,6 +2100,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2117,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2059,6 +2134,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2075,6 +2151,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2168,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2107,6 +2185,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2123,6 +2202,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2219,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2171,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2270,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2287,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2304,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2321,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2251,6 +2338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2267,6 +2355,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2283,6 +2372,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2299,6 +2389,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2315,6 +2406,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,6 +2423,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2440,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2457,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2379,6 +2474,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2395,6 +2491,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2411,6 +2508,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2427,6 +2525,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2443,6 +2542,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2459,6 +2559,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2576,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2491,6 +2593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2610,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2523,6 +2627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2539,6 +2644,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2555,6 +2661,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2571,6 +2678,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2587,6 +2695,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2603,6 +2712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2619,6 +2729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2635,6 +2746,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2667,6 +2780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2683,6 +2797,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2848,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2865,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2795,6 +2916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2933,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2827,6 +2950,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2843,6 +2967,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2859,6 +2984,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2875,6 +3001,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2891,6 +3018,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4088,91 +4216,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/Flr_Rf_8Sides.idf b/testfiles/Flr_Rf_8Sides.idf index 3bda3eff5e1..20848d2c658 100644 --- a/testfiles/Flr_Rf_8Sides.idf +++ b/testfiles/Flr_Rf_8Sides.idf @@ -390,6 +390,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -421,6 +422,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -437,6 +439,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -453,6 +456,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -469,6 +473,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -485,6 +490,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -501,6 +507,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -517,6 +524,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -533,6 +541,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -553,6 +562,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FluidCooler.idf b/testfiles/FluidCooler.idf index dcd4d8290ef..76e18ec62c5 100644 --- a/testfiles/FluidCooler.idf +++ b/testfiles/FluidCooler.idf @@ -646,6 +646,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +695,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +712,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +729,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +746,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -757,6 +763,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +780,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +797,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +814,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +831,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +848,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +865,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +882,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +899,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +916,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +933,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +950,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +967,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +984,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FluidCoolerTwoSpeed.idf b/testfiles/FluidCoolerTwoSpeed.idf index fdfa75409a1..3ecb2db2894 100644 --- a/testfiles/FluidCoolerTwoSpeed.idf +++ b/testfiles/FluidCoolerTwoSpeed.idf @@ -660,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +709,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +743,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +760,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +777,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +862,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +879,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +981,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +998,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FourPipeBeamLargeOffice.idf b/testfiles/FourPipeBeamLargeOffice.idf index c744222bd3b..3692eab3fa9 100644 --- a/testfiles/FourPipeBeamLargeOffice.idf +++ b/testfiles/FourPipeBeamLargeOffice.idf @@ -859,6 +859,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -875,6 +876,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +893,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +910,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +927,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +944,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +961,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +978,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +995,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1012,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1029,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1035,6 +1046,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1063,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1080,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1097,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1148,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1233,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1250,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1267,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1284,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1301,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1335,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1352,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1369,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1386,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1403,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1387,6 +1420,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1437,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1454,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1435,6 +1471,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1451,6 +1488,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1467,6 +1505,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1483,6 +1522,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1539,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1556,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1573,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1590,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1607,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1624,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1595,6 +1641,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1611,6 +1658,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1675,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1643,6 +1692,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1709,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1726,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1760,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1723,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1794,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1811,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1828,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1787,6 +1845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1803,6 +1862,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1819,6 +1879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1896,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1913,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1930,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1947,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1899,6 +1964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1915,6 +1981,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1931,6 +1998,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1947,6 +2015,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1963,6 +2032,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1979,6 +2049,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1995,6 +2066,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2011,6 +2083,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2027,6 +2100,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2117,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2059,6 +2134,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2075,6 +2151,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2168,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2107,6 +2185,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2123,6 +2202,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2139,6 +2219,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2236,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2171,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2270,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2287,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2304,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2321,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2251,6 +2338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2267,6 +2355,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2283,6 +2372,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2299,6 +2389,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2315,6 +2406,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,6 +2423,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2440,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2457,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2379,6 +2474,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2395,6 +2491,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2411,6 +2508,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2427,6 +2525,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2443,6 +2542,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2459,6 +2559,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2576,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2491,6 +2593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2610,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2523,6 +2627,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2539,6 +2644,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2555,6 +2661,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2571,6 +2678,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2587,6 +2695,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2603,6 +2712,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2619,6 +2729,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2635,6 +2746,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2763,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2667,6 +2780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2683,6 +2797,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2699,6 +2814,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2831,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2848,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2865,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2899,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2795,6 +2916,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2933,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2827,6 +2950,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2843,6 +2967,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2859,6 +2984,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2875,6 +3001,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2891,6 +3018,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2907,6 +3035,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2923,6 +3052,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4164,97 +4294,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/FreeCoolingChiller.idf b/testfiles/FreeCoolingChiller.idf index 7535d9c58d8..9fc6f026fee 100644 --- a/testfiles/FreeCoolingChiller.idf +++ b/testfiles/FreeCoolingChiller.idf @@ -788,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +852,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnNorth:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -866,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnEast:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +886,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnWest:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +903,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -914,6 +920,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +969,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -992,6 +1001,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnWest:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1018,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnNorth:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1035,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnEast:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1052,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1069,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1086,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1103,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1120,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnWest:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1137,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnEast:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1154,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZnNorth:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1171,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Furnace.idf b/testfiles/Furnace.idf index 1c53d3c614a..9a4bb7217ed 100644 --- a/testfiles/Furnace.idf +++ b/testfiles/Furnace.idf @@ -405,6 +405,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -421,6 +422,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -437,6 +439,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -453,6 +456,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -469,6 +473,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -485,6 +490,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -501,6 +507,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -517,6 +524,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -533,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -549,6 +558,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -565,6 +575,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -581,6 +592,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -597,6 +609,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -613,6 +626,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +643,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +677,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -677,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -693,6 +711,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +728,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceFuelOil.idf b/testfiles/FurnaceFuelOil.idf index f1a7dad033e..b2e7409ea6c 100644 --- a/testfiles/FurnaceFuelOil.idf +++ b/testfiles/FurnaceFuelOil.idf @@ -406,6 +406,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -422,6 +423,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -438,6 +440,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -454,6 +457,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +474,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -486,6 +491,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -502,6 +508,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +525,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +542,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +559,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -566,6 +576,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +593,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -598,6 +610,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -614,6 +627,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +644,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +661,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +678,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -678,6 +695,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +712,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +729,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnacePLRHeatingCoil.idf b/testfiles/FurnacePLRHeatingCoil.idf index d1a0003b169..d1784a2c018 100644 --- a/testfiles/FurnacePLRHeatingCoil.idf +++ b/testfiles/FurnacePLRHeatingCoil.idf @@ -436,6 +436,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -452,6 +453,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -468,6 +470,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -484,6 +487,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -500,6 +504,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -516,6 +521,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +538,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +555,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +572,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +589,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +606,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +623,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +640,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +657,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +674,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +691,7 @@ Wall, !- Surface Type EXTWALL82, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +708,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +725,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +742,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +759,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceWithDXSystem.idf b/testfiles/FurnaceWithDXSystem.idf index 7cd2ccf2672..3c65eddd04a 100644 --- a/testfiles/FurnaceWithDXSystem.idf +++ b/testfiles/FurnaceWithDXSystem.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceWithDXSystemComfortControl.idf b/testfiles/FurnaceWithDXSystemComfortControl.idf index f5290be4db5..1be2129afd9 100644 --- a/testfiles/FurnaceWithDXSystemComfortControl.idf +++ b/testfiles/FurnaceWithDXSystemComfortControl.idf @@ -439,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -455,6 +456,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -471,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +490,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -503,6 +507,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -519,6 +524,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +575,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -583,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +609,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -615,6 +626,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -631,6 +643,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +694,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +728,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +745,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +762,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceWithDXSystemRHcontrol.idf b/testfiles/FurnaceWithDXSystemRHcontrol.idf index e70f6d533e8..d541d27b39c 100644 --- a/testfiles/FurnaceWithDXSystemRHcontrol.idf +++ b/testfiles/FurnaceWithDXSystemRHcontrol.idf @@ -675,6 +675,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +709,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +743,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +760,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +777,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +862,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +879,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +981,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +998,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceWithDXSystemRHcontrol_cyclingfan.idf b/testfiles/FurnaceWithDXSystemRHcontrol_cyclingfan.idf index ef4318e5d83..efe8001eeb7 100644 --- a/testfiles/FurnaceWithDXSystemRHcontrol_cyclingfan.idf +++ b/testfiles/FurnaceWithDXSystemRHcontrol_cyclingfan.idf @@ -452,6 +452,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -468,6 +469,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -484,6 +486,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -500,6 +503,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -516,6 +520,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -532,6 +537,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +554,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +571,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +588,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -596,6 +605,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +622,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +639,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -644,6 +656,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +673,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +690,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +707,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +724,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +741,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +758,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +775,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf index abed83757d7..3bae146939b 100644 --- a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf +++ b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf @@ -441,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +458,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -489,6 +492,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -505,6 +509,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -521,6 +526,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +577,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -601,6 +611,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -617,6 +628,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -633,6 +645,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +696,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +730,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +747,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +764,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GSHP-GLHE-CalcGFunctions.idf b/testfiles/GSHP-GLHE-CalcGFunctions.idf index 174af730478..971d5d61dd1 100644 --- a/testfiles/GSHP-GLHE-CalcGFunctions.idf +++ b/testfiles/GSHP-GLHE-CalcGFunctions.idf @@ -395,6 +395,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -411,6 +412,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -427,6 +429,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -443,6 +446,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -459,6 +463,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ Floor, !- Surface Type Floor Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,105 +693,105 @@ Autosize, !- Rated Water Flow Rate {m3/s} Autosize, !- Gross Rated Heating Capacity {W} 4.2, !- Gross Rated Heating COP {W/W} - HeatCapCurve, !- Heating Capacity Coefficient Curve Name + HeatCapCurve, !- Heating Capacity Curve Name HeatPowCurve; !- Heating Power Consumption Curve Name !- =========== ALL OBJECTS IN CLASS: CURVE:QUADLINEAR =========== Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: CURVE:QUINTLINEAR =========== Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER =========== diff --git a/testfiles/GSHP-GLHE.idf b/testfiles/GSHP-GLHE.idf index e634824da51..9636b7c522a 100644 --- a/testfiles/GSHP-GLHE.idf +++ b/testfiles/GSHP-GLHE.idf @@ -570,6 +570,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +587,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +604,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +621,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +638,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +655,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +672,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +689,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +706,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +740,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +757,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +774,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +791,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +808,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +825,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +842,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +859,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +876,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +893,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +910,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +944,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +961,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +978,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1063,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1080,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1148,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1165,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/GSHP-Slinky.idf b/testfiles/GSHP-Slinky.idf index 5775b95c300..596e7064935 100644 --- a/testfiles/GSHP-Slinky.idf +++ b/testfiles/GSHP-Slinky.idf @@ -570,6 +570,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +587,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +604,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +621,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +638,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +655,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +672,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +689,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +706,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +740,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +757,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +774,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +791,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +808,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +825,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +842,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +859,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +876,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +893,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +910,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +944,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +961,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +978,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1046,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1063,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1080,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1097,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1148,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1165,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1199,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/GSHPSimple-GLHE.idf b/testfiles/GSHPSimple-GLHE.idf index 0e0e64f26f3..9afd8d5c59d 100644 --- a/testfiles/GSHPSimple-GLHE.idf +++ b/testfiles/GSHPSimple-GLHE.idf @@ -717,6 +717,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +749,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +766,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +783,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +800,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +817,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +834,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +851,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +868,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +885,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +902,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +919,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +936,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +953,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +970,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +987,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -988,6 +1004,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1021,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1038,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1055,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1325,12 +1345,12 @@ CoolPowCurve; !- Cooling Compressor Power Curve Name Curve:QuadLinear, - CoolCapCurve, !- Curve Name - -1.52030596, !- CoefficientC1 - 3.46625667, !- CoefficientC2 - -1.32267797, !- CoefficientC3 - 0.09395678, !- CoefficientC4 - 0.038975504, !- CoefficientC5 + CoolCapCurve, !- Name + -1.52030596, !- Coefficient1 Constant + 3.46625667, !- Coefficient2 w + -1.32267797, !- Coefficient3 x + 0.09395678, !- Coefficient4 y + 0.038975504, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1343,12 +1363,12 @@ 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, !- Curve Name - -8.59564386, !- CoefficientC1 - 0.96265085, !- CoefficientC2 - 8.69489229, !- CoefficientC3 - 0.02501669, !- CoefficientC4 - -0.20132665, !- CoefficientC5 + CoolPowCurve, !- Name + -8.59564386, !- Coefficient1 Constant + 0.96265085, !- Coefficient2 w + 8.69489229, !- Coefficient3 x + 0.02501669, !- Coefficient4 y + -0.20132665, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1643,12 +1663,12 @@ HeatPowCurve; !- Heating Compressor Power Curve Name Curve:QuadLinear, - HeatCapCurve, !- Curve Name - -3.33491153, !- CoefficientC1 - -0.51451946, !- CoefficientC2 - 4.51592706, !- CoefficientC3 - 0.01797107, !- CoefficientC4 - 0.155797661, !- CoefficientC5 + HeatCapCurve, !- Name + -3.33491153, !- Coefficient1 Constant + -0.51451946, !- Coefficient2 w + 4.51592706, !- Coefficient3 x + 0.01797107, !- Coefficient4 y + 0.155797661, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1661,12 +1681,12 @@ 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, !- Curve Name - -8.93121751, !- CoefficientC1 - 8.57035762, !- CoefficientC2 - 1.29660976, !- CoefficientC3 - -0.21629222, !- CoefficientC4 - 0.033862378, !- CoefficientC5 + HeatPowCurve, !- Name + -8.93121751, !- Coefficient1 Constant + 8.57035762, !- Coefficient2 w + 1.29660976, !- Coefficient3 x + -0.21629222, !- Coefficient4 y + 0.033862378, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x diff --git a/testfiles/GasTurbChiller.idf b/testfiles/GasTurbChiller.idf index ba2aff86161..cfd7e17fabd 100644 --- a/testfiles/GasTurbChiller.idf +++ b/testfiles/GasTurbChiller.idf @@ -422,6 +422,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -438,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +456,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -486,6 +490,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -502,6 +507,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +524,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -566,6 +575,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -598,6 +609,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -614,6 +626,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +643,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GasTurbChillerHeatRecoveryAuto.idf b/testfiles/GasTurbChillerHeatRecoveryAuto.idf index 8a71787833b..dc834029504 100644 --- a/testfiles/GasTurbChillerHeatRecoveryAuto.idf +++ b/testfiles/GasTurbChillerHeatRecoveryAuto.idf @@ -531,6 +531,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +565,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -579,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -595,6 +599,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +616,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +684,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +718,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +735,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -739,6 +752,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +769,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +803,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +820,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +837,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +854,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Generator_PVWatts.idf b/testfiles/Generator_PVWatts.idf index 0ac6c3fb911..1fadd01e6fe 100644 --- a/testfiles/Generator_PVWatts.idf +++ b/testfiles/Generator_PVWatts.idf @@ -168,6 +168,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -184,6 +185,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -200,6 +202,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -216,6 +219,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -232,6 +236,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -248,6 +253,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Generators.idf b/testfiles/Generators.idf index cd8ee8bfc65..72979a95958 100644 --- a/testfiles/Generators.idf +++ b/testfiles/Generators.idf @@ -429,6 +429,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -445,6 +446,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -461,6 +463,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -477,6 +480,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -493,6 +497,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -509,6 +514,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -525,6 +531,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -541,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -557,6 +565,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -589,6 +599,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -605,6 +616,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +633,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +684,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +735,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +752,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Generators_Transformer.idf b/testfiles/Generators_Transformer.idf index 99ecc268f16..a59ec76b515 100644 --- a/testfiles/Generators_Transformer.idf +++ b/testfiles/Generators_Transformer.idf @@ -762,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +796,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +830,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +847,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +864,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +915,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +949,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +966,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +983,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1000,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1002,6 +1017,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1034,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1051,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1068,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1085,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GeneratorswithPV.idf b/testfiles/GeneratorswithPV.idf index 08c54ae8a6b..6da31cf5aef 100644 --- a/testfiles/GeneratorswithPV.idf +++ b/testfiles/GeneratorswithPV.idf @@ -179,7 +179,7 @@ ConstructionProperty:InternalHeatSource, PanelSource, !- Name PVSpandrlPanel, !- Construction Name - 1, !- Source Present After Layer Number + 1, !- Thermal Source Present After Layer Number 1, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.0, !- Tube Spacing {m} @@ -354,6 +354,7 @@ floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -370,6 +371,7 @@ Wall, !- Surface Type PVSpandrlPanel, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +388,7 @@ Wall, !- Surface Type PVSpandrlPanel, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -402,6 +405,7 @@ Wall, !- Surface Type PVSpandrlPanel, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -418,6 +422,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -434,6 +439,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -450,6 +456,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -466,6 +473,7 @@ roof, !- Surface Type PVRoofPaverUnderlayment, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition PVRoofPaverSystem1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +490,7 @@ roof, !- Surface Type PVRoofPaverUnderlayment, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition PVRoofPaverSystem2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +507,7 @@ roof, !- Surface Type PVRoofPaverUnderlayment, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition PVRoofPaverSystem3, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GeneratorwithWindTurbine.idf b/testfiles/GeneratorwithWindTurbine.idf index 85373f8ec73..74470be0677 100644 --- a/testfiles/GeneratorwithWindTurbine.idf +++ b/testfiles/GeneratorwithWindTurbine.idf @@ -279,6 +279,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -295,6 +296,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -311,6 +313,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -327,6 +330,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -343,6 +347,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -359,6 +364,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GeometryTest.idf b/testfiles/GeometryTest.idf index 93d48001e9d..dc0476579dc 100644 --- a/testfiles/GeometryTest.idf +++ b/testfiles/GeometryTest.idf @@ -924,6 +924,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +941,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +958,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +975,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +992,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1009,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name PSI FOYER, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1035,6 +1041,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1201,6 +1208,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1367,6 +1375,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1392,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1409,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1426,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1443,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1460,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1477,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1523,6 +1538,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1538,19 +1554,22 @@ Zn002:IntM001, !- Name INTERIOR, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone or ZoneList Name - 408.7734; !- Surface Area {m2} + , !- Surface Area {m2} + 408.7734; !- Extended Field InternalMass, Zn002:IntM002, !- Name PARTITION02, !- Construction Name DORM ROOMS AND COMMON AREAS, !- Zone or ZoneList Name - 371.6122; !- Surface Area {m2} + , !- Surface Area {m2} + 371.6122; !- Extended Field BuildingSurface:Detailed, Zn003:Wall001, !- Name Wall, !- Surface Type EXTWALL09, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1567,6 +1586,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1598,6 +1618,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1749,6 +1770,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1765,6 +1787,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1781,6 +1804,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name LEFT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1797,6 +1821,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1813,6 +1838,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1844,6 +1870,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1860,6 +1887,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1876,6 +1904,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1892,6 +1921,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MIDDLE FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1908,6 +1938,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,6 +2090,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2090,6 +2122,7 @@ Wall, !- Surface Type EXTWALL09, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2139,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2156,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2173,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name RIGHT FORK, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/GroundTempOSCCompactSched.idf b/testfiles/GroundTempOSCCompactSched.idf index 641a29c1507..8c1b650f854 100644 --- a/testfiles/GroundTempOSCCompactSched.idf +++ b/testfiles/GroundTempOSCCompactSched.idf @@ -303,6 +303,7 @@ Wall, !- Surface Type Exterior, !- Construction Name OSCTest, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition ExampleOSC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -319,6 +320,7 @@ Wall, !- Surface Type Exterior, !- Construction Name OSCTest, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition OSCTest:East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -335,6 +337,7 @@ Wall, !- Surface Type Exterior, !- Construction Name OSCTest, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition OSCTest:North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -351,6 +354,7 @@ Wall, !- Surface Type Exterior, !- Construction Name OSCTest, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition OSCTest:West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -367,6 +371,7 @@ Ceiling, !- Surface Type CeilingTile, !- Construction Name OSCTest, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OSCTest:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -383,6 +388,7 @@ Floor, !- Surface Type SlabFloor, !- Construction Name OSCTest, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition OSCTest:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -398,7 +404,8 @@ OSCTest:PartitionIntMass,!- Name InteriorWall, !- Construction Name OSCTest, !- Zone or ZoneList Name - 92.9; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9; !- Extended Field SurfaceProperty:OtherSideCoefficients, ExampleOSC, !- Name diff --git a/testfiles/HAMT_DailyProfileReport.idf b/testfiles/HAMT_DailyProfileReport.idf index 67f2a278055..f2da54f386e 100644 --- a/testfiles/HAMT_DailyProfileReport.idf +++ b/testfiles/HAMT_DailyProfileReport.idf @@ -856,6 +856,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +873,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +890,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +907,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +924,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Test room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +941,7 @@ ROOF, !- Surface Type Roof, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HAMT_HourlyProfileReport.idf b/testfiles/HAMT_HourlyProfileReport.idf index 570b4f51cba..8f9fb12a557 100644 --- a/testfiles/HAMT_HourlyProfileReport.idf +++ b/testfiles/HAMT_HourlyProfileReport.idf @@ -841,6 +841,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +858,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +875,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +892,7 @@ WALL, !- Surface Type Exterior wall, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +909,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Test room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +926,7 @@ ROOF, !- Surface Type Roof, !- Construction Name Test room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HPAirToAir_wSolarCollectorHWCoil.idf b/testfiles/HPAirToAir_wSolarCollectorHWCoil.idf index 3cbb241a8fa..645ab86d076 100644 --- a/testfiles/HPAirToAir_wSolarCollectorHWCoil.idf +++ b/testfiles/HPAirToAir_wSolarCollectorHWCoil.idf @@ -678,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -694,6 +695,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -710,6 +712,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +729,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +746,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +763,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -774,6 +780,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -790,6 +797,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +814,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -822,6 +831,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +848,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +865,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -870,6 +882,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +899,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +916,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +933,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +950,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +1000,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1017,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1034,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1051,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1068,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1085,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1102,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1119,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HP_wICSSolarCollector.idf b/testfiles/HP_wICSSolarCollector.idf index ac42932ffe9..e32636c7e58 100644 --- a/testfiles/HP_wICSSolarCollector.idf +++ b/testfiles/HP_wICSSolarCollector.idf @@ -717,6 +717,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +734,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +751,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +818,7 @@ CEILING, !- Surface Type CEILING01, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AtticZn:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +835,7 @@ Floor, !- Surface Type reverseCEILING01, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +852,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition ICS Collector 2 OSCM, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition ICS Collector 2 OSCM, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +886,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +903,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1003,6 +1021,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1038,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1055,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1051,6 +1072,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1089,7 @@ Ceiling, !- Surface Type CEILING01, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AtticZn:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1106,7 @@ Floor, !- Surface Type reverseCEILING01, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1123,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1115,6 +1140,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1131,6 +1157,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1147,6 +1174,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1162,6 +1190,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1178,6 +1207,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1194,6 +1224,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1209,6 +1240,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1257,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1274,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1291,7 @@ Ceiling, !- Surface Type CEILING01, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AtticZn:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1308,7 @@ Floor, !- Surface Type reverseCEILING01, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1325,7 @@ Roof, !- Surface Type ROOF-1, !- Construction Name Attic ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HVACStandAloneERV_Economizer.idf b/testfiles/HVACStandAloneERV_Economizer.idf index dec559f63cf..5a61cb2f9f6 100644 --- a/testfiles/HVACStandAloneERV_Economizer.idf +++ b/testfiles/HVACStandAloneERV_Economizer.idf @@ -683,6 +683,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +700,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +717,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +734,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +751,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +768,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +802,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -811,6 +819,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -827,6 +836,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +853,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -859,6 +870,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -875,6 +887,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +921,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -923,6 +938,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -939,6 +955,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +972,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +989,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1006,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneBaseboardHeat.idf b/testfiles/HVACTemplate-5ZoneBaseboardHeat.idf index d67c5dc1087..32c7901de81 100644 --- a/testfiles/HVACTemplate-5ZoneBaseboardHeat.idf +++ b/testfiles/HVACTemplate-5ZoneBaseboardHeat.idf @@ -633,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +684,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +701,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -713,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +786,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +890,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +957,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +974,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1025,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1129,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1144,6 +1161,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,6 +1178,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1176,6 +1195,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1192,6 +1212,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1208,6 +1229,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1333,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1357,6 +1380,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1397,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1414,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1431,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1448,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1552,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1555,6 +1584,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1571,6 +1601,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1618,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1635,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1652,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1722,6 +1756,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1773,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1790,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1807,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1786,6 +1824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1841,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneConstantVolumeChillerBoiler.idf b/testfiles/HVACTemplate-5ZoneConstantVolumeChillerBoiler.idf index 14a7a6aee32..c1ea4b19abd 100644 --- a/testfiles/HVACTemplate-5ZoneConstantVolumeChillerBoiler.idf +++ b/testfiles/HVACTemplate-5ZoneConstantVolumeChillerBoiler.idf @@ -619,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +636,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +653,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +687,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +738,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +852,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +919,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +936,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +953,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +987,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1067,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1082,6 +1099,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1116,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1133,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1150,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1247,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1271,6 +1294,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1311,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1328,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1345,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1442,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1445,6 +1474,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1491,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1508,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1622,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1639,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1673,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneDualDuct.idf b/testfiles/HVACTemplate-5ZoneDualDuct.idf index 0f79de08a60..866746509a8 100644 --- a/testfiles/HVACTemplate-5ZoneDualDuct.idf +++ b/testfiles/HVACTemplate-5ZoneDualDuct.idf @@ -617,6 +617,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +651,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +685,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +702,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +736,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +850,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +917,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +951,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +968,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +985,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1065,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1097,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1114,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1112,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1245,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1269,6 +1292,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1309,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1326,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1440,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1472,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1489,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1506,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1620,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1637,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1654,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1671,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1688,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneFanCoil-DOAS.idf b/testfiles/HVACTemplate-5ZoneFanCoil-DOAS.idf index 0bdb6017779..6ba3a641d3e 100644 --- a/testfiles/HVACTemplate-5ZoneFanCoil-DOAS.idf +++ b/testfiles/HVACTemplate-5ZoneFanCoil-DOAS.idf @@ -614,6 +614,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +682,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -694,6 +699,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +847,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +914,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +931,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +948,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1062,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1094,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1111,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1128,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1242,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1289,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1306,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1323,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1409,6 +1437,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1440,6 +1469,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1456,6 +1486,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1472,6 +1503,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1504,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1617,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1599,6 +1634,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1615,6 +1651,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1631,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1647,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1663,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneFanCoil.idf b/testfiles/HVACTemplate-5ZoneFanCoil.idf index 07b42ba4d56..b9ec458f7b6 100644 --- a/testfiles/HVACTemplate-5ZoneFanCoil.idf +++ b/testfiles/HVACTemplate-5ZoneFanCoil.idf @@ -628,6 +628,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +645,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +662,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +679,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +696,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +713,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +730,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +747,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +764,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +781,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +861,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +928,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +945,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +979,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1076,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1108,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1125,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1142,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1159,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1176,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1256,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1280,6 +1303,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1320,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1337,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1354,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1371,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1451,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1454,6 +1483,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1500,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1517,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1534,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1551,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1597,6 +1631,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1648,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1665,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1682,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1699,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1716,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneFurnaceDX.idf b/testfiles/HVACTemplate-5ZoneFurnaceDX.idf index c37ad75c354..258f8ae54ad 100644 --- a/testfiles/HVACTemplate-5ZoneFurnaceDX.idf +++ b/testfiles/HVACTemplate-5ZoneFurnaceDX.idf @@ -531,6 +531,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -547,6 +548,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +565,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +582,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +599,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +616,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -627,6 +633,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -643,6 +650,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +667,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +684,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +701,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +718,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +735,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +752,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +769,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +786,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +803,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +820,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +837,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +854,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +871,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +888,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +905,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +922,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +939,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +956,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +973,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +990,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +1007,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1024,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1041,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1058,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1075,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1092,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1109,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1126,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1143,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1160,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1177,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1194,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZonePTAC-DOAS.idf b/testfiles/HVACTemplate-5ZonePTAC-DOAS.idf index 1afb8bda443..c7dbe657d6f 100644 --- a/testfiles/HVACTemplate-5ZonePTAC-DOAS.idf +++ b/testfiles/HVACTemplate-5ZonePTAC-DOAS.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZonePTAC.idf b/testfiles/HVACTemplate-5ZonePTAC.idf index 41b117fa4c1..7fd7ba64cdc 100644 --- a/testfiles/HVACTemplate-5ZonePTAC.idf +++ b/testfiles/HVACTemplate-5ZonePTAC.idf @@ -627,6 +627,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +644,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +661,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +678,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +695,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +712,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +746,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +763,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +780,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -850,6 +860,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +927,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +944,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +961,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +978,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1075,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1107,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1124,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1141,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1175,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1255,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1279,6 +1302,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1319,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1336,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1370,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1450,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1453,6 +1482,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1499,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1516,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1533,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1550,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1596,6 +1630,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1647,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1664,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1681,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1698,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1715,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZonePTHP.idf b/testfiles/HVACTemplate-5ZonePTHP.idf index 59b8be306d8..30d89c5502c 100644 --- a/testfiles/HVACTemplate-5ZonePTHP.idf +++ b/testfiles/HVACTemplate-5ZonePTHP.idf @@ -627,6 +627,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +644,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +661,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +678,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +695,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +712,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +729,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +746,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +763,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +780,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -850,6 +860,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +927,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +944,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +961,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +978,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +995,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1075,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1107,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1124,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1141,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1158,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1175,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1255,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1279,6 +1302,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1295,6 +1319,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1311,6 +1336,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1327,6 +1353,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1370,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1450,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1453,6 +1482,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1499,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1516,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1533,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1550,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1596,6 +1630,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1647,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1664,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1681,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1698,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1715,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZonePackagedVAV.idf b/testfiles/HVACTemplate-5ZonePackagedVAV.idf index 1181252b9e6..e3179a7a78c 100644 --- a/testfiles/HVACTemplate-5ZonePackagedVAV.idf +++ b/testfiles/HVACTemplate-5ZonePackagedVAV.idf @@ -613,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +647,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +664,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +681,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +749,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +766,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +846,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +913,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +930,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +947,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +964,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +981,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1061,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1093,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1110,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1127,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1144,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1161,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1241,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1265,6 +1288,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1305,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1322,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1339,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1356,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1408,6 +1436,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1439,6 +1468,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1485,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1471,6 +1502,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1487,6 +1519,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1503,6 +1536,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1616,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1633,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1650,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1630,6 +1667,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1646,6 +1684,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1662,6 +1701,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZonePurchAir.idf b/testfiles/HVACTemplate-5ZonePurchAir.idf index d213897c0f1..2d20c2cfde1 100644 --- a/testfiles/HVACTemplate-5ZonePurchAir.idf +++ b/testfiles/HVACTemplate-5ZonePurchAir.idf @@ -614,6 +614,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +682,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -694,6 +699,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +847,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +914,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +931,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +948,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1062,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1094,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1111,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1128,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1242,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1289,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1306,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1323,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1409,6 +1437,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1440,6 +1469,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1456,6 +1486,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1472,6 +1503,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1504,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1617,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1599,6 +1634,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1615,6 +1651,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1631,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1647,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1663,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1979,3 +2019,4 @@ Output:Table:SummaryReports, AllSummary; !- Report 1 Name + diff --git a/testfiles/HVACTemplate-5ZoneUnitaryHeatPump.idf b/testfiles/HVACTemplate-5ZoneUnitaryHeatPump.idf index efc24cc52df..329241eeb07 100644 --- a/testfiles/HVACTemplate-5ZoneUnitaryHeatPump.idf +++ b/testfiles/HVACTemplate-5ZoneUnitaryHeatPump.idf @@ -566,6 +566,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -582,6 +583,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -598,6 +600,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -614,6 +617,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +634,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +651,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -662,6 +668,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -678,6 +685,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +702,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +736,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -742,6 +753,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +770,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -774,6 +787,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -790,6 +804,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -806,6 +821,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +838,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +855,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +872,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +889,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +906,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +923,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +940,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +957,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +974,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1025,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1042,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1059,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1076,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1093,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1110,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1127,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1144,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1161,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1178,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1195,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1212,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1229,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneUnitarySystem.idf b/testfiles/HVACTemplate-5ZoneUnitarySystem.idf index 5f4c9d1e663..509a922765a 100644 --- a/testfiles/HVACTemplate-5ZoneUnitarySystem.idf +++ b/testfiles/HVACTemplate-5ZoneUnitarySystem.idf @@ -618,6 +618,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +686,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +703,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +918,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +935,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +952,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1066,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1098,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1115,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1132,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1224,6 +1246,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1270,6 +1293,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1310,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1327,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1441,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1444,6 +1473,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1490,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1507,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1621,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1638,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1655,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneVAVFanPowered.idf b/testfiles/HVACTemplate-5ZoneVAVFanPowered.idf index f434ec5225f..ad4f2a5a50c 100644 --- a/testfiles/HVACTemplate-5ZoneVAVFanPowered.idf +++ b/testfiles/HVACTemplate-5ZoneVAVFanPowered.idf @@ -634,6 +634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +651,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +685,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +702,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +736,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +787,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -923,6 +934,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +951,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +968,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +985,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1002,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1082,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1114,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1131,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1240,6 +1262,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1286,6 +1309,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1326,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1457,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1460,6 +1489,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1506,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1557,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1637,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1654,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1671,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1688,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1683,6 +1722,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference.idf b/testfiles/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference.idf index 010d7ab55c8..8ce57b45f53 100644 --- a/testfiles/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference.idf +++ b/testfiles/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference.idf @@ -639,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -687,6 +690,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +707,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -735,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -751,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +792,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +872,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +939,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +956,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +973,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +990,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1007,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1087,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1119,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1136,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1153,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1170,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1187,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1267,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1291,6 +1314,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1331,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1348,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1365,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1382,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1434,6 +1462,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1465,6 +1494,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1511,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1497,6 +1528,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1545,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1562,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1608,6 +1642,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1624,6 +1659,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1640,6 +1676,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1656,6 +1693,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1672,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1688,6 +1727,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneVAVWaterCooled.idf b/testfiles/HVACTemplate-5ZoneVAVWaterCooled.idf index 6141e1d003b..5900e1df46b 100644 --- a/testfiles/HVACTemplate-5ZoneVAVWaterCooled.idf +++ b/testfiles/HVACTemplate-5ZoneVAVWaterCooled.idf @@ -634,6 +634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +651,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +668,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +685,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +702,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +719,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +736,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +753,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +770,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +787,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -923,6 +934,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +951,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +968,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +985,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1002,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1082,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1114,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1131,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1182,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1240,6 +1262,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1286,6 +1309,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1326,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1343,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1360,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1377,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1457,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1460,6 +1489,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1506,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1523,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1540,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1557,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1637,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1654,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1671,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1688,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1705,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1683,6 +1722,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneVRF.idf b/testfiles/HVACTemplate-5ZoneVRF.idf index 7628ecd56a1..6bb83d733b5 100644 --- a/testfiles/HVACTemplate-5ZoneVRF.idf +++ b/testfiles/HVACTemplate-5ZoneVRF.idf @@ -632,6 +632,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +649,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +666,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +683,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +700,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -712,6 +717,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +734,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +751,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +768,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -776,6 +785,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +865,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +932,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +949,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +966,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +983,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +1000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1064,6 +1080,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1112,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1129,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1146,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1163,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1260,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1307,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1324,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1341,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1358,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1375,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1455,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1458,6 +1487,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1504,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1521,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1538,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1555,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1635,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1652,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1669,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1686,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1703,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1681,6 +1720,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler.idf b/testfiles/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler.idf index 22c4174e1e4..98829eadf37 100644 --- a/testfiles/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler.idf +++ b/testfiles/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler.idf @@ -628,6 +628,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +645,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +662,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +679,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +696,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +713,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +730,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +747,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +764,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +781,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +861,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +928,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +945,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +962,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +979,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1076,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1108,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1125,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1142,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1159,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1176,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1256,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1280,6 +1303,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1320,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1337,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1328,6 +1354,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1371,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1423,6 +1451,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1454,6 +1483,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1500,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1517,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1534,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1551,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1597,6 +1631,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1648,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1665,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1682,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1699,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1716,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeaderedPumpsConSpeed.idf b/testfiles/HeaderedPumpsConSpeed.idf index 220d8a91b5f..365865e461d 100644 --- a/testfiles/HeaderedPumpsConSpeed.idf +++ b/testfiles/HeaderedPumpsConSpeed.idf @@ -554,6 +554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -570,6 +571,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -586,6 +588,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +605,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +622,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +639,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -650,6 +656,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -666,6 +673,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +690,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +724,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +741,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +758,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +775,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +792,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +809,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +826,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +843,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +860,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +877,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +894,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +911,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +928,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +945,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +962,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +979,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1013,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1030,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1047,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1064,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1081,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1098,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1115,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1132,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1149,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeaderedPumpsVarSpeed.idf b/testfiles/HeaderedPumpsVarSpeed.idf index 9fab0544864..30ed639cb0f 100644 --- a/testfiles/HeaderedPumpsVarSpeed.idf +++ b/testfiles/HeaderedPumpsVarSpeed.idf @@ -608,6 +608,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +625,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +642,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +676,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +693,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +710,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +727,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +841,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +908,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +925,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +942,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +959,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +976,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1056,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1071,6 +1088,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1105,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1122,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1139,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1236,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1260,6 +1283,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1300,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1317,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1334,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1351,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1431,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1463,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1450,6 +1480,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1497,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1514,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1531,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1577,6 +1611,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1628,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1645,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1662,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1679,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1696,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeatPump.idf b/testfiles/HeatPump.idf index 5682e9392f7..c96a94a80c2 100644 --- a/testfiles/HeatPump.idf +++ b/testfiles/HeatPump.idf @@ -417,6 +417,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -433,6 +434,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -449,6 +451,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -465,6 +468,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -481,6 +485,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -497,6 +502,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -513,6 +519,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -529,6 +536,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -545,6 +553,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -561,6 +570,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -577,6 +587,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -593,6 +604,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -609,6 +621,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -625,6 +638,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +655,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +672,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +689,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +706,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +723,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +740,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpAirToAirWithRHcontrol.idf b/testfiles/HeatPumpAirToAirWithRHcontrol.idf index b3944b10d8e..73e38afc6ce 100644 --- a/testfiles/HeatPumpAirToAirWithRHcontrol.idf +++ b/testfiles/HeatPumpAirToAirWithRHcontrol.idf @@ -677,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +694,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +728,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +745,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +762,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +813,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +847,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +864,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +881,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +932,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +966,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +983,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +1000,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpAuto.idf b/testfiles/HeatPumpAuto.idf index eacc3a0a9a2..88e3dd75c03 100644 --- a/testfiles/HeatPumpAuto.idf +++ b/testfiles/HeatPumpAuto.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpCycFanWithEcono.idf b/testfiles/HeatPumpCycFanWithEcono.idf index 293a12b1f0b..db147dab9f2 100644 --- a/testfiles/HeatPumpCycFanWithEcono.idf +++ b/testfiles/HeatPumpCycFanWithEcono.idf @@ -341,6 +341,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -357,6 +358,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -373,6 +375,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -389,6 +392,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -405,6 +409,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -421,6 +426,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -437,6 +443,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -453,6 +460,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -469,6 +477,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -485,6 +494,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -501,6 +511,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -517,6 +528,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -533,6 +545,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -549,6 +562,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -565,6 +579,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -581,6 +596,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -597,6 +613,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -613,6 +630,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -629,6 +647,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -645,6 +664,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpIAQP_DCV.idf b/testfiles/HeatPumpIAQP_DCV.idf index 4002f683510..d171a3fcdd9 100644 --- a/testfiles/HeatPumpIAQP_DCV.idf +++ b/testfiles/HeatPumpIAQP_DCV.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpIAQP_GenericContamControl.idf b/testfiles/HeatPumpIAQP_GenericContamControl.idf index b452dd1557a..29a372cc933 100644 --- a/testfiles/HeatPumpIAQP_GenericContamControl.idf +++ b/testfiles/HeatPumpIAQP_GenericContamControl.idf @@ -418,6 +418,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -434,6 +435,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -450,6 +452,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -466,6 +469,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -482,6 +486,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -498,6 +503,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +520,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +537,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -546,6 +554,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -562,6 +571,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +588,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +605,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +622,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +639,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +656,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +673,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +690,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -690,6 +707,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -706,6 +724,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -722,6 +741,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpProportionalControl_DCV.idf b/testfiles/HeatPumpProportionalControl_DCV.idf index b65bc53962c..4f3ba9dd324 100644 --- a/testfiles/HeatPumpProportionalControl_DCV.idf +++ b/testfiles/HeatPumpProportionalControl_DCV.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpProportionalControl_DCVDesignRate.idf b/testfiles/HeatPumpProportionalControl_DCVDesignRate.idf index 35ae1a8c06e..d937ea39de2 100644 --- a/testfiles/HeatPumpProportionalControl_DCVDesignRate.idf +++ b/testfiles/HeatPumpProportionalControl_DCVDesignRate.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpSecondaryCoil.idf b/testfiles/HeatPumpSecondaryCoil.idf index 69dd747b212..78ee7f9cb24 100644 --- a/testfiles/HeatPumpSecondaryCoil.idf +++ b/testfiles/HeatPumpSecondaryCoil.idf @@ -461,6 +461,7 @@ Wall, !- Surface Type EXTWALL802, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -477,6 +478,7 @@ Wall, !- Surface Type EXTWALL802, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -493,6 +495,7 @@ Wall, !- Surface Type PARTITION06reversed, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -509,6 +512,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -525,6 +529,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -541,6 +546,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -557,6 +563,7 @@ Wall, !- Surface Type EXTWALL802, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +580,7 @@ Wall, !- Surface Type EXTWALL802, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -589,6 +597,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -605,6 +614,7 @@ Wall, !- Surface Type PARTITION06reversed, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +631,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -637,6 +648,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +665,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +682,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +699,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +716,7 @@ Wall, !- Surface Type PARTITION066, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +733,7 @@ Wall, !- Surface Type PARTITION066, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +750,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +767,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpSimpleDCV.idf b/testfiles/HeatPumpSimpleDCV.idf index bd67a3816d6..d7de35fbd34 100644 --- a/testfiles/HeatPumpSimpleDCV.idf +++ b/testfiles/HeatPumpSimpleDCV.idf @@ -433,6 +433,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -449,6 +450,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -465,6 +467,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -481,6 +484,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -497,6 +501,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -513,6 +518,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -529,6 +535,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -545,6 +552,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -561,6 +569,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -577,6 +586,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -593,6 +603,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -609,6 +620,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -625,6 +637,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +654,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +671,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +688,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +705,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +722,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +739,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +756,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpVRP_DCV.idf b/testfiles/HeatPumpVRP_DCV.idf index 2e21848a0c0..e838669c396 100644 --- a/testfiles/HeatPumpVRP_DCV.idf +++ b/testfiles/HeatPumpVRP_DCV.idf @@ -412,6 +412,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -428,6 +429,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -444,6 +446,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -460,6 +463,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -476,6 +480,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -492,6 +497,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -508,6 +514,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -524,6 +531,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -540,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -556,6 +565,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -572,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -588,6 +599,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -604,6 +616,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -620,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +684,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +718,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +735,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpVSAS.idf b/testfiles/HeatPumpVSAS.idf index c3ba5d7a383..17e7b68c13b 100644 --- a/testfiles/HeatPumpVSAS.idf +++ b/testfiles/HeatPumpVSAS.idf @@ -692,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +709,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +743,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +760,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +777,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -820,6 +828,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +862,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +879,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +896,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +947,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +981,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +998,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1015,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterHeater.idf b/testfiles/HeatPumpWaterHeater.idf index 9348c267998..70892a69c0a 100644 --- a/testfiles/HeatPumpWaterHeater.idf +++ b/testfiles/HeatPumpWaterHeater.idf @@ -669,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +686,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +703,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +720,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +737,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +788,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +805,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +822,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +902,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +969,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +986,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1003,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1020,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1037,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1117,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1132,6 +1149,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1166,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1200,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1217,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1297,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1321,6 +1344,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1361,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1378,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1395,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1412,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1464,6 +1492,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1495,6 +1524,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1541,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1558,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1575,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1559,6 +1592,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1672,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1689,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1740,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1718,6 +1757,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterHeaterStratified.idf b/testfiles/HeatPumpWaterHeaterStratified.idf index 5a02578d606..7e7ebbcfd9f 100644 --- a/testfiles/HeatPumpWaterHeaterStratified.idf +++ b/testfiles/HeatPumpWaterHeaterStratified.idf @@ -670,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +687,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +704,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +721,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +738,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +806,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +823,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +903,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +970,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +987,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1118,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1133,6 +1150,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1167,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1298,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1322,6 +1345,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1362,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1396,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1413,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1493,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1496,6 +1525,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1542,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1528,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1544,6 +1576,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1560,6 +1593,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1673,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1690,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1758,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterToAir.idf b/testfiles/HeatPumpWaterToAir.idf index 52e07db33a5..c3d8eea0417 100644 --- a/testfiles/HeatPumpWaterToAir.idf +++ b/testfiles/HeatPumpWaterToAir.idf @@ -646,6 +646,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +663,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +680,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -694,6 +697,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -710,6 +714,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +731,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +748,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +765,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -774,6 +782,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -790,6 +799,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +946,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +963,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +980,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +997,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1014,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1094,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1109,6 +1126,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1143,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1160,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1177,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1194,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1274,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1298,6 +1321,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1338,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1355,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1372,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1362,6 +1389,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1441,6 +1469,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1472,6 +1501,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1518,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1504,6 +1535,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1520,6 +1552,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1569,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1615,6 +1649,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1631,6 +1666,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1647,6 +1683,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1663,6 +1700,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1679,6 +1717,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1695,6 +1734,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterToAirEquationFit.idf b/testfiles/HeatPumpWaterToAirEquationFit.idf index 551ce257f08..a57722b3860 100644 --- a/testfiles/HeatPumpWaterToAirEquationFit.idf +++ b/testfiles/HeatPumpWaterToAirEquationFit.idf @@ -640,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +657,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +674,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +691,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +708,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +759,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +873,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +940,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +957,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +974,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +991,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1008,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1088,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1120,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1137,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1154,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1171,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1188,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1315,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1332,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1349,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1366,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1383,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1463,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1495,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1512,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1529,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1546,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1563,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1643,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1660,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1677,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3648,98 +3688,98 @@ 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x - Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -0.68126221, !- CoefficientC1 - 1.99529297, !- CoefficientC2 - -0.93611888, !- CoefficientC3 - 0.02081177, !- CoefficientC4 - 0.008438868, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + Curve:QuadLinear, + TotCoolCapCurve, !- Name + -0.68126221, !- Coefficient1 Constant + 1.99529297, !- Coefficient2 w + -0.93611888, !- Coefficient3 x + 0.02081177, !- Coefficient4 y + 0.008438868, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - 2.24209455, !- CoefficientC1 - 7.28913391, !- CoefficientC2 - -9.06079896, !- CoefficientC3 - -0.36729404, !- CoefficientC4 - 0.218826161, !- CoefficientC5 - 0.00901534, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + 2.24209455, !- Coefficient1 Constant + 7.28913391, !- Coefficient2 v + -9.06079896, !- Coefficient3 w + -0.36729404, !- Coefficient4 x + 0.218826161, !- Coefficient5 y + 0.00901534, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.20456384, !- CoefficientC1 - 0.47656454, !- CoefficientC2 - 3.16734236, !- CoefficientC3 - 0.10244637, !- CoefficientC4 - -0.038132556, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.20456384, !- Coefficient1 Constant + 0.47656454, !- Coefficient2 w + 3.16734236, !- Coefficient3 x + 0.10244637, !- Coefficient4 y + -0.038132556, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -5.50102734, !- CoefficientC1 - -0.96688754, !- CoefficientC2 - 7.70755007, !- CoefficientC3 - 0.031928881, !- CoefficientC4 - 0.028112522, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -5.50102734, !- Coefficient1 Constant + -0.96688754, !- Coefficient2 w + 7.70755007, !- Coefficient3 x + 0.031928881, !- Coefficient4 y + 0.028112522, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -7.47517858, !- CoefficientC1 - 6.40876653, !- CoefficientC2 - 1.99711665, !- CoefficientC3 - -0.050682973, !- CoefficientC4 - 0.011385145, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -7.47517858, !- Coefficient1 Constant + 6.40876653, !- Coefficient2 w + 1.99711665, !- Coefficient3 x + -0.050682973, !- Coefficient4 y + 0.011385145, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Output:Variable,*,Unitary System Requested Sensible Cooling Rate,timestep; diff --git a/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf b/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf index b30b8a83454..c0f5b10139d 100644 --- a/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf +++ b/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf @@ -642,6 +642,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +676,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +693,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +710,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +727,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -738,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -754,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +778,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +795,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -865,6 +875,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +942,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +959,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +976,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +993,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1010,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1090,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1105,6 +1122,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1139,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1156,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1173,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1169,6 +1190,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1270,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1294,6 +1317,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1334,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1351,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1368,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1385,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1465,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1468,6 +1497,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1514,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1531,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1548,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1532,6 +1565,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1645,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1627,6 +1662,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1679,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1696,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1713,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1730,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3650,98 +3690,98 @@ 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x - Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -0.68126221, !- CoefficientC1 - 1.99529297, !- CoefficientC2 - -0.93611888, !- CoefficientC3 - 0.02081177, !- CoefficientC4 - 0.008438868, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + Curve:QuadLinear, + TotCoolCapCurve, !- Name + -0.68126221, !- Coefficient1 Constant + 1.99529297, !- Coefficient2 w + -0.93611888, !- Coefficient3 x + 0.02081177, !- Coefficient4 y + 0.008438868, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - 2.24209455, !- CoefficientC1 - 7.28913391, !- CoefficientC2 - -9.06079896, !- CoefficientC3 - -0.36729404, !- CoefficientC4 - 0.218826161, !- CoefficientC5 - 0.00901534, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + 2.24209455, !- Coefficient1 Constant + 7.28913391, !- Coefficient2 v + -9.06079896, !- Coefficient3 w + -0.36729404, !- Coefficient4 x + 0.218826161, !- Coefficient5 y + 0.00901534, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.20456384, !- CoefficientC1 - 0.47656454, !- CoefficientC2 - 3.16734236, !- CoefficientC3 - 0.10244637, !- CoefficientC4 - -0.038132556, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.20456384, !- Coefficient1 Constant + 0.47656454, !- Coefficient2 w + 3.16734236, !- Coefficient3 x + 0.10244637, !- Coefficient4 y + -0.038132556, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -5.50102734, !- CoefficientC1 - -0.96688754, !- CoefficientC2 - 7.70755007, !- CoefficientC3 - 0.031928881, !- CoefficientC4 - 0.028112522, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -5.50102734, !- Coefficient1 Constant + -0.96688754, !- Coefficient2 w + 7.70755007, !- Coefficient3 x + 0.031928881, !- Coefficient4 y + 0.028112522, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -7.47517858, !- CoefficientC1 - 6.40876653, !- CoefficientC2 - 1.99711665, !- CoefficientC3 - -0.050682973, !- CoefficientC4 - 0.011385145, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -7.47517858, !- Coefficient1 Constant + 6.40876653, !- Coefficient2 w + 1.99711665, !- Coefficient3 x + -0.050682973, !- Coefficient4 y + 0.011385145, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Schedule:Compact, Hot Water Demand Schedule, !- Name diff --git a/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel.idf b/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel.idf index c0e7fb6cf6e..d51ddadc18d 100644 --- a/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel.idf +++ b/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel.idf @@ -606,6 +606,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +638,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +655,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -669,6 +672,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +689,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +706,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +723,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +740,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +757,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +774,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +791,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +808,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +825,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -829,6 +842,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -845,6 +859,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +876,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +893,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +910,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +927,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +944,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel2.idf b/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel2.idf index 242ff3b217e..78b2bd0dcfe 100644 --- a/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel2.idf +++ b/testfiles/HeatPumpWaterToAirWithAntifreezeAndLatentModel2.idf @@ -606,6 +606,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +638,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +655,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -669,6 +672,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +689,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +706,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +723,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +740,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +757,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +774,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +791,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +808,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +825,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -829,6 +842,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -845,6 +859,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +876,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +893,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +910,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +927,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +944,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatPumpWaterToAirWithRHControl.idf b/testfiles/HeatPumpWaterToAirWithRHControl.idf index aa2ecf4131b..c69eef79a8b 100644 --- a/testfiles/HeatPumpWaterToAirWithRHControl.idf +++ b/testfiles/HeatPumpWaterToAirWithRHControl.idf @@ -672,6 +672,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +689,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +706,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +723,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +740,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +757,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +774,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +791,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +808,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +825,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +905,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +972,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +989,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1006,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1023,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1040,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1120,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1135,6 +1152,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1169,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1186,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1183,6 +1203,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1199,6 +1220,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1278,6 +1300,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1324,6 +1347,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1364,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1381,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1398,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1415,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1495,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1498,6 +1527,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1544,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1561,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1578,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1595,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1675,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1692,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1709,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1726,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1743,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1760,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3635,98 +3675,98 @@ 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x - Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -0.68126221, !- CoefficientC1 - 1.99529297, !- CoefficientC2 - -0.93611888, !- CoefficientC3 - 0.02081177, !- CoefficientC4 - 0.008438868, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + Curve:QuadLinear, + TotCoolCapCurve, !- Name + -0.68126221, !- Coefficient1 Constant + 1.99529297, !- Coefficient2 w + -0.93611888, !- Coefficient3 x + 0.02081177, !- Coefficient4 y + 0.008438868, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - 2.24209455, !- CoefficientC1 - 7.28913391, !- CoefficientC2 - -9.06079896, !- CoefficientC3 - -0.36729404, !- CoefficientC4 - 0.218826161, !- CoefficientC5 - 0.00901534, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + 2.24209455, !- Coefficient1 Constant + 7.28913391, !- Coefficient2 v + -9.06079896, !- Coefficient3 w + -0.36729404, !- Coefficient4 x + 0.218826161, !- Coefficient5 y + 0.00901534, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.20456384, !- CoefficientC1 - 0.47656454, !- CoefficientC2 - 3.16734236, !- CoefficientC3 - 0.10244637, !- CoefficientC4 - -0.038132556, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.20456384, !- Coefficient1 Constant + 0.47656454, !- Coefficient2 w + 3.16734236, !- Coefficient3 x + 0.10244637, !- Coefficient4 y + -0.038132556, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -5.50102734, !- CoefficientC1 - -0.96688754, !- CoefficientC2 - 7.70755007, !- CoefficientC3 - 0.031928881, !- CoefficientC4 - 0.028112522, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -5.50102734, !- Coefficient1 Constant + -0.96688754, !- Coefficient2 w + 7.70755007, !- Coefficient3 x + 0.031928881, !- Coefficient4 y + 0.028112522, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -7.47517858, !- CoefficientC1 - 6.40876653, !- CoefficientC2 - 1.99711665, !- CoefficientC3 - -0.050682973, !- CoefficientC4 - 0.011385145, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -7.47517858, !- Coefficient1 Constant + 6.40876653, !- Coefficient2 w + 1.99711665, !- Coefficient3 x + -0.050682973, !- Coefficient4 y + 0.011385145, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Output:Variable,*,Site Outdoor Air Drybulb Temperature,Timestep; diff --git a/testfiles/HeatPumpwithBiquadraticCurves.idf b/testfiles/HeatPumpwithBiquadraticCurves.idf index 5caa090d6a3..40338c1b7d3 100644 --- a/testfiles/HeatPumpwithBiquadraticCurves.idf +++ b/testfiles/HeatPumpwithBiquadraticCurves.idf @@ -420,6 +420,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -436,6 +437,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -452,6 +454,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -468,6 +471,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -484,6 +488,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -500,6 +505,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -516,6 +522,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +539,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +556,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +573,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -580,6 +590,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +607,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +624,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -628,6 +641,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +658,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +675,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +692,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -692,6 +709,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +726,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +743,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatRecoveryElectricChiller.idf b/testfiles/HeatRecoveryElectricChiller.idf index 799f59ef4b3..a52eb9c7231 100644 --- a/testfiles/HeatRecoveryElectricChiller.idf +++ b/testfiles/HeatRecoveryElectricChiller.idf @@ -436,6 +436,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -452,6 +453,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -468,6 +470,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -484,6 +487,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -500,6 +504,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -516,6 +521,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +538,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +555,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +572,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +589,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +606,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +623,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +640,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +657,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +674,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +691,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +708,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +725,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +742,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +759,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatRecoveryPlantLoop.idf b/testfiles/HeatRecoveryPlantLoop.idf index b813a9d50b0..5a6e1d6d786 100644 --- a/testfiles/HeatRecoveryPlantLoop.idf +++ b/testfiles/HeatRecoveryPlantLoop.idf @@ -439,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -455,6 +456,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -471,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +490,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -503,6 +507,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -519,6 +524,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +575,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -583,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +609,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -615,6 +626,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -631,6 +643,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +694,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +728,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +745,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +762,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatRecoveryPlantLoopAuto.idf b/testfiles/HeatRecoveryPlantLoopAuto.idf index b32a4e84401..94ed54c749b 100644 --- a/testfiles/HeatRecoveryPlantLoopAuto.idf +++ b/testfiles/HeatRecoveryPlantLoopAuto.idf @@ -548,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -564,6 +565,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -596,6 +599,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -612,6 +616,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +633,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -660,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +684,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +735,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +752,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +769,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +820,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +854,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +871,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HeatRecoverywithStorageTank.idf b/testfiles/HeatRecoverywithStorageTank.idf index 11bd1f2e2a2..eab9b22e835 100644 --- a/testfiles/HeatRecoverywithStorageTank.idf +++ b/testfiles/HeatRecoverywithStorageTank.idf @@ -777,6 +777,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +811,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +845,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +862,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +879,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +930,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +964,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +981,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +998,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1015,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1032,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1049,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1066,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1083,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1100,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/HospitalBaseline.idf b/testfiles/HospitalBaseline.idf index 5ac6f7f1d92..a96e2c090db 100644 --- a/testfiles/HospitalBaseline.idf +++ b/testfiles/HospitalBaseline.idf @@ -1574,6 +1574,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1591,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1622,6 +1625,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1659,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,7 +1675,8 @@ Floor 1 Cafe Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Cafe, !- Zone or ZoneList Name - 746.5688; !- Surface Area {m2} + , !- Surface Area {m2} + 746.5688; !- Extended Field People, Floor 1 Cafe People, !- Name @@ -2311,6 +2318,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2327,6 +2335,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2343,6 +2352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2359,6 +2369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2375,6 +2386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2391,6 +2403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2406,7 +2419,8 @@ Floor 1 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Clean People, !- Name @@ -2704,6 +2718,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2720,6 +2735,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2751,6 +2767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2767,6 +2784,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2783,6 +2801,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2799,6 +2818,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2835,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2830,7 +2851,8 @@ Floor 1 Conference Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Conference, !- Zone or ZoneList Name - 1142.7074; !- Surface Area {m2} + , !- Surface Area {m2} + 1142.7074; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Conference_Infiltration, !- Name @@ -3157,6 +3179,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3173,6 +3196,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3189,6 +3213,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3205,6 +3230,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3221,6 +3247,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3237,6 +3264,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3267,7 +3295,8 @@ Floor 1 Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dining, !- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Dining_Infiltration, !- Name @@ -3594,6 +3623,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3610,6 +3640,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3626,6 +3657,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3642,6 +3674,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3673,6 +3706,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3689,6 +3723,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3704,7 +3739,8 @@ Floor 1 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Elevator_Infiltration, !- Name @@ -4031,6 +4067,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4047,6 +4084,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4078,6 +4116,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4094,6 +4133,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4110,6 +4150,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4126,6 +4167,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4141,7 +4183,8 @@ Floor 1 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Exam, !- Zone or ZoneList Name - 490.5281; !- Surface Area {m2} + , !- Surface Area {m2} + 490.5281; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Exam_Infiltration, !- Name @@ -4468,6 +4511,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4484,6 +4528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4500,6 +4545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4516,6 +4562,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4532,6 +4579,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4548,6 +4596,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4563,7 +4612,8 @@ Floor 1 Food Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Food Storage, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Food Storage People, !- Name @@ -5096,6 +5146,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5112,6 +5163,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5128,6 +5180,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5144,6 +5197,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5175,6 +5229,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5191,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5206,7 +5262,8 @@ Floor 1 Gas Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Gas Storage, !- Zone or ZoneList Name - 115.9430; !- Surface Area {m2} + , !- Surface Area {m2} + 115.9430; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Gas Storage_Infiltration, !- Name @@ -5516,6 +5573,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5532,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5548,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5564,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5580,6 +5641,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5596,6 +5658,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5611,7 +5674,8 @@ Floor 1 Imaging Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Imaging, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Imaging People, !- Name @@ -5937,6 +6001,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5953,6 +6018,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5969,6 +6035,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5985,6 +6052,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6001,6 +6069,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6017,6 +6086,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6032,7 +6102,8 @@ Floor 1 Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Kitchen, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Kitchen People, !- Name @@ -6441,6 +6512,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6457,6 +6529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6473,6 +6546,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6489,6 +6563,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6505,6 +6580,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6521,6 +6597,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6536,7 +6613,8 @@ Floor 1 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 1, !- Zone or ZoneList Name - 371.6122; !- Surface Area {m2} + , !- Surface Area {m2} + 371.6122; !- Extended Field People, Floor 1 Lab 1 People, !- Name @@ -6862,6 +6940,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6878,6 +6957,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6894,6 +6974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6910,6 +6991,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6941,6 +7023,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6957,6 +7040,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6972,7 +7056,8 @@ Floor 1 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 2, !- Zone or ZoneList Name - 910.4498; !- Surface Area {m2} + , !- Surface Area {m2} + 910.4498; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lab 2_Infiltration, !- Name @@ -7327,6 +7412,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7343,6 +7429,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7374,6 +7461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7390,6 +7478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7406,6 +7495,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7422,6 +7512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7437,7 +7528,8 @@ Floor 1 Laundry Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Laundry, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Laundry_Infiltration, !- Name @@ -7813,6 +7905,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7829,6 +7922,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +7939,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7876,6 +7971,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7892,6 +7988,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7908,6 +8005,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7924,6 +8022,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7940,6 +8039,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7955,7 +8055,8 @@ Floor 1 Lobby Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lobby_Infiltration, !- Name @@ -8282,6 +8383,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8298,6 +8400,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8314,6 +8417,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8330,6 +8434,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8346,6 +8451,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8362,6 +8468,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8377,7 +8484,8 @@ Floor 1 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lounge, !- Zone or ZoneList Name - 237.8318; !- Surface Area {m2} + , !- Surface Area {m2} + 237.8318; !- Extended Field People, Floor 1 Lounge People, !- Name @@ -8675,6 +8783,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8691,6 +8800,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8722,6 +8832,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8753,6 +8864,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8769,6 +8881,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8785,6 +8898,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8800,7 +8914,8 @@ Floor 1 Mech 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 1, !- Zone or ZoneList Name - 1505.0292; !- Surface Area {m2} + , !- Surface Area {m2} + 1505.0292; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 1_Infiltration, !- Name @@ -9090,6 +9205,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9121,6 +9237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9137,6 +9254,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9168,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9184,6 +9303,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9215,6 +9335,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9231,6 +9352,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9247,6 +9369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9262,7 +9385,8 @@ Floor 1 Mech 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 2, !- Zone or ZoneList Name - 2006.7057; !- Surface Area {m2} + , !- Surface Area {m2} + 2006.7057; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 2_Infiltration, !- Name @@ -9552,6 +9676,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9568,6 +9693,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9584,6 +9710,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9615,6 +9742,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9631,6 +9759,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9647,6 +9776,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9662,7 +9792,8 @@ Floor 1 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 1, !- Zone or ZoneList Name - 1371.2489; !- Surface Area {m2} + , !- Surface Area {m2} + 1371.2489; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 1_Infiltration, !- Name @@ -9989,6 +10120,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10005,6 +10137,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10021,6 +10154,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10037,6 +10171,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10068,6 +10203,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10084,6 +10220,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10099,7 +10236,8 @@ Floor 1 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 2, !- Zone or ZoneList Name - 1056.1218; !- Surface Area {m2} + , !- Surface Area {m2} + 1056.1218; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 2_Infiltration, !- Name @@ -10426,6 +10564,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10442,6 +10581,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10458,6 +10598,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10474,6 +10615,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10490,6 +10632,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10506,6 +10649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10522,6 +10666,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10552,7 +10697,8 @@ Floor 1 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3, !- Zone or ZoneList Name - 3678.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 3678.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3_Infiltration, !- Name @@ -10879,6 +11025,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10895,6 +11042,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10911,6 +11059,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10927,6 +11076,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10943,6 +11093,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10974,6 +11125,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10989,7 +11141,8 @@ Floor 1 Office 3 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 1_Infiltration, !- Name @@ -11316,6 +11469,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11332,6 +11486,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11348,6 +11503,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11379,6 +11535,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11395,6 +11552,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11411,6 +11569,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11426,7 +11585,8 @@ Floor 1 Office 3 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone or ZoneList Name - 340.0251; !- Surface Area {m2} + , !- Surface Area {m2} + 340.0251; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 2_Infiltration, !- Name @@ -11753,6 +11913,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11769,6 +11930,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11785,6 +11947,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11816,6 +11979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11832,6 +11996,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11863,6 +12028,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11878,7 +12044,8 @@ Floor 1 Office 3 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 3_Infiltration, !- Name @@ -12205,6 +12372,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12221,6 +12389,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12252,6 +12421,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12268,6 +12438,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12284,6 +12455,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12300,6 +12472,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12315,7 +12488,8 @@ Floor 1 Patient Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Patient, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Patient_Infiltration, !- Name @@ -12642,6 +12816,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12658,6 +12833,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12674,6 +12850,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12690,6 +12867,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12706,6 +12884,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12722,6 +12901,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12737,7 +12917,8 @@ Floor 1 Pharmacy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pharmacy, !- Zone or ZoneList Name - 1114.8365; !- Surface Area {m2} + , !- Surface Area {m2} + 1114.8365; !- Extended Field People, Floor 1 Pharmacy People, !- Name @@ -13035,6 +13216,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13051,6 +13233,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13067,6 +13250,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13083,6 +13267,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13099,6 +13284,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13115,6 +13301,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13130,7 +13317,8 @@ Floor 1 Physical Therapy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Physical Therapy,!- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field People, Floor 1 Physical Therapy People, !- Name @@ -13428,6 +13616,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13444,6 +13633,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13475,6 +13665,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13491,6 +13682,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13507,6 +13699,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13523,6 +13716,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13553,7 +13747,8 @@ Floor 1 Receiving Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Receiving, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Receiving_Infiltration, !- Name @@ -13843,6 +14038,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13859,6 +14055,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13875,6 +14072,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13906,6 +14104,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13922,6 +14121,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13938,6 +14138,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13953,7 +14154,8 @@ Floor 1 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception, !- Zone or ZoneList Name - 104.0514; !- Surface Area {m2} + , !- Surface Area {m2} + 104.0514; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Reception_Infiltration, !- Name @@ -14280,6 +14482,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14296,6 +14499,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14312,6 +14516,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14328,6 +14533,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14344,6 +14550,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14360,6 +14567,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14375,7 +14583,8 @@ Floor 1 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Soil People, !- Name @@ -14665,6 +14874,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14681,6 +14891,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14697,6 +14908,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14713,6 +14925,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14729,6 +14942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14745,6 +14959,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14760,7 +14975,8 @@ Floor 1 Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Storage, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field Lights, Floor 1 Storage_Lights, !- Name @@ -15021,6 +15237,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15037,6 +15254,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15053,6 +15271,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15069,6 +15288,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15085,6 +15305,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15101,6 +15322,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15116,7 +15338,8 @@ Floor 1 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Waiting, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Waiting People, !- Name @@ -15414,6 +15637,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15430,6 +15654,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15446,6 +15671,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15462,6 +15688,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15478,6 +15705,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15509,6 +15737,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15539,7 +15768,8 @@ Floor 2 Chapel Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Chapel, !- Zone or ZoneList Name - 379.0444; !- Surface Area {m2} + , !- Surface Area {m2} + 379.0444; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Chapel_Infiltration, !- Name @@ -15866,6 +16096,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15882,6 +16113,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15898,6 +16130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15914,6 +16147,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15930,6 +16164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15946,6 +16181,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15961,7 +16197,8 @@ Floor 2 Clean 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Clean 1 People, !- Name @@ -16259,6 +16496,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16275,6 +16513,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16291,6 +16530,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16307,6 +16547,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16323,6 +16564,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16339,6 +16581,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16354,7 +16597,8 @@ Floor 2 Clean 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Clean 2 People, !- Name @@ -16652,6 +16896,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16668,6 +16913,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16699,6 +16945,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16715,6 +16962,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16731,6 +16979,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16747,6 +16996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16763,6 +17013,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16778,7 +17029,8 @@ Floor 2 Corridor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Corridor, !- Zone or ZoneList Name - 966.1916; !- Surface Area {m2} + , !- Surface Area {m2} + 966.1916; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Corridor_Infiltration, !- Name @@ -17068,6 +17320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17084,6 +17337,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17115,6 +17369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17131,6 +17386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17147,6 +17403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17163,6 +17420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17178,7 +17436,8 @@ Floor 2 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Elevator_Infiltration, !- Name @@ -17505,6 +17764,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17521,6 +17781,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17537,6 +17798,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17568,6 +17830,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17599,6 +17862,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17615,6 +17879,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17630,7 +17895,8 @@ Floor 2 Exam 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 1, !- Zone or ZoneList Name - 780.3855; !- Surface Area {m2} + , !- Surface Area {m2} + 780.3855; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Exam 1_Infiltration, !- Name @@ -17957,6 +18223,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17973,6 +18240,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17989,6 +18257,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18005,6 +18274,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18021,6 +18291,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18037,6 +18308,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18052,7 +18324,8 @@ Floor 2 Exam 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 2, !- Zone or ZoneList Name - 250.8382; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8382; !- Extended Field People, Floor 2 Exam 2 People, !- Name @@ -18350,6 +18623,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18366,6 +18640,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18382,6 +18657,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18398,6 +18674,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18414,6 +18691,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18430,6 +18708,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18445,7 +18724,8 @@ Floor 2 Exam 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 3, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field People, Floor 2 Exam 3 People, !- Name @@ -18743,6 +19023,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18759,6 +19040,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18775,6 +19057,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18791,6 +19074,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18807,6 +19091,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18823,6 +19108,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18839,6 +19125,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18854,7 +19141,8 @@ Floor 2 Exam 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 4, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field People, Floor 2 Exam 4 People, !- Name @@ -19152,6 +19440,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19168,6 +19457,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19199,6 +19489,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19215,6 +19506,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19231,6 +19523,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19247,6 +19540,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19262,7 +19556,8 @@ Floor 2 Gift Shop Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Gift Shop, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Gift Shop_Infiltration, !- Name @@ -19589,6 +19884,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19605,6 +19901,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19621,6 +19918,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19637,6 +19935,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19653,6 +19952,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19669,6 +19969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19684,7 +19985,8 @@ Floor 2 Imaging 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 1, !- Zone or ZoneList Name - 429.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 429.2120; !- Extended Field People, Floor 2 Imaging 1 People,!- Name @@ -20010,6 +20312,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20041,6 +20344,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20057,6 +20361,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20073,6 +20378,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20089,6 +20395,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20105,6 +20412,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20121,6 +20429,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20136,7 +20445,8 @@ Floor 2 Imaging 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 2_Infiltration, !- Name @@ -20491,6 +20801,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20507,6 +20818,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20538,6 +20850,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20569,6 +20882,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20585,6 +20899,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20601,6 +20916,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20616,7 +20932,8 @@ Floor 2 Imaging 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 3, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 3_Infiltration, !- Name @@ -20971,6 +21288,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20987,6 +21305,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21003,6 +21322,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21019,6 +21339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21035,6 +21356,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21051,6 +21373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21066,7 +21389,8 @@ Floor 2 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 1, !- Zone or ZoneList Name - 423.6379; !- Surface Area {m2} + , !- Surface Area {m2} + 423.6379; !- Extended Field People, Floor 2 Lab 1 People, !- Name @@ -21398,6 +21722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21414,6 +21739,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21430,6 +21756,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21446,6 +21773,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21462,6 +21790,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21478,6 +21807,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21494,6 +21824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21509,7 +21840,8 @@ Floor 2 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field People, Floor 2 Lab 2 People, !- Name @@ -21835,6 +22167,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21851,6 +22184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21867,6 +22201,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21883,6 +22218,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21899,6 +22235,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21915,6 +22252,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21930,7 +22268,8 @@ Floor 2 Lockers Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lockers, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field People, Floor 2 Lockers People, !- Name @@ -22248,6 +22587,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22264,6 +22604,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22280,6 +22621,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22296,6 +22638,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22312,6 +22655,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22328,6 +22672,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22343,7 +22688,8 @@ Floor 2 Lounge 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 1, !- Zone or ZoneList Name - 222.9673; !- Surface Area {m2} + , !- Surface Area {m2} + 222.9673; !- Extended Field People, Floor 2 Lounge 1 People, !- Name @@ -22641,6 +22987,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22657,6 +23004,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22688,6 +23036,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22704,6 +23053,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22735,6 +23085,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22751,6 +23102,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22766,7 +23118,8 @@ Floor 2 Lounge 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 2, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Lounge 2_Infiltration, !- Name @@ -23093,6 +23446,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23109,6 +23463,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23125,6 +23480,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23141,6 +23497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23157,6 +23514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23173,6 +23531,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23188,7 +23547,8 @@ Floor 2 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 1, !- Zone or ZoneList Name - 239.6898; !- Surface Area {m2} + , !- Surface Area {m2} + 239.6898; !- Extended Field People, Floor 2 Nurse Station 1 People, !- Name @@ -23514,6 +23874,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23530,6 +23891,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23546,6 +23908,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23562,6 +23925,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23578,6 +23942,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23609,6 +23974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23625,6 +23991,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23640,7 +24007,8 @@ Floor 2 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 2, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Nurse Station 2_Infiltration, !- Name @@ -23995,6 +24363,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24011,6 +24380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24027,6 +24397,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24043,6 +24414,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24059,6 +24431,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24075,6 +24448,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24090,7 +24464,8 @@ Floor 2 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 1, !- Zone or ZoneList Name - 434.7862; !- Surface Area {m2} + , !- Surface Area {m2} + 434.7862; !- Extended Field People, Floor 2 Office 1 People, !- Name @@ -24388,6 +24763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24404,6 +24780,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24420,6 +24797,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24436,6 +24814,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24467,6 +24846,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24483,6 +24863,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24498,7 +24879,8 @@ Floor 2 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 2, !- Zone or ZoneList Name - 356.7477; !- Surface Area {m2} + , !- Surface Area {m2} + 356.7477; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 2_Infiltration, !- Name @@ -24825,6 +25207,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24841,6 +25224,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24857,6 +25241,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24873,6 +25258,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24889,6 +25275,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24905,6 +25292,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24920,7 +25308,8 @@ Floor 2 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 3, !- Zone or ZoneList Name - 557.4182; !- Surface Area {m2} + , !- Surface Area {m2} + 557.4182; !- Extended Field People, Floor 2 Office 3 People, !- Name @@ -25218,6 +25607,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25234,6 +25624,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25250,6 +25641,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25266,6 +25658,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25297,6 +25690,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25328,6 +25722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25343,7 +25738,8 @@ Floor 2 Office 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 4, !- Zone or ZoneList Name - 650.3213; !- Surface Area {m2} + , !- Surface Area {m2} + 650.3213; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 4_Infiltration, !- Name @@ -25670,6 +26066,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25686,6 +26083,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25717,6 +26115,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25748,6 +26147,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25764,6 +26164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25780,6 +26181,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25811,6 +26213,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25827,6 +26230,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25842,7 +26246,8 @@ Floor 2 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Operating, !- Zone or ZoneList Name - 3581.5980; !- Surface Area {m2} + , !- Surface Area {m2} + 3581.5980; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Operating_Infiltration, !- Name @@ -26203,6 +26608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26219,6 +26625,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26235,6 +26642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26251,6 +26659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26267,6 +26676,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26283,6 +26693,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26299,6 +26710,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26329,7 +26741,8 @@ Floor 2 PACU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 PACU, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 PACU_Infiltration, !- Name @@ -26684,6 +27097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26700,6 +27114,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26731,6 +27146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26747,6 +27163,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26763,6 +27180,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26779,6 +27197,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26794,7 +27213,8 @@ Floor 2 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 1, !- Zone or ZoneList Name - 633.2271; !- Surface Area {m2} + , !- Surface Area {m2} + 633.2271; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Patient 1_Infiltration, !- Name @@ -27121,6 +27541,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27137,6 +27558,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27153,6 +27575,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27169,6 +27592,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27185,6 +27609,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27201,6 +27626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27216,7 +27642,8 @@ Floor 2 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 2, !- Zone or ZoneList Name - 521.3719; !- Surface Area {m2} + , !- Surface Area {m2} + 521.3719; !- Extended Field People, Floor 2 Patient 2 People,!- Name @@ -27514,6 +27941,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27530,6 +27958,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27546,6 +27975,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27562,6 +27992,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27578,6 +28009,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27594,6 +28026,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27609,7 +28042,8 @@ Floor 2 Procedure 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 1, !- Zone or ZoneList Name - 468.2313; !- Surface Area {m2} + , !- Surface Area {m2} + 468.2313; !- Extended Field People, Floor 2 Procedure 1 People, !- Name @@ -27935,6 +28369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27951,6 +28386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27967,6 +28403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27983,6 +28420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27999,6 +28437,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28015,6 +28454,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28030,7 +28470,8 @@ Floor 2 Procedure 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 2, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field People, Floor 2 Procedure 2 People, !- Name @@ -28356,6 +28797,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28372,6 +28814,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28388,6 +28831,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28404,6 +28848,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28420,6 +28865,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28451,6 +28897,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28466,7 +28913,8 @@ Floor 2 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception, !- Zone or ZoneList Name - 325.1606; !- Surface Area {m2} + , !- Surface Area {m2} + 325.1606; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Reception_Infiltration, !- Name @@ -28793,6 +29241,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28809,6 +29258,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28825,6 +29275,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28841,6 +29292,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28872,6 +29324,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28888,6 +29341,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28903,7 +29357,8 @@ Floor 2 Restroom 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 1, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 1_Infiltration, !- Name @@ -29250,6 +29705,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29266,6 +29722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29282,6 +29739,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29298,6 +29756,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29314,6 +29773,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29330,6 +29790,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29360,7 +29821,8 @@ Floor 2 Restroom 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 2, !- Zone or ZoneList Name - 167.2255; !- Surface Area {m2} + , !- Surface Area {m2} + 167.2255; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 2_Infiltration, !- Name @@ -29707,6 +30169,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29723,6 +30186,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29739,6 +30203,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29755,6 +30220,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29771,6 +30237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29787,6 +30254,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29802,7 +30270,8 @@ Floor 2 Soil 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Soil 1 People, !- Name @@ -30092,6 +30561,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30108,6 +30578,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30124,6 +30595,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30140,6 +30612,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30156,6 +30629,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30172,6 +30646,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30187,7 +30662,8 @@ Floor 2 Soil 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Soil 2 People, !- Name @@ -30477,6 +30953,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30493,6 +30970,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30509,6 +30987,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30525,6 +31004,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30541,6 +31021,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30557,6 +31038,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30572,7 +31054,8 @@ Floor 2 Sterilizing Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Sterilizing, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field Lights, Floor 2 Sterilizing_Lights, !- Name @@ -30910,6 +31393,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30926,6 +31410,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30942,6 +31427,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30958,6 +31444,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30974,6 +31461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30990,6 +31478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31005,7 +31494,8 @@ Floor 2 Storage 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 1, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field Lights, Floor 2 Storage 1_Lights,!- Name @@ -31266,6 +31756,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31282,6 +31773,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31298,6 +31790,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31314,6 +31807,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31330,6 +31824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31346,6 +31841,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31361,7 +31857,8 @@ Floor 2 Storage 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 2, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field Lights, Floor 2 Storage 2_Lights,!- Name @@ -31622,6 +32119,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31638,6 +32136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31654,6 +32153,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31670,6 +32170,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31686,6 +32187,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31702,6 +32204,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31717,7 +32220,8 @@ Floor 2 Trauma Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Trauma, !- Zone or ZoneList Name - 832.4112; !- Surface Area {m2} + , !- Surface Area {m2} + 832.4112; !- Extended Field People, Floor 2 Trauma People, !- Name @@ -32043,6 +32547,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32059,6 +32564,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32075,6 +32581,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32106,6 +32613,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32122,6 +32630,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32138,6 +32647,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32153,7 +32663,8 @@ Floor 2 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Triage, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Triage_Infiltration, !- Name @@ -32506,6 +33017,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32522,6 +33034,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32538,6 +33051,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32569,6 +33083,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32585,6 +33100,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32601,6 +33117,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32631,7 +33148,8 @@ Floor 2 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Waiting, !- Zone or ZoneList Name - 724.6437; !- Surface Area {m2} + , !- Surface Area {m2} + 724.6437; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Waiting_Infiltration, !- Name @@ -32958,6 +33476,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32974,6 +33493,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32990,6 +33510,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33006,6 +33527,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33022,6 +33544,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33038,6 +33561,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33053,7 +33577,8 @@ Floor 3 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 3 Clean People, !- Name @@ -33351,6 +33876,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33367,6 +33893,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33398,6 +33925,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33414,6 +33942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33430,6 +33959,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33461,6 +33991,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33491,7 +34022,8 @@ Floor 3 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Elevator_Infiltration, !- Name @@ -33818,6 +34350,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33834,6 +34367,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33850,6 +34384,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33866,6 +34401,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33882,6 +34418,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33898,6 +34435,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33913,7 +34451,8 @@ Floor 3 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Exam, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field People, Floor 3 Exam People, !- Name @@ -34211,6 +34750,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34227,6 +34767,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34258,6 +34799,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34274,6 +34816,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34290,6 +34833,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34306,6 +34850,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34336,7 +34881,8 @@ Floor 3 ICU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 ICU, !- Zone or ZoneList Name - 390.1928; !- Surface Area {m2} + , !- Surface Area {m2} + 390.1928; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 ICU_Infiltration,!- Name @@ -34697,6 +35243,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34728,6 +35275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34744,6 +35292,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34760,6 +35309,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34776,6 +35326,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34792,6 +35343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34807,7 +35359,8 @@ Floor 3 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 1, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 1_Infiltration, !- Name @@ -35162,6 +35715,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35178,6 +35732,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35194,6 +35749,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35210,6 +35766,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35241,6 +35798,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35272,6 +35830,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35287,7 +35846,8 @@ Floor 3 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 2_Infiltration, !- Name @@ -35642,6 +36202,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35658,6 +36219,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35674,6 +36236,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35690,6 +36253,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35721,6 +36285,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35737,6 +36302,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35752,7 +36318,8 @@ Floor 3 Nursery Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nursery, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nursery_Infiltration, !- Name @@ -36079,6 +36646,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36095,6 +36663,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36111,6 +36680,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36127,6 +36697,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36158,6 +36729,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36174,6 +36746,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36189,7 +36762,8 @@ Floor 3 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Office_Infiltration, !- Name @@ -36516,6 +37090,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36532,6 +37107,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36548,6 +37124,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36564,6 +37141,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36595,6 +37173,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36611,6 +37190,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36626,7 +37206,8 @@ Floor 3 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Operating, !- Zone or ZoneList Name - 334.4656; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4656; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Operating_Infiltration, !- Name @@ -36981,6 +37562,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37012,6 +37594,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37028,6 +37611,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37044,6 +37628,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37075,6 +37660,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37091,6 +37677,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37106,7 +37693,8 @@ Floor 3 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 1_Infiltration, !- Name @@ -37433,6 +38021,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37449,6 +38038,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37480,6 +38070,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37496,6 +38087,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37527,6 +38119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37543,6 +38136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37558,7 +38152,8 @@ Floor 3 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 2_Infiltration, !- Name @@ -37885,6 +38480,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37901,6 +38497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37917,6 +38514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37933,6 +38531,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37949,6 +38548,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37965,6 +38565,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37996,6 +38597,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38026,7 +38628,8 @@ Floor 3 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 3_Infiltration, !- Name @@ -38353,6 +38956,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38384,6 +38988,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38400,6 +39005,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38416,6 +39022,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38447,6 +39054,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38463,6 +39071,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38478,7 +39087,8 @@ Floor 3 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 4_Infiltration, !- Name @@ -38805,6 +39415,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38836,6 +39447,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38852,6 +39464,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38868,6 +39481,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38899,6 +39513,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38915,6 +39530,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38930,7 +39546,8 @@ Floor 3 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 1_Infiltration, !- Name @@ -39220,6 +39837,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39236,6 +39854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39252,6 +39871,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39283,6 +39903,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39314,6 +39935,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39330,6 +39952,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39345,7 +39968,8 @@ Floor 3 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 2_Infiltration, !- Name @@ -39635,6 +40259,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39651,6 +40276,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39682,6 +40308,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39698,6 +40325,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39714,6 +40342,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39730,6 +40359,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39745,7 +40375,8 @@ Floor 3 Procedure Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Procedure, !- Zone or ZoneList Name - 133.7804; !- Surface Area {m2} + , !- Surface Area {m2} + 133.7804; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Procedure_Infiltration, !- Name @@ -40100,6 +40731,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40116,6 +40748,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40132,6 +40765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40148,6 +40782,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40164,6 +40799,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40180,6 +40816,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40195,7 +40832,8 @@ Floor 3 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 3 Soil People, !- Name @@ -40485,6 +41123,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40516,6 +41155,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40532,6 +41172,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40548,6 +41189,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40564,6 +41206,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40580,6 +41223,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40595,7 +41239,8 @@ Floor 3 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Supply_Infiltration, !- Name @@ -40885,6 +41530,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40901,6 +41547,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40917,6 +41564,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40948,6 +41596,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40964,6 +41613,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40980,6 +41630,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40995,7 +41646,8 @@ Floor 3 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Triage, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Triage_Infiltration, !- Name @@ -41348,6 +42000,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41364,6 +42017,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41380,6 +42034,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41396,6 +42051,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41427,6 +42083,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41443,6 +42100,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41458,7 +42116,8 @@ Floor 3 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Waiting, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Waiting_Infiltration, !- Name @@ -41785,6 +42444,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41801,6 +42461,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41817,6 +42478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41833,6 +42495,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41849,6 +42512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41865,6 +42529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41880,7 +42545,8 @@ Floor 4-6 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 4-6 Clean People, !- Name @@ -42178,6 +42844,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42194,6 +42861,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42210,6 +42878,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42241,6 +42910,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42272,6 +42942,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42303,6 +42974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42318,7 +42990,8 @@ Floor 4-6 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Elevator_Infiltration, !- Name @@ -42645,6 +43318,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42661,6 +43335,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42677,6 +43352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42693,6 +43369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42709,6 +43386,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42740,6 +43418,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42755,7 +43434,8 @@ Floor 4-6 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Nurse Station_Infiltration, !- Name @@ -43110,6 +43790,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43126,6 +43807,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43142,6 +43824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43158,6 +43841,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43174,6 +43858,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43205,6 +43890,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43220,7 +43906,8 @@ Floor 4-6 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Office_Infiltration, !- Name @@ -43547,6 +44234,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43563,6 +44251,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43579,6 +44268,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43595,6 +44285,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43611,6 +44302,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43642,6 +44334,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43672,7 +44365,8 @@ Floor 4-6 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 1_Infiltration, !- Name @@ -43999,6 +44693,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44015,6 +44710,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44031,6 +44727,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44047,6 +44744,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44078,6 +44776,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44109,6 +44808,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44124,7 +44824,8 @@ Floor 4-6 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 2_Infiltration, !- Name @@ -44451,6 +45152,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44467,6 +45169,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44483,6 +45186,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44514,6 +45218,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44530,6 +45235,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44546,6 +45252,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44576,7 +45283,8 @@ Floor 4-6 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 3_Infiltration, !- Name @@ -44903,6 +45611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44919,6 +45628,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44935,6 +45645,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44966,6 +45677,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44997,6 +45709,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45013,6 +45726,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45028,7 +45742,8 @@ Floor 4-6 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 4_Infiltration, !- Name @@ -45355,6 +46070,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45371,6 +46087,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45387,6 +46104,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45418,6 +46136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45434,6 +46153,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45465,6 +46185,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45480,7 +46201,8 @@ Floor 4-6 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 1_Infiltration, !- Name @@ -45770,6 +46492,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45786,6 +46509,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45802,6 +46526,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45833,6 +46558,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45849,6 +46575,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45880,6 +46607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45895,7 +46623,8 @@ Floor 4-6 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 2_Infiltration, !- Name @@ -46185,6 +46914,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46201,6 +46931,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46217,6 +46948,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46233,6 +46965,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46249,6 +46982,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46265,6 +46999,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46280,7 +47015,8 @@ Floor 4-6 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 4-6 Soil People, !- Name @@ -46570,6 +47306,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46586,6 +47323,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46602,6 +47340,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46618,6 +47357,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46634,6 +47374,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46665,6 +47406,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46680,7 +47422,8 @@ Floor 4-6 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Supply_Infiltration, !- Name @@ -46970,6 +47713,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46986,6 +47730,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47002,6 +47747,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47018,6 +47764,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47034,6 +47781,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47050,6 +47798,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47065,7 +47814,8 @@ Floor 7 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 7 Clean People, !- Name @@ -47363,6 +48113,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47379,6 +48130,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47395,6 +48147,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47426,6 +48179,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47457,6 +48211,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47488,6 +48243,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47503,7 +48259,8 @@ Floor 7 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Elevator_Infiltration, !- Name @@ -47830,6 +48587,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47846,6 +48604,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47862,6 +48621,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47878,6 +48638,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47894,6 +48655,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47925,6 +48687,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47940,7 +48703,8 @@ Floor 7 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Nurse Station_Infiltration, !- Name @@ -48295,6 +49059,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48311,6 +49076,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48327,6 +49093,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48343,6 +49110,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48359,6 +49127,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48390,6 +49159,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48405,7 +49175,8 @@ Floor 7 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Office_Infiltration, !- Name @@ -48732,6 +49503,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48748,6 +49520,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48764,6 +49537,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48780,6 +49554,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48796,6 +49571,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48827,6 +49603,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48857,7 +49634,8 @@ Floor 7 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 1_Infiltration, !- Name @@ -49184,6 +49962,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49200,6 +49979,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49216,6 +49996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49232,6 +50013,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49263,6 +50045,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49294,6 +50077,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49309,7 +50093,8 @@ Floor 7 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 2_Infiltration, !- Name @@ -49636,6 +50421,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49652,6 +50438,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49668,6 +50455,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49699,6 +50487,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49715,6 +50504,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49731,6 +50521,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49761,7 +50552,8 @@ Floor 7 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 3_Infiltration, !- Name @@ -50088,6 +50880,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50104,6 +50897,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50120,6 +50914,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50151,6 +50946,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50182,6 +50978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50198,6 +50995,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50213,7 +51011,8 @@ Floor 7 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 4_Infiltration, !- Name @@ -50540,6 +51339,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50556,6 +51356,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50572,6 +51373,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50603,6 +51405,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50619,6 +51422,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50650,6 +51454,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50665,7 +51470,8 @@ Floor 7 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 1_Infiltration, !- Name @@ -50955,6 +51761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50971,6 +51778,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50987,6 +51795,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51018,6 +51827,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51034,6 +51844,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51065,6 +51876,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51080,7 +51892,8 @@ Floor 7 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 2_Infiltration, !- Name @@ -51370,6 +52183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51386,6 +52200,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51402,6 +52217,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51418,6 +52234,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51434,6 +52251,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51450,6 +52268,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51465,7 +52284,8 @@ Floor 7 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 7 Soil People, !- Name @@ -51755,6 +52575,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51771,6 +52592,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51787,6 +52609,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51803,6 +52626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51819,6 +52643,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51850,6 +52675,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51865,7 +52691,8 @@ Floor 7 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Supply_Infiltration, !- Name @@ -52155,6 +52982,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52171,6 +52999,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52187,6 +53016,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52203,6 +53033,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52219,6 +53050,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52235,6 +53067,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52250,7 +53083,8 @@ MOB Floor 1 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Core, !- Zone or ZoneList Name - 2559.4788; !- Surface Area {m2} + , !- Surface Area {m2} + 2559.4788; !- Extended Field People, MOB Floor 1 Core People, !- Name @@ -52548,6 +53382,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52564,6 +53399,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52580,6 +53416,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -52611,6 +53448,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52627,6 +53465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52643,6 +53482,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52658,7 +53498,8 @@ MOB Floor 1 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 1_Infiltration, !- Name @@ -52985,6 +53826,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53001,6 +53843,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53032,6 +53875,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53048,6 +53892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53064,6 +53909,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53080,6 +53926,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53095,7 +53942,8 @@ MOB Floor 1 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 2_Infiltration, !- Name @@ -53422,6 +54270,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53438,6 +54287,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53454,6 +54304,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53485,6 +54336,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53501,6 +54353,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53517,6 +54370,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53532,7 +54386,8 @@ MOB Floor 1 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 3_Infiltration, !- Name @@ -53859,6 +54714,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53875,6 +54731,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53891,6 +54748,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53907,6 +54765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53923,6 +54782,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53939,6 +54799,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53954,7 +54815,8 @@ MOB Floor 2-4 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 2-4 Core People, !- Name @@ -54252,6 +55114,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54268,6 +55131,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54284,6 +55148,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54300,6 +55165,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54331,6 +55197,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54347,6 +55214,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54362,7 +55230,8 @@ MOB Floor 2-4 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 1_Infiltration, !- Name @@ -54689,6 +55558,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54705,6 +55575,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54721,6 +55592,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54737,6 +55609,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54753,6 +55626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54769,6 +55643,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54799,7 +55674,8 @@ MOB Floor 2-4 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 2_Infiltration, !- Name @@ -55126,6 +56002,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55142,6 +56019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55158,6 +56036,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55174,6 +56053,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55190,6 +56070,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55206,6 +56087,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55236,7 +56118,8 @@ MOB Floor 2-4 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 3_Infiltration, !- Name @@ -55563,6 +56446,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55579,6 +56463,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55595,6 +56480,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55611,6 +56497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55627,6 +56514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55643,6 +56531,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55673,7 +56562,8 @@ MOB Floor 2-4 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 4_Infiltration, !- Name @@ -56000,6 +56890,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56016,6 +56907,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56032,6 +56924,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56048,6 +56941,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56064,6 +56958,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56080,6 +56975,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56095,7 +56991,8 @@ MOB Floor 5 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 5 Core People, !- Name @@ -56393,6 +57290,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56409,6 +57307,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56425,6 +57324,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56441,6 +57341,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56472,6 +57373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56488,6 +57390,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56503,7 +57406,8 @@ MOB Floor 5 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 1_Infiltration, !- Name @@ -56830,6 +57734,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56846,6 +57751,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56862,6 +57768,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56878,6 +57785,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56894,6 +57802,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56910,6 +57819,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56940,7 +57850,8 @@ MOB Floor 5 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 2_Infiltration, !- Name @@ -57267,6 +58178,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57283,6 +58195,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57299,6 +58212,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57315,6 +58229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57331,6 +58246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57347,6 +58263,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57377,7 +58294,8 @@ MOB Floor 5 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 3_Infiltration, !- Name @@ -57704,6 +58622,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57720,6 +58639,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57736,6 +58656,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57752,6 +58673,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57768,6 +58690,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57784,6 +58707,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57814,7 +58738,8 @@ MOB Floor 5 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 4_Infiltration, !- Name diff --git a/testfiles/HospitalBaselineReheatReportEMS.idf b/testfiles/HospitalBaselineReheatReportEMS.idf index fe266226b5c..bf779fc9d65 100644 --- a/testfiles/HospitalBaselineReheatReportEMS.idf +++ b/testfiles/HospitalBaselineReheatReportEMS.idf @@ -1574,6 +1574,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1591,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1622,6 +1625,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1659,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,7 +1675,8 @@ Floor 1 Cafe Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Cafe, !- Zone or ZoneList Name - 746.5688; !- Surface Area {m2} + , !- Surface Area {m2} + 746.5688; !- Extended Field People, Floor 1 Cafe People, !- Name @@ -2311,6 +2318,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2327,6 +2335,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2343,6 +2352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2359,6 +2369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2375,6 +2386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2391,6 +2403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2406,7 +2419,8 @@ Floor 1 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Clean People, !- Name @@ -2704,6 +2718,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2720,6 +2735,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2751,6 +2767,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2767,6 +2784,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2783,6 +2801,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2799,6 +2818,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2835,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2830,7 +2851,8 @@ Floor 1 Conference Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Conference, !- Zone or ZoneList Name - 1142.7074; !- Surface Area {m2} + , !- Surface Area {m2} + 1142.7074; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Conference_Infiltration, !- Name @@ -3157,6 +3179,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3173,6 +3196,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3189,6 +3213,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3205,6 +3230,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3221,6 +3247,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3237,6 +3264,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3267,7 +3295,8 @@ Floor 1 Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dining, !- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Dining_Infiltration, !- Name @@ -3594,6 +3623,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3610,6 +3640,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3626,6 +3657,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3642,6 +3674,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3673,6 +3706,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3689,6 +3723,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3704,7 +3739,8 @@ Floor 1 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Elevator_Infiltration, !- Name @@ -4031,6 +4067,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4047,6 +4084,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4078,6 +4116,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4094,6 +4133,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4110,6 +4150,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4126,6 +4167,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4141,7 +4183,8 @@ Floor 1 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Exam, !- Zone or ZoneList Name - 490.5281; !- Surface Area {m2} + , !- Surface Area {m2} + 490.5281; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Exam_Infiltration, !- Name @@ -4468,6 +4511,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4484,6 +4528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4500,6 +4545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4516,6 +4562,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4532,6 +4579,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4548,6 +4596,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4563,7 +4612,8 @@ Floor 1 Food Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Food Storage, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Food Storage People, !- Name @@ -5096,6 +5146,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5112,6 +5163,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5128,6 +5180,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5144,6 +5197,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5175,6 +5229,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5191,6 +5246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5206,7 +5262,8 @@ Floor 1 Gas Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Gas Storage, !- Zone or ZoneList Name - 115.9430; !- Surface Area {m2} + , !- Surface Area {m2} + 115.9430; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Gas Storage_Infiltration, !- Name @@ -5516,6 +5573,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5532,6 +5590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5548,6 +5607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5564,6 +5624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5580,6 +5641,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5596,6 +5658,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5611,7 +5674,8 @@ Floor 1 Imaging Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Imaging, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Imaging People, !- Name @@ -5937,6 +6001,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5953,6 +6018,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5969,6 +6035,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5985,6 +6052,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6001,6 +6069,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6017,6 +6086,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6032,7 +6102,8 @@ Floor 1 Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Kitchen, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Kitchen People, !- Name @@ -6441,6 +6512,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6457,6 +6529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6473,6 +6546,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6489,6 +6563,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6505,6 +6580,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6521,6 +6597,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6536,7 +6613,8 @@ Floor 1 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 1, !- Zone or ZoneList Name - 371.6122; !- Surface Area {m2} + , !- Surface Area {m2} + 371.6122; !- Extended Field People, Floor 1 Lab 1 People, !- Name @@ -6862,6 +6940,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6878,6 +6957,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6894,6 +6974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6910,6 +6991,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6941,6 +7023,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6957,6 +7040,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6972,7 +7056,8 @@ Floor 1 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 2, !- Zone or ZoneList Name - 910.4498; !- Surface Area {m2} + , !- Surface Area {m2} + 910.4498; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lab 2_Infiltration, !- Name @@ -7327,6 +7412,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7343,6 +7429,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7374,6 +7461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7390,6 +7478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7406,6 +7495,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7422,6 +7512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7437,7 +7528,8 @@ Floor 1 Laundry Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Laundry, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Laundry_Infiltration, !- Name @@ -7813,6 +7905,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7829,6 +7922,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7845,6 +7939,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7876,6 +7971,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7892,6 +7988,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7908,6 +8005,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7924,6 +8022,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7940,6 +8039,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7955,7 +8055,8 @@ Floor 1 Lobby Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lobby_Infiltration, !- Name @@ -8282,6 +8383,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8298,6 +8400,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8314,6 +8417,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8330,6 +8434,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8346,6 +8451,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8362,6 +8468,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8377,7 +8484,8 @@ Floor 1 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lounge, !- Zone or ZoneList Name - 237.8318; !- Surface Area {m2} + , !- Surface Area {m2} + 237.8318; !- Extended Field People, Floor 1 Lounge People, !- Name @@ -8675,6 +8783,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8691,6 +8800,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8722,6 +8832,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8753,6 +8864,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8769,6 +8881,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8785,6 +8898,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8800,7 +8914,8 @@ Floor 1 Mech 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 1, !- Zone or ZoneList Name - 1505.0292; !- Surface Area {m2} + , !- Surface Area {m2} + 1505.0292; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 1_Infiltration, !- Name @@ -9090,6 +9205,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9121,6 +9237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9137,6 +9254,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9168,6 +9286,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9184,6 +9303,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9215,6 +9335,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9231,6 +9352,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9247,6 +9369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9262,7 +9385,8 @@ Floor 1 Mech 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 2, !- Zone or ZoneList Name - 2006.7057; !- Surface Area {m2} + , !- Surface Area {m2} + 2006.7057; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 2_Infiltration, !- Name @@ -9552,6 +9676,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9568,6 +9693,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9584,6 +9710,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9615,6 +9742,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9631,6 +9759,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9647,6 +9776,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9662,7 +9792,8 @@ Floor 1 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 1, !- Zone or ZoneList Name - 1371.2489; !- Surface Area {m2} + , !- Surface Area {m2} + 1371.2489; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 1_Infiltration, !- Name @@ -9989,6 +10120,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10005,6 +10137,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10021,6 +10154,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10037,6 +10171,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10068,6 +10203,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10084,6 +10220,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10099,7 +10236,8 @@ Floor 1 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 2, !- Zone or ZoneList Name - 1056.1218; !- Surface Area {m2} + , !- Surface Area {m2} + 1056.1218; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 2_Infiltration, !- Name @@ -10426,6 +10564,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10442,6 +10581,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10458,6 +10598,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10474,6 +10615,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10490,6 +10632,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10506,6 +10649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10522,6 +10666,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10552,7 +10697,8 @@ Floor 1 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3, !- Zone or ZoneList Name - 3678.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 3678.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3_Infiltration, !- Name @@ -10879,6 +11025,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10895,6 +11042,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10911,6 +11059,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10927,6 +11076,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10943,6 +11093,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10974,6 +11125,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10989,7 +11141,8 @@ Floor 1 Office 3 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 1_Infiltration, !- Name @@ -11316,6 +11469,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11332,6 +11486,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11348,6 +11503,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11379,6 +11535,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11395,6 +11552,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11411,6 +11569,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11426,7 +11585,8 @@ Floor 1 Office 3 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone or ZoneList Name - 340.0251; !- Surface Area {m2} + , !- Surface Area {m2} + 340.0251; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 2_Infiltration, !- Name @@ -11753,6 +11913,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11769,6 +11930,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11785,6 +11947,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11816,6 +11979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11832,6 +11996,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11863,6 +12028,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11878,7 +12044,8 @@ Floor 1 Office 3 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 3_Infiltration, !- Name @@ -12205,6 +12372,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12221,6 +12389,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12252,6 +12421,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12268,6 +12438,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12284,6 +12455,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12300,6 +12472,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12315,7 +12488,8 @@ Floor 1 Patient Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Patient, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Patient_Infiltration, !- Name @@ -12642,6 +12816,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12658,6 +12833,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12674,6 +12850,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12690,6 +12867,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12706,6 +12884,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12722,6 +12901,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12737,7 +12917,8 @@ Floor 1 Pharmacy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pharmacy, !- Zone or ZoneList Name - 1114.8365; !- Surface Area {m2} + , !- Surface Area {m2} + 1114.8365; !- Extended Field People, Floor 1 Pharmacy People, !- Name @@ -13035,6 +13216,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13051,6 +13233,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13067,6 +13250,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13083,6 +13267,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13099,6 +13284,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13115,6 +13301,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13130,7 +13317,8 @@ Floor 1 Physical Therapy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Physical Therapy,!- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field People, Floor 1 Physical Therapy People, !- Name @@ -13428,6 +13616,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13444,6 +13633,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13475,6 +13665,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13491,6 +13682,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13507,6 +13699,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13523,6 +13716,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13553,7 +13747,8 @@ Floor 1 Receiving Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Receiving, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Receiving_Infiltration, !- Name @@ -13843,6 +14038,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13859,6 +14055,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13875,6 +14072,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13906,6 +14104,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13922,6 +14121,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13938,6 +14138,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13953,7 +14154,8 @@ Floor 1 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception, !- Zone or ZoneList Name - 104.0514; !- Surface Area {m2} + , !- Surface Area {m2} + 104.0514; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Reception_Infiltration, !- Name @@ -14280,6 +14482,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14296,6 +14499,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14312,6 +14516,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14328,6 +14533,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14344,6 +14550,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14360,6 +14567,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14375,7 +14583,8 @@ Floor 1 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Soil People, !- Name @@ -14665,6 +14874,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14681,6 +14891,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14697,6 +14908,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14713,6 +14925,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14729,6 +14942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14745,6 +14959,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14760,7 +14975,8 @@ Floor 1 Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Storage, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field Lights, Floor 1 Storage_Lights, !- Name @@ -15021,6 +15237,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15037,6 +15254,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15053,6 +15271,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15069,6 +15288,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15085,6 +15305,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15101,6 +15322,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15116,7 +15338,8 @@ Floor 1 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Waiting, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Waiting People, !- Name @@ -15414,6 +15637,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15430,6 +15654,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15446,6 +15671,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15462,6 +15688,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15478,6 +15705,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15509,6 +15737,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15539,7 +15768,8 @@ Floor 2 Chapel Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Chapel, !- Zone or ZoneList Name - 379.0444; !- Surface Area {m2} + , !- Surface Area {m2} + 379.0444; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Chapel_Infiltration, !- Name @@ -15866,6 +16096,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15882,6 +16113,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15898,6 +16130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15914,6 +16147,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15930,6 +16164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15946,6 +16181,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15961,7 +16197,8 @@ Floor 2 Clean 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Clean 1 People, !- Name @@ -16259,6 +16496,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16275,6 +16513,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16291,6 +16530,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16307,6 +16547,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16323,6 +16564,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16339,6 +16581,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16354,7 +16597,8 @@ Floor 2 Clean 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Clean 2 People, !- Name @@ -16652,6 +16896,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16668,6 +16913,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16699,6 +16945,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16715,6 +16962,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16731,6 +16979,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16747,6 +16996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16763,6 +17013,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16778,7 +17029,8 @@ Floor 2 Corridor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Corridor, !- Zone or ZoneList Name - 966.1916; !- Surface Area {m2} + , !- Surface Area {m2} + 966.1916; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Corridor_Infiltration, !- Name @@ -17068,6 +17320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17084,6 +17337,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17115,6 +17369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17131,6 +17386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17147,6 +17403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17163,6 +17420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17178,7 +17436,8 @@ Floor 2 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Elevator_Infiltration, !- Name @@ -17505,6 +17764,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17521,6 +17781,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17537,6 +17798,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17568,6 +17830,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17599,6 +17862,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17615,6 +17879,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17630,7 +17895,8 @@ Floor 2 Exam 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 1, !- Zone or ZoneList Name - 780.3855; !- Surface Area {m2} + , !- Surface Area {m2} + 780.3855; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Exam 1_Infiltration, !- Name @@ -17957,6 +18223,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17973,6 +18240,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17989,6 +18257,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18005,6 +18274,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18021,6 +18291,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18037,6 +18308,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18052,7 +18324,8 @@ Floor 2 Exam 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 2, !- Zone or ZoneList Name - 250.8382; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8382; !- Extended Field People, Floor 2 Exam 2 People, !- Name @@ -18350,6 +18623,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18366,6 +18640,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18382,6 +18657,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18398,6 +18674,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18414,6 +18691,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18430,6 +18708,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18445,7 +18724,8 @@ Floor 2 Exam 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 3, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field People, Floor 2 Exam 3 People, !- Name @@ -18743,6 +19023,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18759,6 +19040,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18775,6 +19057,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18791,6 +19074,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18807,6 +19091,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18823,6 +19108,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18839,6 +19125,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18854,7 +19141,8 @@ Floor 2 Exam 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 4, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field People, Floor 2 Exam 4 People, !- Name @@ -19152,6 +19440,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19168,6 +19457,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19199,6 +19489,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19215,6 +19506,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19231,6 +19523,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19247,6 +19540,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19262,7 +19556,8 @@ Floor 2 Gift Shop Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Gift Shop, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Gift Shop_Infiltration, !- Name @@ -19589,6 +19884,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19605,6 +19901,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19621,6 +19918,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19637,6 +19935,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19653,6 +19952,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19669,6 +19969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19684,7 +19985,8 @@ Floor 2 Imaging 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 1, !- Zone or ZoneList Name - 429.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 429.2120; !- Extended Field People, Floor 2 Imaging 1 People,!- Name @@ -20010,6 +20312,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20041,6 +20344,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20057,6 +20361,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20073,6 +20378,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20089,6 +20395,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20105,6 +20412,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20121,6 +20429,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20136,7 +20445,8 @@ Floor 2 Imaging 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 2_Infiltration, !- Name @@ -20491,6 +20801,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20507,6 +20818,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20538,6 +20850,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20569,6 +20882,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20585,6 +20899,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20601,6 +20916,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20616,7 +20932,8 @@ Floor 2 Imaging 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 3, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 3_Infiltration, !- Name @@ -20971,6 +21288,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20987,6 +21305,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21003,6 +21322,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21019,6 +21339,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21035,6 +21356,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21051,6 +21373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21066,7 +21389,8 @@ Floor 2 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 1, !- Zone or ZoneList Name - 423.6379; !- Surface Area {m2} + , !- Surface Area {m2} + 423.6379; !- Extended Field People, Floor 2 Lab 1 People, !- Name @@ -21398,6 +21722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21414,6 +21739,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21430,6 +21756,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21446,6 +21773,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21462,6 +21790,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21478,6 +21807,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21494,6 +21824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21509,7 +21840,8 @@ Floor 2 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field People, Floor 2 Lab 2 People, !- Name @@ -21835,6 +22167,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21851,6 +22184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21867,6 +22201,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21883,6 +22218,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21899,6 +22235,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21915,6 +22252,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21930,7 +22268,8 @@ Floor 2 Lockers Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lockers, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field People, Floor 2 Lockers People, !- Name @@ -22248,6 +22587,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22264,6 +22604,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22280,6 +22621,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22296,6 +22638,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22312,6 +22655,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22328,6 +22672,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22343,7 +22688,8 @@ Floor 2 Lounge 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 1, !- Zone or ZoneList Name - 222.9673; !- Surface Area {m2} + , !- Surface Area {m2} + 222.9673; !- Extended Field People, Floor 2 Lounge 1 People, !- Name @@ -22641,6 +22987,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22657,6 +23004,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22688,6 +23036,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22704,6 +23053,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22735,6 +23085,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22751,6 +23102,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22766,7 +23118,8 @@ Floor 2 Lounge 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 2, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Lounge 2_Infiltration, !- Name @@ -23093,6 +23446,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23109,6 +23463,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23125,6 +23480,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23141,6 +23497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23157,6 +23514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23173,6 +23531,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23188,7 +23547,8 @@ Floor 2 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 1, !- Zone or ZoneList Name - 239.6898; !- Surface Area {m2} + , !- Surface Area {m2} + 239.6898; !- Extended Field People, Floor 2 Nurse Station 1 People, !- Name @@ -23514,6 +23874,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23530,6 +23891,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23546,6 +23908,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23562,6 +23925,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23578,6 +23942,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23609,6 +23974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23625,6 +23991,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23640,7 +24007,8 @@ Floor 2 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 2, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Nurse Station 2_Infiltration, !- Name @@ -23995,6 +24363,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24011,6 +24380,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24027,6 +24397,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24043,6 +24414,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24059,6 +24431,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24075,6 +24448,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24090,7 +24464,8 @@ Floor 2 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 1, !- Zone or ZoneList Name - 434.7862; !- Surface Area {m2} + , !- Surface Area {m2} + 434.7862; !- Extended Field People, Floor 2 Office 1 People, !- Name @@ -24388,6 +24763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24404,6 +24780,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24420,6 +24797,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24436,6 +24814,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24467,6 +24846,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24483,6 +24863,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24498,7 +24879,8 @@ Floor 2 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 2, !- Zone or ZoneList Name - 356.7477; !- Surface Area {m2} + , !- Surface Area {m2} + 356.7477; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 2_Infiltration, !- Name @@ -24825,6 +25207,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24841,6 +25224,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24857,6 +25241,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24873,6 +25258,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24889,6 +25275,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24905,6 +25292,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24920,7 +25308,8 @@ Floor 2 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 3, !- Zone or ZoneList Name - 557.4182; !- Surface Area {m2} + , !- Surface Area {m2} + 557.4182; !- Extended Field People, Floor 2 Office 3 People, !- Name @@ -25218,6 +25607,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25234,6 +25624,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25250,6 +25641,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25266,6 +25658,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25297,6 +25690,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25328,6 +25722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25343,7 +25738,8 @@ Floor 2 Office 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 4, !- Zone or ZoneList Name - 650.3213; !- Surface Area {m2} + , !- Surface Area {m2} + 650.3213; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 4_Infiltration, !- Name @@ -25670,6 +26066,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25686,6 +26083,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25717,6 +26115,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25748,6 +26147,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25764,6 +26164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25780,6 +26181,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25811,6 +26213,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25827,6 +26230,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25842,7 +26246,8 @@ Floor 2 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Operating, !- Zone or ZoneList Name - 3581.5980; !- Surface Area {m2} + , !- Surface Area {m2} + 3581.5980; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Operating_Infiltration, !- Name @@ -26203,6 +26608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26219,6 +26625,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26235,6 +26642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26251,6 +26659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26267,6 +26676,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26283,6 +26693,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26299,6 +26710,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26329,7 +26741,8 @@ Floor 2 PACU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 PACU, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 PACU_Infiltration, !- Name @@ -26684,6 +27097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26700,6 +27114,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26731,6 +27146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26747,6 +27163,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26763,6 +27180,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26779,6 +27197,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26794,7 +27213,8 @@ Floor 2 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 1, !- Zone or ZoneList Name - 633.2271; !- Surface Area {m2} + , !- Surface Area {m2} + 633.2271; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Patient 1_Infiltration, !- Name @@ -27121,6 +27541,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27137,6 +27558,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27153,6 +27575,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27169,6 +27592,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27185,6 +27609,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27201,6 +27626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27216,7 +27642,8 @@ Floor 2 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 2, !- Zone or ZoneList Name - 521.3719; !- Surface Area {m2} + , !- Surface Area {m2} + 521.3719; !- Extended Field People, Floor 2 Patient 2 People,!- Name @@ -27514,6 +27941,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27530,6 +27958,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27546,6 +27975,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27562,6 +27992,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27578,6 +28009,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27594,6 +28026,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27609,7 +28042,8 @@ Floor 2 Procedure 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 1, !- Zone or ZoneList Name - 468.2313; !- Surface Area {m2} + , !- Surface Area {m2} + 468.2313; !- Extended Field People, Floor 2 Procedure 1 People, !- Name @@ -27935,6 +28369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27951,6 +28386,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27967,6 +28403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27983,6 +28420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27999,6 +28437,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28015,6 +28454,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28030,7 +28470,8 @@ Floor 2 Procedure 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 2, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field People, Floor 2 Procedure 2 People, !- Name @@ -28356,6 +28797,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28372,6 +28814,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28388,6 +28831,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28404,6 +28848,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28420,6 +28865,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28451,6 +28897,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28466,7 +28913,8 @@ Floor 2 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception, !- Zone or ZoneList Name - 325.1606; !- Surface Area {m2} + , !- Surface Area {m2} + 325.1606; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Reception_Infiltration, !- Name @@ -28793,6 +29241,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28809,6 +29258,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28825,6 +29275,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28841,6 +29292,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28872,6 +29324,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28888,6 +29341,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28903,7 +29357,8 @@ Floor 2 Restroom 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 1, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 1_Infiltration, !- Name @@ -29250,6 +29705,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29266,6 +29722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29282,6 +29739,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29298,6 +29756,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29314,6 +29773,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29330,6 +29790,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29360,7 +29821,8 @@ Floor 2 Restroom 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 2, !- Zone or ZoneList Name - 167.2255; !- Surface Area {m2} + , !- Surface Area {m2} + 167.2255; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 2_Infiltration, !- Name @@ -29707,6 +30169,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29723,6 +30186,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29739,6 +30203,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29755,6 +30220,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29771,6 +30237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29787,6 +30254,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29802,7 +30270,8 @@ Floor 2 Soil 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Soil 1 People, !- Name @@ -30092,6 +30561,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30108,6 +30578,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30124,6 +30595,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30140,6 +30612,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30156,6 +30629,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30172,6 +30646,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30187,7 +30662,8 @@ Floor 2 Soil 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Soil 2 People, !- Name @@ -30477,6 +30953,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30493,6 +30970,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30509,6 +30987,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30525,6 +31004,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30541,6 +31021,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30557,6 +31038,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30572,7 +31054,8 @@ Floor 2 Sterilizing Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Sterilizing, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field Lights, Floor 2 Sterilizing_Lights, !- Name @@ -30910,6 +31393,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30926,6 +31410,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30942,6 +31427,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30958,6 +31444,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30974,6 +31461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30990,6 +31478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31005,7 +31494,8 @@ Floor 2 Storage 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 1, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field Lights, Floor 2 Storage 1_Lights,!- Name @@ -31266,6 +31756,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31282,6 +31773,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31298,6 +31790,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31314,6 +31807,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31330,6 +31824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31346,6 +31841,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31361,7 +31857,8 @@ Floor 2 Storage 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 2, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field Lights, Floor 2 Storage 2_Lights,!- Name @@ -31622,6 +32119,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31638,6 +32136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31654,6 +32153,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31670,6 +32170,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31686,6 +32187,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31702,6 +32204,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31717,7 +32220,8 @@ Floor 2 Trauma Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Trauma, !- Zone or ZoneList Name - 832.4112; !- Surface Area {m2} + , !- Surface Area {m2} + 832.4112; !- Extended Field People, Floor 2 Trauma People, !- Name @@ -32043,6 +32547,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32059,6 +32564,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32075,6 +32581,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32106,6 +32613,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32122,6 +32630,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32138,6 +32647,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32153,7 +32663,8 @@ Floor 2 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Triage, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Triage_Infiltration, !- Name @@ -32506,6 +33017,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32522,6 +33034,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32538,6 +33051,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32569,6 +33083,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32585,6 +33100,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32601,6 +33117,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32631,7 +33148,8 @@ Floor 2 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Waiting, !- Zone or ZoneList Name - 724.6437; !- Surface Area {m2} + , !- Surface Area {m2} + 724.6437; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Waiting_Infiltration, !- Name @@ -32958,6 +33476,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32974,6 +33493,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32990,6 +33510,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33006,6 +33527,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33022,6 +33544,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33038,6 +33561,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33053,7 +33577,8 @@ Floor 3 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 3 Clean People, !- Name @@ -33351,6 +33876,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33367,6 +33893,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33398,6 +33925,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33414,6 +33942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33430,6 +33959,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33461,6 +33991,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33491,7 +34022,8 @@ Floor 3 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Elevator_Infiltration, !- Name @@ -33818,6 +34350,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33834,6 +34367,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33850,6 +34384,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33866,6 +34401,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33882,6 +34418,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33898,6 +34435,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33913,7 +34451,8 @@ Floor 3 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Exam, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field People, Floor 3 Exam People, !- Name @@ -34211,6 +34750,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34227,6 +34767,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34258,6 +34799,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34274,6 +34816,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34290,6 +34833,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34306,6 +34850,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34336,7 +34881,8 @@ Floor 3 ICU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 ICU, !- Zone or ZoneList Name - 390.1928; !- Surface Area {m2} + , !- Surface Area {m2} + 390.1928; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 ICU_Infiltration,!- Name @@ -34697,6 +35243,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34728,6 +35275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34744,6 +35292,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34760,6 +35309,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34776,6 +35326,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34792,6 +35343,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34807,7 +35359,8 @@ Floor 3 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 1, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 1_Infiltration, !- Name @@ -35162,6 +35715,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35178,6 +35732,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35194,6 +35749,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35210,6 +35766,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35241,6 +35798,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35272,6 +35830,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35287,7 +35846,8 @@ Floor 3 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 2_Infiltration, !- Name @@ -35642,6 +36202,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35658,6 +36219,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35674,6 +36236,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35690,6 +36253,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35721,6 +36285,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35737,6 +36302,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35752,7 +36318,8 @@ Floor 3 Nursery Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nursery, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nursery_Infiltration, !- Name @@ -36079,6 +36646,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36095,6 +36663,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36111,6 +36680,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36127,6 +36697,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36158,6 +36729,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36174,6 +36746,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36189,7 +36762,8 @@ Floor 3 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Office_Infiltration, !- Name @@ -36516,6 +37090,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36532,6 +37107,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36548,6 +37124,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36564,6 +37141,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36595,6 +37173,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36611,6 +37190,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36626,7 +37206,8 @@ Floor 3 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Operating, !- Zone or ZoneList Name - 334.4656; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4656; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Operating_Infiltration, !- Name @@ -36981,6 +37562,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37012,6 +37594,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37028,6 +37611,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37044,6 +37628,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37075,6 +37660,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37091,6 +37677,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37106,7 +37693,8 @@ Floor 3 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 1_Infiltration, !- Name @@ -37433,6 +38021,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37449,6 +38038,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37480,6 +38070,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37496,6 +38087,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37527,6 +38119,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37543,6 +38136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37558,7 +38152,8 @@ Floor 3 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 2_Infiltration, !- Name @@ -37885,6 +38480,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37901,6 +38497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37917,6 +38514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37933,6 +38531,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37949,6 +38548,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37965,6 +38565,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37996,6 +38597,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38026,7 +38628,8 @@ Floor 3 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 3_Infiltration, !- Name @@ -38353,6 +38956,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38384,6 +38988,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38400,6 +39005,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38416,6 +39022,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38447,6 +39054,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38463,6 +39071,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38478,7 +39087,8 @@ Floor 3 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 4_Infiltration, !- Name @@ -38805,6 +39415,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38836,6 +39447,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38852,6 +39464,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38868,6 +39481,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38899,6 +39513,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38915,6 +39530,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38930,7 +39546,8 @@ Floor 3 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 1_Infiltration, !- Name @@ -39220,6 +39837,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39236,6 +39854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39252,6 +39871,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39283,6 +39903,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39314,6 +39935,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39330,6 +39952,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39345,7 +39968,8 @@ Floor 3 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 2_Infiltration, !- Name @@ -39635,6 +40259,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39651,6 +40276,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39682,6 +40308,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39698,6 +40325,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39714,6 +40342,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39730,6 +40359,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39745,7 +40375,8 @@ Floor 3 Procedure Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Procedure, !- Zone or ZoneList Name - 133.7804; !- Surface Area {m2} + , !- Surface Area {m2} + 133.7804; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Procedure_Infiltration, !- Name @@ -40100,6 +40731,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40116,6 +40748,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40132,6 +40765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40148,6 +40782,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40164,6 +40799,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40180,6 +40816,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40195,7 +40832,8 @@ Floor 3 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 3 Soil People, !- Name @@ -40485,6 +41123,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40516,6 +41155,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40532,6 +41172,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40548,6 +41189,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40564,6 +41206,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40580,6 +41223,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40595,7 +41239,8 @@ Floor 3 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Supply_Infiltration, !- Name @@ -40885,6 +41530,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40901,6 +41547,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40917,6 +41564,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40948,6 +41596,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40964,6 +41613,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40980,6 +41630,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40995,7 +41646,8 @@ Floor 3 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Triage, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Triage_Infiltration, !- Name @@ -41348,6 +42000,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41364,6 +42017,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41380,6 +42034,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41396,6 +42051,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41427,6 +42083,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41443,6 +42100,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41458,7 +42116,8 @@ Floor 3 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Waiting, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Waiting_Infiltration, !- Name @@ -41785,6 +42444,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41801,6 +42461,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41817,6 +42478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41833,6 +42495,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41849,6 +42512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41865,6 +42529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41880,7 +42545,8 @@ Floor 4-6 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 4-6 Clean People, !- Name @@ -42178,6 +42844,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42194,6 +42861,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42210,6 +42878,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42241,6 +42910,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42272,6 +42942,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42303,6 +42974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42318,7 +42990,8 @@ Floor 4-6 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Elevator_Infiltration, !- Name @@ -42645,6 +43318,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42661,6 +43335,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42677,6 +43352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42693,6 +43369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42709,6 +43386,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42740,6 +43418,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42755,7 +43434,8 @@ Floor 4-6 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Nurse Station_Infiltration, !- Name @@ -43110,6 +43790,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43126,6 +43807,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43142,6 +43824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43158,6 +43841,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43174,6 +43858,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43205,6 +43890,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43220,7 +43906,8 @@ Floor 4-6 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Office_Infiltration, !- Name @@ -43547,6 +44234,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43563,6 +44251,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43579,6 +44268,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43595,6 +44285,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43611,6 +44302,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43642,6 +44334,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43672,7 +44365,8 @@ Floor 4-6 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 1_Infiltration, !- Name @@ -43999,6 +44693,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44015,6 +44710,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44031,6 +44727,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44047,6 +44744,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44078,6 +44776,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44109,6 +44808,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44124,7 +44824,8 @@ Floor 4-6 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 2_Infiltration, !- Name @@ -44451,6 +45152,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44467,6 +45169,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44483,6 +45186,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44514,6 +45218,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44530,6 +45235,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44546,6 +45252,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44576,7 +45283,8 @@ Floor 4-6 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 3_Infiltration, !- Name @@ -44903,6 +45611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44919,6 +45628,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44935,6 +45645,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44966,6 +45677,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44997,6 +45709,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45013,6 +45726,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45028,7 +45742,8 @@ Floor 4-6 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 4_Infiltration, !- Name @@ -45355,6 +46070,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45371,6 +46087,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45387,6 +46104,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45418,6 +46136,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45434,6 +46153,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45465,6 +46185,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45480,7 +46201,8 @@ Floor 4-6 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 1_Infiltration, !- Name @@ -45770,6 +46492,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45786,6 +46509,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45802,6 +46526,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45833,6 +46558,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45849,6 +46575,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45880,6 +46607,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45895,7 +46623,8 @@ Floor 4-6 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 2_Infiltration, !- Name @@ -46185,6 +46914,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46201,6 +46931,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46217,6 +46948,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46233,6 +46965,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46249,6 +46982,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46265,6 +46999,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46280,7 +47015,8 @@ Floor 4-6 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 4-6 Soil People, !- Name @@ -46570,6 +47306,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46586,6 +47323,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46602,6 +47340,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46618,6 +47357,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46634,6 +47374,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46665,6 +47406,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46680,7 +47422,8 @@ Floor 4-6 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Supply_Infiltration, !- Name @@ -46970,6 +47713,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46986,6 +47730,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47002,6 +47747,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47018,6 +47764,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47034,6 +47781,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47050,6 +47798,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47065,7 +47814,8 @@ Floor 7 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 7 Clean People, !- Name @@ -47363,6 +48113,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47379,6 +48130,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47395,6 +48147,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47426,6 +48179,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47457,6 +48211,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47488,6 +48243,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47503,7 +48259,8 @@ Floor 7 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Elevator_Infiltration, !- Name @@ -47830,6 +48587,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47846,6 +48604,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47862,6 +48621,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47878,6 +48638,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47894,6 +48655,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47925,6 +48687,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47940,7 +48703,8 @@ Floor 7 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Nurse Station_Infiltration, !- Name @@ -48295,6 +49059,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48311,6 +49076,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48327,6 +49093,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48343,6 +49110,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48359,6 +49127,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48390,6 +49159,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48405,7 +49175,8 @@ Floor 7 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Office_Infiltration, !- Name @@ -48732,6 +49503,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48748,6 +49520,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48764,6 +49537,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48780,6 +49554,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48796,6 +49571,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48827,6 +49603,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48857,7 +49634,8 @@ Floor 7 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 1_Infiltration, !- Name @@ -49184,6 +49962,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49200,6 +49979,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49216,6 +49996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49232,6 +50013,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49263,6 +50045,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49294,6 +50077,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49309,7 +50093,8 @@ Floor 7 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 2_Infiltration, !- Name @@ -49636,6 +50421,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49652,6 +50438,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49668,6 +50455,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49699,6 +50487,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49715,6 +50504,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49731,6 +50521,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49761,7 +50552,8 @@ Floor 7 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 3_Infiltration, !- Name @@ -50088,6 +50880,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50104,6 +50897,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50120,6 +50914,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50151,6 +50946,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50182,6 +50978,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50198,6 +50995,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50213,7 +51011,8 @@ Floor 7 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 4_Infiltration, !- Name @@ -50540,6 +51339,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50556,6 +51356,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50572,6 +51373,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50603,6 +51405,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50619,6 +51422,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50650,6 +51454,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50665,7 +51470,8 @@ Floor 7 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 1_Infiltration, !- Name @@ -50955,6 +51761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50971,6 +51778,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50987,6 +51795,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51018,6 +51827,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51034,6 +51844,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51065,6 +51876,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51080,7 +51892,8 @@ Floor 7 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 2_Infiltration, !- Name @@ -51370,6 +52183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51386,6 +52200,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51402,6 +52217,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51418,6 +52234,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51434,6 +52251,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51450,6 +52268,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51465,7 +52284,8 @@ Floor 7 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 7 Soil People, !- Name @@ -51755,6 +52575,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51771,6 +52592,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51787,6 +52609,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51803,6 +52626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51819,6 +52643,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51850,6 +52675,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51865,7 +52691,8 @@ Floor 7 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Supply_Infiltration, !- Name @@ -52155,6 +52982,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52171,6 +52999,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52187,6 +53016,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52203,6 +53033,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52219,6 +53050,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52235,6 +53067,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52250,7 +53083,8 @@ MOB Floor 1 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Core, !- Zone or ZoneList Name - 2559.4788; !- Surface Area {m2} + , !- Surface Area {m2} + 2559.4788; !- Extended Field People, MOB Floor 1 Core People, !- Name @@ -52548,6 +53382,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52564,6 +53399,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52580,6 +53416,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -52611,6 +53448,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52627,6 +53465,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52643,6 +53482,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52658,7 +53498,8 @@ MOB Floor 1 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 1_Infiltration, !- Name @@ -52985,6 +53826,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53001,6 +53843,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53032,6 +53875,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53048,6 +53892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53064,6 +53909,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53080,6 +53926,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53095,7 +53942,8 @@ MOB Floor 1 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 2_Infiltration, !- Name @@ -53422,6 +54270,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53438,6 +54287,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53454,6 +54304,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53485,6 +54336,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53501,6 +54353,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53517,6 +54370,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53532,7 +54386,8 @@ MOB Floor 1 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 3_Infiltration, !- Name @@ -53859,6 +54714,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53875,6 +54731,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53891,6 +54748,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53907,6 +54765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53923,6 +54782,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53939,6 +54799,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53954,7 +54815,8 @@ MOB Floor 2-4 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 2-4 Core People, !- Name @@ -54252,6 +55114,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54268,6 +55131,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54284,6 +55148,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54300,6 +55165,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54331,6 +55197,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54347,6 +55214,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54362,7 +55230,8 @@ MOB Floor 2-4 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 1_Infiltration, !- Name @@ -54689,6 +55558,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54705,6 +55575,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54721,6 +55592,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54737,6 +55609,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54753,6 +55626,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54769,6 +55643,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54799,7 +55674,8 @@ MOB Floor 2-4 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 2_Infiltration, !- Name @@ -55126,6 +56002,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55142,6 +56019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55158,6 +56036,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55174,6 +56053,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55190,6 +56070,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55206,6 +56087,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55236,7 +56118,8 @@ MOB Floor 2-4 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 3_Infiltration, !- Name @@ -55563,6 +56446,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55579,6 +56463,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55595,6 +56480,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55611,6 +56497,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55627,6 +56514,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55643,6 +56531,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55673,7 +56562,8 @@ MOB Floor 2-4 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 4_Infiltration, !- Name @@ -56000,6 +56890,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56016,6 +56907,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56032,6 +56924,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56048,6 +56941,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56064,6 +56958,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56080,6 +56975,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56095,7 +56991,8 @@ MOB Floor 5 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 5 Core People, !- Name @@ -56393,6 +57290,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56409,6 +57307,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56425,6 +57324,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56441,6 +57341,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56472,6 +57373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56488,6 +57390,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56503,7 +57406,8 @@ MOB Floor 5 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 1_Infiltration, !- Name @@ -56830,6 +57734,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56846,6 +57751,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56862,6 +57768,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56878,6 +57785,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56894,6 +57802,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56910,6 +57819,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56940,7 +57850,8 @@ MOB Floor 5 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 2_Infiltration, !- Name @@ -57267,6 +58178,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57283,6 +58195,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57299,6 +58212,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57315,6 +58229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57331,6 +58246,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57347,6 +58263,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57377,7 +58294,8 @@ MOB Floor 5 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 3_Infiltration, !- Name @@ -57704,6 +58622,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57720,6 +58639,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57736,6 +58656,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57752,6 +58673,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57768,6 +58690,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57784,6 +58707,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-3.8 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57814,7 +58738,8 @@ MOB Floor 5 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 4_Infiltration, !- Name diff --git a/testfiles/HospitalLowEnergy.idf b/testfiles/HospitalLowEnergy.idf index 7ab7c720245..6915456785d 100644 --- a/testfiles/HospitalLowEnergy.idf +++ b/testfiles/HospitalLowEnergy.idf @@ -1717,6 +1717,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1733,6 +1734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1749,6 +1751,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1765,6 +1768,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1781,6 +1785,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1797,6 +1802,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1812,7 +1818,8 @@ Floor 1 Cafe Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Cafe, !- Zone or ZoneList Name - 746.5688; !- Surface Area {m2} + , !- Surface Area {m2} + 746.5688; !- Extended Field People, Floor 1 Cafe People, !- Name @@ -2048,97 +2055,97 @@ Heat Pump Fan; !- End-Use Subcategory Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Coil:Heating:WaterToAirHeatPump:EquationFit, Floor 1 Cafe Heat Pump Heat Coil, !- Name @@ -2625,6 +2632,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2641,6 +2649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2657,6 +2666,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2673,6 +2683,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2689,6 +2700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2705,6 +2717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2720,7 +2733,8 @@ Floor 1 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Clean People, !- Name @@ -3096,6 +3110,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3112,6 +3127,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3168,6 +3184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3184,6 +3201,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3200,6 +3218,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3216,6 +3235,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3232,6 +3252,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Conference, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3287,7 +3308,8 @@ Floor 1 Conference Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Conference, !- Zone or ZoneList Name - 1142.7074; !- Surface Area {m2} + , !- Surface Area {m2} + 1142.7074; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Conference_Infiltration, !- Name @@ -3692,6 +3714,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3708,6 +3731,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3724,6 +3748,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3740,6 +3765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3756,6 +3782,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3772,6 +3799,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3842,7 +3870,8 @@ Floor 1 Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dining, !- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Dining_Infiltration, !- Name @@ -4247,6 +4276,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4263,6 +4293,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4279,6 +4310,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4295,6 +4327,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4351,6 +4384,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4367,6 +4401,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4422,7 +4457,8 @@ Floor 1 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Elevator_Infiltration, !- Name @@ -4827,6 +4863,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4843,6 +4880,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4874,6 +4912,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4890,6 +4929,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4906,6 +4946,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4922,6 +4963,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4937,7 +4979,8 @@ Floor 1 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Exam, !- Zone or ZoneList Name - 490.5281; !- Surface Area {m2} + , !- Surface Area {m2} + 490.5281; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Exam_Infiltration, !- Name @@ -5342,6 +5385,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5358,6 +5402,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5374,6 +5419,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5390,6 +5436,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5406,6 +5453,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5422,6 +5470,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Food Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5437,7 +5486,8 @@ Floor 1 Food Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Food Storage, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Food Storage People, !- Name @@ -6048,6 +6098,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6064,6 +6115,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6080,6 +6132,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6096,6 +6149,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6127,6 +6181,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6143,6 +6198,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Gas Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6158,7 +6214,8 @@ Floor 1 Gas Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Gas Storage, !- Zone or ZoneList Name - 115.9430; !- Surface Area {m2} + , !- Surface Area {m2} + 115.9430; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Gas Storage_Infiltration, !- Name @@ -6543,6 +6600,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6559,6 +6617,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6575,6 +6634,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6591,6 +6651,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6607,6 +6668,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6623,6 +6685,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Imaging, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6638,7 +6701,8 @@ Floor 1 Imaging Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Imaging, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Imaging People, !- Name @@ -7042,6 +7106,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7058,6 +7123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7074,6 +7140,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7090,6 +7157,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7106,6 +7174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7122,6 +7191,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Kitchen, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7137,7 +7207,8 @@ Floor 1 Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Kitchen, !- Zone or ZoneList Name - 373.2844; !- Surface Area {m2} + , !- Surface Area {m2} + 373.2844; !- Extended Field People, Floor 1 Kitchen People, !- Name @@ -7621,6 +7692,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7637,6 +7709,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7653,6 +7726,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7669,6 +7743,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7685,6 +7760,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7701,6 +7777,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7716,7 +7793,8 @@ Floor 1 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 1, !- Zone or ZoneList Name - 371.6122; !- Surface Area {m2} + , !- Surface Area {m2} + 371.6122; !- Extended Field People, Floor 1 Lab 1 People, !- Name @@ -8120,6 +8198,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8136,6 +8215,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8152,6 +8232,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8168,6 +8249,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8199,6 +8281,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8215,6 +8298,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8230,7 +8314,8 @@ Floor 1 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lab 2, !- Zone or ZoneList Name - 910.4498; !- Surface Area {m2} + , !- Surface Area {m2} + 910.4498; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lab 2_Infiltration, !- Name @@ -8663,6 +8748,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8679,6 +8765,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8710,6 +8797,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8726,6 +8814,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8742,6 +8831,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8758,6 +8848,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Laundry, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8813,7 +8904,8 @@ Floor 1 Laundry Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Laundry, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Laundry_Infiltration, !- Name @@ -9264,6 +9356,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9280,6 +9373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9296,6 +9390,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9327,6 +9422,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9343,6 +9439,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9359,6 +9456,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9375,6 +9473,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9391,6 +9490,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9446,7 +9546,8 @@ Floor 1 Lobby Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Lobby_Infiltration, !- Name @@ -9851,6 +9952,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9867,6 +9969,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9883,6 +9986,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9899,6 +10003,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9915,6 +10020,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9931,6 +10037,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9946,7 +10053,8 @@ Floor 1 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lounge, !- Zone or ZoneList Name - 237.8318; !- Surface Area {m2} + , !- Surface Area {m2} + 237.8318; !- Extended Field People, Floor 1 Lounge People, !- Name @@ -10322,6 +10430,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10338,6 +10447,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10369,6 +10479,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10400,6 +10511,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10416,6 +10528,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10432,6 +10545,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10447,7 +10561,8 @@ Floor 1 Mech 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 1, !- Zone or ZoneList Name - 1505.0292; !- Surface Area {m2} + , !- Surface Area {m2} + 1505.0292; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 1_Infiltration, !- Name @@ -10815,6 +10930,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10846,6 +10962,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10862,6 +10979,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10893,6 +11011,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10909,6 +11028,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10940,6 +11060,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10956,6 +11077,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10972,6 +11094,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Mech 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10987,7 +11110,8 @@ Floor 1 Mech 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Mech 2, !- Zone or ZoneList Name - 2006.7057; !- Surface Area {m2} + , !- Surface Area {m2} + 2006.7057; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Mech 2_Infiltration, !- Name @@ -11355,6 +11479,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11371,6 +11496,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11387,6 +11513,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11418,6 +11545,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11434,6 +11562,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11450,6 +11579,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11505,7 +11635,8 @@ Floor 1 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 1, !- Zone or ZoneList Name - 1371.2489; !- Surface Area {m2} + , !- Surface Area {m2} + 1371.2489; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 1_Infiltration, !- Name @@ -11910,6 +12041,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11926,6 +12058,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11942,6 +12075,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11958,6 +12092,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11989,6 +12124,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12005,6 +12141,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12060,7 +12197,8 @@ Floor 1 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 2, !- Zone or ZoneList Name - 1056.1218; !- Surface Area {m2} + , !- Surface Area {m2} + 1056.1218; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 2_Infiltration, !- Name @@ -12465,6 +12603,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12481,6 +12620,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12497,6 +12637,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12513,6 +12654,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12529,6 +12671,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12545,6 +12688,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12561,6 +12705,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12631,7 +12776,8 @@ Floor 1 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3, !- Zone or ZoneList Name - 3678.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 3678.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3_Infiltration, !- Name @@ -13036,6 +13182,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13052,6 +13199,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13068,6 +13216,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13084,6 +13233,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13100,6 +13250,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13131,6 +13282,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13186,7 +13338,8 @@ Floor 1 Office 3 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 1, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 1_Infiltration, !- Name @@ -13591,6 +13744,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13607,6 +13761,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13623,6 +13778,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13654,6 +13810,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13670,6 +13827,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13686,6 +13844,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13741,7 +13900,8 @@ Floor 1 Office 3 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 2, !- Zone or ZoneList Name - 340.0251; !- Surface Area {m2} + , !- Surface Area {m2} + 340.0251; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 2_Infiltration, !- Name @@ -14146,6 +14306,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14162,6 +14323,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14178,6 +14340,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14209,6 +14372,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14225,6 +14389,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14281,6 +14446,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14336,7 +14502,8 @@ Floor 1 Office 3 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office 3 Perimeter 3, !- Zone or ZoneList Name - 536.5151; !- Surface Area {m2} + , !- Surface Area {m2} + 536.5151; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Office 3 Perimeter 3_Infiltration, !- Name @@ -14741,6 +14908,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14757,6 +14925,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14788,6 +14957,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14804,6 +14974,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14820,6 +14991,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14836,6 +15008,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Patient, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14851,7 +15024,8 @@ Floor 1 Patient Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Patient, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Patient_Infiltration, !- Name @@ -15256,6 +15430,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15272,6 +15447,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15288,6 +15464,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15304,6 +15481,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15320,6 +15498,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15336,6 +15515,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pharmacy, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15351,7 +15531,8 @@ Floor 1 Pharmacy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pharmacy, !- Zone or ZoneList Name - 1114.8365; !- Surface Area {m2} + , !- Surface Area {m2} + 1114.8365; !- Extended Field People, Floor 1 Pharmacy People, !- Name @@ -15727,6 +15908,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15743,6 +15925,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15759,6 +15942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15775,6 +15959,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15791,6 +15976,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15807,6 +15993,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Physical Therapy,!- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15822,7 +16009,8 @@ Floor 1 Physical Therapy Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Physical Therapy,!- Zone or ZoneList Name - 914.1659; !- Surface Area {m2} + , !- Surface Area {m2} + 914.1659; !- Extended Field People, Floor 1 Physical Therapy People, !- Name @@ -16198,6 +16386,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16214,6 +16403,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16245,6 +16435,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16261,6 +16452,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16277,6 +16469,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16293,6 +16486,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Receiving, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16323,7 +16517,8 @@ Floor 1 Receiving Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Receiving, !- Zone or ZoneList Name - 415.4624; !- Surface Area {m2} + , !- Surface Area {m2} + 415.4624; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Receiving_Infiltration, !- Name @@ -16691,6 +16886,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16707,6 +16903,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16723,6 +16920,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16754,6 +16952,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16770,6 +16969,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16786,6 +16986,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16841,7 +17042,8 @@ Floor 1 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception, !- Zone or ZoneList Name - 104.0514; !- Surface Area {m2} + , !- Surface Area {m2} + 104.0514; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 1 Reception_Infiltration, !- Name @@ -17246,6 +17448,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17262,6 +17465,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17278,6 +17482,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17294,6 +17499,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17310,6 +17516,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17326,6 +17533,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17341,7 +17549,8 @@ Floor 1 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil, !- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field People, Floor 1 Soil People, !- Name @@ -17706,6 +17915,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17722,6 +17932,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17738,6 +17949,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17754,6 +17966,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17770,6 +17983,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17786,6 +18000,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17801,7 +18016,8 @@ Floor 1 Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Storage, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field Lights, Floor 1 Storage_Lights, !- Name @@ -18140,6 +18356,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18156,6 +18373,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18172,6 +18390,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18188,6 +18407,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18204,6 +18424,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18220,6 +18441,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18235,7 +18457,8 @@ Floor 1 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Waiting, !- Zone or ZoneList Name - 282.4252; !- Surface Area {m2} + , !- Surface Area {m2} + 282.4252; !- Extended Field People, Floor 1 Waiting People, !- Name @@ -18611,6 +18834,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18627,6 +18851,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18643,6 +18868,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18659,6 +18885,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18675,6 +18902,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18731,6 +18959,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Chapel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18761,7 +18990,8 @@ Floor 2 Chapel Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Chapel, !- Zone or ZoneList Name - 379.0444; !- Surface Area {m2} + , !- Surface Area {m2} + 379.0444; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Chapel_Infiltration, !- Name @@ -19166,6 +19396,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19182,6 +19413,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19198,6 +19430,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19214,6 +19447,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19230,6 +19464,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19246,6 +19481,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19261,7 +19497,8 @@ Floor 2 Clean 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Clean 1 People, !- Name @@ -19637,6 +19874,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19653,6 +19891,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19669,6 +19908,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19685,6 +19925,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19701,6 +19942,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19717,6 +19959,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Clean 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19732,7 +19975,8 @@ Floor 2 Clean 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Clean 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Clean 2 People, !- Name @@ -20108,6 +20352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20124,6 +20369,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20155,6 +20401,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20171,6 +20418,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20187,6 +20435,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20203,6 +20452,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20219,6 +20469,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Corridor, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20274,7 +20525,8 @@ Floor 2 Corridor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Corridor, !- Zone or ZoneList Name - 966.1916; !- Surface Area {m2} + , !- Surface Area {m2} + 966.1916; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Corridor_Infiltration, !- Name @@ -20642,6 +20894,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20658,6 +20911,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20714,6 +20968,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20730,6 +20985,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20746,6 +21002,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20762,6 +21019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20817,7 +21075,8 @@ Floor 2 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Elevator_Infiltration, !- Name @@ -21222,6 +21481,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21238,6 +21498,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21254,6 +21515,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21285,6 +21547,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21341,6 +21604,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21357,6 +21621,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21372,7 +21637,8 @@ Floor 2 Exam 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 1, !- Zone or ZoneList Name - 780.3855; !- Surface Area {m2} + , !- Surface Area {m2} + 780.3855; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Exam 1_Infiltration, !- Name @@ -21777,6 +22043,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21793,6 +22060,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21809,6 +22077,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21825,6 +22094,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -21841,6 +22111,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21857,6 +22128,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21872,7 +22144,8 @@ Floor 2 Exam 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 2, !- Zone or ZoneList Name - 250.8382; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8382; !- Extended Field People, Floor 2 Exam 2 People, !- Name @@ -22248,6 +22521,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22264,6 +22538,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22280,6 +22555,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22296,6 +22572,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22312,6 +22589,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22328,6 +22606,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22343,7 +22622,8 @@ Floor 2 Exam 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 3, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field People, Floor 2 Exam 3 People, !- Name @@ -22719,6 +22999,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22735,6 +23016,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22751,6 +23033,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22767,6 +23050,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22783,6 +23067,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -22799,6 +23084,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22815,6 +23101,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -22830,7 +23117,8 @@ Floor 2 Exam 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 4, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field People, Floor 2 Exam 4 People, !- Name @@ -23206,6 +23494,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23222,6 +23511,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23278,6 +23568,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23294,6 +23585,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23310,6 +23602,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23326,6 +23619,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Gift Shop, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23341,7 +23635,8 @@ Floor 2 Gift Shop Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Gift Shop, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Gift Shop_Infiltration, !- Name @@ -23746,6 +24041,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -23762,6 +24058,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23778,6 +24075,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23794,6 +24092,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23810,6 +24109,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23826,6 +24126,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -23841,7 +24142,8 @@ Floor 2 Imaging 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 1, !- Zone or ZoneList Name - 429.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 429.2120; !- Extended Field People, Floor 2 Imaging 1 People,!- Name @@ -24245,6 +24547,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24301,6 +24604,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24317,6 +24621,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24333,6 +24638,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24349,6 +24655,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24365,6 +24672,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24381,6 +24689,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Imaging 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24396,7 +24705,8 @@ Floor 2 Imaging 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 2_Infiltration, !- Name @@ -24829,6 +25139,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24845,6 +25156,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24876,6 +25188,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -24907,6 +25220,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24923,6 +25237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24939,6 +25254,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Imaging 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -24954,7 +25270,8 @@ Floor 2 Imaging 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Imaging 3, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Imaging 3_Infiltration, !- Name @@ -25387,6 +25704,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25403,6 +25721,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25419,6 +25738,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25435,6 +25755,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25451,6 +25772,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25467,6 +25789,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25482,7 +25805,8 @@ Floor 2 Lab 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 1, !- Zone or ZoneList Name - 423.6379; !- Surface Area {m2} + , !- Surface Area {m2} + 423.6379; !- Extended Field People, Floor 2 Lab 1 People, !- Name @@ -25892,6 +26216,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25908,6 +26233,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -25924,6 +26250,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25940,6 +26267,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25956,6 +26284,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25972,6 +26301,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -25988,6 +26318,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lab 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26003,7 +26334,8 @@ Floor 2 Lab 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lab 2, !- Zone or ZoneList Name - 631.7407; !- Surface Area {m2} + , !- Surface Area {m2} + 631.7407; !- Extended Field People, Floor 2 Lab 2 People, !- Name @@ -26407,6 +26739,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26423,6 +26756,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26439,6 +26773,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26455,6 +26790,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26471,6 +26807,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -26487,6 +26824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lockers, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26502,7 +26840,8 @@ Floor 2 Lockers Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lockers, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field People, Floor 2 Lockers People, !- Name @@ -26895,6 +27234,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26911,6 +27251,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26927,6 +27268,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26943,6 +27285,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26959,6 +27302,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26975,6 +27319,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -26990,7 +27335,8 @@ Floor 2 Lounge 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 1, !- Zone or ZoneList Name - 222.9673; !- Surface Area {m2} + , !- Surface Area {m2} + 222.9673; !- Extended Field People, Floor 2 Lounge 1 People, !- Name @@ -27366,6 +27712,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27382,6 +27729,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27413,6 +27761,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27429,6 +27778,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27485,6 +27835,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27501,6 +27852,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Lounge 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -27556,7 +27908,8 @@ Floor 2 Lounge 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge 2, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Lounge 2_Infiltration, !- Name @@ -27961,6 +28314,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27977,6 +28331,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -27993,6 +28348,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28009,6 +28365,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28025,6 +28382,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28041,6 +28399,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28056,7 +28415,8 @@ Floor 2 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 1, !- Zone or ZoneList Name - 239.6898; !- Surface Area {m2} + , !- Surface Area {m2} + 239.6898; !- Extended Field People, Floor 2 Nurse Station 1 People, !- Name @@ -28460,6 +28820,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28476,6 +28837,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28492,6 +28854,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28508,6 +28871,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28524,6 +28888,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -28555,6 +28920,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28571,6 +28937,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -28626,7 +28993,8 @@ Floor 2 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 2, !- Zone or ZoneList Name - 743.2243; !- Surface Area {m2} + , !- Surface Area {m2} + 743.2243; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Nurse Station 2_Infiltration, !- Name @@ -29059,6 +29427,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29075,6 +29444,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29091,6 +29461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29107,6 +29478,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29123,6 +29495,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29139,6 +29512,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Office 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29154,7 +29528,8 @@ Floor 2 Office 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 1, !- Zone or ZoneList Name - 434.7862; !- Surface Area {m2} + , !- Surface Area {m2} + 434.7862; !- Extended Field People, Floor 2 Office 1 People, !- Name @@ -29530,6 +29905,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29546,6 +29922,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29562,6 +29939,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29578,6 +29956,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -29609,6 +29988,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29625,6 +30005,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -29680,7 +30061,8 @@ Floor 2 Office 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 2, !- Zone or ZoneList Name - 356.7477; !- Surface Area {m2} + , !- Surface Area {m2} + 356.7477; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 2_Infiltration, !- Name @@ -30085,6 +30467,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30101,6 +30484,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30117,6 +30501,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30133,6 +30518,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30149,6 +30535,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30165,6 +30552,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30180,7 +30568,8 @@ Floor 2 Office 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 3, !- Zone or ZoneList Name - 557.4182; !- Surface Area {m2} + , !- Surface Area {m2} + 557.4182; !- Extended Field People, Floor 2 Office 3 People, !- Name @@ -30556,6 +30945,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30572,6 +30962,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30588,6 +30979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30604,6 +30996,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30635,6 +31028,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -30691,6 +31085,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Office 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -30746,7 +31141,8 @@ Floor 2 Office 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office 4, !- Zone or ZoneList Name - 650.3213; !- Surface Area {m2} + , !- Surface Area {m2} + 650.3213; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Office 4_Infiltration, !- Name @@ -31151,6 +31547,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31167,6 +31564,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -31198,6 +31596,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -31229,6 +31628,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31245,6 +31645,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31261,6 +31662,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -31292,6 +31694,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31308,6 +31711,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -31323,7 +31727,8 @@ Floor 2 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Operating, !- Zone or ZoneList Name - 3581.5980; !- Surface Area {m2} + , !- Surface Area {m2} + 3581.5980; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Operating_Infiltration, !- Name @@ -31684,6 +32089,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31700,6 +32106,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31716,6 +32123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31732,6 +32140,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31748,6 +32157,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31764,6 +32174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -31780,6 +32191,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 PACU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -31810,7 +32222,8 @@ Floor 2 PACU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 PACU, !- Zone or ZoneList Name - 752.5146; !- Surface Area {m2} + , !- Surface Area {m2} + 752.5146; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 PACU_Infiltration, !- Name @@ -32243,6 +32656,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32259,6 +32673,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32290,6 +32705,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32306,6 +32722,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32322,6 +32739,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32338,6 +32756,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32353,7 +32772,8 @@ Floor 2 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 1, !- Zone or ZoneList Name - 633.2271; !- Surface Area {m2} + , !- Surface Area {m2} + 633.2271; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Patient 1_Infiltration, !- Name @@ -32758,6 +33178,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32774,6 +33195,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32790,6 +33212,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32806,6 +33229,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32822,6 +33246,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -32838,6 +33263,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -32853,7 +33279,8 @@ Floor 2 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Patient 2, !- Zone or ZoneList Name - 521.3719; !- Surface Area {m2} + , !- Surface Area {m2} + 521.3719; !- Extended Field People, Floor 2 Patient 2 People,!- Name @@ -33229,6 +33656,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33245,6 +33673,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33261,6 +33690,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33277,6 +33707,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -33293,6 +33724,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33309,6 +33741,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33324,7 +33757,8 @@ Floor 2 Procedure 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 1, !- Zone or ZoneList Name - 468.2313; !- Surface Area {m2} + , !- Surface Area {m2} + 468.2313; !- Extended Field People, Floor 2 Procedure 1 People, !- Name @@ -33728,6 +34162,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33744,6 +34179,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33760,6 +34196,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33776,6 +34213,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33792,6 +34230,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33808,6 +34247,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Procedure 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -33823,7 +34263,8 @@ Floor 2 Procedure 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Procedure 2, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field People, Floor 2 Procedure 2 People, !- Name @@ -34227,6 +34668,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34243,6 +34685,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34259,6 +34702,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34275,6 +34719,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34291,6 +34736,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34347,6 +34793,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34402,7 +34849,8 @@ Floor 2 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception, !- Zone or ZoneList Name - 325.1606; !- Surface Area {m2} + , !- Surface Area {m2} + 325.1606; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Reception_Infiltration, !- Name @@ -34807,6 +35255,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34823,6 +35272,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34839,6 +35289,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34855,6 +35306,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -34886,6 +35338,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34902,6 +35355,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -34917,7 +35371,8 @@ Floor 2 Restroom 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 1, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 1_Infiltration, !- Name @@ -35339,6 +35794,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35355,6 +35811,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35371,6 +35828,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35387,6 +35845,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35403,6 +35862,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35419,6 +35879,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Restroom 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35474,7 +35935,8 @@ Floor 2 Restroom 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Restroom 2, !- Zone or ZoneList Name - 167.2255; !- Surface Area {m2} + , !- Surface Area {m2} + 167.2255; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Restroom 2_Infiltration, !- Name @@ -35896,6 +36358,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35912,6 +36375,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -35928,6 +36392,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35944,6 +36409,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35960,6 +36426,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35976,6 +36443,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -35991,7 +36459,8 @@ Floor 2 Soil 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 1, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field People, Floor 2 Soil 1 People, !- Name @@ -36356,6 +36825,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36372,6 +36842,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36388,6 +36859,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36404,6 +36876,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36420,6 +36893,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36436,6 +36910,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Soil 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36451,7 +36926,8 @@ Floor 2 Soil 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Soil 2, !- Zone or ZoneList Name - 59.4579; !- Surface Area {m2} + , !- Surface Area {m2} + 59.4579; !- Extended Field People, Floor 2 Soil 2 People, !- Name @@ -36816,6 +37292,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36832,6 +37309,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36848,6 +37326,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36864,6 +37343,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36880,6 +37360,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -36896,6 +37377,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Sterilizing, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -36911,7 +37393,8 @@ Floor 2 Sterilizing Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Sterilizing, !- Zone or ZoneList Name - 252.6963; !- Surface Area {m2} + , !- Surface Area {m2} + 252.6963; !- Extended Field Lights, Floor 2 Sterilizing_Lights, !- Name @@ -37324,6 +37807,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37340,6 +37824,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37356,6 +37841,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -37372,6 +37858,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37388,6 +37875,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37404,6 +37892,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37419,7 +37908,8 @@ Floor 2 Storage 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 1, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field Lights, Floor 2 Storage 1_Lights,!- Name @@ -37758,6 +38248,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37774,6 +38265,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37790,6 +38282,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37806,6 +38299,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37822,6 +38316,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37838,6 +38333,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -37853,7 +38349,8 @@ Floor 2 Storage 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 2, !- Zone or ZoneList Name - 118.9159; !- Surface Area {m2} + , !- Surface Area {m2} + 118.9159; !- Extended Field Lights, Floor 2 Storage 2_Lights,!- Name @@ -38192,6 +38689,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38208,6 +38706,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38224,6 +38723,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38240,6 +38740,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38256,6 +38757,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38272,6 +38774,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Trauma, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38287,7 +38790,8 @@ Floor 2 Trauma Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Trauma, !- Zone or ZoneList Name - 832.4112; !- Surface Area {m2} + , !- Surface Area {m2} + 832.4112; !- Extended Field People, Floor 2 Trauma People, !- Name @@ -38691,6 +39195,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38707,6 +39212,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38723,6 +39229,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38779,6 +39286,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -38795,6 +39303,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38811,6 +39320,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -38826,7 +39336,8 @@ Floor 2 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Triage, !- Zone or ZoneList Name - 162.5803; !- Surface Area {m2} + , !- Surface Area {m2} + 162.5803; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Triage_Infiltration, !- Name @@ -39254,6 +39765,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39270,6 +39782,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39286,6 +39799,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39317,6 +39831,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39333,6 +39848,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39349,6 +39865,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 2 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -39419,7 +39936,8 @@ Floor 2 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Waiting, !- Zone or ZoneList Name - 724.6437; !- Surface Area {m2} + , !- Surface Area {m2} + 724.6437; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 2 Waiting_Infiltration, !- Name @@ -39824,6 +40342,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39840,6 +40359,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39856,6 +40376,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39872,6 +40393,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39888,6 +40410,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39904,6 +40427,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -39919,7 +40443,8 @@ Floor 3 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 3 Clean People, !- Name @@ -40295,6 +40820,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40311,6 +40837,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40342,6 +40869,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40358,6 +40886,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40374,6 +40903,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40430,6 +40960,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40500,7 +41031,8 @@ Floor 3 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Elevator_Infiltration, !- Name @@ -40905,6 +41437,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40921,6 +41454,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -40937,6 +41471,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40953,6 +41488,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40969,6 +41505,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -40985,6 +41522,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Exam, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41000,7 +41538,8 @@ Floor 3 Exam Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Exam, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field People, Floor 3 Exam People, !- Name @@ -41376,6 +41915,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41392,6 +41932,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41423,6 +41964,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41439,6 +41981,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41455,6 +41998,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41471,6 +42015,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 ICU, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41501,7 +42046,8 @@ Floor 3 ICU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 ICU, !- Zone or ZoneList Name - 390.1928; !- Surface Area {m2} + , !- Surface Area {m2} + 390.1928; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 ICU_Infiltration,!- Name @@ -41940,6 +42486,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -41971,6 +42518,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -41987,6 +42535,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42003,6 +42552,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42019,6 +42569,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42035,6 +42586,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42090,7 +42642,8 @@ Floor 3 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 1, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 1_Infiltration, !- Name @@ -42523,6 +43076,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42539,6 +43093,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42555,6 +43110,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -42571,6 +43127,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42602,6 +43159,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42633,6 +43191,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Nurse Station 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -42688,7 +43247,8 @@ Floor 3 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nurse Station 2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nurse Station 2_Infiltration, !- Name @@ -43121,6 +43681,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43137,6 +43698,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43153,6 +43715,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43169,6 +43732,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43200,6 +43764,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43216,6 +43781,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Nursery, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43231,7 +43797,8 @@ Floor 3 Nursery Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Nursery, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Nursery_Infiltration, !- Name @@ -43636,6 +44203,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43652,6 +44220,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43668,6 +44237,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43684,6 +44254,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43715,6 +44286,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -43731,6 +44303,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -43786,7 +44359,8 @@ Floor 3 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office, !- Zone or ZoneList Name - 501.6764; !- Surface Area {m2} + , !- Surface Area {m2} + 501.6764; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Office_Infiltration, !- Name @@ -44191,6 +44765,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44207,6 +44782,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44223,6 +44799,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44239,6 +44816,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44270,6 +44848,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44286,6 +44865,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Operating, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44301,7 +44881,8 @@ Floor 3 Operating Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Operating, !- Zone or ZoneList Name - 334.4656; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4656; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Operating_Infiltration, !- Name @@ -44656,6 +45237,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44712,6 +45294,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44728,6 +45311,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44744,6 +45328,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -44775,6 +45360,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44791,6 +45377,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -44806,7 +45393,8 @@ Floor 3 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 1_Infiltration, !- Name @@ -45211,6 +45799,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45227,6 +45816,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45258,6 +45848,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45274,6 +45865,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45305,6 +45897,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45321,6 +45914,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45336,7 +45930,8 @@ Floor 3 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 2_Infiltration, !- Name @@ -45741,6 +46336,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45757,6 +46353,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45773,6 +46370,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45789,6 +46387,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45805,6 +46404,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -45821,6 +46421,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45852,6 +46453,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45882,7 +46484,8 @@ Floor 3 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 3_Infiltration, !- Name @@ -46287,6 +46890,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46318,6 +46922,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46334,6 +46939,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46350,6 +46956,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46406,6 +47013,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46422,6 +47030,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46437,7 +47046,8 @@ Floor 3 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient 4_Infiltration, !- Name @@ -46842,6 +47452,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46873,6 +47484,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46889,6 +47501,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46905,6 +47518,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -46936,6 +47550,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -46952,6 +47567,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47007,7 +47623,8 @@ Floor 3 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 1_Infiltration, !- Name @@ -47375,6 +47992,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47391,6 +48009,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47407,6 +48026,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47438,6 +48058,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47469,6 +48090,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47485,6 +48107,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47540,7 +48163,8 @@ Floor 3 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Patient Corridor 2_Infiltration, !- Name @@ -47908,6 +48532,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47924,6 +48549,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -47955,6 +48581,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47971,6 +48598,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -47987,6 +48615,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48003,6 +48632,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Procedure, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48018,7 +48648,8 @@ Floor 3 Procedure Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Procedure, !- Zone or ZoneList Name - 133.7804; !- Surface Area {m2} + , !- Surface Area {m2} + 133.7804; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Procedure_Infiltration, !- Name @@ -48451,6 +49082,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48467,6 +49099,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48483,6 +49116,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48499,6 +49133,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48515,6 +49150,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48531,6 +49167,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48546,7 +49183,8 @@ Floor 3 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 3 Soil People, !- Name @@ -48911,6 +49549,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -48942,6 +49581,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48958,6 +49598,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48974,6 +49615,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -48990,6 +49632,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49006,6 +49649,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49021,7 +49665,8 @@ Floor 3 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Supply_Infiltration, !- Name @@ -49389,6 +50034,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49405,6 +50051,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49421,6 +50068,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -49452,6 +50100,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49468,6 +50117,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49484,6 +50134,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Triage, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49499,7 +50150,8 @@ Floor 3 Triage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Triage, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Triage_Infiltration, !- Name @@ -49927,6 +50579,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49943,6 +50596,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49959,6 +50613,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -49975,6 +50630,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50006,6 +50662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50022,6 +50679,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 3 Waiting, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -50077,7 +50735,8 @@ Floor 3 Waiting Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Waiting, !- Zone or ZoneList Name - 183.9480; !- Surface Area {m2} + , !- Surface Area {m2} + 183.9480; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 3 Waiting_Infiltration, !- Name @@ -50482,6 +51141,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50498,6 +51158,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50514,6 +51175,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50530,6 +51192,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50546,6 +51209,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50562,6 +51226,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50577,7 +51242,8 @@ Floor 4-6 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 4-6 Clean People, !- Name @@ -50953,6 +51619,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50969,6 +51636,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -50985,6 +51653,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51016,6 +51685,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51072,6 +51742,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51103,6 +51774,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51158,7 +51830,8 @@ Floor 4-6 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Elevator_Infiltration, !- Name @@ -51563,6 +52236,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51579,6 +52253,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51595,6 +52270,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51611,6 +52287,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51627,6 +52304,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -51658,6 +52336,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -51713,7 +52392,8 @@ Floor 4-6 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Nurse Station_Infiltration, !- Name @@ -52146,6 +52826,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52162,6 +52843,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52178,6 +52860,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52194,6 +52877,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52210,6 +52894,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -52241,6 +52926,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52296,7 +52982,8 @@ Floor 4-6 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Office_Infiltration, !- Name @@ -52701,6 +53388,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52717,6 +53405,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52733,6 +53422,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52749,6 +53439,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -52765,6 +53456,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -52796,6 +53488,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -52851,7 +53544,8 @@ Floor 4-6 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 1_Infiltration, !- Name @@ -53256,6 +53950,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53272,6 +53967,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53288,6 +53984,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53304,6 +54001,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53335,6 +54033,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53366,6 +54065,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53381,7 +54081,8 @@ Floor 4-6 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 2_Infiltration, !- Name @@ -53786,6 +54487,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53802,6 +54504,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53818,6 +54521,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53849,6 +54553,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53865,6 +54570,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -53881,6 +54587,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -53911,7 +54618,8 @@ Floor 4-6 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 3_Infiltration, !- Name @@ -54316,6 +55024,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54332,6 +55041,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54348,6 +55058,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54404,6 +55115,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54435,6 +55147,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54451,6 +55164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54466,7 +55180,8 @@ Floor 4-6 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient 4_Infiltration, !- Name @@ -54871,6 +55586,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54887,6 +55603,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54903,6 +55620,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54934,6 +55652,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -54950,6 +55669,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -54981,6 +55701,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55036,7 +55757,8 @@ Floor 4-6 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 1_Infiltration, !- Name @@ -55404,6 +56126,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55420,6 +56143,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55436,6 +56160,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55467,6 +56192,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55483,6 +56209,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -55514,6 +56241,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55569,7 +56297,8 @@ Floor 4-6 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Patient Corridor 2_Infiltration, !- Name @@ -55937,6 +56666,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55953,6 +56683,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55969,6 +56700,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -55985,6 +56717,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56001,6 +56734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56017,6 +56751,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56032,7 +56767,8 @@ Floor 4-6 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 4-6 Soil People, !- Name @@ -56397,6 +57133,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56413,6 +57150,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56429,6 +57167,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56445,6 +57184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56461,6 +57201,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56492,6 +57233,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 4-6 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56507,7 +57249,8 @@ Floor 4-6 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 4-6 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 4-6 Supply_Infiltration, !- Name @@ -56875,6 +57618,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56891,6 +57635,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -56907,6 +57652,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56923,6 +57669,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56939,6 +57686,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56955,6 +57703,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Clean, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -56970,7 +57719,8 @@ Floor 7 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Clean, !- Zone or ZoneList Name - 92.9030; !- Surface Area {m2} + , !- Surface Area {m2} + 92.9030; !- Extended Field People, Floor 7 Clean People, !- Name @@ -57346,6 +58096,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57362,6 +58113,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57378,6 +58130,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57409,6 +58162,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57465,6 +58219,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57496,6 +58251,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Elevator, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57551,7 +58307,8 @@ Floor 7 Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Elevator, !- Zone or ZoneList Name - 334.4509; !- Surface Area {m2} + , !- Surface Area {m2} + 334.4509; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Elevator_Infiltration, !- Name @@ -57956,6 +58713,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -57972,6 +58730,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -57988,6 +58747,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58004,6 +58764,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58020,6 +58781,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -58051,6 +58813,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Nurse Station, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58106,7 +58869,8 @@ Floor 7 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Nurse Station, !- Zone or ZoneList Name - 558.9047; !- Surface Area {m2} + , !- Surface Area {m2} + 558.9047; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Nurse Station_Infiltration, !- Name @@ -58539,6 +59303,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58555,6 +59320,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -58571,6 +59337,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58587,6 +59354,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58603,6 +59371,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -58634,6 +59403,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Office, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -58689,7 +59459,8 @@ Floor 7 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Office, !- Zone or ZoneList Name - 278.7091; !- Surface Area {m2} + , !- Surface Area {m2} + 278.7091; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Office_Infiltration, !- Name @@ -59094,6 +59865,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59110,6 +59882,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59126,6 +59899,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59142,6 +59916,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59158,6 +59933,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59189,6 +59965,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59244,7 +60021,8 @@ Floor 7 Patient 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 1, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 1_Infiltration, !- Name @@ -59649,6 +60427,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59665,6 +60444,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59681,6 +60461,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59697,6 +60478,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59728,6 +60510,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -59759,6 +60542,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -59774,7 +60558,8 @@ Floor 7 Patient 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 2, !- Zone or ZoneList Name - 929.0304; !- Surface Area {m2} + , !- Surface Area {m2} + 929.0304; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 2_Infiltration, !- Name @@ -60179,6 +60964,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60195,6 +60981,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60211,6 +60998,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60242,6 +61030,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60258,6 +61047,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60274,6 +61064,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60304,7 +61095,8 @@ Floor 7 Patient 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 3, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 3_Infiltration, !- Name @@ -60709,6 +61501,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60725,6 +61518,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60741,6 +61535,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60797,6 +61592,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -60828,6 +61624,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60844,6 +61641,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -60859,7 +61657,8 @@ Floor 7 Patient 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient 4, !- Zone or ZoneList Name - 733.9340; !- Surface Area {m2} + , !- Surface Area {m2} + 733.9340; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient 4_Infiltration, !- Name @@ -61264,6 +62063,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61280,6 +62080,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61296,6 +62097,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61327,6 +62129,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61343,6 +62146,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61374,6 +62178,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61429,7 +62234,8 @@ Floor 7 Patient Corridor 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 1, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 1_Infiltration, !- Name @@ -61797,6 +62603,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61813,6 +62620,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61829,6 +62637,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61860,6 +62669,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61876,6 +62686,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61907,6 +62718,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Patient Corridor 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -61962,7 +62774,8 @@ Floor 7 Patient Corridor 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Patient Corridor 2, !- Zone or ZoneList Name - 621.3336; !- Surface Area {m2} + , !- Surface Area {m2} + 621.3336; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Patient Corridor 2_Infiltration, !- Name @@ -62330,6 +63143,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62346,6 +63160,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -62362,6 +63177,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62378,6 +63194,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62394,6 +63211,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62410,6 +63228,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Soil, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62425,7 +63244,8 @@ Floor 7 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Soil, !- Zone or ZoneList Name - 185.8061; !- Surface Area {m2} + , !- Surface Area {m2} + 185.8061; !- Extended Field People, Floor 7 Soil People, !- Name @@ -62790,6 +63610,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62806,6 +63627,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -62822,6 +63644,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62838,6 +63661,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62854,6 +63678,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -62885,6 +63710,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Floor 7 Supply, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -62900,7 +63726,8 @@ Floor 7 Supply Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 7 Supply, !- Zone or ZoneList Name - 683.7664; !- Surface Area {m2} + , !- Surface Area {m2} + 683.7664; !- Extended Field ZoneInfiltration:DesignFlowRate, Floor 7 Supply_Infiltration, !- Name @@ -63268,6 +64095,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63284,6 +64112,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63300,6 +64129,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63316,6 +64146,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63332,6 +64163,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63348,6 +64180,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63363,7 +64196,8 @@ MOB Floor 1 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Core, !- Zone or ZoneList Name - 2559.4788; !- Surface Area {m2} + , !- Surface Area {m2} + 2559.4788; !- Extended Field People, MOB Floor 1 Core People, !- Name @@ -63739,6 +64573,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63755,6 +64590,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63771,6 +64607,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -63802,6 +64639,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63818,6 +64656,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63834,6 +64673,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -63889,7 +64729,8 @@ MOB Floor 1 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 1, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 1_Infiltration, !- Name @@ -64294,6 +65135,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64310,6 +65152,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -64366,6 +65209,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64382,6 +65226,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64398,6 +65243,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64414,6 +65260,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64469,7 +65316,8 @@ MOB Floor 1 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 2_Infiltration, !- Name @@ -64874,6 +65722,7 @@ Floor, !- Surface Type Unheated - 8in Slab with Carpet_R-15_Ext-slab, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64890,6 +65739,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64906,6 +65756,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -64937,6 +65788,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64953,6 +65805,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -64969,6 +65822,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65024,7 +65878,8 @@ MOB Floor 1 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 1 Perimeter 3, !- Zone or ZoneList Name - 425.0314; !- Surface Area {m2} + , !- Surface Area {m2} + 425.0314; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 1 Perimeter 3_Infiltration, !- Name @@ -65429,6 +66284,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65445,6 +66301,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65461,6 +66318,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65477,6 +66335,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65493,6 +66352,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65509,6 +66369,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65524,7 +66385,8 @@ MOB Floor 2-4 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 2-4 Core People, !- Name @@ -65900,6 +66762,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65916,6 +66779,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65932,6 +66796,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65948,6 +66813,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -65979,6 +66845,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -65995,6 +66862,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66050,7 +66918,8 @@ MOB Floor 2-4 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 1_Infiltration, !- Name @@ -66455,6 +67324,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66471,6 +67341,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66487,6 +67358,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66503,6 +67375,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66519,6 +67392,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -66535,6 +67409,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -66630,7 +67505,8 @@ MOB Floor 2-4 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 2_Infiltration, !- Name @@ -67035,6 +67911,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67051,6 +67928,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67067,6 +67945,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67083,6 +67962,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67099,6 +67979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67115,6 +67996,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -67185,7 +68067,8 @@ MOB Floor 2-4 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 3_Infiltration, !- Name @@ -67590,6 +68473,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67606,6 +68490,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67622,6 +68507,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67638,6 +68524,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67654,6 +68541,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -67670,6 +68558,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -67740,7 +68629,8 @@ MOB Floor 2-4 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 2-4 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 2-4 Perimeter 4_Infiltration, !- Name @@ -68145,6 +69035,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68161,6 +69052,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -68177,6 +69069,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68193,6 +69086,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68209,6 +69103,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68225,6 +69120,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Core, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68240,7 +69136,8 @@ MOB Floor 5 Core Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Core, !- Zone or ZoneList Name - 2294.7051; !- Surface Area {m2} + , !- Surface Area {m2} + 2294.7051; !- Extended Field People, MOB Floor 5 Core People, !- Name @@ -68616,6 +69513,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68632,6 +69530,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -68648,6 +69547,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68664,6 +69564,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -68695,6 +69596,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68711,6 +69613,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -68766,7 +69669,8 @@ MOB Floor 5 Perimeter 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 1, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 1_Infiltration, !- Name @@ -69171,6 +70075,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69187,6 +70092,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -69203,6 +70109,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69219,6 +70126,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69235,6 +70143,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69251,6 +70160,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -69346,7 +70256,8 @@ MOB Floor 5 Perimeter 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 2, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 2_Infiltration, !- Name @@ -69751,6 +70662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69767,6 +70679,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -69783,6 +70696,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69799,6 +70713,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69815,6 +70730,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -69831,6 +70747,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -69901,7 +70818,8 @@ MOB Floor 5 Perimeter 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 3, !- Zone or ZoneList Name - 404.1282; !- Surface Area {m2} + , !- Surface Area {m2} + 404.1282; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 3_Infiltration, !- Name @@ -70306,6 +71224,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -70322,6 +71241,7 @@ Roof, !- Surface Type IEAD_R-30 ci_Roof, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -70338,6 +71258,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -70354,6 +71275,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -70370,6 +71292,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -70386,6 +71309,7 @@ Wall, !- Surface Type Steel-Framed_R-13 + R-15.6 ci_Ext-wall, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -70456,7 +71380,8 @@ MOB Floor 5 Perimeter 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MOB Floor 5 Perimeter 4, !- Zone or ZoneList Name - 306.5800; !- Surface Area {m2} + , !- Surface Area {m2} + 306.5800; !- Extended Field ZoneInfiltration:DesignFlowRate, MOB Floor 5 Perimeter 4_Infiltration, !- Name @@ -83014,3 +83939,4 @@ OutputControl:ReportingTolerances, 1.0, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1.0; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + diff --git a/testfiles/House-2FurnaceAC-SequentialLoad.idf b/testfiles/House-2FurnaceAC-SequentialLoad.idf index 32526b7964f..b124598f5f7 100644 --- a/testfiles/House-2FurnaceAC-SequentialLoad.idf +++ b/testfiles/House-2FurnaceAC-SequentialLoad.idf @@ -466,6 +466,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +483,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +500,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +517,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +534,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -546,6 +551,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -562,6 +568,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +585,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +602,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +619,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +636,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +653,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +670,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +687,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +703,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +719,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +735,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +752,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +769,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +785,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +802,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +819,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +836,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +853,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +870,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/House-2FurnaceAC-SequentialLoadFractions.idf b/testfiles/House-2FurnaceAC-SequentialLoadFractions.idf index 7ed7ca82d9d..85c4c90db06 100644 --- a/testfiles/House-2FurnaceAC-SequentialLoadFractions.idf +++ b/testfiles/House-2FurnaceAC-SequentialLoadFractions.idf @@ -467,6 +467,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -483,6 +484,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -499,6 +501,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -515,6 +518,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -531,6 +535,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -547,6 +552,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -563,6 +569,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -579,6 +586,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -595,6 +603,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +620,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +637,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +654,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +671,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +688,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +704,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +720,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +736,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +753,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +770,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +786,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -783,6 +803,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -799,6 +820,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +837,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +854,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -847,6 +871,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/House-2FurnaceAC-SequentialUniformPLR.idf b/testfiles/House-2FurnaceAC-SequentialUniformPLR.idf index bc11a4f779e..fd96c5e73bc 100644 --- a/testfiles/House-2FurnaceAC-SequentialUniformPLR.idf +++ b/testfiles/House-2FurnaceAC-SequentialUniformPLR.idf @@ -466,6 +466,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +483,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +500,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +517,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +534,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -546,6 +551,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -562,6 +568,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +585,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +602,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +619,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +636,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +653,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +670,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +687,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +703,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +719,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +735,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +752,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +769,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +785,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +802,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +819,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +836,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +853,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +870,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/House-2FurnaceAC-UniformLoad.idf b/testfiles/House-2FurnaceAC-UniformLoad.idf index 10d5b10ef14..49e6cecc5db 100644 --- a/testfiles/House-2FurnaceAC-UniformLoad.idf +++ b/testfiles/House-2FurnaceAC-UniformLoad.idf @@ -466,6 +466,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +483,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +500,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +517,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +534,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -546,6 +551,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -562,6 +568,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +585,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +602,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +619,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +636,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +653,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +670,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +687,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +703,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +719,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +735,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +752,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +769,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +785,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +802,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +819,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +836,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +853,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +870,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/House-2FurnaceAC-UniformPLR.idf b/testfiles/House-2FurnaceAC-UniformPLR.idf index d452aea1c45..47c4dfea936 100644 --- a/testfiles/House-2FurnaceAC-UniformPLR.idf +++ b/testfiles/House-2FurnaceAC-UniformPLR.idf @@ -466,6 +466,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +483,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +500,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +517,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +534,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -546,6 +551,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -562,6 +568,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -578,6 +585,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +602,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +619,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +636,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +653,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +670,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +687,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +703,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +719,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +735,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +752,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +769,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +785,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +802,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +819,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +836,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +853,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +870,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HybridModel_4Zone_Solve_Infiltration_free_floating.idf b/testfiles/HybridModel_4Zone_Solve_Infiltration_free_floating.idf index 6278e38c123..e92839a58c2 100644 --- a/testfiles/HybridModel_4Zone_Solve_Infiltration_free_floating.idf +++ b/testfiles/HybridModel_4Zone_Solve_Infiltration_free_floating.idf @@ -751,6 +751,7 @@ Zn001:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -763,6 +764,7 @@ Zn001:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -775,6 +777,7 @@ Zn001:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -787,6 +790,7 @@ Zn002:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -799,6 +803,7 @@ Zn002:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -811,6 +816,7 @@ Zn002:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -823,6 +829,7 @@ Zn003:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -835,6 +842,7 @@ Zn003:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -847,6 +855,7 @@ Zn003:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -859,6 +868,7 @@ Zn004:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -871,6 +881,7 @@ Zn004:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -883,6 +894,7 @@ Zn004:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -897,6 +909,7 @@ Zn001:Wall004, !- Name INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -909,6 +922,7 @@ Zn002:Wall004, !- Name INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -923,6 +937,7 @@ Zn003:Wall004, !- Name INTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn004:Wall004, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -936,6 +951,7 @@ Zn004:Wall004, !- Name INTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn003:Wall004, !- Outside Boundary Condition Object 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -951,6 +967,7 @@ Zn003:Roof001, !- Name ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -963,6 +980,7 @@ Zn004:Roof001, !- Name ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -977,6 +995,7 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Zn003:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -990,6 +1009,7 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Zn004:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -1005,6 +1025,7 @@ Zn001:Flr001, !- Name FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1017,6 +1038,7 @@ Zn002:Flr001, !- Name FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1031,6 +1053,7 @@ Zn003:Flr001, !- Name FLOOR34, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn001:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -1044,6 +1067,7 @@ Zn004:Flr001, !- Name FLOOR34, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn002:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} diff --git a/testfiles/HybridModel_4Zone_Solve_PeopleCount_with_HVAC.idf b/testfiles/HybridModel_4Zone_Solve_PeopleCount_with_HVAC.idf index d6db36b9be2..a37144b11d5 100644 --- a/testfiles/HybridModel_4Zone_Solve_PeopleCount_with_HVAC.idf +++ b/testfiles/HybridModel_4Zone_Solve_PeopleCount_with_HVAC.idf @@ -817,6 +817,7 @@ Zn001:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -829,6 +830,7 @@ Zn001:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -841,6 +843,7 @@ Zn001:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -853,6 +856,7 @@ Zn002:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -865,6 +869,7 @@ Zn002:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -877,6 +882,7 @@ Zn002:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -889,6 +895,7 @@ Zn003:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -901,6 +908,7 @@ Zn003:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -913,6 +921,7 @@ Zn003:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -925,6 +934,7 @@ Zn004:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -937,6 +947,7 @@ Zn004:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -949,6 +960,7 @@ Zn004:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -963,6 +975,7 @@ Zn001:Wall004, !- Name INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -975,6 +988,7 @@ Zn002:Wall004, !- Name INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -989,6 +1003,7 @@ Zn003:Wall004, !- Name INTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn004:Wall004, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -1002,6 +1017,7 @@ Zn004:Wall004, !- Name INTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn003:Wall004, !- Outside Boundary Condition Object 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -1017,6 +1033,7 @@ Zn003:Roof001, !- Name ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1029,6 +1046,7 @@ Zn004:Roof001, !- Name ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1043,6 +1061,7 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Zn003:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -1056,6 +1075,7 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Zn004:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -1071,6 +1091,7 @@ Zn001:Flr001, !- Name FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1083,6 +1104,7 @@ Zn002:Flr001, !- Name FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1097,6 +1119,7 @@ Zn003:Flr001, !- Name FLOOR34, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn001:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -1110,6 +1133,7 @@ Zn004:Flr001, !- Name FLOOR34, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn002:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} diff --git a/testfiles/HybridVentilationControl.idf b/testfiles/HybridVentilationControl.idf index 493ba4774ba..99eea88ec2c 100644 --- a/testfiles/HybridVentilationControl.idf +++ b/testfiles/HybridVentilationControl.idf @@ -631,6 +631,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -679,6 +682,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +699,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +716,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +750,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -759,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -775,6 +784,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +801,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -807,6 +818,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +835,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +869,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -887,6 +903,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +920,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +937,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +954,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +988,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +1005,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1022,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1039,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1056,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1073,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1063,6 +1090,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1107,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1124,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1141,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1127,6 +1158,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1175,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1192,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HybridVentilationControlGlobalSimple.idf b/testfiles/HybridVentilationControlGlobalSimple.idf index 9718e13c6a5..a34219d8d9b 100644 --- a/testfiles/HybridVentilationControlGlobalSimple.idf +++ b/testfiles/HybridVentilationControlGlobalSimple.idf @@ -623,6 +623,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +640,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +657,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -671,6 +674,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +691,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +708,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +725,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +742,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +759,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +776,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +793,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +810,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -815,6 +827,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +844,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +861,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +878,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -879,6 +895,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +912,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +929,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +946,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +963,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +980,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +997,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -991,6 +1014,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1007,6 +1031,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1023,6 +1048,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1065,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1055,6 +1082,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1071,6 +1099,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1087,6 +1116,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1133,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1119,6 +1150,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1167,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1184,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/HybridZoneModel.idf b/testfiles/HybridZoneModel.idf index 9e67fa84dcb..83eb394c011 100644 --- a/testfiles/HybridZoneModel.idf +++ b/testfiles/HybridZoneModel.idf @@ -759,6 +759,7 @@ Zn001:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -824,6 +825,7 @@ Zn001:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -836,6 +838,7 @@ Zn001:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -848,6 +851,7 @@ Zn001:Wall004, !- Name INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -860,6 +864,7 @@ Zn001:Flr001, !- Name FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -872,6 +877,7 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Zn003:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -885,6 +891,7 @@ Zn002:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -928,6 +935,7 @@ Zn002:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -974,6 +982,7 @@ Zn002:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -986,6 +995,7 @@ Zn002:Wall004, !- Name INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -998,6 +1008,7 @@ Zn002:Flr001, !- Name FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1010,6 +1021,7 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Zn004:Flr001, !- Outside Boundary Condition Object 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} @@ -1023,6 +1035,7 @@ Zn003:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1046,6 +1059,7 @@ Zn003:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -1058,6 +1072,7 @@ Zn003:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1070,6 +1085,7 @@ Zn003:Wall004, !- Name INTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn004:Wall004, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -1094,6 +1110,7 @@ Zn003:Flr001, !- Name FLOOR34, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Zn001:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -1107,6 +1124,7 @@ Zn003:Roof001, !- Name ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1119,6 +1137,7 @@ Zn004:Wall001, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} @@ -1142,6 +1161,7 @@ Zn004:Wall002, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 90, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -1154,6 +1174,7 @@ Zn004:Wall003, !- Name EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 0, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} 20, !- Starting X Coordinate {m} @@ -1166,6 +1187,7 @@ Zn004:Wall004, !- Name INTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn003:Wall004, !- Outside Boundary Condition Object 270, !- Azimuth Angle {deg} 90, !- Tilt Angle {deg} @@ -1190,6 +1212,7 @@ Zn004:Flr001, !- Name FLOOR34, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Zn002:Roof001, !- Outside Boundary Condition Object 90, !- Azimuth Angle {deg} 180, !- Tilt Angle {deg} @@ -1203,6 +1226,7 @@ Zn004:Roof001, !- Name ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} diff --git a/testfiles/IceStorage-Parallel.idf b/testfiles/IceStorage-Parallel.idf index dbce430305f..4a6aa2923f8 100644 --- a/testfiles/IceStorage-Parallel.idf +++ b/testfiles/IceStorage-Parallel.idf @@ -637,6 +637,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +671,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +688,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +705,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +739,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +756,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +773,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +790,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +870,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +937,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +954,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +971,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +988,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1005,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1085,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1117,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1134,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1168,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1185,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1265,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1289,6 +1312,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1329,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1346,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1363,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1380,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1432,6 +1460,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1463,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1479,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1495,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1640,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1622,6 +1657,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1638,6 +1674,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1691,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1708,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1725,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/IceStorage-Series-ChillerDownstream.idf b/testfiles/IceStorage-Series-ChillerDownstream.idf index 76b04e17d6e..9b4f9f8204f 100644 --- a/testfiles/IceStorage-Series-ChillerDownstream.idf +++ b/testfiles/IceStorage-Series-ChillerDownstream.idf @@ -635,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +686,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +703,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +788,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +868,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +935,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +952,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1003,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1083,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,6 +1115,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1132,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1263,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1287,6 +1310,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1327,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1378,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1430,6 +1458,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1461,6 +1490,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1507,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1525,6 +1558,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1638,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1655,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/IceStorage-Series-ChillerUpstream.idf b/testfiles/IceStorage-Series-ChillerUpstream.idf index 4a4645a9b66..e7910ede291 100644 --- a/testfiles/IceStorage-Series-ChillerUpstream.idf +++ b/testfiles/IceStorage-Series-ChillerUpstream.idf @@ -635,6 +635,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +652,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +669,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +686,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +703,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +720,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +737,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +754,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +771,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +788,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +868,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +935,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +952,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1003,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1083,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,6 +1115,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1132,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1149,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1166,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1183,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1263,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1287,6 +1310,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1327,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1344,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1361,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1378,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1430,6 +1458,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1461,6 +1490,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1507,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1541,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1525,6 +1558,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1638,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1655,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1672,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1689,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1706,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1723,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/IndEvapCoolerRTUoffice.idf b/testfiles/IndEvapCoolerRTUoffice.idf index 43795203882..2b2347b5006 100644 --- a/testfiles/IndEvapCoolerRTUoffice.idf +++ b/testfiles/IndEvapCoolerRTUoffice.idf @@ -621,6 +621,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +638,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -653,6 +655,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -669,6 +672,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +689,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +706,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +723,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +740,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +757,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -765,6 +774,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +791,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +808,7 @@ ceiling, !- Surface Type Int-Floor-underside, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +825,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +842,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -845,6 +859,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +876,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -877,6 +893,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +910,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +927,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +944,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -941,6 +961,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +978,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +995,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1012,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1029,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1046,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1063,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1053,6 +1080,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1097,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1114,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1131,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1148,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1165,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1149,6 +1182,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1199,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1216,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1233,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1250,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1267,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1284,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1261,6 +1301,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1318,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1335,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1352,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1369,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1386,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1357,6 +1403,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1420,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1437,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1454,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1471,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1488,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1505,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1522,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1539,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1556,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1573,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1590,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1607,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1565,6 +1624,7 @@ ceiling, !- Surface Type Int-Floor-underside, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1581,6 +1641,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1597,6 +1658,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1675,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1692,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1709,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1726,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1677,6 +1743,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1693,6 +1760,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1709,6 +1777,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1725,6 +1794,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1741,6 +1811,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1757,6 +1828,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1773,6 +1845,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1789,6 +1862,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1805,6 +1879,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1821,6 +1896,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1837,6 +1913,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1853,6 +1930,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1869,6 +1947,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1885,6 +1964,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1901,6 +1981,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1917,6 +1998,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1933,6 +2015,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1949,6 +2032,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1965,6 +2049,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1981,6 +2066,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1997,6 +2083,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2013,6 +2100,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2029,6 +2117,7 @@ floor, !- Surface Type Int-Floor-Topside, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2045,6 +2134,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2061,6 +2151,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2077,6 +2168,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2093,6 +2185,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2109,6 +2202,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2125,6 +2219,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2141,6 +2236,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2157,6 +2253,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2173,6 +2270,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2189,6 +2287,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,6 +2304,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2221,6 +2321,7 @@ floor, !- Surface Type Int-Floor-Topside, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2237,6 +2338,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2253,6 +2355,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2269,6 +2372,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2285,6 +2389,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2301,6 +2406,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2317,6 +2423,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2333,6 +2440,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2349,6 +2457,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2365,6 +2474,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2381,6 +2491,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2397,6 +2508,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2413,6 +2525,7 @@ floor, !- Surface Type INT-Floor-topside, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2429,6 +2542,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2445,6 +2559,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2461,6 +2576,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2477,6 +2593,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2493,6 +2610,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2509,6 +2627,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2525,6 +2644,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/IndirectAbsorptionChiller.idf b/testfiles/IndirectAbsorptionChiller.idf index 52a4a87421c..46e95f5b0e7 100644 --- a/testfiles/IndirectAbsorptionChiller.idf +++ b/testfiles/IndirectAbsorptionChiller.idf @@ -709,6 +709,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -725,6 +726,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +743,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +760,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +777,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +794,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +828,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +845,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +862,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +879,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +896,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +913,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +947,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +964,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +981,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +998,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1015,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1032,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/InternalMass_wZoneList.idf b/testfiles/InternalMass_wZoneList.idf index 177711ec522..70cfa01c69d 100644 --- a/testfiles/InternalMass_wZoneList.idf +++ b/testfiles/InternalMass_wZoneList.idf @@ -620,6 +620,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +637,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +654,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -668,6 +671,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +688,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +705,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +722,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +756,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +773,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +790,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +807,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +824,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +841,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name North Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +858,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name North Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +875,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name North Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +892,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name North Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +909,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name North Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +926,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name North Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +943,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name North Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,7 +1172,8 @@ FurnitureIntMass, !- Name FurnitureConst, !- Construction Name IntMassZoneList, !- Zone or ZoneList Name - 100.0; !- Surface Area {m2} + , !- Surface Area {m2} + 100.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== diff --git a/testfiles/LBuilding-G000.idf b/testfiles/LBuilding-G000.idf index c86229f8258..915e8ecbaf1 100644 --- a/testfiles/LBuilding-G000.idf +++ b/testfiles/LBuilding-G000.idf @@ -515,6 +515,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +842,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +906,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1032,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1049,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1066,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1083,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1100,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1117,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1134,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1151,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1168,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1185,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1202,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1219,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1236,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1253,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1274,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_l_k_f_a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1291,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_a_b_g_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1308,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_b_c_h_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1325,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_c_d_i_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1342,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_d_e_j_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1359,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_e_f_k_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1378,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1371,6 +1398,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1390,6 +1418,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1409,6 +1438,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1428,6 +1458,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1447,6 +1478,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1498,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1518,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1537,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1556,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1539,6 +1575,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,6 +1594,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1613,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1632,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1651,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1670,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,7 +1740,8 @@ Main_Zone_a_b_g_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field !- Name @@ -1706,7 +1749,8 @@ Main_Zone_a_b_g_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field Zone, Main_Zone_b_c_h_g, !- Name @@ -1766,7 +1810,8 @@ Main_Zone_b_c_h_g_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1774,7 +1819,8 @@ Main_Zone_b_c_h_g_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_c_d_i_h, !- Name @@ -1834,7 +1880,8 @@ Main_Zone_c_d_i_h_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field !- Name @@ -1842,7 +1889,8 @@ Main_Zone_c_d_i_h_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field Zone, Main_Zone_d_e_j_i, !- Name @@ -1902,7 +1950,8 @@ Main_Zone_d_e_j_i_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field !- Name @@ -1910,7 +1959,8 @@ Main_Zone_d_e_j_i_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field Zone, Main_Zone_e_f_k_j, !- Name @@ -1970,7 +2020,8 @@ Main_Zone_e_f_k_j_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1978,7 +2029,8 @@ Main_Zone_e_f_k_j_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_l_k_f_a, !- Name @@ -2038,7 +2090,8 @@ Main_Zone_l_k_f_a_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field !- Name @@ -2046,7 +2099,8 @@ Main_Zone_l_k_f_a_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field Zone, Main_Zone_g_h_i_l, !- Name @@ -2106,7 +2160,8 @@ Main_Zone_g_h_i_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field !- Name @@ -2114,7 +2169,8 @@ Main_Zone_g_h_i_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field Zone, Main_Zone_i_j_k_l, !- Name @@ -2174,7 +2230,8 @@ Main_Zone_i_j_k_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field !- Name @@ -2182,7 +2239,8 @@ Main_Zone_i_j_k_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field Schedule:Compact, People_office_Sch, !- Name diff --git a/testfiles/LBuilding-G090.idf b/testfiles/LBuilding-G090.idf index 43147fb2b91..efc879f1eec 100644 --- a/testfiles/LBuilding-G090.idf +++ b/testfiles/LBuilding-G090.idf @@ -515,6 +515,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +842,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +906,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1032,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1049,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1066,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1083,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1100,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1117,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1134,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1151,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1168,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1185,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1202,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1219,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1236,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1253,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1274,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_l_k_f_a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1291,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_a_b_g_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1308,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_b_c_h_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1325,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_c_d_i_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1342,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_d_e_j_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1359,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_e_f_k_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1378,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1371,6 +1398,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1390,6 +1418,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1409,6 +1438,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1428,6 +1458,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1447,6 +1478,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1498,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1518,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1537,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1556,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1539,6 +1575,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,6 +1594,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1613,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1632,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1651,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1670,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,7 +1740,8 @@ Main_Zone_a_b_g_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field !- Name @@ -1706,7 +1749,8 @@ Main_Zone_a_b_g_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field Zone, Main_Zone_b_c_h_g, !- Name @@ -1766,7 +1810,8 @@ Main_Zone_b_c_h_g_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1774,7 +1819,8 @@ Main_Zone_b_c_h_g_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_c_d_i_h, !- Name @@ -1834,7 +1880,8 @@ Main_Zone_c_d_i_h_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field !- Name @@ -1842,7 +1889,8 @@ Main_Zone_c_d_i_h_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field Zone, Main_Zone_d_e_j_i, !- Name @@ -1902,7 +1950,8 @@ Main_Zone_d_e_j_i_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field !- Name @@ -1910,7 +1959,8 @@ Main_Zone_d_e_j_i_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field Zone, Main_Zone_e_f_k_j, !- Name @@ -1970,7 +2020,8 @@ Main_Zone_e_f_k_j_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1978,7 +2029,8 @@ Main_Zone_e_f_k_j_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_l_k_f_a, !- Name @@ -2038,7 +2090,8 @@ Main_Zone_l_k_f_a_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field !- Name @@ -2046,7 +2099,8 @@ Main_Zone_l_k_f_a_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field Zone, Main_Zone_g_h_i_l, !- Name @@ -2106,7 +2160,8 @@ Main_Zone_g_h_i_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field !- Name @@ -2114,7 +2169,8 @@ Main_Zone_g_h_i_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field Zone, Main_Zone_i_j_k_l, !- Name @@ -2174,7 +2230,8 @@ Main_Zone_i_j_k_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field !- Name @@ -2182,7 +2239,8 @@ Main_Zone_i_j_k_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field Schedule:Compact, People_office_Sch, !- Name diff --git a/testfiles/LBuilding-G180.idf b/testfiles/LBuilding-G180.idf index d08db5f8b97..fa2bb145f5c 100644 --- a/testfiles/LBuilding-G180.idf +++ b/testfiles/LBuilding-G180.idf @@ -515,6 +515,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +842,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +906,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1032,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1049,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1066,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1083,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1100,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1117,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1134,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1151,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1168,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1185,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1202,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1219,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1236,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1253,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1274,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_l_k_f_a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1291,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_a_b_g_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1308,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_b_c_h_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1325,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_c_d_i_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1342,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_d_e_j_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1359,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_e_f_k_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1378,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1371,6 +1398,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1390,6 +1418,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1409,6 +1438,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1428,6 +1458,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1447,6 +1478,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1498,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1518,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1537,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1556,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1539,6 +1575,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,6 +1594,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1613,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1632,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1651,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1670,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,7 +1740,8 @@ Main_Zone_a_b_g_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field !- Name @@ -1706,7 +1749,8 @@ Main_Zone_a_b_g_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field Zone, Main_Zone_b_c_h_g, !- Name @@ -1766,7 +1810,8 @@ Main_Zone_b_c_h_g_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1774,7 +1819,8 @@ Main_Zone_b_c_h_g_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_c_d_i_h, !- Name @@ -1834,7 +1880,8 @@ Main_Zone_c_d_i_h_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field !- Name @@ -1842,7 +1889,8 @@ Main_Zone_c_d_i_h_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field Zone, Main_Zone_d_e_j_i, !- Name @@ -1902,7 +1950,8 @@ Main_Zone_d_e_j_i_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field !- Name @@ -1910,7 +1959,8 @@ Main_Zone_d_e_j_i_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field Zone, Main_Zone_e_f_k_j, !- Name @@ -1970,7 +2020,8 @@ Main_Zone_e_f_k_j_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1978,7 +2029,8 @@ Main_Zone_e_f_k_j_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_l_k_f_a, !- Name @@ -2038,7 +2090,8 @@ Main_Zone_l_k_f_a_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field !- Name @@ -2046,7 +2099,8 @@ Main_Zone_l_k_f_a_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field Zone, Main_Zone_g_h_i_l, !- Name @@ -2106,7 +2160,8 @@ Main_Zone_g_h_i_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field !- Name @@ -2114,7 +2169,8 @@ Main_Zone_g_h_i_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field Zone, Main_Zone_i_j_k_l, !- Name @@ -2174,7 +2230,8 @@ Main_Zone_i_j_k_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field !- Name @@ -2182,7 +2239,8 @@ Main_Zone_i_j_k_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field Schedule:Compact, People_office_Sch, !- Name diff --git a/testfiles/LBuilding-G270.idf b/testfiles/LBuilding-G270.idf index 39a4e86cad9..61b2d28ea60 100644 --- a/testfiles/LBuilding-G270.idf +++ b/testfiles/LBuilding-G270.idf @@ -515,6 +515,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +654,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +842,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +906,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +985,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1032,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1049,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1066,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1083,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1100,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1117,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1134,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1151,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1168,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1185,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1202,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1202,6 +1219,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1218,6 +1236,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1234,6 +1253,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1274,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_l_k_f_a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1291,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_a_b_g_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1308,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_b_c_h_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1325,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_c_d_i_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1342,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_d_e_j_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1359,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_e_f_k_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1352,6 +1378,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1371,6 +1398,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1390,6 +1418,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1409,6 +1438,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1428,6 +1458,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1447,6 +1478,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1498,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1518,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1537,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1556,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1539,6 +1575,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,6 +1594,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1613,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1632,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1651,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1629,6 +1670,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1698,7 +1740,8 @@ Main_Zone_a_b_g_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field !- Name @@ -1706,7 +1749,8 @@ Main_Zone_a_b_g_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field Zone, Main_Zone_b_c_h_g, !- Name @@ -1766,7 +1810,8 @@ Main_Zone_b_c_h_g_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1774,7 +1819,8 @@ Main_Zone_b_c_h_g_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_c_d_i_h, !- Name @@ -1834,7 +1880,8 @@ Main_Zone_c_d_i_h_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field !- Name @@ -1842,7 +1889,8 @@ Main_Zone_c_d_i_h_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field Zone, Main_Zone_d_e_j_i, !- Name @@ -1902,7 +1950,8 @@ Main_Zone_d_e_j_i_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field !- Name @@ -1910,7 +1959,8 @@ Main_Zone_d_e_j_i_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field Zone, Main_Zone_e_f_k_j, !- Name @@ -1970,7 +2020,8 @@ Main_Zone_e_f_k_j_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1978,7 +2029,8 @@ Main_Zone_e_f_k_j_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_l_k_f_a, !- Name @@ -2038,7 +2090,8 @@ Main_Zone_l_k_f_a_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field !- Name @@ -2046,7 +2099,8 @@ Main_Zone_l_k_f_a_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field Zone, Main_Zone_g_h_i_l, !- Name @@ -2106,7 +2160,8 @@ Main_Zone_g_h_i_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field !- Name @@ -2114,7 +2169,8 @@ Main_Zone_g_h_i_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field Zone, Main_Zone_i_j_k_l, !- Name @@ -2174,7 +2230,8 @@ Main_Zone_i_j_k_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field !- Name @@ -2182,7 +2239,8 @@ Main_Zone_i_j_k_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field Schedule:Compact, People_office_Sch, !- Name diff --git a/testfiles/LBuildingAppGRotPar.idf b/testfiles/LBuildingAppGRotPar.idf index 917327ff607..5048dec03e5 100644 --- a/testfiles/LBuildingAppGRotPar.idf +++ b/testfiles/LBuildingAppGRotPar.idf @@ -530,6 +530,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +669,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -731,6 +733,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +857,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +921,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1000,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-17, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1041,6 +1047,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1057,6 +1064,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_g_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1073,6 +1081,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1089,6 +1098,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_h_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1115,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1132,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_i_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1149,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1166,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_j_k, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1169,6 +1183,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1185,6 +1200,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_k_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1201,6 +1217,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1217,6 +1234,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1251,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1268,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_l_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1269,6 +1289,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_l_k_f_a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1285,6 +1306,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_a_b_g_l, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1301,6 +1323,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_b_c_h_g, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1317,6 +1340,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_c_d_i_h, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1333,6 +1357,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_d_e_j_i, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1349,6 +1374,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main_Zone_e_f_k_j, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1393,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1386,6 +1413,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1405,6 +1433,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1453,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1473,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1493,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1481,6 +1513,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1500,6 +1533,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-21, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1552,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1571,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1590,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1572,6 +1609,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1628,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1608,6 +1647,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1666,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1685,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1713,7 +1755,8 @@ Main_Zone_a_b_g_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field !- Name @@ -1721,7 +1764,8 @@ Main_Zone_a_b_g_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_a_b_g_l, !- Zone or ZoneList Name - 90.7638663194365; !- Surface Area {m2} + , !- Surface Area {m2} + 90.7638663194365; !- Extended Field Zone, Main_Zone_b_c_h_g, !- Name @@ -1781,7 +1825,8 @@ Main_Zone_b_c_h_g_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1789,7 +1834,8 @@ Main_Zone_b_c_h_g_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_b_c_h_g, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_c_d_i_h, !- Name @@ -1849,7 +1895,8 @@ Main_Zone_c_d_i_h_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field !- Name @@ -1857,7 +1904,8 @@ Main_Zone_c_d_i_h_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_c_d_i_h, !- Zone or ZoneList Name - 68.8553478084919; !- Surface Area {m2} + , !- Surface Area {m2} + 68.8553478084919; !- Extended Field Zone, Main_Zone_d_e_j_i, !- Name @@ -1917,7 +1965,8 @@ Main_Zone_d_e_j_i_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field !- Name @@ -1925,7 +1974,8 @@ Main_Zone_d_e_j_i_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_d_e_j_i, !- Zone or ZoneList Name - 31.2978850559206; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2978850559206; !- Extended Field Zone, Main_Zone_e_f_k_j, !- Name @@ -1985,7 +2035,8 @@ Main_Zone_e_f_k_j_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field !- Name @@ -1993,7 +2044,8 @@ Main_Zone_e_f_k_j_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_e_f_k_j, !- Zone or ZoneList Name - 21.908520224611; !- Surface Area {m2} + , !- Surface Area {m2} + 21.908520224611; !- Extended Field Zone, Main_Zone_l_k_f_a, !- Name @@ -2053,7 +2105,8 @@ Main_Zone_l_k_f_a_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field !- Name @@ -2061,7 +2114,8 @@ Main_Zone_l_k_f_a_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_l_k_f_a, !- Zone or ZoneList Name - 53.206406994198; !- Surface Area {m2} + , !- Surface Area {m2} + 53.206406994198; !- Extended Field Zone, Main_Zone_g_h_i_l, !- Name @@ -2121,7 +2175,8 @@ Main_Zone_g_h_i_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field !- Name @@ -2129,7 +2184,8 @@ Main_Zone_g_h_i_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_g_h_i_l, !- Zone or ZoneList Name - 100.153236291745; !- Surface Area {m2} + , !- Surface Area {m2} + 100.153236291745; !- Extended Field Zone, Main_Zone_i_j_k_l, !- Name @@ -2189,7 +2245,8 @@ Main_Zone_i_j_k_l_Furniture1, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field !- Name @@ -2197,7 +2254,8 @@ Main_Zone_i_j_k_l_Furniture2, !- Name FurnitureConstruction, !- Construction Name Main_Zone_i_j_k_l, !- Zone or ZoneList Name - 50.0766181458726; !- Surface Area {m2} + , !- Surface Area {m2} + 50.0766181458726; !- Extended Field Schedule:Compact, People_office_Sch, !- Name diff --git a/testfiles/LgOffVAV.idf b/testfiles/LgOffVAV.idf index 0bc0abd96f3..234f5d0eb3d 100644 --- a/testfiles/LgOffVAV.idf +++ b/testfiles/LgOffVAV.idf @@ -610,6 +610,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +642,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +659,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +676,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +693,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +710,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +727,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +759,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +776,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +810,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +827,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +844,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +876,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -879,6 +893,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +910,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +927,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +944,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +961,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +993,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1010,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1027,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1044,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1061,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1078,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1095,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1112,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1129,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1146,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1163,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1180,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1181,6 +1212,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1229,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1246,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1263,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1280,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1297,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1292,6 +1329,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1346,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1363,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1380,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1397,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1414,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1403,6 +1446,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1463,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1480,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1497,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1514,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1531,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1514,6 +1563,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1580,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1597,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1614,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1631,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1648,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1665,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1682,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1699,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1716,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1733,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1750,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1721,6 +1782,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1799,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1816,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1833,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1850,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1801,6 +1867,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1832,6 +1899,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1848,6 +1916,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1864,6 +1933,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1880,6 +1950,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1896,6 +1967,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1912,6 +1984,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1943,6 +2016,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1959,6 +2033,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1975,6 +2050,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1991,6 +2067,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2007,6 +2084,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2023,6 +2101,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2054,6 +2133,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2150,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2167,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2102,6 +2184,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2201,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2218,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2235,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2166,6 +2252,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2269,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2286,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2303,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2320,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2337,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2354,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2278,6 +2371,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2388,7 @@ FLOOR, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2310,6 +2405,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2326,6 +2422,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2342,6 +2439,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2456,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2374,6 +2473,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2389,91 +2489,106 @@ Internal-P1T, !- Name Medium Furniture, !- Construction Name PER-1T, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P2T, !- Name Medium Furniture, !- Construction Name PER-2T, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P3T, !- Name Medium Furniture, !- Construction Name PER-3T, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P4T, !- Name Medium Furniture, !- Construction Name PER-4T, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-C1T, !- Name Medium Furniture, !- Construction Name COR-T, !- Zone or ZoneList Name - 390.; !- Surface Area {m2} + , !- Surface Area {m2} + 390.; !- Extended Field InternalMass, Internal-P1F, !- Name Medium Furniture, !- Construction Name PER-1F, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P1I, !- Name Medium Furniture, !- Construction Name PER-1I, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P2F, !- Name Medium Furniture, !- Construction Name PER-2F, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P2I, !- Name Medium Furniture, !- Construction Name PER-2I, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P3F, !- Name Medium Furniture, !- Construction Name PER-3F, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P3I, !- Name Medium Furniture, !- Construction Name PER-3I, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P4F, !- Name Medium Furniture, !- Construction Name PER-4F, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P4I, !- Name Medium Furniture, !- Construction Name PER-4I, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-C1F, !- Name Medium Furniture, !- Construction Name COR-F, !- Zone or ZoneList Name - 390.; !- Surface Area {m2} + , !- Surface Area {m2} + 390.; !- Extended Field InternalMass, Internal-C1I, !- Name Medium Furniture, !- Construction Name COR-I, !- Zone or ZoneList Name - 390; !- Surface Area {m2} + , !- Surface Area {m2} + 390; !- Extended Field ScheduleTypeLimits, AnyNumber; !- Name diff --git a/testfiles/LgOffVAVusingBasement.idf b/testfiles/LgOffVAVusingBasement.idf index ceed5e0100c..215de4dd839 100644 --- a/testfiles/LgOffVAVusingBasement.idf +++ b/testfiles/LgOffVAVusingBasement.idf @@ -602,6 +602,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +634,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +651,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +668,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +685,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +702,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +719,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +751,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +768,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -776,6 +785,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -792,6 +802,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +819,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +836,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +868,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +902,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +919,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +936,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +953,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -966,6 +985,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +1002,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1019,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1036,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1053,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1070,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1062,6 +1087,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORT, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1104,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1121,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1138,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1155,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1172,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1173,6 +1204,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1221,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1238,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1255,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1272,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1253,6 +1289,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1321,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1338,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1355,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1372,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1389,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1406,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1395,6 +1438,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1455,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1472,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1443,6 +1489,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1506,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1475,6 +1523,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1506,6 +1555,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1572,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1589,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1606,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1623,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1640,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1602,6 +1657,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1674,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1691,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1708,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1725,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-F, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1682,6 +1742,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1713,6 +1774,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1729,6 +1791,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1745,6 +1808,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1761,6 +1825,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1777,6 +1842,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-1I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1793,6 +1859,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1824,6 +1891,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1840,6 +1908,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1856,6 +1925,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1872,6 +1942,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1888,6 +1959,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-2I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1904,6 +1976,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1935,6 +2008,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1951,6 +2025,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1967,6 +2042,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1983,6 +2059,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWF-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1999,6 +2076,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-3I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2015,6 +2093,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2046,6 +2125,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2062,6 +2142,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2078,6 +2159,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2094,6 +2176,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWL-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2193,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name PER-4I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWR-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2210,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2142,6 +2227,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORI, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2244,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P3I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2261,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P4I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2278,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P1I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2206,6 +2295,7 @@ WALL, !- Surface Type INTWALL-1, !- Construction Name COR-I, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IWB-P2I, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2305,6 +2395,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name GroundBasementPreprocessorAverageWall, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2321,6 +2412,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name GroundBasementPreprocessorAverageWall, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2337,6 +2429,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name GroundBasementPreprocessorAverageWall, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2353,6 +2446,7 @@ WALL, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name GroundBasementPreprocessorAverageWall, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2369,6 +2463,7 @@ FLOOR, !- Surface Type SLAB-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name GroundBasementPreprocessorAverageFloor, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2385,6 +2480,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-CORF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2401,6 +2497,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P1F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2417,6 +2514,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P2F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2433,6 +2531,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2449,6 +2548,7 @@ CEILING, !- Surface Type CEILING-1, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F-P4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2464,91 +2564,106 @@ Internal-P1T, !- Name Medium Furniture, !- Construction Name PER-1T, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P2T, !- Name Medium Furniture, !- Construction Name PER-2T, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P3T, !- Name Medium Furniture, !- Construction Name PER-3T, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P4T, !- Name Medium Furniture, !- Construction Name PER-4T, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-C1T, !- Name Medium Furniture, !- Construction Name COR-T, !- Zone or ZoneList Name - 390.; !- Surface Area {m2} + , !- Surface Area {m2} + 390.; !- Extended Field InternalMass, Internal-P1F, !- Name Medium Furniture, !- Construction Name PER-1F, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P1I, !- Name Medium Furniture, !- Construction Name PER-1I, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P2F, !- Name Medium Furniture, !- Construction Name PER-2F, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P2I, !- Name Medium Furniture, !- Construction Name PER-2I, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P3F, !- Name Medium Furniture, !- Construction Name PER-3F, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P3I, !- Name Medium Furniture, !- Construction Name PER-3I, !- Zone or ZoneList Name - 94.; !- Surface Area {m2} + , !- Surface Area {m2} + 94.; !- Extended Field InternalMass, Internal-P4F, !- Name Medium Furniture, !- Construction Name PER-4F, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-P4I, !- Name Medium Furniture, !- Construction Name PER-4I, !- Zone or ZoneList Name - 59.; !- Surface Area {m2} + , !- Surface Area {m2} + 59.; !- Extended Field InternalMass, Internal-C1F, !- Name Medium Furniture, !- Construction Name COR-F, !- Zone or ZoneList Name - 390.; !- Surface Area {m2} + , !- Surface Area {m2} + 390.; !- Extended Field InternalMass, Internal-C1I, !- Name Medium Furniture, !- Construction Name COR-I, !- Zone or ZoneList Name - 390; !- Surface Area {m2} + , !- Surface Area {m2} + 390; !- Extended Field ScheduleTypeLimits, AnyNumber; !- Name diff --git a/testfiles/LookupTables.idf b/testfiles/LookupTables.idf index 9b104f9b2d7..52c486a537d 100644 --- a/testfiles/LookupTables.idf +++ b/testfiles/LookupTables.idf @@ -716,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/LrgOff_GridStorageDemandLeveling.idf b/testfiles/LrgOff_GridStorageDemandLeveling.idf index b4251d8614a..c09ae7b45c3 100644 --- a/testfiles/LrgOff_GridStorageDemandLeveling.idf +++ b/testfiles/LrgOff_GridStorageDemandLeveling.idf @@ -858,6 +858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +875,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +909,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +926,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +943,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +960,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +977,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +994,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1011,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1028,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1045,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1062,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1079,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1130,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1147,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1164,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1198,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1215,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1249,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1266,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1283,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1334,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1351,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1368,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1385,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1402,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1419,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1436,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1453,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1470,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1450,6 +1487,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1504,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1521,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1538,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1555,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1572,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1589,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1606,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1623,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1640,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1610,6 +1657,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1674,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1691,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1708,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1725,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1742,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1759,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1776,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1793,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1810,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1827,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1786,6 +1844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1878,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1895,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1912,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1946,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1898,6 +1963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1914,6 +1980,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1930,6 +1997,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1946,6 +2014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1962,6 +2031,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1994,6 +2065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2082,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2026,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2042,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2133,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2150,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2167,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2184,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2201,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2218,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2154,6 +2235,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2170,6 +2252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2303,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2250,6 +2337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2266,6 +2354,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2282,6 +2371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2298,6 +2388,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2314,6 +2405,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2330,6 +2422,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2346,6 +2439,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2362,6 +2456,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2378,6 +2473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2394,6 +2490,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2410,6 +2507,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2524,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2558,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2575,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2490,6 +2592,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2506,6 +2609,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2626,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2538,6 +2643,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2554,6 +2660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2570,6 +2677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2694,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2602,6 +2711,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2728,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2745,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2762,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2666,6 +2779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2796,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2813,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2714,6 +2830,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2847,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2864,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2898,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2794,6 +2915,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2932,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2949,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2966,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2983,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +3000,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2890,6 +3017,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2906,6 +3034,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2922,6 +3051,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4163,97 +4293,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/LrgOff_GridStorageEMSSmoothing.idf b/testfiles/LrgOff_GridStorageEMSSmoothing.idf index 444f6364ba3..bf55ad9ae93 100644 --- a/testfiles/LrgOff_GridStorageEMSSmoothing.idf +++ b/testfiles/LrgOff_GridStorageEMSSmoothing.idf @@ -858,6 +858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +875,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +909,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +926,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +943,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +960,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +977,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +994,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1011,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1028,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1045,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1062,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1079,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1130,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1147,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1164,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1198,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1215,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1249,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1266,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1283,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1334,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1351,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1368,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1385,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1402,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1419,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1436,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1453,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1470,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1450,6 +1487,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1504,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1521,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1538,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1555,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1572,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1589,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1606,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1623,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1640,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1610,6 +1657,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1674,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1691,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1708,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1725,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1742,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1759,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1776,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1793,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1810,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1827,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1786,6 +1844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1878,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1895,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1912,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1946,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1898,6 +1963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1914,6 +1980,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1930,6 +1997,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1946,6 +2014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1962,6 +2031,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1994,6 +2065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2082,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2026,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2042,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2133,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2150,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2167,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2184,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2201,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2218,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2154,6 +2235,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2170,6 +2252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2303,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2250,6 +2337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2266,6 +2354,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2282,6 +2371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2298,6 +2388,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2314,6 +2405,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2330,6 +2422,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2346,6 +2439,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2362,6 +2456,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2378,6 +2473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2394,6 +2490,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2410,6 +2507,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2524,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2558,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2575,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2490,6 +2592,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2506,6 +2609,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2626,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2538,6 +2643,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2554,6 +2660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2570,6 +2677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2694,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2602,6 +2711,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2728,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2745,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2762,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2666,6 +2779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2796,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2813,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2714,6 +2830,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2847,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2864,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2898,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2794,6 +2915,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2932,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2949,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2966,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2983,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +3000,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2890,6 +3017,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2906,6 +3034,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2922,6 +3051,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4163,97 +4293,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/LrgOff_GridStorageScheduled.idf b/testfiles/LrgOff_GridStorageScheduled.idf index 30877c97aee..0939c27ca1c 100644 --- a/testfiles/LrgOff_GridStorageScheduled.idf +++ b/testfiles/LrgOff_GridStorageScheduled.idf @@ -858,6 +858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +875,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +909,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +926,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +943,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +960,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +977,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +994,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1011,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1028,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1045,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1062,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1079,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1130,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1147,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1164,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1198,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1215,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1249,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1266,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1283,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1334,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1351,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1368,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1385,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1402,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1419,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1436,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1453,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1470,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1450,6 +1487,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1504,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1521,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1538,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1555,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1572,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1589,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1606,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1623,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1640,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1610,6 +1657,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1674,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1691,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1708,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1725,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1742,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1759,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1776,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1793,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1810,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1827,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1786,6 +1844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1878,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1895,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1912,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1946,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1898,6 +1963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1914,6 +1980,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1930,6 +1997,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1946,6 +2014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1962,6 +2031,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1994,6 +2065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2082,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2026,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2042,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2133,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2150,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2167,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2184,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2201,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2218,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2154,6 +2235,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2170,6 +2252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2303,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2250,6 +2337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2266,6 +2354,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2282,6 +2371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2298,6 +2388,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2314,6 +2405,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2330,6 +2422,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2346,6 +2439,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2362,6 +2456,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2378,6 +2473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2394,6 +2490,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2410,6 +2507,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2524,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2558,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2575,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2490,6 +2592,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2506,6 +2609,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2626,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2538,6 +2643,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2554,6 +2660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2570,6 +2677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2694,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2602,6 +2711,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2728,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2745,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2762,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2666,6 +2779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2796,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2813,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2714,6 +2830,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2847,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2864,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2898,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2794,6 +2915,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2932,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2949,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2966,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2983,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +3000,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2890,6 +3017,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2906,6 +3034,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2922,6 +3051,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4163,97 +4293,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/MicroCogeneration.idf b/testfiles/MicroCogeneration.idf index e8c56c48eba..fa4c38c8d5c 100644 --- a/testfiles/MicroCogeneration.idf +++ b/testfiles/MicroCogeneration.idf @@ -922,6 +922,7 @@ WALL, !- Surface Type CBECS_New_Restaurant_North_Mass_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -953,6 +954,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +971,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +988,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1005,7 @@ FLOOR, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1022,7 @@ ROOF, !- Surface Type CBECS_New_Restaurant_North_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1032,7 +1038,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 50.4821; !- Surface Area {m2} + , !- Surface Area {m2} + 50.4821; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1472,6 +1479,7 @@ WALL, !- Surface Type CBECS_New_Restaurant_North_Mass_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1503,6 +1511,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1519,6 +1528,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1535,6 +1545,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1551,6 +1562,7 @@ FLOOR, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1567,6 +1579,7 @@ ROOF, !- Surface Type CBECS_New_Restaurant_North_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1582,7 +1595,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 44.0261; !- Surface Area {m2} + , !- Surface Area {m2} + 44.0261; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -2021,6 +2035,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2037,6 +2052,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2053,6 +2069,7 @@ WALL, !- Surface Type CBECS_New_Restaurant_North_Mass_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2084,6 +2101,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2100,6 +2118,7 @@ FLOOR, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2116,6 +2135,7 @@ ROOF, !- Surface Type CBECS_New_Restaurant_North_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2131,7 +2151,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 50.4821; !- Surface Area {m2} + , !- Surface Area {m2} + 50.4821; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2570,6 +2591,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2608,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2602,6 +2625,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2642,7 @@ WALL, !- Surface Type CBECS_New_Restaurant_North_Mass_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2649,6 +2674,7 @@ FLOOR, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2665,6 +2691,7 @@ ROOF, !- Surface Type CBECS_New_Restaurant_North_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2680,7 +2707,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 44.0261; !- Surface Area {m2} + , !- Surface Area {m2} + 44.0261; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -3119,6 +3147,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3135,6 +3164,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3151,6 +3181,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3167,6 +3198,7 @@ WALL, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3183,6 +3215,7 @@ FLOOR, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-4_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3199,6 +3232,7 @@ ROOF, !- Surface Type CBECS_New_Restaurant_North_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3214,7 +3248,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 15.3636; !- Surface Area {m2} + , !- Surface Area {m2} + 15.3636; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/MovableExtInsulationSimple.idf b/testfiles/MovableExtInsulationSimple.idf index 49f3e6507dc..c5822e525ce 100644 --- a/testfiles/MovableExtInsulationSimple.idf +++ b/testfiles/MovableExtInsulationSimple.idf @@ -316,6 +316,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -338,6 +339,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +356,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -370,6 +373,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +390,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -402,6 +407,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MovableIntInsulationLights.idf b/testfiles/MovableIntInsulationLights.idf index 8a99d0ff4cb..0f33c595794 100644 --- a/testfiles/MovableIntInsulationLights.idf +++ b/testfiles/MovableIntInsulationLights.idf @@ -329,6 +329,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -351,6 +352,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -367,6 +369,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -383,6 +386,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -399,6 +403,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -415,6 +420,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MovableIntInsulationLightsLowE.idf b/testfiles/MovableIntInsulationLightsLowE.idf index ae5e110ab8b..6be0a3dedd1 100644 --- a/testfiles/MovableIntInsulationLightsLowE.idf +++ b/testfiles/MovableIntInsulationLightsLowE.idf @@ -329,6 +329,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -351,6 +352,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -367,6 +369,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -383,6 +386,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -399,6 +403,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -415,6 +420,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MovableIntInsulationSimple.idf b/testfiles/MovableIntInsulationSimple.idf index 1bcca693ea6..ac922992f7b 100644 --- a/testfiles/MovableIntInsulationSimple.idf +++ b/testfiles/MovableIntInsulationSimple.idf @@ -316,6 +316,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -338,6 +339,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +356,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -370,6 +373,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +390,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -402,6 +407,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiSpeedACFurnace.idf b/testfiles/MultiSpeedACFurnace.idf index 3fc36e44733..e80d2b118b5 100644 --- a/testfiles/MultiSpeedACFurnace.idf +++ b/testfiles/MultiSpeedACFurnace.idf @@ -645,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +847,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +864,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +966,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiSpeedHP_StagedThermostat.idf b/testfiles/MultiSpeedHP_StagedThermostat.idf index a1b1e1042d6..72fc451b23a 100644 --- a/testfiles/MultiSpeedHP_StagedThermostat.idf +++ b/testfiles/MultiSpeedHP_StagedThermostat.idf @@ -639,6 +639,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +671,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +688,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +705,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +722,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +739,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +756,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +773,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +790,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +807,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +824,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +841,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +858,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +875,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +892,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +909,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +926,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +943,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +960,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +977,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiSpeedHeatPump.idf b/testfiles/MultiSpeedHeatPump.idf index 42784397de9..c5819918913 100644 --- a/testfiles/MultiSpeedHeatPump.idf +++ b/testfiles/MultiSpeedHeatPump.idf @@ -638,6 +638,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +755,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +772,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +789,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -797,6 +806,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +823,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +840,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +857,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +874,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +891,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +908,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +925,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +942,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +959,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +976,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiSpeedHeatPump_DirectSolution.idf b/testfiles/MultiSpeedHeatPump_DirectSolution.idf index 2a16401979b..8bcb9de632b 100644 --- a/testfiles/MultiSpeedHeatPump_DirectSolution.idf +++ b/testfiles/MultiSpeedHeatPump_DirectSolution.idf @@ -641,6 +641,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +673,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +690,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +707,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +724,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +741,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +758,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +775,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +792,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +809,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +826,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +843,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +860,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +877,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +894,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +911,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +928,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +945,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +962,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +979,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiSpeedHeatPump_MultiSolvers.idf b/testfiles/MultiSpeedHeatPump_MultiSolvers.idf index f36df18480d..9a0cbda3145 100644 --- a/testfiles/MultiSpeedHeatPump_MultiSolvers.idf +++ b/testfiles/MultiSpeedHeatPump_MultiSolvers.idf @@ -642,6 +642,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +674,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +691,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +708,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +725,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +742,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +759,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +776,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +793,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +810,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +827,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +844,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -849,6 +861,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +878,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +895,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -897,6 +912,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -913,6 +929,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +946,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -945,6 +963,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +980,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/MultiStory.idf b/testfiles/MultiStory.idf index b7c72471454..73b86ccc784 100644 --- a/testfiles/MultiStory.idf +++ b/testfiles/MultiStory.idf @@ -651,6 +651,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +668,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +685,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +702,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd West E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +719,7 @@ FLOOR, !- Surface Type Floor Slab, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd West Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +736,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Gnd West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd West Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +947,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -957,6 +964,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd Center W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +981,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -989,6 +998,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd Center E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1015,7 @@ FLOOR, !- Surface Type Floor Slab, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd Center Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1032,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Gnd Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd Center Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1221,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1225,6 +1238,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd East W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1255,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1257,6 +1272,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1273,6 +1289,7 @@ FLOOR, !- Surface Type Floor Slab, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd East Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1306,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Gnd East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gnd East Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1503,6 +1521,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1519,6 +1538,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1535,6 +1555,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1551,6 +1572,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid West E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1567,6 +1589,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid West Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1606,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Mid West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid West Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1786,6 +1810,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1802,6 +1827,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid Center W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1844,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1834,6 +1861,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid Center E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1878,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid Center Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1895,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Mid Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid Center Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2054,6 +2084,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2070,6 +2101,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid East W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2118,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2135,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2118,6 +2152,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid East Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2169,7 @@ CEILING, !- Surface Type Ceiling, !- Construction Name Mid East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mid East Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2348,6 +2384,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2364,6 +2401,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2380,6 +2418,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2396,6 +2435,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top West E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2412,6 +2452,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top West Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2428,6 +2469,7 @@ ROOF, !- Surface Type Roof, !- Construction Name Top West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2631,6 +2673,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2647,6 +2690,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top Center W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2663,6 +2707,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2679,6 +2724,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top Center E Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2695,6 +2741,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top Center Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2711,6 +2758,7 @@ ROOF, !- Surface Type Roof, !- Construction Name Top Center Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2899,6 +2947,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2915,6 +2964,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top East W Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2931,6 +2981,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2947,6 +2998,7 @@ WALL, !- Surface Type Ext Wall, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2963,6 +3015,7 @@ FLOOR, !- Surface Type Floor, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Top East Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2979,6 +3032,7 @@ ROOF, !- Surface Type Roof, !- Construction Name Top East Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Mundt_System_Always_On.idf b/testfiles/Mundt_System_Always_On.idf index aabefc5a217..7b9f8e08850 100644 --- a/testfiles/Mundt_System_Always_On.idf +++ b/testfiles/Mundt_System_Always_On.idf @@ -409,6 +409,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -425,6 +426,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -441,6 +443,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +460,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +477,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -489,6 +494,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -505,6 +511,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -521,6 +528,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +545,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +562,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +579,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +596,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +613,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:WESTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -617,6 +630,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -633,6 +647,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:WESTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -649,6 +664,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +681,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +698,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +715,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -713,6 +732,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -729,6 +749,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +766,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:BOTTOM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +783,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:MIDLOW, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +800,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +817,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:BOTTOM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +834,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:MIDLOW, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +851,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +868,7 @@ CEILING, !- Surface Type FLOORSLAB, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:FLOOR, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +885,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +902,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:MIDUPP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +919,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +936,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +953,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:MIDUPP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +970,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +987,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:CEILING, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +1004,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +1021,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:EASTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1038,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1055,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:EASTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1072,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1089,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1106,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1123,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1140,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1157,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1174,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1145,6 +1191,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1161,6 +1208,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1225,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1193,6 +1242,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1209,6 +1259,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1225,6 +1276,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1293,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1310,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1327,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1289,6 +1344,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Mundt_System_On_During_the_Day.idf b/testfiles/Mundt_System_On_During_the_Day.idf index 4088b2246eb..d1da4541138 100644 --- a/testfiles/Mundt_System_On_During_the_Day.idf +++ b/testfiles/Mundt_System_On_During_the_Day.idf @@ -409,6 +409,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -425,6 +426,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -441,6 +443,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -457,6 +460,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -473,6 +477,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -489,6 +494,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -505,6 +511,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -521,6 +528,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -537,6 +545,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -553,6 +562,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +579,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +596,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +613,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:WESTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -617,6 +630,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -633,6 +647,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:WESTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -649,6 +664,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +681,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +698,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +715,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -713,6 +732,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -729,6 +749,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +766,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:BOTTOM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +783,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:MIDLOW, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +800,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +817,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:BOTTOM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +834,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:MIDLOW, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +851,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +868,7 @@ CEILING, !- Surface Type FLOORSLAB, !- Construction Name MID-LOW ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:FLOOR, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +885,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +902,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:MIDUPP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +919,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition WESTZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +936,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +953,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:MIDUPP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +970,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EASTZN:WESTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +987,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:CEILING, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +1004,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name MID-UPP ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +1021,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:EASTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1038,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDLOWZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1055,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:EASTWALL:BOTTOM,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1072,7 @@ WALL, !- Surface Type PARTITION, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MIDUPPZN:EASTWALL:TOP, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1089,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1106,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1123,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1140,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1157,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1174,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1145,6 +1191,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1161,6 +1208,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1225,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1193,6 +1242,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1209,6 +1259,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1225,6 +1276,7 @@ WALL, !- Surface Type EXTWALL, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1293,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1310,7 @@ FLOOR, !- Surface Type FLOORSLAB, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1327,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1289,6 +1344,7 @@ CEILING, !- Surface Type ROOF, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/OptimalStart_RefBldgLargeOfficeNew2004_Chicago.idf b/testfiles/OptimalStart_RefBldgLargeOfficeNew2004_Chicago.idf index 80af73db166..e6c698bfb23 100644 --- a/testfiles/OptimalStart_RefBldgLargeOfficeNew2004_Chicago.idf +++ b/testfiles/OptimalStart_RefBldgLargeOfficeNew2004_Chicago.idf @@ -916,6 +916,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +933,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +950,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +967,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +984,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1001,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1018,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1035,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1052,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1069,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1086,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1092,6 +1103,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1120,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1137,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1154,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1171,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1188,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1205,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1222,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1239,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1256,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1273,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1290,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1307,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1324,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1341,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1358,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1375,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1392,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1409,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1426,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1443,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1460,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1477,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1494,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1511,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1492,6 +1528,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1508,6 +1545,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1524,6 +1562,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1540,6 +1579,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1556,6 +1596,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1572,6 +1613,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1630,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1647,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1664,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1681,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1652,6 +1698,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1668,6 +1715,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1684,6 +1732,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1749,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1716,6 +1766,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1732,6 +1783,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1800,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1764,6 +1817,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1780,6 +1834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1796,6 +1851,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1812,6 +1868,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1828,6 +1885,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1844,6 +1902,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1860,6 +1919,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1876,6 +1936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1892,6 +1953,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1908,6 +1970,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1924,6 +1987,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1940,6 +2004,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1956,6 +2021,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1972,6 +2038,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1988,6 +2055,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2004,6 +2072,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2020,6 +2089,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2036,6 +2106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2052,6 +2123,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2068,6 +2140,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2084,6 +2157,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2100,6 +2174,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2116,6 +2191,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2132,6 +2208,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2148,6 +2225,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2164,6 +2242,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2180,6 +2259,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2196,6 +2276,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2212,6 +2293,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2228,6 +2310,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2244,6 +2327,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2260,6 +2344,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2276,6 +2361,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2292,6 +2378,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2308,6 +2395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2324,6 +2412,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2340,6 +2429,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2356,6 +2446,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2372,6 +2463,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2388,6 +2480,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2404,6 +2497,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2420,6 +2514,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2436,6 +2531,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2452,6 +2548,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2468,6 +2565,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2484,6 +2582,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2500,6 +2599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2516,6 +2616,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2532,6 +2633,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2548,6 +2650,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2564,6 +2667,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2580,6 +2684,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2596,6 +2701,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2612,6 +2718,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2628,6 +2735,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2644,6 +2752,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2660,6 +2769,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2676,6 +2786,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2692,6 +2803,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2708,6 +2820,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2724,6 +2837,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2740,6 +2854,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2756,6 +2871,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2772,6 +2888,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2788,6 +2905,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2804,6 +2922,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2820,6 +2939,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2836,6 +2956,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2852,6 +2973,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2868,6 +2990,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2884,6 +3007,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2900,6 +3024,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2916,6 +3041,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2932,6 +3058,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2948,6 +3075,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2964,6 +3092,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2980,6 +3109,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4221,97 +4351,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/OutdoorAirUnit.idf b/testfiles/OutdoorAirUnit.idf index 6d20b268af4..39e1d165659 100644 --- a/testfiles/OutdoorAirUnit.idf +++ b/testfiles/OutdoorAirUnit.idf @@ -2384,6 +2384,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2400,6 +2401,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2416,6 +2418,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2432,6 +2435,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2448,6 +2452,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2464,6 +2469,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2480,6 +2486,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2496,6 +2503,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2512,6 +2520,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2528,6 +2537,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2544,6 +2554,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2560,6 +2571,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2576,6 +2588,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2592,6 +2605,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2608,6 +2622,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2624,6 +2639,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2640,6 +2656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2656,6 +2673,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2672,6 +2690,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2688,6 +2707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2704,6 +2724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2720,6 +2741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2736,6 +2758,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2752,6 +2775,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2768,6 +2792,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2784,6 +2809,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2800,6 +2826,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2816,6 +2843,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2832,6 +2860,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2848,6 +2877,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2864,6 +2894,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2880,6 +2911,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2945,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2962,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2944,6 +2979,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2960,6 +2996,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2976,6 +3013,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2992,6 +3030,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3008,6 +3047,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/OutdoorAirUnitwithAirloopHVAC.idf b/testfiles/OutdoorAirUnitwithAirloopHVAC.idf index d78d6317c63..973dcb9549b 100644 --- a/testfiles/OutdoorAirUnitwithAirloopHVAC.idf +++ b/testfiles/OutdoorAirUnitwithAirloopHVAC.idf @@ -3893,6 +3893,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3909,6 +3910,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3925,6 +3927,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3941,6 +3944,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3957,6 +3961,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3973,6 +3978,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3989,6 +3995,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4005,6 +4012,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4021,6 +4029,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4037,6 +4046,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4053,6 +4063,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4069,6 +4080,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4085,6 +4097,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4101,6 +4114,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4117,6 +4131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4133,6 +4148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4149,6 +4165,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4165,6 +4182,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4181,6 +4199,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4197,6 +4216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4213,6 +4233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4229,6 +4250,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4245,6 +4267,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4261,6 +4284,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4277,6 +4301,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4293,6 +4318,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4309,6 +4335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4325,6 +4352,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4341,6 +4369,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4357,6 +4386,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4373,6 +4403,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4389,6 +4420,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4405,6 +4437,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4421,6 +4454,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4437,6 +4471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4453,6 +4488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4469,6 +4505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4485,6 +4522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4501,6 +4539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4517,6 +4556,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PIUAuto.idf b/testfiles/PIUAuto.idf index b395312bed0..08b1f891c72 100644 --- a/testfiles/PIUAuto.idf +++ b/testfiles/PIUAuto.idf @@ -819,6 +819,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +851,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +868,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +885,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +902,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +919,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +936,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +953,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +970,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +987,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1004,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1021,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1038,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1042,6 +1055,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1058,6 +1072,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1089,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1106,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1123,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1140,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1157,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PackagedTerminalAirConditioner.idf b/testfiles/PackagedTerminalAirConditioner.idf index 256d4959939..0f3ba82639c 100644 --- a/testfiles/PackagedTerminalAirConditioner.idf +++ b/testfiles/PackagedTerminalAirConditioner.idf @@ -744,6 +744,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +761,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +778,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -792,6 +795,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +812,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +829,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -840,6 +846,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +863,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +880,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +897,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -904,6 +914,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -920,6 +931,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -952,6 +965,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -968,6 +982,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -984,6 +999,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1000,6 +1016,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1016,6 +1033,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1032,6 +1050,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1067,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PackagedTerminalAirConditionerVSAS.idf b/testfiles/PackagedTerminalAirConditionerVSAS.idf index de8115afdcd..708c45bec8f 100644 --- a/testfiles/PackagedTerminalAirConditionerVSAS.idf +++ b/testfiles/PackagedTerminalAirConditionerVSAS.idf @@ -1183,6 +1183,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1199,6 +1200,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1215,6 +1217,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1231,6 +1234,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,6 +1251,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1263,6 +1268,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1279,6 +1285,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1295,6 +1302,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1311,6 +1319,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1327,6 +1336,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1343,6 +1353,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1359,6 +1370,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1375,6 +1387,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1391,6 +1404,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1407,6 +1421,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1423,6 +1438,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1439,6 +1455,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1455,6 +1472,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1471,6 +1489,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1487,6 +1506,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PackagedTerminalHeatPump.idf b/testfiles/PackagedTerminalHeatPump.idf index 628d1906582..86ad5a5c4f8 100644 --- a/testfiles/PackagedTerminalHeatPump.idf +++ b/testfiles/PackagedTerminalHeatPump.idf @@ -716,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PackagedTerminalHeatPumpVSAS.idf b/testfiles/PackagedTerminalHeatPumpVSAS.idf index f279a90aad2..bbe74ba1d08 100644 --- a/testfiles/PackagedTerminalHeatPumpVSAS.idf +++ b/testfiles/PackagedTerminalHeatPumpVSAS.idf @@ -1483,6 +1483,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1500,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1515,6 +1517,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1534,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1551,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1568,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1579,6 +1585,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1595,6 +1602,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1611,6 +1619,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1636,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1653,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1670,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1687,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1707,6 +1721,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1723,6 +1738,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1739,6 +1755,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1772,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1789,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1787,6 +1806,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ParametricInsulation-5ZoneAirCooled.idf b/testfiles/ParametricInsulation-5ZoneAirCooled.idf index 3589061cd75..17e3c4eeb40 100644 --- a/testfiles/ParametricInsulation-5ZoneAirCooled.idf +++ b/testfiles/ParametricInsulation-5ZoneAirCooled.idf @@ -666,6 +666,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +717,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +734,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +751,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +768,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +785,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +802,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +819,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +899,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -955,6 +966,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +983,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +1000,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1017,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1034,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1114,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1146,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1163,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1180,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1197,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1214,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1272,6 +1294,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1318,6 +1341,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1358,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1375,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1392,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1409,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1489,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1492,6 +1521,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1538,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1555,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1572,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1556,6 +1589,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1635,6 +1669,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1686,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1703,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1683,6 +1720,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1699,6 +1737,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1715,6 +1754,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PassiveTrombeWall.idf b/testfiles/PassiveTrombeWall.idf index 14752f07315..3784f92ff62 100644 --- a/testfiles/PassiveTrombeWall.idf +++ b/testfiles/PassiveTrombeWall.idf @@ -411,6 +411,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -427,6 +428,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +460,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -474,6 +477,7 @@ Wall, !- Surface Type TROMBE WALL IN, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -490,6 +494,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -506,6 +511,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -522,6 +528,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -563,6 +570,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -579,6 +587,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +604,7 @@ Wall, !- Surface Type TROMBE WALL OUT, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -611,6 +621,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -627,6 +638,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +655,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +672,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +689,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +721,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +738,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -738,6 +755,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PipeHeatTransfer_Outair.idf b/testfiles/PipeHeatTransfer_Outair.idf index e0f322e4ad7..6fd31a7d222 100644 --- a/testfiles/PipeHeatTransfer_Outair.idf +++ b/testfiles/PipeHeatTransfer_Outair.idf @@ -613,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +647,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +664,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +681,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +749,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +766,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +783,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +800,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +817,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +851,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +868,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +885,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +902,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +919,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +953,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +987,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +1004,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1021,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1055,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1072,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1089,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1106,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1123,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1191,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1208,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1259,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1276,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PipeHeatTransfer_Schedule.idf b/testfiles/PipeHeatTransfer_Schedule.idf index 5589e0f4808..152c837ec32 100644 --- a/testfiles/PipeHeatTransfer_Schedule.idf +++ b/testfiles/PipeHeatTransfer_Schedule.idf @@ -613,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +647,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +664,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +681,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +749,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +766,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +783,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +800,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +817,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +851,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +868,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +885,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +902,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +919,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +953,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +987,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +1004,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1021,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1055,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1072,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1089,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1106,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1123,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1191,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1208,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1259,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1276,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PipeHeatTransfer_Underground.idf b/testfiles/PipeHeatTransfer_Underground.idf index f1a6cd0c334..0acff1d99e3 100644 --- a/testfiles/PipeHeatTransfer_Underground.idf +++ b/testfiles/PipeHeatTransfer_Underground.idf @@ -608,6 +608,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +625,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +642,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +659,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +676,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +693,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +710,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +727,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +744,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +761,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +778,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +795,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +812,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +829,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +846,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +863,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +880,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +897,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +914,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +931,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +948,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +982,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -976,6 +999,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1016,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1033,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1024,6 +1050,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1067,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1084,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1101,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1118,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1135,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1152,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1169,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1186,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1203,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1220,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1237,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1216,6 +1254,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1271,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PipeHeatTransfer_Zone.idf b/testfiles/PipeHeatTransfer_Zone.idf index b5e2a88ed83..a4d8e4f0e91 100644 --- a/testfiles/PipeHeatTransfer_Zone.idf +++ b/testfiles/PipeHeatTransfer_Zone.idf @@ -613,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -645,6 +647,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +664,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +681,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +749,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +766,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +783,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +800,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +817,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +851,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +868,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +885,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +902,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +919,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +953,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +987,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +1004,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1021,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1055,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1072,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1089,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1106,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1123,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1109,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1191,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1173,6 +1208,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1259,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1276,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PipingSystem_Underground_FHX.idf b/testfiles/PipingSystem_Underground_FHX.idf index da2b0a8eb28..bd32ae5c698 100644 --- a/testfiles/PipingSystem_Underground_FHX.idf +++ b/testfiles/PipingSystem_Underground_FHX.idf @@ -364,6 +364,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -380,6 +381,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -396,6 +398,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -412,6 +415,7 @@ Wall, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -428,6 +432,7 @@ Floor, !- Surface Type Basement Wall/Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementFloorOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -444,6 +449,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +493,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -503,6 +510,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -519,6 +527,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +544,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +561,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,97 +853,97 @@ Zone 2 Outlet Node; !- Return Air Stream Node Name Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Coil:Cooling:WaterToAirHeatPump:EquationFit, Sys 2 Heat Pump Cooling Mode, !- Name diff --git a/testfiles/PlantApplicationsGuide_Example2.idf b/testfiles/PlantApplicationsGuide_Example2.idf index aef31019462..b5e76bf568b 100644 --- a/testfiles/PlantApplicationsGuide_Example2.idf +++ b/testfiles/PlantApplicationsGuide_Example2.idf @@ -2350,6 +2350,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2400,6 +2401,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2416,6 +2418,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2432,6 +2435,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2448,6 +2452,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2464,6 +2469,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2519,7 +2525,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -2830,6 +2837,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2880,6 +2888,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2905,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2922,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2939,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2944,6 +2956,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2999,7 +3012,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -3310,6 +3324,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3326,6 +3341,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3342,6 +3358,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3373,6 +3390,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3389,6 +3407,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3405,6 +3424,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3460,7 +3480,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 323.8302; !- Surface Area {m2} + , !- Surface Area {m2} + 323.8302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -3771,6 +3792,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3787,6 +3809,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3803,6 +3826,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3819,6 +3843,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3869,6 +3894,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3885,6 +3911,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3940,7 +3967,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 141.0302; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0302; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -4251,6 +4279,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4267,6 +4296,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4283,6 +4313,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4299,6 +4330,7 @@ WALL, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4315,6 +4347,7 @@ FLOOR, !- Surface Type ASHRAE 30Perc Guide_Zone 5_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4331,6 +4364,7 @@ ROOF, !- Surface Type ASHRAE 30Perc Guide_Zone 5_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4506,7 +4540,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 670.2792; !- Surface Area {m2} + , !- Surface Area {m2} + 670.2792; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/PlantApplicationsGuide_Example3.idf b/testfiles/PlantApplicationsGuide_Example3.idf index cdad2a7bb9d..39df82454e7 100644 --- a/testfiles/PlantApplicationsGuide_Example3.idf +++ b/testfiles/PlantApplicationsGuide_Example3.idf @@ -742,6 +742,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +774,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +791,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +808,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +825,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +842,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +859,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +876,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +893,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +910,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +927,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +944,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +961,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +978,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +995,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -997,6 +1012,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1013,6 +1029,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1046,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1063,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1080,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PlateHeatExchanger.idf b/testfiles/PlateHeatExchanger.idf index 08ceaef0594..d4f51db15e2 100644 --- a/testfiles/PlateHeatExchanger.idf +++ b/testfiles/PlateHeatExchanger.idf @@ -667,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +699,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +716,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +733,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +750,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +767,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +801,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +835,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +852,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +869,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +886,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +920,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +954,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +971,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +988,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1005,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/Plenum.idf b/testfiles/Plenum.idf index 4af98101f3d..a701d8ae917 100644 --- a/testfiles/Plenum.idf +++ b/testfiles/Plenum.idf @@ -601,6 +601,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +699,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +716,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -758,6 +765,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -774,6 +782,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -790,6 +799,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -806,6 +816,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +833,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -838,6 +850,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +867,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -870,6 +884,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +901,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +918,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +935,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +952,7 @@ Roof, !- Surface Type CEILING39, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +969,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -996,6 +1016,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1012,6 +1033,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1050,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1082,7 @@ Floor, !- Surface Type FLOOR39, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1099,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1116,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1133,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1123,6 +1150,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1167,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1184,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1201,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PlenumwithRetAirHeatGain.idf b/testfiles/PlenumwithRetAirHeatGain.idf index f1c724002e0..874e1744ed2 100644 --- a/testfiles/PlenumwithRetAirHeatGain.idf +++ b/testfiles/PlenumwithRetAirHeatGain.idf @@ -442,6 +442,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -458,6 +459,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -474,6 +476,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -490,6 +493,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -521,6 +525,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -537,6 +542,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -553,6 +559,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -569,6 +576,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +593,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +610,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +627,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -633,6 +644,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1a, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PondGroundHeatExchanger.idf b/testfiles/PondGroundHeatExchanger.idf index cced5efb3de..eb0756e0957 100644 --- a/testfiles/PondGroundHeatExchanger.idf +++ b/testfiles/PondGroundHeatExchanger.idf @@ -589,6 +589,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -605,6 +606,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +623,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +640,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +657,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +674,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +691,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +708,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +725,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +742,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +759,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +776,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -781,6 +793,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -797,6 +810,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -813,6 +827,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +844,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +861,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +878,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -877,6 +895,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +912,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +929,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +946,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +963,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -957,6 +980,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +997,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +1014,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1031,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1048,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1065,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1053,6 +1082,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1099,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1133,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1150,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1167,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1184,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1235,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1252,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PurchAirTables.idf b/testfiles/PurchAirTables.idf index e1c8cd1ce59..6098649a9e4 100644 --- a/testfiles/PurchAirTables.idf +++ b/testfiles/PurchAirTables.idf @@ -633,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +665,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +682,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +699,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +716,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +733,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +750,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +801,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +818,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +835,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +852,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +869,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +920,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -920,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +954,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +971,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirTables_SQL.idf b/testfiles/PurchAirTables_SQL.idf index a90e002ddcb..8aef0156a0e 100644 --- a/testfiles/PurchAirTables_SQL.idf +++ b/testfiles/PurchAirTables_SQL.idf @@ -633,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +665,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +682,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +699,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +716,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +733,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +750,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +801,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +818,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +835,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +852,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +869,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +920,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -920,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +954,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +971,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirTables_wAnnual.idf b/testfiles/PurchAirTables_wAnnual.idf index b489d333dd0..935218e4638 100644 --- a/testfiles/PurchAirTables_wAnnual.idf +++ b/testfiles/PurchAirTables_wAnnual.idf @@ -633,6 +633,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +665,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +682,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +699,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +716,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +733,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +750,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -760,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +784,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +801,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -808,6 +818,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +835,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +852,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +869,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +886,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +920,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -920,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +954,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +971,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2530,10 +2550,10 @@ Electricity:Facility, !- Variable or Meter or EMS Variable or Field 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 , !- Digits After Decimal 2 - NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 3 Name + NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 , !- Digits After Decimal 3 - NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 4 Name + NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 4 Name Maximum, !- Aggregation Type for Variable or Meter 4 ; !- Digits After Decimal 4 @@ -2547,10 +2567,10 @@ Electricity:Facility, !- Variable or Meter or EMS Variable or Field 2 Name Maximum, !- Aggregation Type for Variable or Meter 2 , !- Digits After Decimal 2 - NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 3 Name + NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 , !- Digits After Decimal 3 - NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 4 Name + NaturalGas:Facility, !- Variable or Meter or EMS Variable or Field 4 Name Maximum, !- Aggregation Type for Variable or Meter 4 ; !- Digits After Decimal 4 diff --git a/testfiles/PurchAirWindowBlind.idf b/testfiles/PurchAirWindowBlind.idf index c53275693e0..593bcda6a01 100644 --- a/testfiles/PurchAirWindowBlind.idf +++ b/testfiles/PurchAirWindowBlind.idf @@ -2,7 +2,7 @@ ! Basic file description: 1 story building divided into 3 interior conditioned zones. Roof with no plenum. ! No ground contact with floor. ! -! Highlights: Illustration of using a window blind to control solar gain with multiple exterior windows +! Highlights: Illustration of using a window blind to control solar gain with multiple exterior windows ! in the zone. ! ! @@ -402,7 +402,7 @@ , !- Daylighting Control Object Name Sequential, !- Multiple Surface Control Type Zn001:Wall001:Win001, !- Fenestration Surface 1 Name - Zn001:Wall002:Win002; !- Fenestration Surface 1 Name + Zn001:Wall002:Win002; !- Fenestration Surface 2 Name ScheduleTypeLimits, Any Number; !- Name @@ -707,6 +707,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +771,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +788,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +805,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +822,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +839,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +856,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +873,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -881,6 +890,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +907,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +924,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +941,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -945,6 +958,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +975,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -977,6 +992,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -993,6 +1009,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1026,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1043,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1041,6 +1060,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1336,3 +1356,4 @@ Output:Table:SummaryReports, AllSummary; !- Report 1 Name + diff --git a/testfiles/PurchAirWindowBlind_BlockBeamSolar.idf b/testfiles/PurchAirWindowBlind_BlockBeamSolar.idf index 3040b8e6a46..af87ce20998 100644 --- a/testfiles/PurchAirWindowBlind_BlockBeamSolar.idf +++ b/testfiles/PurchAirWindowBlind_BlockBeamSolar.idf @@ -710,6 +710,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +742,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -757,6 +759,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +776,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +793,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +810,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +827,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +844,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +861,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +878,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +895,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +912,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +929,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +946,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +963,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +980,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +997,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1014,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1031,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1048,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirWithDaylighting.idf b/testfiles/PurchAirWithDaylighting.idf index 6ad582e2ec8..405463320e0 100644 --- a/testfiles/PurchAirWithDaylighting.idf +++ b/testfiles/PurchAirWithDaylighting.idf @@ -916,6 +916,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +948,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +965,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +982,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +999,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1016,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1033,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1050,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1067,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1084,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1101,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1118,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1135,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1152,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1169,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1171,6 +1186,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1187,6 +1203,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1220,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1237,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1254,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirWithDaylightingAndShadeControl.idf b/testfiles/PurchAirWithDaylightingAndShadeControl.idf index 0d871d92b90..29e948b000a 100644 --- a/testfiles/PurchAirWithDaylightingAndShadeControl.idf +++ b/testfiles/PurchAirWithDaylightingAndShadeControl.idf @@ -1265,6 +1265,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1431,6 +1432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1447,6 +1449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1479,6 +1483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1495,6 +1500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1511,6 +1517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1527,6 +1534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1543,6 +1551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1559,6 +1568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1623,6 +1636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1639,6 +1653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1655,6 +1670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1671,6 +1687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirWithDaylightingAngleFac.idf b/testfiles/PurchAirWithDaylightingAngleFac.idf index 84c17c5f909..6087b31f0b5 100644 --- a/testfiles/PurchAirWithDaylightingAngleFac.idf +++ b/testfiles/PurchAirWithDaylightingAngleFac.idf @@ -885,6 +885,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +917,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +934,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +951,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +968,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +985,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -996,6 +1002,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1012,6 +1019,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1036,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1044,6 +1053,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1070,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1087,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1104,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1108,6 +1121,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1138,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1140,6 +1155,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1172,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1189,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1206,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1223,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PurchAirWithDoubleFacadeDaylighting.idf b/testfiles/PurchAirWithDoubleFacadeDaylighting.idf index 80ec9386c77..86031d1a524 100644 --- a/testfiles/PurchAirWithDoubleFacadeDaylighting.idf +++ b/testfiles/PurchAirWithDoubleFacadeDaylighting.idf @@ -739,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +771,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +869,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +886,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name DOUBLE FACADE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +903,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +920,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -928,6 +937,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +954,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +971,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -976,6 +988,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -992,6 +1005,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1008,6 +1022,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1039,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1056,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1073,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1090,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1107,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1124,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1120,6 +1141,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1158,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1175,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1192,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1209,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPlugin1ZoneUncontrolledCondFD.idf b/testfiles/PythonPlugin1ZoneUncontrolledCondFD.idf index 7826322f6b4..f7e9f0c8778 100644 --- a/testfiles/PythonPlugin1ZoneUncontrolledCondFD.idf +++ b/testfiles/PythonPlugin1ZoneUncontrolledCondFD.idf @@ -310,6 +310,7 @@ Wall, !- Surface Type WallExtInsFin1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -326,6 +327,7 @@ Wall, !- Surface Type WallExtInsFin1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -342,6 +344,7 @@ Wall, !- Surface Type WallExtInsFin1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -358,6 +361,7 @@ Wall, !- Surface Type WallExtInsFin1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -374,6 +378,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +395,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -490,19 +496,32 @@ Verbose; !- EMS Runtime Language Debug Output Level Output:Variable,*,CondFD Phase Change Node Temperature 1,hourly; + Output:Variable,*,CondFD Phase Change Node Temperature 2,hourly; + Output:Variable,*,CondFD Phase Change Node Temperature 3,hourly; + Output:Variable,*,CondFD Phase Change Node Temperature 4,hourly; + Output:Variable,*,CondFD Phase Change Node Temperature 5,hourly; Output:Variable,*,CondFD Phase Change Node Conductivity 1,hourly; + Output:Variable,*,CondFD Phase Change Node Conductivity 2,hourly; + Output:Variable,*,CondFD Phase Change Node Conductivity 3,hourly; + Output:Variable,*,CondFD Phase Change Node Conductivity 4,hourly; + Output:Variable,*,CondFD Phase Change Node Conductivity 5,hourly; Output:Variable,*,CondFD Phase Change Node Specific Heat 1,hourly; + Output:Variable,*,CondFD Phase Change Node Specific Heat 2,hourly; + Output:Variable,*,CondFD Phase Change Node Specific Heat 3,hourly; + Output:Variable,*,CondFD Phase Change Node Specific Heat 4,hourly; + Output:Variable,*,CondFD Phase Change Node Specific Heat 5,hourly; + diff --git a/testfiles/PythonPluginAirflowNetworkOpeningControlByHumidity.idf b/testfiles/PythonPluginAirflowNetworkOpeningControlByHumidity.idf index a3636e058be..1e7147da926 100644 --- a/testfiles/PythonPluginAirflowNetworkOpeningControlByHumidity.idf +++ b/testfiles/PythonPluginAirflowNetworkOpeningControlByHumidity.idf @@ -606,6 +606,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -622,6 +623,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +640,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -654,6 +657,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +674,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +691,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +708,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +725,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +742,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +759,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +776,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +793,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +810,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +827,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -830,6 +844,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +861,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +878,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +895,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +912,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +929,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +946,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +963,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +980,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +997,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1014,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1031,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1048,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1065,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1054,6 +1082,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1099,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1116,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1133,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1150,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1167,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PythonPluginConstantVolumePurchasedAir.idf b/testfiles/PythonPluginConstantVolumePurchasedAir.idf index 16ec85168a7..a81c6a918ea 100644 --- a/testfiles/PythonPluginConstantVolumePurchasedAir.idf +++ b/testfiles/PythonPluginConstantVolumePurchasedAir.idf @@ -715,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +798,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +815,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +917,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +951,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1002,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1019,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1036,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1053,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1332,21 +1352,21 @@ SET Zone_1_State = 2.0, !- Program Line 2 ELSEIF (Sensible_Load_Zone_1 > 0.0), !- SET Zone_1_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_1_State = 0.0, !- ENDIF, !- IF (Sensible_Load_Zone_2 < 0.0), !- SET Zone_2_State = 2.0, !- ELSEIF (Sensible_Load_Zone_2 > 0.0), !- SET Zone_2_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_2_State = 0.0, !- ENDIF, !- IF (Sensible_Load_Zone_3 < 0.0), !- SET Zone_3_State = 2.0, !- ELSEIF (Sensible_Load_Zone_3 > 0.0), !- SET Zone_3_State = 1.0, !- - ELSE, + ELSE, !- SET Zone_3_State = 0.0, !- ENDIF; !- @@ -1360,7 +1380,7 @@ SET ZONE_1_AIR_Mdot = 0.1, !- SET ZONE_1_AIR_SupplyT = 50.0, !- SET ZONE_1_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_1_AIR_Mdot = 0.0, !- ENDIF, !- IF ( Zone_2_State == 2.0), !- @@ -1371,7 +1391,7 @@ SET ZONE_2_AIR_Mdot = 0.1, !- SET ZONE_2_AIR_SupplyT = 50.0, !- SET ZONE_2_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_2_AIR_Mdot = 0.0, !- ENDIF, !- IF ( Zone_3_State == 2.0), !- @@ -1382,7 +1402,7 @@ SET ZONE_3_AIR_Mdot = 0.15, !- SET ZONE_3_AIR_SupplyT = 50.0, !- SET ZONE_3_AIR_SupplyHumRat = 0.015, !- - ELSE, + ELSE, !- SET ZONE_3_AIR_Mdot = 0.0, !- ENDIF; !- @@ -1507,3 +1527,4 @@ Shade_Status_Interior_Blind_On, !- Variable Name 2 Zn001_Wall001_Win001_Shading_Deploy_Status, !- Variable Name 3 IncidentAngle; !- Variable Name 4 + diff --git a/testfiles/PythonPluginCurveOverride_PackagedTerminalHeatPump.idf b/testfiles/PythonPluginCurveOverride_PackagedTerminalHeatPump.idf index d3e5f69417b..db724ed35bb 100644 --- a/testfiles/PythonPluginCurveOverride_PackagedTerminalHeatPump.idf +++ b/testfiles/PythonPluginCurveOverride_PackagedTerminalHeatPump.idf @@ -757,6 +757,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +774,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +791,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +808,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +825,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +842,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +859,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +876,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +893,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +910,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +927,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +944,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +961,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +978,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +995,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -997,6 +1012,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1013,6 +1029,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1046,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1063,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1080,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginCustomOutputVariable.idf b/testfiles/PythonPluginCustomOutputVariable.idf index dc7f743459a..1978911f0c3 100644 --- a/testfiles/PythonPluginCustomOutputVariable.idf +++ b/testfiles/PythonPluginCustomOutputVariable.idf @@ -1281,6 +1281,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1298,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1315,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1332,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1349,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1361,6 +1366,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,7 +1382,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1648,6 +1655,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1689,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1811,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1848,7 +1861,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2094,6 +2108,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2125,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2186,6 +2202,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2219,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2249,7 +2269,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2495,6 +2516,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2533,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2527,6 +2550,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2567,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2559,6 +2584,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2665,6 +2691,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2680,7 +2707,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2926,6 +2954,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2942,6 +2971,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2958,6 +2988,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2974,6 +3005,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2990,6 +3022,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3006,6 +3039,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3081,7 +3115,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3327,6 +3362,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3343,6 +3379,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3359,6 +3396,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3375,6 +3413,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3391,6 +3430,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3407,6 +3447,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3423,6 +3464,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3439,6 +3481,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3455,6 +3498,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3471,6 +3515,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3487,6 +3532,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3502,6 +3548,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3517,6 +3564,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginCustomSchedule.idf b/testfiles/PythonPluginCustomSchedule.idf index 97e656543e7..9f139e14e01 100644 --- a/testfiles/PythonPluginCustomSchedule.idf +++ b/testfiles/PythonPluginCustomSchedule.idf @@ -1245,6 +1245,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1262,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1313,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,7 +1346,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1612,6 +1619,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1628,6 +1636,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1653,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1765,6 +1775,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1781,6 +1792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1797,6 +1809,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1812,7 +1825,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2058,6 +2072,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2089,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2150,6 +2166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2166,6 +2183,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2200,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2213,7 +2233,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2459,6 +2480,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2497,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2491,6 +2514,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2531,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2523,6 +2548,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2629,6 +2655,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2644,7 +2671,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2890,6 +2918,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2906,6 +2935,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2922,6 +2952,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2938,6 +2969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2954,6 +2986,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2970,6 +3003,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3045,7 +3079,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3291,6 +3326,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3307,6 +3343,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3323,6 +3360,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3339,6 +3377,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3355,6 +3394,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3371,6 +3411,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3387,6 +3428,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3403,6 +3445,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3419,6 +3462,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3435,6 +3479,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3451,6 +3496,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3466,6 +3512,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3481,6 +3528,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginCustomTrendVariable.idf b/testfiles/PythonPluginCustomTrendVariable.idf index b8264915d1a..89315db58fc 100644 --- a/testfiles/PythonPluginCustomTrendVariable.idf +++ b/testfiles/PythonPluginCustomTrendVariable.idf @@ -1281,6 +1281,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1298,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1315,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1332,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1349,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1361,6 +1366,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,7 +1382,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1648,6 +1655,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1689,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1811,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1848,7 +1861,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2094,6 +2108,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2125,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2186,6 +2202,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2219,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2249,7 +2269,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2495,6 +2516,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2533,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2527,6 +2550,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2567,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2559,6 +2584,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2665,6 +2691,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2680,7 +2707,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2926,6 +2954,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2942,6 +2971,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2958,6 +2988,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2974,6 +3005,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2990,6 +3022,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3006,6 +3039,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3081,7 +3115,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3327,6 +3362,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3343,6 +3379,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3359,6 +3396,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3375,6 +3413,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3391,6 +3430,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3407,6 +3447,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3423,6 +3464,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3439,6 +3481,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3455,6 +3498,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3471,6 +3515,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3487,6 +3532,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3502,6 +3548,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3517,6 +3564,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginDemandManager_LargeOffice.idf b/testfiles/PythonPluginDemandManager_LargeOffice.idf index 5fa6fd7b824..dedce839dd7 100644 --- a/testfiles/PythonPluginDemandManager_LargeOffice.idf +++ b/testfiles/PythonPluginDemandManager_LargeOffice.idf @@ -1308,6 +1308,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1325,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1342,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1359,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1376,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1393,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1410,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1427,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1444,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1461,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,7 +1477,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement, !- Name @@ -1699,6 +1710,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1715,6 +1727,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1731,6 +1744,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1747,6 +1761,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1763,6 +1778,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1779,6 +1795,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1794,7 +1811,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom, !- Name @@ -2081,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2097,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2113,6 +2133,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2150,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2167,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2161,6 +2184,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2176,7 +2200,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid, !- Name @@ -2463,6 +2488,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2479,6 +2505,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2495,6 +2522,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2511,6 +2539,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2527,6 +2556,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2543,6 +2573,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2558,7 +2589,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2874,6 +2906,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2905,6 +2938,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2921,6 +2955,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2937,6 +2972,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2953,6 +2989,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2969,6 +3006,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2984,7 +3022,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3245,6 +3284,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3276,6 +3316,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3333,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3308,6 +3350,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3367,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3384,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3355,7 +3400,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3616,6 +3662,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3647,6 +3694,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3663,6 +3711,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3679,6 +3728,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3695,6 +3745,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3711,6 +3762,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3726,7 +3778,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3987,6 +4040,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4018,6 +4072,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4034,6 +4089,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4050,6 +4106,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4066,6 +4123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4082,6 +4140,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4097,7 +4156,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4358,6 +4418,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4389,6 +4450,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4405,6 +4467,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4421,6 +4484,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4437,6 +4501,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4453,6 +4518,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4468,7 +4534,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4729,6 +4796,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4760,6 +4828,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4776,6 +4845,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4792,6 +4862,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4808,6 +4879,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4824,6 +4896,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4839,7 +4912,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5100,6 +5174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5116,6 +5191,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5147,6 +5223,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5163,6 +5240,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5179,6 +5257,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5195,6 +5274,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5210,7 +5290,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5471,6 +5552,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5502,6 +5584,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5518,6 +5601,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5534,6 +5618,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5550,6 +5635,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5566,6 +5652,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5581,7 +5668,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5842,6 +5930,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5873,6 +5962,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5889,6 +5979,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5905,6 +5996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5921,6 +6013,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5937,6 +6030,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5952,7 +6046,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6213,6 +6308,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6244,6 +6340,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6260,6 +6357,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6276,6 +6374,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6292,6 +6391,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6308,6 +6408,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6323,7 +6424,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6584,6 +6686,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6615,6 +6718,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6631,6 +6735,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6647,6 +6752,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6663,6 +6769,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6679,6 +6786,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6694,7 +6802,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6955,6 +7064,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6986,6 +7096,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7002,6 +7113,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7018,6 +7130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7034,6 +7147,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7050,6 +7164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7065,7 +7180,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7326,6 +7442,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7342,6 +7459,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7358,6 +7476,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7374,6 +7493,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7390,6 +7510,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7406,6 +7527,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7422,6 +7544,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7438,6 +7561,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7454,6 +7578,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7470,6 +7595,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7530,6 +7656,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7546,6 +7673,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7562,6 +7690,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7578,6 +7707,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7594,6 +7724,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7610,6 +7741,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7626,6 +7758,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7642,6 +7775,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7658,6 +7792,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7674,6 +7809,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7734,6 +7870,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7750,6 +7887,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7766,6 +7904,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7782,6 +7921,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7798,6 +7938,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7814,6 +7955,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7830,6 +7972,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7846,6 +7989,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7862,6 +8006,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7878,6 +8023,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PythonPluginDiscreteAirSystemSizes.idf b/testfiles/PythonPluginDiscreteAirSystemSizes.idf index f857bc4c18e..e656bb04c55 100644 --- a/testfiles/PythonPluginDiscreteAirSystemSizes.idf +++ b/testfiles/PythonPluginDiscreteAirSystemSizes.idf @@ -1142,6 +1142,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1159,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1174,6 +1176,7 @@ Roof, !- Surface Type roofs, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1190,6 +1193,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1236,6 +1240,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1257,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1357,7 +1363,8 @@ LGstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, LGstore1_Infiltration, !- Name @@ -1603,6 +1610,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1619,6 +1627,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1680,6 +1689,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1696,6 +1706,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1712,6 +1723,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1743,6 +1755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1758,7 +1771,8 @@ SMstore1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore1_Infiltration, !- Name @@ -2004,6 +2018,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2020,6 +2035,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2081,6 +2097,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2097,6 +2114,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2131,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2144,6 +2163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2159,7 +2179,8 @@ SMstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore2_Infiltration, !- Name @@ -2405,6 +2426,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2421,6 +2443,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2482,6 +2505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2498,6 +2522,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2514,6 +2539,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2545,6 +2571,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2560,7 +2587,8 @@ SMstore3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore3_Infiltration, !- Name @@ -2806,6 +2834,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2851,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2883,6 +2913,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2899,6 +2930,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2915,6 +2947,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2946,6 +2979,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2961,7 +2995,8 @@ SMstore4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore4_Infiltration, !- Name @@ -3207,6 +3242,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3223,6 +3259,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3239,6 +3276,7 @@ Roof, !- Surface Type roofs, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3255,6 +3293,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3301,6 +3340,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3317,6 +3357,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3422,7 +3463,8 @@ LGstore2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field ZoneInfiltration:DesignFlowRate, LGstore2_Infiltration, !- Name @@ -3668,6 +3710,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3684,6 +3727,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3745,6 +3789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3761,6 +3806,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3777,6 +3823,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3808,6 +3855,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3823,7 +3871,8 @@ SMstore5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore5_Infiltration, !- Name @@ -4069,6 +4118,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4085,6 +4135,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4146,6 +4197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4162,6 +4214,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4178,6 +4231,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4209,6 +4263,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4224,7 +4279,8 @@ SMstore6_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore6_Infiltration, !- Name @@ -4470,6 +4526,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4486,6 +4543,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4547,6 +4605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4563,6 +4622,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4579,6 +4639,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4610,6 +4671,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4625,7 +4687,8 @@ SMstore7_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore7_Infiltration, !- Name @@ -4871,6 +4934,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4887,6 +4951,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4948,6 +5013,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4964,6 +5030,7 @@ Roof, !- Surface Type roofs, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4980,6 +5047,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5011,6 +5079,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5026,7 +5095,8 @@ SMstore8_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ZoneInfiltration:DesignFlowRate, SMstore8_Infiltration, !- Name diff --git a/testfiles/PythonPluginLrgOff_GridStorageSmoothing.idf b/testfiles/PythonPluginLrgOff_GridStorageSmoothing.idf index 6e527048432..a95cd889716 100644 --- a/testfiles/PythonPluginLrgOff_GridStorageSmoothing.idf +++ b/testfiles/PythonPluginLrgOff_GridStorageSmoothing.idf @@ -858,6 +858,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +875,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +892,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +909,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +926,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +943,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +960,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +977,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +994,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1011,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1028,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1045,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1062,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1079,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1130,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1147,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1164,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1198,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1215,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1249,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1266,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1283,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1334,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1351,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1368,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1385,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1402,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1419,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1402,6 +1436,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1418,6 +1453,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1434,6 +1470,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1450,6 +1487,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1466,6 +1504,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1521,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1538,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1555,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1572,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1589,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1606,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1623,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1640,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1610,6 +1657,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1626,6 +1674,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1691,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1708,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1674,6 +1725,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1690,6 +1742,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1759,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1776,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1793,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1810,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1827,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1786,6 +1844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1878,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1895,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1850,6 +1912,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1929,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1946,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1898,6 +1963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1914,6 +1980,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1930,6 +1997,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1946,6 +2014,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1962,6 +2031,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1994,6 +2065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2082,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2026,6 +2099,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2042,6 +2116,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2133,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2074,6 +2150,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2090,6 +2167,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2184,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2201,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2218,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2154,6 +2235,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2170,6 +2252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2218,6 +2303,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2234,6 +2320,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2250,6 +2337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2266,6 +2354,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2282,6 +2371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2298,6 +2388,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2314,6 +2405,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2330,6 +2422,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2346,6 +2439,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2362,6 +2456,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2378,6 +2473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2394,6 +2490,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2410,6 +2507,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2524,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2558,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2575,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2490,6 +2592,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2506,6 +2609,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2626,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2538,6 +2643,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2554,6 +2660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2570,6 +2677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2586,6 +2694,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2602,6 +2711,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2728,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2745,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2762,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2666,6 +2779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2796,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2813,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2714,6 +2830,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2847,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2864,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2898,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2794,6 +2915,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2932,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2949,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2966,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2983,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +3000,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2890,6 +3017,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2906,6 +3034,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2922,6 +3051,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4163,97 +4293,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/PythonPluginPlantLoopOverrideControl.idf b/testfiles/PythonPluginPlantLoopOverrideControl.idf index 73e6b458663..e0acb5d90c5 100644 --- a/testfiles/PythonPluginPlantLoopOverrideControl.idf +++ b/testfiles/PythonPluginPlantLoopOverrideControl.idf @@ -764,6 +764,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +781,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +798,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +815,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +832,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +849,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +866,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +883,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +900,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +917,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +934,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +951,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +968,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +985,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1002,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1019,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1036,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1053,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1070,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1087,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1104,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1121,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1138,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1155,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1172,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1189,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1206,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1223,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1240,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-slab, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1257,7 @@ ceiling, !- Surface Type Int-floor-underside, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1274,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1260,6 +1291,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1308,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1325,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1342,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1359,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN6_S_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1340,6 +1376,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1393,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1372,6 +1410,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1427,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1444,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1461,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN7_E_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1436,6 +1478,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1495,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1512,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1484,6 +1529,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1546,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1563,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN8_N_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1532,6 +1580,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1548,6 +1597,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1564,6 +1614,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1631,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Ext-wall, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1596,6 +1648,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1665,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN9_W_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1628,6 +1682,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Space_2:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1699,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Space_2:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1716,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Space_2:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1733,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Int-Wall, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Space_2:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1750,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1767,7 @@ roof, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-2_Roof, !- Construction Name ZN10_Core_Space_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1843,61 +1903,71 @@ ZN1_S_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN1_S_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN2_E_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN2_E_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN3_N_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN3_N_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN4_W_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN4_W_Space_1, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN5_Core_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN5_Core_Space_1, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field InternalMass, ZN6_S_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN6_S_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN7_E_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN7_E_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN8_N_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN8_N_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN9_W_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN9_W_Space_2, !- Zone or ZoneList Name - 186.730; !- Surface Area {m2} + , !- Surface Area {m2} + 186.730; !- Extended Field InternalMass, ZN10_Core_Space_2, !- Name InteriorFurnishings, !- Construction Name ZN10_Core_Space_2, !- Zone or ZoneList Name - 503.079; !- Surface Area {m2} + , !- Surface Area {m2} + 503.079; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/PythonPluginPlantOperation_largeOff.idf b/testfiles/PythonPluginPlantOperation_largeOff.idf index ab7b590593f..b43d0ebacda 100644 --- a/testfiles/PythonPluginPlantOperation_largeOff.idf +++ b/testfiles/PythonPluginPlantOperation_largeOff.idf @@ -854,6 +854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +871,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +888,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +905,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +922,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +939,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +956,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +973,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +990,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1007,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1024,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1041,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1058,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1075,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1092,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1109,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1143,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1160,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1177,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1245,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1262,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1318,6 +1347,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1364,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1350,6 +1381,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1398,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1415,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1432,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1449,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1466,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1483,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1500,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1478,6 +1517,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1534,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1551,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1568,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1585,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1602,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1574,6 +1619,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1590,6 +1636,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1606,6 +1653,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1622,6 +1670,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1687,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1704,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1721,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1755,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1718,6 +1772,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1734,6 +1789,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1750,6 +1806,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,6 +1823,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1782,6 +1840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1798,6 +1857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1891,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1908,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1942,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1894,6 +1959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1910,6 +1976,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1926,6 +1993,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +2010,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +2027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2078,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2095,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2038,6 +2112,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2054,6 +2129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2163,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2197,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2214,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2231,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2166,6 +2248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2299,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2316,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2350,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2278,6 +2367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2310,6 +2401,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2326,6 +2418,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2342,6 +2435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2374,6 +2469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2390,6 +2486,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2406,6 +2503,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2520,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2554,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2470,6 +2571,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2486,6 +2588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2502,6 +2605,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2518,6 +2622,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2534,6 +2639,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2550,6 +2656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2566,6 +2673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2582,6 +2690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2707,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2614,6 +2724,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2630,6 +2741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2646,6 +2758,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2662,6 +2775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2809,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2826,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2726,6 +2843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2758,6 +2877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2774,6 +2894,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2790,6 +2911,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2806,6 +2928,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2945,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2838,6 +2962,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2854,6 +2979,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2870,6 +2996,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2886,6 +3013,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2902,6 +3030,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2918,6 +3047,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4159,97 +4289,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** @@ -7711,15 +7857,15 @@ HeatSys1 Boiler; !- Equipment 1 Name PythonPlugin:Instance, - Heating_dispatch, !- Name - Yes, !- Run During Warmup Days - PythonPluginPlantOperation_largeOff, !- Python Module Name - HeatingDispatchValues; !- Plugin Class Name + Heating_dispatch, !- Name + Yes, !- Run During Warmup Days + PythonPluginPlantOperation_largeOff, !- Python Module Name + HeatingDispatchValues; !- Plugin Class Name PlantEquipmentOperation:UserDefined, CoolSys1 Operation Scheme, !- Name Cooling_dispatch, !- Main Model Program Calling Manager Name - , !- Initialization Program Calling Manager Name + , !- Initialization Program Calling Manager Name Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type CoolSys1 Chiller 1, !- Equipment 1 Name Chiller:Electric:ReformulatedEIR, !- Equipment 2 Object Type @@ -7730,9 +7876,9 @@ totChilCap; !- Variable Name 1 PythonPlugin:Instance, - Cooling_dispatch, !- Name - Yes, !- Run During Warmup Days - PythonPluginPlantOperation_largeOff, !- Python Module Name + Cooling_dispatch, !- Name + Yes, !- Run During Warmup Days + PythonPluginPlantOperation_largeOff, !- Python Module Name InitChillerCapacityAndCoolingDispatchValues; !- Plugin Class Name PlantEquipmentOperation:UserDefined, @@ -7743,10 +7889,10 @@ TowerWaterSys CoolTower; !- Equipment 1 Name PythonPlugin:Instance, - Tower_dispatch, !- Name - Yes, !- Run During Warmup Days - PythonPluginPlantOperation_largeOff, !- Python Module Name - TowerDispatchValues; !- Plugin Class Name + Tower_dispatch, !- Name + Yes, !- Run During Warmup Days + PythonPluginPlantOperation_largeOff, !- Python Module Name + TowerDispatchValues; !- Plugin Class Name PlantLoop, CoolSys1, !- Name diff --git a/testfiles/PythonPluginReplaceTraditionalManagers_LargeOffice.idf b/testfiles/PythonPluginReplaceTraditionalManagers_LargeOffice.idf index dcb228d4888..cae14b5d49f 100644 --- a/testfiles/PythonPluginReplaceTraditionalManagers_LargeOffice.idf +++ b/testfiles/PythonPluginReplaceTraditionalManagers_LargeOffice.idf @@ -1298,6 +1298,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1315,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1332,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1349,7 @@ Wall, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1362,6 +1366,7 @@ Floor, !- Surface Type Unheated - 4in Slab with Carpet_Ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1378,6 +1383,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1400,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1417,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1434,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1451,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,7 +1467,8 @@ Basement_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field People, Basement, !- Name @@ -1689,6 +1700,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1717,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1734,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1751,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1768,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1785,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1784,7 +1801,8 @@ Core_bottom_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_bottom, !- Name @@ -2071,6 +2089,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2087,6 +2106,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2103,6 +2123,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2119,6 +2140,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2135,6 +2157,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2151,6 +2174,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2166,7 +2190,8 @@ Core_mid_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field People, Core_mid, !- Name @@ -2453,6 +2478,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2469,6 +2495,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2485,6 +2512,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2501,6 +2529,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2517,6 +2546,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2533,6 +2563,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2548,7 +2579,8 @@ Core_top_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field ZoneInfiltration:DesignFlowRate, Core_top_Infiltration, !- Name @@ -2864,6 +2896,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2895,6 +2928,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2911,6 +2945,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2927,6 +2962,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2943,6 +2979,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2959,6 +2996,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2974,7 +3012,8 @@ Perimeter_bot_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_3_Infiltration, !- Name @@ -3235,6 +3274,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3266,6 +3306,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3282,6 +3323,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3298,6 +3340,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3314,6 +3357,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3330,6 +3374,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3345,7 +3390,8 @@ Perimeter_bot_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_2_Infiltration, !- Name @@ -3606,6 +3652,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3637,6 +3684,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3653,6 +3701,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3669,6 +3718,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3685,6 +3735,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3701,6 +3752,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3716,7 +3768,8 @@ Perimeter_bot_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_1_Infiltration, !- Name @@ -3977,6 +4030,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4008,6 +4062,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4024,6 +4079,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4040,6 +4096,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4056,6 +4113,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4072,6 +4130,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4087,7 +4146,8 @@ Perimeter_bot_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_bot_ZN_4_Infiltration, !- Name @@ -4348,6 +4408,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4379,6 +4440,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4395,6 +4457,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4411,6 +4474,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4427,6 +4491,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4443,6 +4508,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4458,7 +4524,8 @@ Perimeter_mid_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_3_Infiltration, !- Name @@ -4719,6 +4786,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4750,6 +4818,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4766,6 +4835,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4782,6 +4852,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4798,6 +4869,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4814,6 +4886,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4829,7 +4902,8 @@ Perimeter_mid_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_2_Infiltration, !- Name @@ -5090,6 +5164,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5106,6 +5181,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5137,6 +5213,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5153,6 +5230,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5169,6 +5247,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5185,6 +5264,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5200,7 +5280,8 @@ Perimeter_mid_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_1_Infiltration, !- Name @@ -5461,6 +5542,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5492,6 +5574,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5508,6 +5591,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5524,6 +5608,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5540,6 +5625,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5556,6 +5642,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5571,7 +5658,8 @@ Perimeter_mid_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_mid_ZN_4_Infiltration, !- Name @@ -5832,6 +5920,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5863,6 +5952,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5879,6 +5969,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5895,6 +5986,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5911,6 +6003,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5927,6 +6020,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5942,7 +6036,8 @@ Perimeter_top_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_3_Infiltration, !- Name @@ -6203,6 +6298,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6234,6 +6330,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6250,6 +6347,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6266,6 +6364,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6282,6 +6381,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6298,6 +6398,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6313,7 +6414,8 @@ Perimeter_top_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_2_Infiltration, !- Name @@ -6574,6 +6676,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6605,6 +6708,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6621,6 +6725,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6637,6 +6742,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6653,6 +6759,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6669,6 +6776,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6684,7 +6792,8 @@ Perimeter_top_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_1_Infiltration, !- Name @@ -6945,6 +7054,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6976,6 +7086,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6992,6 +7103,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7008,6 +7120,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7024,6 +7137,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7040,6 +7154,7 @@ Wall, !- Surface Type Standard_Int-Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7055,7 +7170,8 @@ Perimeter_top_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_top_ZN_4_Infiltration, !- Name @@ -7316,6 +7432,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7332,6 +7449,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7348,6 +7466,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7364,6 +7483,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7380,6 +7500,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7396,6 +7517,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7412,6 +7534,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7428,6 +7551,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7444,6 +7568,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7460,6 +7585,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7520,6 +7646,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7536,6 +7663,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7552,6 +7680,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7568,6 +7697,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7584,6 +7714,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7600,6 +7731,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7616,6 +7748,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7632,6 +7765,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7648,6 +7782,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7664,6 +7799,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7724,6 +7860,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7740,6 +7877,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7756,6 +7894,7 @@ Roof, !- Surface Type IEAD_R-15 ci_Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7772,6 +7911,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7788,6 +7928,7 @@ Wall, !- Surface Type Mass_R-7.6 ci_Ext-wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7804,6 +7945,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7820,6 +7962,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7836,6 +7979,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7852,6 +7996,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7868,6 +8013,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7956,13 +8102,11 @@ ! Temperature, !- Control Variable {Temperature| others } ! Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name ! VAV_5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_5_SAT_setpoint, !- Name ! VAV_5 Supply Equipment Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV_5_SchedSetpoint, !- Name ! SET VAV_5_SAT_setpoint = Seasonal_Reset_SAT_Sched; !- Program Line 1 @@ -7988,19 +8132,16 @@ ! T_VAV5FanOut, !- Name ! VAV_5 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name ! System Node Temperature; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! VAV_5_CoolC_Setpoint, !- Name ! VAV_5_CoolC-VAV_5_HeatCNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Actuator, ! VAV_5_HeatC_Setpoint, !- Name ! VAV_5_HeatC-VAV_5_FanNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV5MixedAirManagers, !- Name ! SET VAV_5_CoolC_Setpoint = Seasonal_Reset_SAT_Sched - ( T_VAV5FanOut - T_VAV5FanIn), !- Program Line 1 @@ -8158,7 +8299,6 @@ ! VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name ! VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name ! VAV_5_OA-VAV_5_CoolCNode; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_5_OA_Setpoint, !- Name ! VAV_5_OA-VAV_5_CoolCNode,!- Actuated Component Unique Name @@ -8315,13 +8455,11 @@ ! Temperature, !- Control Variable {Temperature| others } ! Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name ! VAV_1_CoolC-VAV_1_HeatCNode; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_1_SAT_setpoint, !- Name ! VAV_1 Supply Equipment Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV_1_SchedSetpoint, !- Name ! SET VAV_1_SAT_setpoint = Seasonal_Reset_SAT_Sched; !- Program Line 1 @@ -8347,19 +8485,16 @@ ! T_VAV1FanOut, !- Name ! VAV_1 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name ! System Node Temperature; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! VAV_1_CoolC_Setpoint, !- Name ! VAV_1_CoolC-VAV_1_HeatCNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Actuator, ! VAV_1_HeatC_Setpoint, !- Name ! VAV_1_HeatC-VAV_1_FanNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV1MixedAirManagers, !- Name ! SET VAV_1_CoolC_Setpoint = Seasonal_Reset_SAT_Sched - ( T_VAV1FanOut - T_VAV1FanIn), !- Program Line 1 @@ -8534,7 +8669,6 @@ ! VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name ! VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name ! VAV_1_OA-VAV_1_CoolCNode; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_1_OA_Setpoint, !- Name ! VAV_1_OA-VAV_1_CoolCNode,!- Actuated Component Unique Name @@ -8694,13 +8828,11 @@ ! Temperature, !- Control Variable {Temperature| others } ! Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name ! VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_2_SAT_setpoint, !- Name ! VAV_2 Supply Equipment Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV_2_SchedSetpoint, !- Name ! SET VAV_2_SAT_setpoint = Seasonal_Reset_SAT_Sched; !- Program Line 1 @@ -8726,19 +8858,16 @@ ! T_VAV2FanOut, !- Name ! VAV_2 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name ! System Node Temperature; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! VAV_2_CoolC_Setpoint, !- Name ! VAV_2_CoolC-VAV_2_HeatCNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Actuator, ! VAV_2_HeatC_Setpoint, !- Name ! VAV_2_HeatC-VAV_2_FanNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV2MixedAirManagers, !- Name ! SET VAV_2_CoolC_Setpoint = Seasonal_Reset_SAT_Sched - ( T_VAV2FanOut - T_VAV2FanIn), !- Program Line 1 @@ -8913,7 +9042,6 @@ ! VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name ! VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name ! VAV_2_OA-VAV_2_CoolCNode; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_2_OA_Setpoint, !- Name ! VAV_2_OA-VAV_2_CoolCNode,!- Actuated Component Unique Name @@ -9073,13 +9201,11 @@ ! Temperature, !- Control Variable {Temperature| others } ! Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name ! VAV_3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_3_SAT_setpoint, !- Name ! VAV_3 Supply Equipment Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV_3_SchedSetpoint, !- Name ! SET VAV_3_SAT_setpoint = Seasonal_Reset_SAT_Sched; !- Program Line 1 @@ -9105,19 +9231,16 @@ ! T_VAV3FanOut, !- Name ! VAV_3 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name ! System Node Temperature; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! VAV_3_CoolC_Setpoint, !- Name ! VAV_3_CoolC-VAV_3_HeatCNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Actuator, ! VAV_3_HeatC_Setpoint, !- Name ! VAV_3_HeatC-VAV_3_FanNode, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! VAV3MixedAirManagers, !- Name ! SET VAV_3_CoolC_Setpoint = Seasonal_Reset_SAT_Sched - ( T_VAV3FanOut - T_VAV3FanIn), !- Program Line 1 @@ -9292,7 +9415,6 @@ ! VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name ! VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name ! VAV_3_OA-VAV_3_CoolCNode; !- Setpoint Node or NodeList Name - ! EnergyManagementSystem:Actuator, ! VAV_3_OA_Setpoint, !- Name ! VAV_3_OA-VAV_3_CoolCNode,!- Actuated Component Unique Name @@ -9442,13 +9564,11 @@ ! SHWSys1_Loop_Temp_Schedule, !- Name ! SHWSys1-Loop-Temp-Schedule, !- Output:Variable or Output:Meter Index Key Name ! Schedule Value; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! SHWSys1_Loop_Setpoint, !- Name ! SHWSys1 Supply Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! SHWSys1_SchedSetpoint, !- Name ! SET SHWSys1_Loop_Setpoint = SHWSys1_Loop_Temp_Schedule; !- Program Line 1 @@ -9751,13 +9871,11 @@ ! HW_Loop_Temp_Schedule, !- Name ! HW-Loop-Temp-Schedule, !- Output:Variable or Output:Meter Index Key Name ! Schedule Value; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! HeatSys1_Loop_Setpoint, !- Name ! HeatSys1 Supply Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! HeatSys1_SchedSetpoint, !- Name ! SET HeatSys1_Loop_Setpoint = HW_Loop_Temp_Schedule; !- Program Line 1 @@ -10208,13 +10326,11 @@ ! CW_Loop_Temp_Schedule, !- Name ! CW-Loop-Temp-Schedule, !- Output:Variable or Output:Meter Index Key Name ! Schedule Value; !- Output:Variable or Output:Meter Name - ! EnergyManagementSystem:Actuator, ! CoolSys1_Loop_Setpoint, !- Name ! CoolSys1 Supply Outlet Node, !- Actuated Component Unique Name ! System Node Setpoint, !- Actuated Component Type ! Temperature Setpoint; !- Actuated Component Control Type - ! EnergyManagementSystem:Program, ! CoolSys1_SchedSetpoint, !- Name ! SET CoolSys1_Loop_Setpoint = CW_Loop_Temp_Schedule; !- Program Line 1 diff --git a/testfiles/PythonPluginTestMathAndKill.idf b/testfiles/PythonPluginTestMathAndKill.idf index 1bc6c1df5fd..84a0c3dd679 100644 --- a/testfiles/PythonPluginTestMathAndKill.idf +++ b/testfiles/PythonPluginTestMathAndKill.idf @@ -1462,6 +1462,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1479,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1496,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1513,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1526,6 +1530,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1547,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,7 +1563,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1829,6 +1836,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1845,6 +1853,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1861,6 +1870,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1982,6 +1992,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1998,6 +2009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2014,6 +2026,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2029,7 +2042,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2275,6 +2289,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2291,6 +2306,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2367,6 +2383,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2383,6 +2400,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2399,6 +2417,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2415,6 +2434,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2430,7 +2450,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2676,6 +2697,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2692,6 +2714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2708,6 +2731,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2724,6 +2748,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2740,6 +2765,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2846,6 +2872,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2861,7 +2888,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -3107,6 +3135,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3123,6 +3152,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3139,6 +3169,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3155,6 +3186,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3171,6 +3203,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3187,6 +3220,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3262,7 +3296,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3508,6 +3543,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3524,6 +3560,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3540,6 +3577,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3556,6 +3594,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3572,6 +3611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3588,6 +3628,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3604,6 +3645,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3620,6 +3662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3636,6 +3679,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3652,6 +3696,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3668,6 +3713,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3683,6 +3729,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3698,6 +3745,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginThermochromicWindow.idf b/testfiles/PythonPluginThermochromicWindow.idf index 2c0762b6883..24a049a3362 100644 --- a/testfiles/PythonPluginThermochromicWindow.idf +++ b/testfiles/PythonPluginThermochromicWindow.idf @@ -1207,6 +1207,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1224,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1239,6 +1241,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1258,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1292,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,7 +1308,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1569,6 +1576,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1610,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1722,6 +1732,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,6 +1749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1766,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,7 +1782,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2010,6 +2024,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2026,6 +2041,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2102,6 +2118,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2135,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2152,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2169,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2165,7 +2185,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2406,6 +2427,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2444,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2461,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2478,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2470,6 +2495,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2576,6 +2602,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2591,7 +2618,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2832,6 +2860,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2848,6 +2877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2864,6 +2894,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2880,6 +2911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2945,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2987,7 +3021,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3228,6 +3263,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3244,6 +3280,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3260,6 +3297,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,6 +3314,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3331,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3308,6 +3348,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3365,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3382,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3356,6 +3399,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3372,6 +3416,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3388,6 +3433,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3403,6 +3449,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3418,6 +3465,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/PythonPluginUserDefined5ZoneAirCooled.idf b/testfiles/PythonPluginUserDefined5ZoneAirCooled.idf index 2691bfd6ed2..f50cd639a9b 100644 --- a/testfiles/PythonPluginUserDefined5ZoneAirCooled.idf +++ b/testfiles/PythonPluginUserDefined5ZoneAirCooled.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/PythonPluginUserDefinedWindACAuto.idf b/testfiles/PythonPluginUserDefinedWindACAuto.idf index 75f1ede11f5..0d0f45cb1ee 100644 --- a/testfiles/PythonPluginUserDefinedWindACAuto.idf +++ b/testfiles/PythonPluginUserDefinedWindACAuto.idf @@ -755,6 +755,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -786,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -802,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -818,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -834,6 +838,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -850,6 +855,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -882,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -898,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -914,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +957,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +974,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +991,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -994,6 +1008,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1010,6 +1025,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1042,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1059,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1076,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1093,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2349,118 +2369,118 @@ ! need to find PLR that satisifies load EnergyManagementSystem:Program, - WinAC_OnFanCycCoil_Sim_Model, - IF Qdot_Request < 0.0, - Set QdotReq = Qdot_Request, - ELSE, - Set QdotReq = 0.0, - ENDIF, - IF COOLINGCOILAVAILSCHED == 0.0, - Set QdotReq = 0.0, - ENDIF, - IF QdotReq == 0.0, - Set PrimAir_MdotIn = 0.0, - Set PrimAir_MdotOut = 0.0, - Set PrimAir_Tout = PrimAir_Tinlet, - Set PrimAir_Wout = PrimAir_Winlet, - Set tot_cool_Power = 0.0, - Set ElectPower = 0.0, - Set ElectEnergy = 0.0, - Set OA_MdotIn = 0.0, - RETURN, - ENDIF, - Set Recirc_Mdot = AirSupMdotDesign - AirOAMdotDesign, - Set Recirc_H = @HFnTdbW PrimAir_Tinlet PrimAir_Winlet, - Set OA_H = @HFnTdbW OA_Tdb OA_W, - Set Mix_H = ((Recirc_Mdot * Recirc_H) + (AirOAMdotDesign * OA_H)) / AirSupMdotDesign, - Set Mix_W = ((Recirc_Mdot * PrimAir_Winlet) + (AirOAMdotDesign * OA_W)) / AirSupMdotDesign, - Set Mix_Tdb = @TdbFnHW Mix_H Mix_W, - Set Mix_rho = @RhoAirFnPbTdbW OA_Press Mix_Tdb Mix_W, - Set FanPower = (AirSupMdotDesign * FanDeltaP) / (FanEff * Mix_rho), - Set FanPowerToAir = FanPower, - Set FanDeltaH = FanPowerToAir/AirSupMdotDesign, - Set FanOut_H = Mix_H + FanDeltaH, - Set FanOut_W = Mix_W, - Set FanOut_Tdb = @TdbFnHW FanOut_H FanOut_W, - Set FanOut_Twb = @TwbFnTdbWPb FanOut_Tdb FanOut_W OA_Press, - Set RatedCBF = 0.12666, - Set LogRatedCBF = @Ln RatedCBF, - Set A0 = (0.0 -1.0) * LogRatedCBF * AirSupMdotDesign, - Set ADiff = (0.0 - 1.0) * (A0 / AirSupMdotDesign), - Set CBF = @Exp ADiff, - Set dummy = 0.0, - Set TotCapTempModFac = @CurveValue WindACCoolCapFT FanOut_Twb OA_Tdb dummy dummy dummy, - Set TotCapFlowModFac = @CurveValue WindACCoolCapFFF 1.0 dummy dummy dummy dummy, - Set TotCap = RatedCap * TotCapTempModFac * TotCapFlowModFac, - Set HDelta = TotCap / AirSupMdotDesign, - Set H_ADP = FanOut_H - (HDelta / ( 1.0 - CBF)), - Set T_ADP = @TsatFnHPb H_ADP OA_Press, - Set W_ADP = @WfnTdbH T_ADP H_ADP, - Set H_Tin_W_ADP = @HFnTdbW FanOut_Tdb W_ADP, + WinAC_OnFanCycCoil_Sim_Model, !- Name + IF Qdot_Request < 0.0, !- Program Line 1 + Set QdotReq = Qdot_Request, !- Program Line 2 + ELSE, !- + Set QdotReq = 0.0, !- + ENDIF, !- + IF COOLINGCOILAVAILSCHED == 0.0, !- + Set QdotReq = 0.0, !- + ENDIF, !- + IF QdotReq == 0.0, !- + Set PrimAir_MdotIn = 0.0,!- + Set PrimAir_MdotOut = 0.0, !- + Set PrimAir_Tout = PrimAir_Tinlet, !- + Set PrimAir_Wout = PrimAir_Winlet, !- + Set tot_cool_Power = 0.0,!- + Set ElectPower = 0.0, !- + Set ElectEnergy = 0.0, !- + Set OA_MdotIn = 0.0, !- + RETURN, !- + ENDIF, !- + Set Recirc_Mdot = AirSupMdotDesign - AirOAMdotDesign, !- + Set Recirc_H = @HFnTdbW PrimAir_Tinlet PrimAir_Winlet, !- + Set OA_H = @HFnTdbW OA_Tdb OA_W, !- + Set Mix_H = ((Recirc_Mdot * Recirc_H) + (AirOAMdotDesign * OA_H)) / AirSupMdotDesign, !- + Set Mix_W = ((Recirc_Mdot * PrimAir_Winlet) + (AirOAMdotDesign * OA_W)) / AirSupMdotDesign, !- + Set Mix_Tdb = @TdbFnHW Mix_H Mix_W, !- + Set Mix_rho = @RhoAirFnPbTdbW OA_Press Mix_Tdb Mix_W, !- + Set FanPower = (AirSupMdotDesign * FanDeltaP) / (FanEff * Mix_rho), !- + Set FanPowerToAir = FanPower, !- + Set FanDeltaH = FanPowerToAir/AirSupMdotDesign, !- + Set FanOut_H = Mix_H + FanDeltaH, !- + Set FanOut_W = Mix_W, !- + Set FanOut_Tdb = @TdbFnHW FanOut_H FanOut_W, !- + Set FanOut_Twb = @TwbFnTdbWPb FanOut_Tdb FanOut_W OA_Press, !- + Set RatedCBF = 0.12666, !- + Set LogRatedCBF = @Ln RatedCBF, !- + Set A0 = (0.0 -1.0) * LogRatedCBF * AirSupMdotDesign, !- + Set ADiff = (0.0 - 1.0) * (A0 / AirSupMdotDesign), !- + Set CBF = @Exp ADiff, !- + Set dummy = 0.0, !- + Set TotCapTempModFac = @CurveValue WindACCoolCapFT FanOut_Twb OA_Tdb dummy dummy dummy, !- + Set TotCapFlowModFac = @CurveValue WindACCoolCapFFF 1.0 dummy dummy dummy dummy, !- + Set TotCap = RatedCap * TotCapTempModFac * TotCapFlowModFac, !- + Set HDelta = TotCap / AirSupMdotDesign, !- + Set H_ADP = FanOut_H - (HDelta / ( 1.0 - CBF)), !- + Set T_ADP = @TsatFnHPb H_ADP OA_Press, !- + Set W_ADP = @WfnTdbH T_ADP H_ADP, !- + Set H_Tin_W_ADP = @HFnTdbW FanOut_Tdb W_ADP, !- IF ((FanOut_H - H_ADP) <> 0.0), !- - Set SHR = (H_Tin_W_ADP - H_ADP)/(FanOut_H - H_ADP ), - Set SHR = @Min SHR 1.0, - ELSE, - Set SHR = 1.0, - ENDIF, - Set PLR = 1.0, - Set FullLoadOutAirEnth = FanOut_H - (TotCap/AirSupMdotDesign), - Set hTinwout = FanOut_H - ((1.0 - SHR) * HDelta), - IF (SHR < 1.0), - Set FullLoadOutAirHumRat = @WFnTdbH FanOut_Tdb hTinwout, - ELSE, - Set FullLoadOutAirHumRat = FanOut_W, - ENDIF, - Set FullLoadOutAirTemp = @TdbFnHW FullLoadOutAirEnth FullLoadOutAirHumRat, - Set DesiredZone_H = @HFnTdbW ZoneCoolTstat PrimAir_Winlet, - Set FullTotCapSens = AirSupMdotDesign * (DesiredZone_H - FullLoadOutAirEnth), - Set ABS_FullTotCapSens = @ABS FullTotCapSens, - Set ABS_QdotReq = @ABS QdotReq, - IF ABS_QdotReq < ABS_FullTotCapSens, - Set PLR = (ABS_QdotReq - FanPowerToAir)/ (ABS_FullTotCapSens - FanPowerToAir), - Set ErrorTol = 0.0005, - Set Iter = 0, - Set MaxIter = 30, - Set Relax = 0.8, - Set ABS_Error = 0.002, - WHILE (ABS_Error > ErrorTol) && (Iter < MaxIter), - Set OutAir_H = (PLR*FullLoadOutAirEnth) + ((1.0-PLR)* FanOut_H), - Set OutAir_W = (PLR*FullLoadOutAirHumRat) + ((1.0-PLR)*FanOut_W), - Set OutletAirTemp = @TdbFnHW OutAir_H OutAir_W, - Set TotCapTest = AirSupMdotDesign * (DesiredZone_H - OutAir_H), - Set Error = (ABS_QdotReq - TotCapTest)/ABS_QdotReq, - Set ABS_Error = @ABS Error, - IF (ABS_Error > ErrorTol), - Set DelPLR = (ABS_QdotReq - TotCapTest) / ABS_FullTotCapSens, - Set PLR = PLR + Relax * DelPLR, - Set PLR = @min PLR 1.0, - ENDIF, - Set Iter = Iter + 1, - If (Iter == 16), - Set Relax = 0.5, - ENDIF, - ENDWHILE, - ELSE, - Set PLR = 1.0, - Set OutAir_H = FullLoadOutAirEnth, - Set OutAir_W = FullLoadOutAirHumRat, - Set OutletAirTemp = FullLoadOutAirTemp, - ENDIF, - Set PLF = @CurveValue WindACPLFFPLR PLR dummy dummy dummy dummy, - Set CoilRTF = PLR / PLF, - Set CoilRTF = @Min CoilRTF 1.0, - Set EIRTempModFac = @CurveValue WindACEIRFT FanOut_Twb OA_Tdb dummy dummy dummy, - Set EIRFlowModFac = @CurveValue WindACEIRFFF 1.0 dummy dummy dummy dummy, - Set EIR = RatedEIR * EIRTempModFac * EIRFlowModFac, - Set DXElecPower = TotCap * CoilRTF * EIR, - Set ElectPower = DXElecPower + FanPower, - Set ElectEnergy = ElectPower * SystemTimeStep * 3600, - Set tot_cool_Power = ABS_FullTotCapSens * PLR, - Set PrimAir_MdotOut = AirSupMdotDesign, - Set PrimAir_MdotIn = AirSupMdotDesign, - Set PrimAir_Tout = OutletAirTemp, - SEt PrimAir_Wout = OutAir_W, - Set OA_MdotIn = AirOAMdotDesign; + Set SHR = (H_Tin_W_ADP - H_ADP)/(FanOut_H - H_ADP ), !- + Set SHR = @Min SHR 1.0, !- + ELSE, !- + Set SHR = 1.0, !- + ENDIF, !- + Set PLR = 1.0, !- + Set FullLoadOutAirEnth = FanOut_H - (TotCap/AirSupMdotDesign), !- + Set hTinwout = FanOut_H - ((1.0 - SHR) * HDelta), !- + IF (SHR < 1.0), !- + Set FullLoadOutAirHumRat = @WFnTdbH FanOut_Tdb hTinwout, !- + ELSE, !- + Set FullLoadOutAirHumRat = FanOut_W, !- + ENDIF, !- + Set FullLoadOutAirTemp = @TdbFnHW FullLoadOutAirEnth FullLoadOutAirHumRat, !- + Set DesiredZone_H = @HFnTdbW ZoneCoolTstat PrimAir_Winlet, !- + Set FullTotCapSens = AirSupMdotDesign * (DesiredZone_H - FullLoadOutAirEnth), !- + Set ABS_FullTotCapSens = @ABS FullTotCapSens, !- + Set ABS_QdotReq = @ABS QdotReq, !- + IF ABS_QdotReq < ABS_FullTotCapSens, !- + Set PLR = (ABS_QdotReq - FanPowerToAir)/ (ABS_FullTotCapSens - FanPowerToAir), !- + Set ErrorTol = 0.0005, !- + Set Iter = 0, !- + Set MaxIter = 30, !- + Set Relax = 0.8, !- + Set ABS_Error = 0.002, !- + WHILE (ABS_Error > ErrorTol) && (Iter < MaxIter), !- + Set OutAir_H = (PLR*FullLoadOutAirEnth) + ((1.0-PLR)* FanOut_H), !- + Set OutAir_W = (PLR*FullLoadOutAirHumRat) + ((1.0-PLR)*FanOut_W), !- + Set OutletAirTemp = @TdbFnHW OutAir_H OutAir_W, !- + Set TotCapTest = AirSupMdotDesign * (DesiredZone_H - OutAir_H), !- + Set Error = (ABS_QdotReq - TotCapTest)/ABS_QdotReq, !- + Set ABS_Error = @ABS Error, !- + IF (ABS_Error > ErrorTol), !- + Set DelPLR = (ABS_QdotReq - TotCapTest) / ABS_FullTotCapSens, !- + Set PLR = PLR + Relax * DelPLR, !- + Set PLR = @min PLR 1.0, !- + ENDIF, !- + Set Iter = Iter + 1, !- + If (Iter == 16), !- + Set Relax = 0.5, !- + ENDIF, !- + ENDWHILE, !- + ELSE, !- + Set PLR = 1.0, !- + Set OutAir_H = FullLoadOutAirEnth, !- + Set OutAir_W = FullLoadOutAirHumRat, !- + Set OutletAirTemp = FullLoadOutAirTemp, !- + ENDIF, !- + Set PLF = @CurveValue WindACPLFFPLR PLR dummy dummy dummy dummy, !- + Set CoilRTF = PLR / PLF, !- + Set CoilRTF = @Min CoilRTF 1.0, !- + Set EIRTempModFac = @CurveValue WindACEIRFT FanOut_Twb OA_Tdb dummy dummy dummy, !- + Set EIRFlowModFac = @CurveValue WindACEIRFFF 1.0 dummy dummy dummy dummy, !- + Set EIR = RatedEIR * EIRTempModFac * EIRFlowModFac, !- + Set DXElecPower = TotCap * CoilRTF * EIR, !- + Set ElectPower = DXElecPower + FanPower, !- + Set ElectEnergy = ElectPower * SystemTimeStep * 3600, !- + Set tot_cool_Power = ABS_FullTotCapSens * PLR, !- + Set PrimAir_MdotOut = AirSupMdotDesign, !- + Set PrimAir_MdotIn = AirSupMdotDesign, !- + Set PrimAir_Tout = OutletAirTemp, !- + SEt PrimAir_Wout = OutAir_W, !- + Set OA_MdotIn = AirOAMdotDesign; !- EnergyManagementSystem:GlobalVariable, PrimAir_Tinlet, !- Erl Variable 1 Name diff --git a/testfiles/PythonPluginWindowShadeControl.idf b/testfiles/PythonPluginWindowShadeControl.idf index feecf3b62e8..d86ff05be03 100644 --- a/testfiles/PythonPluginWindowShadeControl.idf +++ b/testfiles/PythonPluginWindowShadeControl.idf @@ -707,6 +707,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -754,6 +756,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +773,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +790,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -802,6 +807,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -818,6 +824,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -834,6 +841,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +858,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -866,6 +875,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +892,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +909,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +926,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +960,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +977,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +994,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1011,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1028,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1045,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/QTFtest.idf b/testfiles/QTFtest.idf index 90938ee86c2..8dd74c691c4 100644 --- a/testfiles/QTFtest.idf +++ b/testfiles/QTFtest.idf @@ -281,6 +281,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -297,6 +298,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -313,6 +315,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -329,6 +332,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -345,6 +349,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -361,6 +366,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/RadHiTempElecTermReheat.idf b/testfiles/RadHiTempElecTermReheat.idf index 4d4a90fa74a..eed6730be2e 100644 --- a/testfiles/RadHiTempElecTermReheat.idf +++ b/testfiles/RadHiTempElecTermReheat.idf @@ -413,7 +413,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -636,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +719,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +736,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +753,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +770,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +838,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +855,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +957,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +974,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/RadHiTempGasCtrlOpt.idf b/testfiles/RadHiTempGasCtrlOpt.idf index 06f039ce78b..e97b6e2953c 100644 --- a/testfiles/RadHiTempGasCtrlOpt.idf +++ b/testfiles/RadHiTempGasCtrlOpt.idf @@ -407,7 +407,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -630,6 +630,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -661,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -677,6 +679,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -693,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -709,6 +713,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -725,6 +730,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -757,6 +764,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +781,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +798,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +815,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +832,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +849,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +883,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +900,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +917,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +934,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +951,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +968,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/RadHiTempGasTermReheat.idf b/testfiles/RadHiTempGasTermReheat.idf index 35986206873..ce00425f05d 100644 --- a/testfiles/RadHiTempGasTermReheat.idf +++ b/testfiles/RadHiTempGasTermReheat.idf @@ -413,7 +413,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -636,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +719,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +736,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +753,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +770,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +838,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +855,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +957,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +974,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/RadLoHydrHeatCoolAuto.idf b/testfiles/RadLoHydrHeatCoolAuto.idf index d14f174f768..68007b90965 100644 --- a/testfiles/RadLoHydrHeatCoolAuto.idf +++ b/testfiles/RadLoHydrHeatCoolAuto.idf @@ -438,7 +438,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -867,6 +867,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -898,6 +899,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -914,6 +916,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +933,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +950,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +967,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +984,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -994,6 +1001,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1010,6 +1018,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1035,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1052,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1069,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1086,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1103,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1120,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1122,6 +1137,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1138,6 +1154,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1154,6 +1171,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1170,6 +1188,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1205,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1874,120 +1894,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.013, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.013, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - , !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - , !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + , !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + , !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.013, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - CapacityPerFloorArea, !- Heating_Design_Capacity_Method - 156.94370330083649, !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CapacityPerFloorArea, !- Cooling_Design_Capacity_Method - 139.91913569011186, !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.013, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + CapacityPerFloorArea, !- Heating Design Capacity Method + 156.94370330083649, !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CapacityPerFloorArea, !- Cooling Design Capacity Method + 139.91913569011186, !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - , !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - , !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + , !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + , !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.013, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - FractionOfAutosizedHeatingCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - 1.0, !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - FractionOfAutosizedCoolingCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - 1.0, !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.013, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + FractionOfAutosizedHeatingCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + 1.0, !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + FractionOfAutosizedCoolingCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + 1.0, !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2030,7 +2050,7 @@ Output:Variable,*,Surface Internal User Specified Location Temperature,timestep; Output:Variable,*,HVAC System Solver Iteration Count,timestep; - + Output:Variable,HW Supply Inlet Node,System Node Mass Flow Rate,timestep; Output:VariableDictionary,Regular; diff --git a/testfiles/RadLoHydrHeatCoolAutoCondFD.idf b/testfiles/RadLoHydrHeatCoolAutoCondFD.idf index 2ee601b0bb9..893091bb14a 100644 --- a/testfiles/RadLoHydrHeatCoolAutoCondFD.idf +++ b/testfiles/RadLoHydrHeatCoolAutoCondFD.idf @@ -656,7 +656,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -716,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1397,78 +1417,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - autosize, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - autosize, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - autosize, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + autosize, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + autosize, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + autosize, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.013, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.013, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== diff --git a/testfiles/RadLoTempCFloChangeoverDelay.idf b/testfiles/RadLoTempCFloChangeoverDelay.idf index aa742577f94..b5eb4bfce28 100644 --- a/testfiles/RadLoTempCFloChangeoverDelay.idf +++ b/testfiles/RadLoTempCFloChangeoverDelay.idf @@ -121,7 +121,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -369,11 +371,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -570,6 +572,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +604,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +621,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -633,6 +638,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -649,6 +655,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +672,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +689,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +706,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -713,6 +723,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -729,6 +740,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -745,6 +757,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +774,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +791,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +808,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +825,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -825,6 +842,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +859,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +876,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +893,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +910,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1766,123 +1788,123 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 1.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedW; !- Changeover delay schedule + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 1.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedW; !- Changeover Delay Time Period Schedule ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedE; !- Changeover delay schedule + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedE; !- Changeover Delay Time Period Schedule ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedN; !- Changeover delay schedule + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedN; !- Changeover Delay Time Period Schedule Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -1957,25 +1979,25 @@ AllSummary; !- Report 1 Name Schedule:Compact, - ChangeoverSchedW, !- Name + ChangeoverSchedW, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, - ChangeoverSchedE, !- Name + ChangeoverSchedE, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, - ChangeoverSchedN, !- Name + ChangeoverSchedN, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, ACTIVITY SCH, !- Name diff --git a/testfiles/RadLoTempCFloCtrlOpt2.idf b/testfiles/RadLoTempCFloCtrlOpt2.idf index b998580a0fd..79e25d69648 100644 --- a/testfiles/RadLoTempCFloCtrlOpt2.idf +++ b/testfiles/RadLoTempCFloCtrlOpt2.idf @@ -127,7 +127,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -360,7 +362,7 @@ EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 4 Construction, @@ -439,11 +441,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -704,6 +706,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +738,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +755,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +772,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +789,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +806,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +823,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +840,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +874,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +891,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +908,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +925,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +942,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +959,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +976,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +993,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1010,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1027,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1044,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1900,120 +1922,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.00015, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 225000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.00015, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 225000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OperativeTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OperativeTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0001, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 225000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp2, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp2, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp2, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp2, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0001, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 225000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp2, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp2, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp2, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp2, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - SurfaceFaceTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + SurfaceFaceTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0001, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 225000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp3, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp3, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp3, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp3, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0001, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 225000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp3, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp3, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp3, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp3, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - SurfaceInteriorTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + SurfaceInteriorTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2178,7 +2200,7 @@ Until: 18:00,0.50, !- Field 9 Until: 24:00,5.00E-002, !- Field 11 For: Sunday Saturday Holiday WinterDesignDay CustomDay1 CustomDay2, !- Field 13 - Until: 24:00,5.00E-002; !- Field 14 + Until: 24:00,5.00E-002; !- Field 14 Schedule:Compact, ON PEAK, !- Name @@ -2255,75 +2277,75 @@ Until: 24:00,15.00; !- Field 3 Schedule:Compact, - RADHEATHIGHCONTROLTEMP2, !- Name + RADHEATHIGHCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,20.0, - Until: 17:00,25.0, - Until: 24:00,20.0, - Through: 10/31, - For: Alldays, - Until: 24:00,9.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,20.0, - Until: 17:00,25.0, - Until: 24:00,20.0; + Until: 7:00,20.0, !- Field 3 + Until: 17:00,25.0, !- Field 5 + Until: 24:00,20.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,9.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,20.0, !- Field 15 + Until: 17:00,25.0, !- Field 17 + Until: 24:00,20.0; !- Field 19 Schedule:Compact, - RADHEATLOWCONTROLTEMP2, !- Name + RADHEATLOWCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,15.0, - Until: 17:00,20.0, - Until: 24:00,15.0, - Through: 10/31, - For: Alldays, - Until: 24:00,3.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,15.0, - Until: 17:00,20.0, - Until: 24:00,15.0; + Until: 7:00,15.0, !- Field 3 + Until: 17:00,20.0, !- Field 5 + Until: 24:00,15.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,3.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,15.0, !- Field 15 + Until: 17:00,20.0, !- Field 17 + Until: 24:00,15.0; !- Field 19 Schedule:Compact, - RADHEATHIGHCONTROLTEMP3, !- Name + RADHEATHIGHCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,22.0, - Until: 17:00,27.0, - Until: 24:00,22.0, - Through: 10/31, - For: Alldays, - Until: 24:00,9.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,22.0, - Until: 17:00,27.0, - Until: 24:00,22.0; + Until: 7:00,22.0, !- Field 3 + Until: 17:00,27.0, !- Field 5 + Until: 24:00,22.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,9.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,22.0, !- Field 15 + Until: 17:00,27.0, !- Field 17 + Until: 24:00,22.0; !- Field 19 Schedule:Compact, - RADHEATLOWCONTROLTEMP3, !- Name + RADHEATLOWCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,17.0, - Until: 17:00,22.0, - Until: 24:00,17.0, - Through: 10/31, - For: Alldays, - Until: 24:00,3.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,17.0, - Until: 17:00,22.0, - Until: 24:00,17.0; + Until: 7:00,17.0, !- Field 3 + Until: 17:00,22.0, !- Field 5 + Until: 24:00,17.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,3.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,17.0, !- Field 15 + Until: 17:00,22.0, !- Field 17 + Until: 24:00,17.0; !- Field 19 Schedule:Compact, - RADCOOLHIGHWATERTEMP, !- Name + RADCOOLHIGHWATERTEMP, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 @@ -2334,7 +2356,7 @@ TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,7.00; !- Field 3 + Until: 24:00,7.00; !- Field 3 Schedule:Compact, RADCOOLHIGHCONTROLTEMP, !- Name @@ -2351,61 +2373,62 @@ Until: 24:00,20.00; !- Field 3 Schedule:Compact, - RADCOOLHIGHCONTROLTEMP2, !- Name + RADCOOLHIGHCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,40.0, - Through: 10/31, - For: Alldays, - Until: 7:00,22.0, - Until: 17:00,18.0, - Until: 24:00,22.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,40.0; !- Field 3 + Until: 24:00,40.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,22.0, !- Field 7 + Until: 17:00,18.0, !- Field 9 + Until: 24:00,22.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,40.0; !- Field 15 Schedule:Compact, - RADCOOLLOWCONTROLTEMP2, !- Name + RADCOOLLOWCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,36.0, - Through: 10/31, - For: Alldays, - Until: 7:00,20.0, - Until: 17:00,16.0, - Until: 24:00,20.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,36.0; !- Field 3 + Until: 24:00,36.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,20.0, !- Field 7 + Until: 17:00,16.0, !- Field 9 + Until: 24:00,20.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,36.0; !- Field 15 Schedule:Compact, - RADCOOLHIGHCONTROLTEMP3, !- Name + RADCOOLHIGHCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,40.0, - Through: 10/31, - For: Alldays, - Until: 7:00,20.0, - Until: 17:00,16.0, - Until: 24:00,20.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,40.0; !- Field 3 + Until: 24:00,40.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,20.0, !- Field 7 + Until: 17:00,16.0, !- Field 9 + Until: 24:00,20.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,40.0; !- Field 15 Schedule:Compact, - RADCOOLLOWCONTROLTEMP3, !- Name + RADCOOLLOWCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,36.0, - Through: 10/31, - For: Alldays, - Until: 7:00,18.0, - Until: 17:00,14.0, - Until: 24:00,18.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,36.0; !- Field 3 + Until: 24:00,36.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,18.0, !- Field 7 + Until: 17:00,14.0, !- Field 9 + Until: 24:00,18.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,36.0; !- Field 15 + diff --git a/testfiles/RadLoTempCFloCtrlOpt3.idf b/testfiles/RadLoTempCFloCtrlOpt3.idf index 485d1ef7d66..76c947b69a2 100644 --- a/testfiles/RadLoTempCFloCtrlOpt3.idf +++ b/testfiles/RadLoTempCFloCtrlOpt3.idf @@ -127,7 +127,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -360,7 +362,7 @@ EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 4 Construction, @@ -439,11 +441,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -704,6 +706,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +738,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +755,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +772,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +789,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +806,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +823,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +840,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +874,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +891,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +908,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +925,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +942,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +959,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +976,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +993,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1010,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1027,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1044,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1900,120 +1922,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0002, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0002, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanRadiantTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanRadiantTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0001, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp2, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp2, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp2, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp2, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0001, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp2, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp2, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp2, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp2, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OutdoorDryBulbTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OutdoorDryBulbTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0001, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp2, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp2, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp3, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp3, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0001, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp2, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp2, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp3, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp3, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OutdoorWetBulbTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OutdoorWetBulbTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; @@ -2180,7 +2202,7 @@ Until: 18:00,0.50, !- Field 9 Until: 24:00,5.00E-002, !- Field 11 For: Sunday Saturday Holiday WinterDesignDay CustomDay1 CustomDay2, !- Field 13 - Until: 24:00,5.00E-002; !- Field 14 + Until: 24:00,5.00E-002; !- Field 14 Schedule:Compact, ON PEAK, !- Name @@ -2248,12 +2270,12 @@ Through: 4/30, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,21.00, !- Field 3 - Through: 10/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,11.00, !- Field 3 - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,21.00; !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00,11.00, !- Field 7 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,21.00; !- Field 11 Schedule:Compact, RADHEATLOWCONTROLTEMP, !- Name @@ -2261,49 +2283,49 @@ Through: 4/30, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,5.00, !- Field 3 - Through: 10/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,15.00, !- Field 3 - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,5.00; !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00,15.00, !- Field 7 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,5.00; !- Field 11 Schedule:Compact, - RADHEATHIGHCONTROLTEMP2, !- Name + RADHEATHIGHCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,10.0, - Until: 17:00,15.0, - Until: 24:00,10.0, - Through: 10/31, - For: Alldays, - Until: 24:00,9.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,20.0, - Until: 17:00,25.0, - Until: 24:00,20.0; + Until: 7:00,10.0, !- Field 3 + Until: 17:00,15.0, !- Field 5 + Until: 24:00,10.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,9.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,20.0, !- Field 15 + Until: 17:00,25.0, !- Field 17 + Until: 24:00,20.0; !- Field 19 Schedule:Compact, - RADHEATLOWCONTROLTEMP2, !- Name + RADHEATLOWCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 7:00,5.0, - Until: 17:00,10.0, - Until: 24:00,5.0, - Through: 10/31, - For: Alldays, - Until: 24:00,3.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 7:00,15.0, - Until: 17:00,20.0, - Until: 24:00,15.0; + Until: 7:00,5.0, !- Field 3 + Until: 17:00,10.0, !- Field 5 + Until: 24:00,5.0, !- Field 7 + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,3.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,15.0, !- Field 15 + Until: 17:00,20.0, !- Field 17 + Until: 24:00,15.0; !- Field 19 Schedule:Compact, - RADCOOLHIGHWATERTEMP, !- Name + RADCOOLHIGHWATERTEMP, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 @@ -2314,20 +2336,20 @@ TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,7.00; !- Field 3 + Until: 24:00,7.00; !- Field 3 Schedule:Compact, RADCOOLHIGHCONTROLTEMP, !- Name TEMPERATURE, !- Schedule Type Limits Name - Through: 4/30, !- Field 1 + Through: 4/30, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,32.00, !- Field 3 - Through: 10/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,22.00, !- Field 3 - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,32.00; !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00,22.00, !- Field 7 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,32.00; !- Field 11 Schedule:Compact, RADCOOLLOWCONTROLTEMP, !- Name @@ -2335,69 +2357,70 @@ Through: 4/30, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,30.00, !- Field 3 - Through: 10/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,20.00, !- Field 3 - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,30.00; !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00,20.00, !- Field 7 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,30.00; !- Field 11 Schedule:Compact, - RADCOOLHIGHCONTROLTEMP2, !- Name + RADCOOLHIGHCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,40.0, - Through: 10/31, - For: Alldays, - Until: 7:00,24.0, - Until: 17:00,20.0, - Until: 24:00,24.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,40.0; !- Field 3 + Until: 24:00,40.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,24.0, !- Field 7 + Until: 17:00,20.0, !- Field 9 + Until: 24:00,24.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,40.0; !- Field 15 Schedule:Compact, - RADCOOLLOWCONTROLTEMP2, !- Name + RADCOOLLOWCONTROLTEMP2, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,36.0, - Through: 10/31, - For: Alldays, - Until: 7:00,20.0, - Until: 17:00,16.0, - Until: 24:00,20.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,36.0; !- Field 3 + Until: 24:00,36.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,20.0, !- Field 7 + Until: 17:00,16.0, !- Field 9 + Until: 24:00,20.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,36.0; !- Field 15 Schedule:Compact, - RADCOOLHIGHCONTROLTEMP3, !- Name + RADCOOLHIGHCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,40.0, - Through: 10/31, - For: Alldays, - Until: 7:00,18.0, - Until: 17:00,12.0, - Until: 24:00,18.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,40.0; !- Field 3 + Until: 24:00,40.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,18.0, !- Field 7 + Until: 17:00,12.0, !- Field 9 + Until: 24:00,18.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,40.0; !- Field 15 Schedule:Compact, - RADCOOLLOWCONTROLTEMP3, !- Name + RADCOOLLOWCONTROLTEMP3, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,36.0, - Through: 10/31, - For: Alldays, - Until: 7:00,16.0, - Until: 17:00,10.0, - Until: 24:00,16.0, - Through: 12/31, !- Field 1 - For: Alldays, !- Field 2 - Until: 24:00,36.0; !- Field 3 + Until: 24:00,36.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,16.0, !- Field 7 + Until: 17:00,10.0, !- Field 9 + Until: 24:00,16.0, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,36.0; !- Field 15 + diff --git a/testfiles/RadLoTempCFloHeatCool.idf b/testfiles/RadLoTempCFloHeatCool.idf index ab4b2133ce0..173ff8fc583 100644 --- a/testfiles/RadLoTempCFloHeatCool.idf +++ b/testfiles/RadLoTempCFloHeatCool.idf @@ -436,7 +436,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -701,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1897,120 +1917,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - SimpleOff, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + SimpleOff, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - VariableOff, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + VariableOff, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2268,3 +2288,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,22.00; !- Field 3 + diff --git a/testfiles/RadLoTempCFloHeatCoolCondFD.idf b/testfiles/RadLoTempCFloHeatCoolCondFD.idf index ed52d864b4a..fae5d778c44 100644 --- a/testfiles/RadLoTempCFloHeatCoolCondFD.idf +++ b/testfiles/RadLoTempCFloHeatCoolCondFD.idf @@ -680,7 +680,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -740,6 +740,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +757,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +774,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -788,6 +791,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -804,6 +808,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +825,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +842,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -852,6 +859,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +876,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +893,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -900,6 +910,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +927,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +944,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +961,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +978,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +995,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -996,6 +1012,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1029,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1046,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1063,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1297,120 +1317,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - SimpleOff, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + SimpleOff, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - SimpleOff, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + SimpleOff, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== @@ -2419,3 +2439,4 @@ Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + diff --git a/testfiles/RadLoTempCFloHeatCoolRMT.idf b/testfiles/RadLoTempCFloHeatCoolRMT.idf index 49f78b9ffea..27d0a7b5f05 100644 --- a/testfiles/RadLoTempCFloHeatCoolRMT.idf +++ b/testfiles/RadLoTempCFloHeatCoolRMT.idf @@ -125,7 +125,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1 Heating, !- Name @@ -450,11 +452,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -715,6 +717,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +749,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +766,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +783,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +800,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +817,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +834,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +851,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +868,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +885,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +902,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +919,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +936,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +953,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +970,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +987,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1004,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1021,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1038,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1055,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1911,120 +1933,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - RunningMeanOutdoorDryBulbTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + RunningMeanOutdoorDryBulbTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - RunningMeanOutdoorDryBulbTemperature, !- Temperature_Control_Type - 0.6, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + RunningMeanOutdoorDryBulbTemperature, !- Temperature Control Type + 0.6, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - RunningMeanOutdoorDryBulbTemperature, !- Temperature_Control_Type - 0.5, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + RunningMeanOutdoorDryBulbTemperature, !- Temperature Control Type + 0.5, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; @@ -2261,7 +2283,7 @@ TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,-10.00; !- Field 3 + Until: 24:00,-10.00; !- Field 3 Schedule:Compact, RADCOOLHIGHWATERTEMP, !- Name @@ -2290,3 +2312,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,20.00; !- Field 3 + diff --git a/testfiles/RadLoTempCFloHeatCool_AddedAutosizing.idf b/testfiles/RadLoTempCFloHeatCool_AddedAutosizing.idf index 91b41cc2325..bc3b1b58601 100644 --- a/testfiles/RadLoTempCFloHeatCool_AddedAutosizing.idf +++ b/testfiles/RadLoTempCFloHeatCool_AddedAutosizing.idf @@ -436,7 +436,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -701,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1962,94 +1982,94 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - Autosize, !- Hydronic_Tubing_Length - Autosize, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + Autosize, !- Hydronic Tubing Length {m} + Autosize, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2317,3 +2337,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,22.00; !- Field 3 + diff --git a/testfiles/RadLoTempCFloISOPipeHT.idf b/testfiles/RadLoTempCFloISOPipeHT.idf index 8ec79a046d5..e4fa08fe080 100644 --- a/testfiles/RadLoTempCFloISOPipeHT.idf +++ b/testfiles/RadLoTempCFloISOPipeHT.idf @@ -124,7 +124,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -434,11 +436,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -699,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +784,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +801,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +903,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +920,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1022,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1039,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1895,120 +1917,120 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - SimpleOff, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + SimpleOff, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0004, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0004, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - VariableOff, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + VariableOff, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.0005, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 75000, !- Rated_Pump_Head - 50, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - RadCoolHighWaterTemp, !- Cooling_High_Water_Temperature_Schedule_Name - RadCoolLowWaterTemp, !- Cooling_Low_Water_Temperature_Schedule_Name - RadCoolHighControlTemp, !- Cooling_High_Control_Temperature_Schedule_Name - RadCoolLowControlTemp, !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.0005, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 75000, !- Rated Pump Head {Pa} + 50, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + RadCoolHighWaterTemp, !- Cooling High Water Temperature Schedule Name + RadCoolLowWaterTemp, !- Cooling Low Water Temperature Schedule Name + RadCoolHighControlTemp, !- Cooling High Control Temperature Schedule Name + RadCoolLowControlTemp, !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; diff --git a/testfiles/RadLoTempCFloTermReheat.idf b/testfiles/RadLoTempCFloTermReheat.idf index 1b15c64837b..2a4081d5407 100644 --- a/testfiles/RadLoTempCFloTermReheat.idf +++ b/testfiles/RadLoTempCFloTermReheat.idf @@ -413,7 +413,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -678,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +710,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -725,6 +727,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +744,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +761,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +778,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +795,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +812,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +829,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +846,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +863,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +880,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +897,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +914,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +931,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +948,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +965,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +982,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +999,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1016,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2134,94 +2154,94 @@ ZoneHVAC:LowTemperatureRadiant:ConstantFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.00008, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 80000, !- Rated_Pump_Head - 10, !- Rated_Power_Consumption - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Cooling_High_Water_Temperature_Schedule_Name - , !- Cooling_Low_Water_Temperature_Schedule_Name - , !- Cooling_High_Control_Temperature_Schedule_Name - , !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.00008, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 80000, !- Rated Pump Head {Pa} + 10, !- Rated Power Consumption {W} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Cooling High Water Temperature Schedule Name + , !- Cooling Low Water Temperature Schedule Name + , !- Cooling High Control Temperature Schedule Name + , !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.00008, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 80000, !- Rated_Pump_Head - 10, !- Rated_Power_Consumption - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Cooling_High_Water_Temperature_Schedule_Name - , !- Cooling_Low_Water_Temperature_Schedule_Name - , !- Cooling_High_Control_Temperature_Schedule_Name - , !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.00008, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 80000, !- Rated Pump Head {Pa} + 10, !- Rated Power Consumption {W} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Cooling High Water Temperature Schedule Name + , !- Cooling Low Water Temperature Schedule Name + , !- Cooling High Control Temperature Schedule Name + , !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - 0.00010, !- Rated_Flow_Rate - , !- Pump_Flow_Rate_Schedule_Name - 60000, !- Rated_Pump_Head - 10, !- Rated_Power_Consumption - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - RadHeatHighWaterTemp, !- Heating_High_Water_Temperature_Schedule_Name - RadHeatLowWaterTemp, !- Heating_Low_Water_Temperature_Schedule_Name - RadHeatHighControlTemp, !- Heating_High_Control_Temperature_Schedule_Name - RadHeatLowControlTemp, !- Heating_Low_Control_Temperature_Schedule_Name - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Cooling_High_Water_Temperature_Schedule_Name - , !- Cooling_Low_Water_Temperature_Schedule_Name - , !- Cooling_High_Control_Temperature_Schedule_Name - , !- Cooling_Low_Control_Temperature_Schedule_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + 0.00010, !- Rated Flow Rate {m3/s} + , !- Pump Flow Rate Schedule Name + 60000, !- Rated Pump Head {Pa} + 10, !- Rated Power Consumption {W} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + RadHeatHighWaterTemp, !- Heating High Water Temperature Schedule Name + RadHeatLowWaterTemp, !- Heating Low Water Temperature Schedule Name + RadHeatHighControlTemp, !- Heating High Control Temperature Schedule Name + RadHeatLowControlTemp, !- Heating Low Control Temperature Schedule Name + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Cooling High Water Temperature Schedule Name + , !- Cooling Low Water Temperature Schedule Name + , !- Cooling High Control Temperature Schedule Name + , !- Cooling Low Control Temperature Schedule Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:ConstantFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - 0.8, !- Running_Mean_Outdoor_DryBulb_Temperature_Weighting_Factor - 0.87, !- Motor_Efficiency - 0.1, !- Fraction_of_Motor_Inefficiencies_to_Fluid_Stream - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + 0.8, !- Running Mean Outdoor Dry-Bulb Temperature Weighting Factor + 0.87, !- Motor Efficiency + 0.1, !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter,!- Name @@ -2565,3 +2585,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,15.00; !- Field 3 + diff --git a/testfiles/RadLoTempElecCtrlOpt2.idf b/testfiles/RadLoTempElecCtrlOpt2.idf index 8eb249c49fd..b56d742e07c 100644 --- a/testfiles/RadLoTempElecCtrlOpt2.idf +++ b/testfiles/RadLoTempElecCtrlOpt2.idf @@ -140,7 +140,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -343,8 +345,8 @@ EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 - E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 + E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 4 Construction, PARTITION06, !- Name @@ -356,9 +358,9 @@ ROOF34, !- Name E2 - 1 / 2 IN SLAG OR STONE, !- Outside Layer E3 - 3 / 8 IN FELT AND MEMBRANE, !- Layer 2 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 - C12 - 2 IN HW CONCRETE; !- Layer 4 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 4 + C12 - 2 IN HW CONCRETE; !- Layer 5 Construction, WIN-CON-LIGHT, !- Name @@ -422,11 +424,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -645,6 +647,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +730,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +764,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +781,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +798,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +815,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +832,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +849,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +866,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +883,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +900,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +917,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +934,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +951,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +968,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +985,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2193,8 +2215,8 @@ autosize, !- Heating Design Capacity {W} , !- Heating Design Capacity Per Floor Area {W/m2} , !- Fraction of Autosized Heating Design Capacity - OutdoorDryBulbTemperature, !- Temperature Control Type - HalfFlowPower, !- Setpoint Type + OutdoorDryBulbTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type 2.0, !- Heating Throttling Range {deltaC} Radiant Heating Setpoints; !- Heating Setpoint Temperature Schedule Name @@ -2208,7 +2230,7 @@ 269.09776041774302, !- Heating Design Capacity Per Floor Area {W/m2} , !- Fraction of Autosized Heating Design Capacity SurfaceFaceTemperature, !- Temperature Control Type - HalfFlowPower, !- Setpoint Type + HalfFlowPower, !- Setpoint Control Type 2.0, !- Heating Throttling Range {deltaC} Radiant Heating Setpoints 2; !- Heating Setpoint Temperature Schedule Name @@ -2221,8 +2243,8 @@ , !- Heating Design Capacity {W} , !- Heating Design Capacity Per Floor Area {W/m2} 1.9637972000759794, !- Fraction of Autosized Heating Design Capacity - SurfaceInteriorTemperature, !- Temperature Control Type - HalfFlowPower, !- Setpoint Type + SurfaceInteriorTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type 0.0, !- Heating Throttling Range {deltaC} Radiant Heating Setpoints 3; !- Heating Setpoint Temperature Schedule Name @@ -2347,8 +2369,6 @@ Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; - - OutputControl:Table:Style, HTML; !- Column Separator diff --git a/testfiles/RadLoTempElecTermReheat.idf b/testfiles/RadLoTempElecTermReheat.idf index 37f76e45b22..d4205c94df5 100644 --- a/testfiles/RadLoTempElecTermReheat.idf +++ b/testfiles/RadLoTempElecTermReheat.idf @@ -422,7 +422,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -645,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +728,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +847,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +864,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +966,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2548,3 +2568,4 @@ Through: 12/31, !- Field 9 For: Alldays, !- Field 10 Until: 24:00,0.00; !- Field 11 + diff --git a/testfiles/RadLoTempElecTermReheatCondFD.idf b/testfiles/RadLoTempElecTermReheatCondFD.idf index 25db7efdc29..c9d6c6a6683 100644 --- a/testfiles/RadLoTempElecTermReheatCondFD.idf +++ b/testfiles/RadLoTempElecTermReheatCondFD.idf @@ -695,7 +695,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -755,6 +755,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +772,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +789,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +806,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +823,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +840,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +874,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +891,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +908,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +925,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +942,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +959,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +976,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +993,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1010,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1027,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1044,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1061,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1078,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2576,3 +2596,4 @@ Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + diff --git a/testfiles/RadLoTempHydrChangeoverDelay.idf b/testfiles/RadLoTempHydrChangeoverDelay.idf index c7c9152cb1b..9c2925fb4ff 100644 --- a/testfiles/RadLoTempHydrChangeoverDelay.idf +++ b/testfiles/RadLoTempHydrChangeoverDelay.idf @@ -130,7 +130,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - Yes; !- Run Simulation for Weather File Run Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -154,8 +156,7 @@ -6.00, !- Time Zone {hr} 190.00; !- Elevation {m} - - ! CHICAGO_IL_USA + ! CHICAGO_IL_USA SizingPeriod:DesignDay, CHICAGO Crazy Dry Heat Cool, !- Name @@ -381,11 +382,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -582,6 +583,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -613,6 +615,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -629,6 +632,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -645,6 +649,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -661,6 +666,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -677,6 +683,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -693,6 +700,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +717,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -725,6 +734,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +751,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +768,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +785,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +802,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +819,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +836,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +853,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -853,6 +870,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +887,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +904,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +921,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1898,123 +1919,123 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - ZeroFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.5, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.5, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 0.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedW; !- Changeover delay schedule + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + ZeroFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.5, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.5, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 0.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedW; !- Changeover Delay Time Period Schedule ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - ZeroFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.5, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.5, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 0.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedE; !- Changeover delay schedule + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + ZeroFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.5, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.5, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 0.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedE; !- Changeover Delay Time Period Schedule ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - ZeroFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.5, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.5, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 0.0, !- Condensation_Control_Dewpoint_Offset - ChangeoverSchedN; !- Changeover delay schedule + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + ZeroFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.5, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.5, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 0.0, !- Condensation Control Dewpoint Offset {C} + ChangeoverSchedN; !- Changeover Delay Time Period Schedule Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; @@ -2087,25 +2108,25 @@ AllSummary; !- Report 1 Name Schedule:Compact, - ChangeoverSchedW, !- Name + ChangeoverSchedW, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, - ChangeoverSchedE, !- Name + ChangeoverSchedE, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, - ChangeoverSchedN, !- Name + ChangeoverSchedN, !- Name ANY NUMBER, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,24.0; !- Field 3 + Until: 24:00,24.0; !- Field 3 Schedule:Compact, ACTIVITY SCH, !- Name @@ -2227,7 +2248,7 @@ TEMPERATURE, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,21.00; !- Field 7 + Until: 24:00,21.00; !- Field 3 Schedule:Compact, RADIANT COOLING SETPOINTS, !- Name diff --git a/testfiles/RadLoTempHydrCoolTower.idf b/testfiles/RadLoTempHydrCoolTower.idf index 79313550519..8d196e0735a 100644 --- a/testfiles/RadLoTempHydrCoolTower.idf +++ b/testfiles/RadLoTempHydrCoolTower.idf @@ -404,7 +404,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -669,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +752,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +871,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +990,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1687,78 +1707,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0025, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0025, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0025, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0025, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0035, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0035, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; diff --git a/testfiles/RadLoTempHydrCoolTowerCondFD.idf b/testfiles/RadLoTempHydrCoolTowerCondFD.idf index 8b2d662b356..84f055c092a 100644 --- a/testfiles/RadLoTempHydrCoolTowerCondFD.idf +++ b/testfiles/RadLoTempHydrCoolTowerCondFD.idf @@ -619,7 +619,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -679,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +696,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +730,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +747,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +764,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -775,6 +781,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +798,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +815,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +832,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +866,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +883,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -887,6 +900,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +917,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +934,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +951,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +968,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +985,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +1002,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1356,78 +1376,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0025, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0025, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0025, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0025, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0035, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0035, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== diff --git a/testfiles/RadLoTempHydrCtrlOpt.idf b/testfiles/RadLoTempHydrCtrlOpt.idf index dc395dcee62..1673938f47d 100644 --- a/testfiles/RadLoTempHydrCtrlOpt.idf +++ b/testfiles/RadLoTempHydrCtrlOpt.idf @@ -414,7 +414,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -679,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -710,6 +711,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +728,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +745,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +762,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -774,6 +779,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -790,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +813,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -822,6 +830,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +847,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +881,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -886,6 +898,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +932,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +949,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -950,6 +966,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +983,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +1000,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1017,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2030,120 +2050,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanRadiantTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanRadiantTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OperativeTemperature, !- Temperature_Control_Type - ZeroFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OperativeTemperature, !- Temperature Control Type + ZeroFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2380,3 +2400,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,26.00; !- Field 3 + diff --git a/testfiles/RadLoTempHydrCtrlOpt2.idf b/testfiles/RadLoTempHydrCtrlOpt2.idf index 4a95ba6eb7b..b1afed180cd 100644 --- a/testfiles/RadLoTempHydrCtrlOpt2.idf +++ b/testfiles/RadLoTempHydrCtrlOpt2.idf @@ -412,7 +412,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -677,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +709,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +743,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +760,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +777,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -820,6 +828,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +862,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +879,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +896,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +947,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +981,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +998,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1015,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2032,120 +2052,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OutdoorDryBulbTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OutdoorDryBulbTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - OutdoorWetBulbTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + OutdoorWetBulbTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; diff --git a/testfiles/RadLoTempHydrCtrlOpt3.idf b/testfiles/RadLoTempHydrCtrlOpt3.idf index 15887a34433..c6375ea1ca3 100644 --- a/testfiles/RadLoTempHydrCtrlOpt3.idf +++ b/testfiles/RadLoTempHydrCtrlOpt3.idf @@ -133,7 +133,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -336,7 +338,7 @@ EXTWALL80, !- Name A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 - INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 + INS - EXPANDED EXT POLYSTYRENE R12 2 IN, !- Layer 3 E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 4 Construction, @@ -415,11 +417,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 2, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 1.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 1.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -680,6 +682,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +714,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -727,6 +731,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +748,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +765,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +782,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +799,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +816,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +833,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +850,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +867,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +884,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +901,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +918,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +935,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +952,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +969,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +986,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +1003,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1020,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2035,120 +2057,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.000063, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.000063, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.000063, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.000063, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - SurfaceFaceTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints Face, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints Face, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + SurfaceFaceTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints Face, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints Face, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.000063, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.000063, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - SurfaceInteriorTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints Interior, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints Interior, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + SurfaceInteriorTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints Interior, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints Interior, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep; @@ -2293,7 +2315,7 @@ Until: 18:00,0.50, !- Field 9 Until: 24:00,5.00E-002, !- Field 11 For: Sunday Saturday Holiday WinterDesignDay CustomDay1 CustomDay2, !- Field 13 - Until: 24:00,5.00E-002; !- Field 14 + Until: 24:00,5.00E-002; !- Field 14 Schedule:Compact, ON PEAK, !- Name @@ -2388,14 +2410,14 @@ Until: 7:00,14.00, !- Field 3 Until: 17:00,18.00, !- Field 5 Until: 24:00,14.00, !- Field 7 - Through: 10:31, - For: Alldays, - Until: 24:00,15.00, - Through: 12/31, - For: Alldays, !- Field 2 - Until: 7:00,14.00, !- Field 3 - Until: 17:00,18.00, !- Field 5 - Until: 24:00,14.00; !- Field 7 + Through: 10:31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,15.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,14.00, !- Field 15 + Until: 17:00,18.00, !- Field 17 + Until: 24:00,14.00; !- Field 19 Schedule:Compact, RADIANT HEATING SETPOINTS FACE, !- Name @@ -2405,14 +2427,14 @@ Until: 7:00,17.00, !- Field 3 Until: 17:00,25.00, !- Field 5 Until: 24:00,17.00, !- Field 7 - Through: 10:31, - For: Alldays, - Until: 24:00,10.00, - Through: 12/31, - For: Alldays, - Until: 7:00,17.00, - Until: 17:00,25.00, - Until: 24:00,17.00; + Through: 10:31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,10.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,17.00, !- Field 15 + Until: 17:00,25.00, !- Field 17 + Until: 24:00,17.00; !- Field 19 Schedule:Compact, RADIANT HEATING SETPOINTS INTERIOR, !- Name @@ -2422,57 +2444,57 @@ Until: 7:00,18.00, !- Field 3 Until: 17:00,27.00, !- Field 5 Until: 24:00,18.00, !- Field 7 - Through: 10/31, - For: Alldays, - Until: 24:00,5.00, - Through: 12/31, - For: Alldays, - Until: 7:00,18.00, - Until: 17:00,27.00, - Until: 24:00,18.00; + Through: 10/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,5.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 7:00,18.00, !- Field 15 + Until: 17:00,27.00, !- Field 17 + Until: 24:00,18.00; !- Field 19 Schedule:Compact, RADIANT COOLING SETPOINTS, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,60.00, - Through: 10:31, - For: Alldays, - Until: 7:00,24.00, !- Field 3 - Until: 17:00,20.00, !- Field 5 - Until: 24:00,24.00, !- Field 7 - Through: 12/31, - For: Alldays, - Until: 24:00,60.00; - + Until: 24:00,60.00, !- Field 3 + Through: 10:31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,24.00, !- Field 7 + Until: 17:00,20.00, !- Field 9 + Until: 24:00,24.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,60.00; !- Field 15 Schedule:Compact, RADIANT COOLING SETPOINTS FACE, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,60.00, - Through: 10:31, - For: Alldays, - Until: 7:00,19.00, !- Field 3 - Until: 17:00,14.00, !- Field 5 - Until: 24:00,19.00, !- Field 7 - Through: 12/31, - For: Alldays, - Until: 24:00,60.00; + Until: 24:00,60.00, !- Field 3 + Through: 10:31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,19.00, !- Field 7 + Until: 17:00,14.00, !- Field 9 + Until: 24:00,19.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,60.00; !- Field 15 Schedule:Compact, RADIANT COOLING SETPOINTS INTERIOR, !- Name TEMPERATURE, !- Schedule Type Limits Name Through: 4/30, !- Field 1 For: Alldays, !- Field 2 - Until: 24:00,70.00, - Through: 10:31, - For: Alldays, - Until: 7:00,18.00, !- Field 3 - Until: 17:00,12.00, !- Field 5 - Until: 24:00,18.00, !- Field 7 - Through: 12/31, - For: Alldays, - Until: 24:00,70.00; + Until: 24:00,70.00, !- Field 3 + Through: 10:31, !- Field 5 + For: Alldays, !- Field 6 + Until: 7:00,18.00, !- Field 7 + Until: 17:00,12.00, !- Field 9 + Until: 24:00,18.00, !- Field 11 + Through: 12/31, !- Field 13 + For: Alldays, !- Field 14 + Until: 24:00,70.00; !- Field 15 + diff --git a/testfiles/RadLoTempHydrHeatCool.idf b/testfiles/RadLoTempHydrHeatCool.idf index 9da700c6dbc..42d0c3265d9 100644 --- a/testfiles/RadLoTempHydrHeatCool.idf +++ b/testfiles/RadLoTempHydrHeatCool.idf @@ -404,7 +404,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -669,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +752,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +871,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +990,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,120 +2079,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - SimpleOff, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + SimpleOff, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.4, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.4, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - VariableOff, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.4, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.4, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + VariableOff, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2372,3 +2392,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,26.00; !- Field 3 + diff --git a/testfiles/RadLoTempHydrHeatCool2D.idf b/testfiles/RadLoTempHydrHeatCool2D.idf index 69505213610..b3bc2843e73 100644 --- a/testfiles/RadLoTempHydrHeatCool2D.idf +++ b/testfiles/RadLoTempHydrHeatCool2D.idf @@ -404,7 +404,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 2, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -669,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +752,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +871,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +990,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,78 +2079,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; @@ -2328,3 +2348,4 @@ Through: 12/31, !- Field 1 For: Alldays, !- Field 2 Until: 24:00,26.00; !- Field 3 + diff --git a/testfiles/RadLoTempHydrHeatCoolDry.idf b/testfiles/RadLoTempHydrHeatCoolDry.idf index 8e7b705f93a..f0051650090 100644 --- a/testfiles/RadLoTempHydrHeatCoolDry.idf +++ b/testfiles/RadLoTempHydrHeatCoolDry.idf @@ -404,7 +404,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -669,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +752,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +871,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +990,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,78 +2079,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; diff --git a/testfiles/RadLoTempHydrHeatCoolDryCondFD.idf b/testfiles/RadLoTempHydrHeatCoolDryCondFD.idf index 62242ab7bad..03fdb01544b 100644 --- a/testfiles/RadLoTempHydrHeatCoolDryCondFD.idf +++ b/testfiles/RadLoTempHydrHeatCoolDryCondFD.idf @@ -638,7 +638,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -698,6 +698,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -730,6 +732,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +749,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +766,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +783,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +800,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +817,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +834,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +851,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +868,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +885,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +902,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +919,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +936,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +953,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +970,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +987,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1004,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1021,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1375,78 +1395,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== diff --git a/testfiles/RadLoTempHydrHeatCoolMultiZone.idf b/testfiles/RadLoTempHydrHeatCoolMultiZone.idf index 384047181a0..1652a8b0166 100644 --- a/testfiles/RadLoTempHydrHeatCoolMultiZone.idf +++ b/testfiles/RadLoTempHydrHeatCoolMultiZone.idf @@ -122,7 +122,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -286,7 +288,7 @@ Material, B5 - 6 IN DENSE INSULATION, !- Name VeryRough, !- Roughness - 0.15, !- Thickness {m} + 0.15, !- Thickness {m} 4.3239430E-02, !- Conductivity {W/m-K} 91.30524, !- Density {kg/m3} 836.8000, !- Specific Heat {J/kg-K} @@ -326,7 +328,7 @@ A1 - 1 IN STUCCO, !- Outside Layer C4 - 4 IN COMMON BRICK, !- Layer 2 B5 - 6 IN DENSE INSULATION, !- Layer 3 - E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3 + E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 4 Construction, PARTITION06, !- Name @@ -404,11 +406,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -514,7 +516,7 @@ West Zone, !- Zone or ZoneList Name BLDG Sch 2, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method - 600.0, !- Design Level {W} + 600.0, !- Design Level {W} , !- Watts per Zone Floor Area {W/m2} , !- Watts per Person {W/person} 0.0000000E+00, !- Fraction Latent @@ -548,7 +550,7 @@ EAST ZONE, !- Zone or ZoneList Name BLDG Sch 3, !- Schedule Name LightingLevel, !- Design Level Calculation Method - 400.0, !- Lighting Level {W} + 400.0, !- Lighting Level {W} , !- Watts per Zone Floor Area {W/m2} , !- Watts per Person {W/person} 0.0000000E+00, !- Return Air Fraction @@ -562,7 +564,7 @@ EAST ZONE, !- Zone or ZoneList Name BLDG Sch 2, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method - 600.0, !- Design Level {W} + 600.0, !- Design Level {W} , !- Watts per Zone Floor Area {W/m2} , !- Watts per Person {W/person} 0.0000000E+00, !- Fraction Latent @@ -596,7 +598,7 @@ NORTH ZONE, !- Zone or ZoneList Name BLDG Sch 3, !- Schedule Name LightingLevel, !- Design Level Calculation Method - 600.0, !- Lighting Level {W} + 600.0, !- Lighting Level {W} , !- Watts per Zone Floor Area {W/m2} , !- Watts per Person {W/person} 0.0000000E+00, !- Return Air Fraction @@ -610,7 +612,7 @@ NORTH ZONE, !- Zone or ZoneList Name BLDG Sch 2, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method - 900.0, !- Design Level {W} + 900.0, !- Design Level {W} , !- Watts per Zone Floor Area {W/m2} , !- Watts per Person {W/person} 0.0000000E+00, !- Fraction Latent @@ -669,6 +671,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +703,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +720,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +737,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +754,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +771,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +805,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +822,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +839,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +856,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +873,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +890,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -892,6 +907,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +924,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -924,6 +941,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +958,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +975,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +992,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1009,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,8 +1113,8 @@ Cooling Demand Side Branches, !- Name Cooling Demand Inlet, !- Branch 1 Name Zone 1 Cooling Branch, !- Branch 2 Name - Demand Bypass Branch, !- Branch 5 Name - Cooling Demand Outlet; !- Branch 6 Name + Demand Bypass Branch, !- Branch 3 Name + Cooling Demand Outlet; !- Branch 4 Name ConnectorList, Cooling Supply Side Connectors, !- Name @@ -1233,13 +1255,13 @@ CW Demand Splitter, !- Name Cooling Demand Inlet, !- Inlet Branch Name Zone 1 Cooling Branch, !- Outlet Branch 1 Name - Demand Bypass Branch; !- Outlet Branch 4 Name + Demand Bypass Branch; !- Outlet Branch 2 Name Connector:Mixer, CW Demand Mixer, !- Name Cooling Demand Outlet, !- Outlet Branch Name Zone 1 Cooling Branch, !- Inlet Branch 1 Name - Demand Bypass Branch; !- Inlet Branch 4 Name + Demand Bypass Branch; !- Inlet Branch 2 Name PlantEquipmentOperationSchemes, CW Loop Operation, !- Name @@ -1693,8 +1715,8 @@ Heating Demand Side Branches, !- Name Reheat Inlet Branch, !- Branch 1 Name Zone 1 Radiant Branch, !- Branch 2 Name - Reheat Bypass Branch, !- Branch 5 Name - Reheat Outlet Branch; !- Branch 6 Name + Reheat Bypass Branch, !- Branch 3 Name + Reheat Outlet Branch; !- Branch 4 Name ConnectorList, Heating Demand Side Connectors, !- Name @@ -1754,13 +1776,13 @@ Reheat Splitter, !- Name Reheat Inlet Branch, !- Inlet Branch Name Zone 1 Radiant Branch, !- Outlet Branch 1 Name - Reheat Bypass Branch; !- Outlet Branch 4 Name + Reheat Bypass Branch; !- Outlet Branch 2 Name Connector:Mixer, Reheat Mixer, !- Name Reheat Outlet Branch, !- Outlet Branch Name Zone 1 Radiant Branch, !- Inlet Branch 1 Name - Reheat Bypass Branch; !- Inlet Branch 4 Name + Reheat Bypass Branch; !- Inlet Branch 2 Name Connector:Splitter, Heating Supply Splitter, !- Name @@ -1887,54 +1909,53 @@ , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name - ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - SurfacesInThreeZones, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00016, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0060, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + SurfacesInThreeZones, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00016, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0060, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - ZeroFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + ZeroFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:SurfaceGroup, SurfacesInThreeZones, !- Name - Zn001:Flr001, !- Surface 1 - 0.444, !- Surface 1 Flow Fraction - Zn002:Flr001, !- Surface 2 - 0.222, !- Surface 2 Flow Fraction - Zn003:Flr001, !- Surface 3 - 0.334; !- Surface 3 Flow Fraction + Zn001:Flr001, !- Surface 1 Name + 0.444, !- Flow Fraction for Surface 1 + Zn002:Flr001, !- Surface 2 Name + 0.222, !- Flow Fraction for Surface 2 + Zn003:Flr001, !- Surface 3 Name + 0.334; !- Flow Fraction for Surface 3 Output:Variable,*,Zone Mean Air Temperature,timestep; diff --git a/testfiles/RadLoTempHydrISOPipeHT.idf b/testfiles/RadLoTempHydrISOPipeHT.idf index a95f02f50ac..622121c2ffe 100644 --- a/testfiles/RadLoTempHydrISOPipeHT.idf +++ b/testfiles/RadLoTempHydrISOPipeHT.idf @@ -122,7 +122,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - No; !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes RunPeriod, Run Period 1, !- Name @@ -402,11 +404,11 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} - 0.0; !- Two-Dimensional Position of Interior Temperature Calculation Request + 0.0; !- Two-Dimensional Temperature Calculation Position {dimensionless} Construction, Slab Floor with Radiant, !- Name @@ -667,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -714,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +752,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -762,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +786,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +803,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +820,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +837,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +854,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +871,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +888,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +905,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +922,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +939,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +956,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +973,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +990,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1007,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2057,120 +2079,120 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - West Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + West Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - West Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - SimpleOff, !- Condensation_Control_Type - 1.0; !- Condensation_Control_Dewpoint_Offset + West Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + SimpleOff, !- Condensation Control Type + 1.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - East Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + East Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - East Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.4, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.4, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - VariableOff, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + East Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.4, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.4, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + VariableOff, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - North Zone Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0015, !- Maximum_Cold_Water_Flow - Zone 3 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 3 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + North Zone Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0015, !- Maximum Cold Water Flow {m3/s} + Zone 3 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 3 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - North Zone Radiant Floor Design, !- Design_Object_Name - ISOStandard, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 0.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 0.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - Off, !- Condensation_Control_Type - 0.0; !- Condensation_Control_Dewpoint_Offset + North Zone Radiant Floor Design, !- Name + ISOStandard, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 0.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 0.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + Off, !- Condensation Control Type + 0.0; !- Condensation Control Dewpoint Offset {C} Output:Variable,*,Zone Mean Air Temperature,timestep; diff --git a/testfiles/RadLoTempHydrInterMulti.idf b/testfiles/RadLoTempHydrInterMulti.idf index 0f1609bf30f..4ab897d1764 100644 --- a/testfiles/RadLoTempHydrInterMulti.idf +++ b/testfiles/RadLoTempHydrInterMulti.idf @@ -415,7 +415,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -424,7 +424,7 @@ ConstructionProperty:InternalHeatSource, PARTITION SOURCE, !- Name PARTITION06, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -433,7 +433,7 @@ ConstructionProperty:InternalHeatSource, ROOF SOURCE, !- Name ROOF34, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -712,6 +712,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +744,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -759,6 +761,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +778,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +795,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -807,6 +812,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +829,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +846,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +863,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +880,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +897,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +914,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +931,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +948,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +965,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +982,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +999,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1016,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1015,6 +1033,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1031,6 +1050,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2017,60 +2037,60 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zone 1 Radiant Surfaces, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0012, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zone 1 Radiant Surfaces, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0012, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Wall005, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00018, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0027, !- Maximum_Cold_Water_Flow - Zone 2 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 2 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Wall005, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00018, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0027, !- Maximum Cold Water Flow {m3/s} + Zone 2 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 2 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:SurfaceGroup, Zone 1 Radiant Surfaces, !- Name diff --git a/testfiles/RadLoTempHydrMulti10.idf b/testfiles/RadLoTempHydrMulti10.idf index 40cbd4a8a7a..858b8c3e26f 100644 --- a/testfiles/RadLoTempHydrMulti10.idf +++ b/testfiles/RadLoTempHydrMulti10.idf @@ -431,7 +431,7 @@ ConstructionProperty:InternalHeatSource, SLAB SOURCE, !- Name SLAB FLOOR, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -440,7 +440,7 @@ ConstructionProperty:InternalHeatSource, EXTERIOR SOURCE, !- Name EXTERIOR, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -449,7 +449,7 @@ ConstructionProperty:InternalHeatSource, ROOF SOURCE, !- Name ROOF31, !- Construction Name - 3, !- Source Present After Layer Number + 3, !- Thermal Source Present After Layer Number 3, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -539,6 +539,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -555,6 +556,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -571,6 +573,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +605,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +622,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +654,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -665,6 +671,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -681,6 +688,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -697,6 +705,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -728,6 +737,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -744,6 +754,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -775,6 +786,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +803,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -807,6 +820,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +837,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +854,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +871,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +888,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1771,43 +1789,43 @@ ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name ZoneHVAC:LowTemperatureRadiant:VariableFlow, - Zone 1 Radiant Floor, !- Name - Zone 1 Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - Zone 1, !- Zone_Name - Zone 1 Radiant Surfaces, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.0002, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0025, !- Maximum_Cold_Water_Flow - Zone 1 Cooling Water Inlet Node, !- Cooling_Water_Inlet_Node_Name - Zone 1 Cooling Water Outlet Node, !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Zone 1 Radiant Floor, !- Name + Zone 1 Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + Zone 1, !- Zone Name + Zone 1 Radiant Surfaces, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.0002, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0025, !- Maximum Cold Water Flow {m3/s} + Zone 1 Cooling Water Inlet Node, !- Cooling Water Inlet Node Name + Zone 1 Cooling Water Outlet Node, !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Zone 1 Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - 2.0, !- Cooling_Control_Throttling_Range - Radiant Cooling Setpoints, !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Zone 1 Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + 2.0, !- Cooling Control Throttling Range {deltaC} + Radiant Cooling Setpoints, !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} ZoneHVAC:LowTemperatureRadiant:SurfaceGroup, Zone 1 Radiant Surfaces, !- Name diff --git a/testfiles/RadLoTempHydrTermReheat.idf b/testfiles/RadLoTempHydrTermReheat.idf index 4712d96e0b3..931441743f6 100644 --- a/testfiles/RadLoTempHydrTermReheat.idf +++ b/testfiles/RadLoTempHydrTermReheat.idf @@ -413,7 +413,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Slab Floor with Radiant, !- Construction Name - 4, !- Source Present After Layer Number + 4, !- Thermal Source Present After Layer Number 4, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -636,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +719,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +736,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +753,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +770,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +787,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +804,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +821,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +838,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +855,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +872,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +889,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +906,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -907,6 +923,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +940,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +957,7 @@ Floor, !- Surface Type Slab Floor with Radiant, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +974,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2222,78 +2242,78 @@ ZoneHVAC:LowTemperatureRadiant:VariableFlow, West Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - West Zone, !- Zone_Name - Zn001:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - West Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - West Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0, !- Maximum_Cold_Water_Flow - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + West Zone, !- Zone Name + Zn001:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + West Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + West Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0, !- Maximum Cold Water Flow {m3/s} + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, East Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - East Zone, !- Zone_Name - Zn002:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00008, !- Maximum_Hot_Water_Flow - East Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - East Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0, !- Maximum_Cold_Water_Flow - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + East Zone, !- Zone Name + Zn002:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00008, !- Maximum Hot Water Flow {m3/s} + East Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + East Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0, !- Maximum Cold Water Flow {m3/s} + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow, - North Zone Radiant Floor, !- Name - Radiant Floor Design, !- Design_Object_Name - RadiantSysAvailSched, !- Availability_Schedule_Name - North Zone, !- Zone_Name - Zn003:Flr001, !- Surface_Name_or_Radiant_Surface_Group_Name - 400.0, !- Hydronic_Tubing_Length - Autosize, !- Heating_Design_Capacity - 0.00010, !- Maximum_Hot_Water_Flow - North Zone Radiant Water Inlet Node, !- Heating_Water_Inlet_Node_Name - North Zone Radiant Water Outlet Node, !- Heating_Water_Outlet_Node_Name - Autosize, !- Cooling_Design_Capacity - 0.0, !- Maximum_Cold_Water_Flow - , !- Cooling_Water_Inlet_Node_Name - , !- Cooling_Water_Outlet_Node_Name - , !- Number_of_Circuits - ; !- Circuit_Length + North Zone Radiant Floor,!- Name + Radiant Floor Design, !- Design Object + RadiantSysAvailSched, !- Availability Schedule Name + North Zone, !- Zone Name + Zn003:Flr001, !- Surface Name or Radiant Surface Group Name + 400.0, !- Hydronic Tubing Length {m} + Autosize, !- Heating Design Capacity {W} + 0.00010, !- Maximum Hot Water Flow {m3/s} + North Zone Radiant Water Inlet Node, !- Heating Water Inlet Node Name + North Zone Radiant Water Outlet Node, !- Heating Water Outlet Node Name + Autosize, !- Cooling Design Capacity {W} + 0.0, !- Maximum Cold Water Flow {m3/s} + , !- Cooling Water Inlet Node Name + , !- Cooling Water Outlet Node Name + , !- Number of Circuits + ; !- Circuit Length {m} ZoneHVAC:LowTemperatureRadiant:VariableFlow:Design, - Radiant Floor Design, !- Design_Object_Name - ConvectionOnly, !- Fluid_to_Radiant_Surface_Heat_Transfer_Model - 0.012, !- Hydronic_Tubing_Inside_Diameter - 0.016, !- Hydronic_Tubing_Outside_Diameter - 0.35, !- Hydronic_Tubing_Conductivity - MeanAirTemperature, !- Temperature_Control_Type - HalfFlowPower, !- Setpoint_Control_Type - HeatingDesignCapacity, !- Heating_Design_Capacity_Method - , !- Heating_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Heating_Design_Capacity - 2.0, !- Heating_Control_Throttling_Range - Radiant Heating Setpoints, !- Heating_Control_Temperature_Schedule_Name - CoolingDesignCapacity, !- Cooling_Design_Capacity_Method - , !- Cooling_Design_Capacity_Per_Floor_Area - , !- Fraction_of_Autosized_Cooling_Design_Capacity - , !- Cooling_Control_Throttling_Range - , !- Cooling_Control_Temperature_Schedule_Name - , !- Condensation_Control_Type - ; !- Condensation_Control_Dewpoint_Offset + Radiant Floor Design, !- Name + ConvectionOnly, !- Fluid to Radiant Surface Heat Transfer Model + 0.012, !- Hydronic Tubing Inside Diameter {m} + 0.016, !- Hydronic Tubing Outside Diameter {m} + 0.35, !- Hydronic Tubing Conductivity {W/m-K} + MeanAirTemperature, !- Temperature Control Type + HalfFlowPower, !- Setpoint Control Type + HeatingDesignCapacity, !- Heating Design Capacity Method + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + 2.0, !- Heating Control Throttling Range {deltaC} + Radiant Heating Setpoints, !- Heating Control Temperature Schedule Name + CoolingDesignCapacity, !- Cooling Design Capacity Method + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + , !- Cooling Control Throttling Range {deltaC} + , !- Cooling Control Temperature Schedule Name + , !- Condensation Control Type + ; !- Condensation Control Dewpoint Offset {C} AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter,!- Name diff --git a/testfiles/RefBldgFullServiceRestaurantNew2004_Chicago.idf b/testfiles/RefBldgFullServiceRestaurantNew2004_Chicago.idf index 650922f3292..0a128e93906 100644 --- a/testfiles/RefBldgFullServiceRestaurantNew2004_Chicago.idf +++ b/testfiles/RefBldgFullServiceRestaurantNew2004_Chicago.idf @@ -604,6 +604,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-dining, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -620,6 +621,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -636,6 +638,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +655,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -668,6 +672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +689,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +706,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +723,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-kitchen, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +740,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +757,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +774,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +791,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +808,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +825,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +842,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +859,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +875,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +891,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1118,13 +1136,15 @@ Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Dining, !- Zone or ZoneList Name - 743.4961; !- Surface Area {m2} + , !- Surface Area {m2} + 743.4961; !- Extended Field InternalMass, Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen, !- Zone or ZoneList Name - 278.8105; !- Surface Area {m2} + , !- Surface Area {m2} + 278.8105; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgHospitalNew2004_Chicago.idf b/testfiles/RefBldgHospitalNew2004_Chicago.idf index 4de93580ed2..3dd585f6c3d 100644 --- a/testfiles/RefBldgHospitalNew2004_Chicago.idf +++ b/testfiles/RefBldgHospitalNew2004_Chicago.idf @@ -1492,6 +1492,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1509,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1526,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1543,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1556,6 +1560,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1572,6 +1577,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1594,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1611,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1628,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1645,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1662,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1679,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1684,6 +1696,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1713,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1716,6 +1730,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1732,6 +1747,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1764,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1764,6 +1781,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1780,6 +1798,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_2_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1796,6 +1815,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1816,6 +1836,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1836,6 +1857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1852,6 +1874,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1868,6 +1891,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1884,6 +1908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1900,6 +1925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1916,6 +1942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,6 +1959,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1948,6 +1976,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1964,6 +1993,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1986,6 +2016,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2008,6 +2039,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2024,6 +2056,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2040,6 +2073,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2056,6 +2090,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2072,6 +2107,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2088,6 +2124,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2104,6 +2141,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2120,6 +2158,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2136,6 +2175,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2152,6 +2192,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2168,6 +2209,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2184,6 +2226,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2200,6 +2243,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2216,6 +2260,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2232,6 +2277,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2254,6 +2300,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2276,6 +2323,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2292,6 +2340,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2308,6 +2357,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_5_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2324,6 +2374,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2340,6 +2391,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2356,6 +2408,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2372,6 +2425,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2388,6 +2442,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2404,6 +2459,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2420,6 +2476,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2436,6 +2493,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2452,6 +2510,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2468,6 +2527,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2484,6 +2544,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_NW_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2500,6 +2561,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2522,6 +2584,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2544,6 +2607,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2560,6 +2624,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2576,6 +2641,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2592,6 +2658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2608,6 +2675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2624,6 +2692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2640,6 +2709,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2656,6 +2726,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2672,6 +2743,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2688,6 +2760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2704,6 +2777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2720,6 +2794,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2736,6 +2811,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2758,6 +2834,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2780,6 +2857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2796,6 +2874,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2812,6 +2891,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2828,6 +2908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2844,6 +2925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2860,6 +2942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2876,6 +2959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2892,6 +2976,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2908,6 +2993,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2924,6 +3010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2940,6 +3027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,6 +3044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_SE_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2972,6 +3061,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2988,6 +3078,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3004,6 +3095,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3020,6 +3112,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3036,6 +3129,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3052,6 +3146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3068,6 +3163,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3084,6 +3180,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3100,6 +3197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3116,6 +3214,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3132,6 +3231,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3148,6 +3248,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3164,6 +3265,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3180,6 +3282,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3196,6 +3299,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3212,6 +3316,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3228,6 +3333,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3244,6 +3350,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Trauma1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam2_Flr_1_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3260,6 +3367,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,6 +3384,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3292,6 +3401,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3308,6 +3418,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3324,6 +3435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3340,6 +3452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam3_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3356,6 +3469,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3372,6 +3486,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3388,6 +3503,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3404,6 +3520,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3420,6 +3537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3436,6 +3554,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Trauma2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam4_Flr_1_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3452,6 +3571,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3468,6 +3588,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3484,6 +3605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3500,6 +3622,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3516,6 +3639,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3532,6 +3656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_Exam5_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3548,6 +3673,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3568,6 +3694,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3588,6 +3715,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3604,6 +3732,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3620,6 +3749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3636,6 +3766,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3652,6 +3783,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3668,6 +3800,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3684,6 +3817,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3700,6 +3834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ER_NurseStat_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3716,6 +3851,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3732,6 +3868,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3748,6 +3885,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3764,6 +3902,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3780,6 +3919,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3796,6 +3936,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name ICU_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3812,6 +3953,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3828,6 +3970,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3844,6 +3987,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3860,6 +4004,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3876,6 +4021,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3892,6 +4038,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ICU_NurseSat_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3908,6 +4055,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3924,6 +4072,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3940,6 +4089,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3956,6 +4106,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3972,6 +4123,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3988,6 +4140,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4004,6 +4157,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4020,6 +4174,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4036,6 +4191,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4052,6 +4208,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4068,6 +4225,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom2_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4084,6 +4242,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name IC_PatRoom2_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4100,6 +4259,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4116,6 +4276,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4132,6 +4293,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4148,6 +4310,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4164,6 +4327,7 @@ Wall, !- Surface Type int-walls, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4180,6 +4344,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4196,6 +4361,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4212,6 +4378,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4228,6 +4395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4244,6 +4412,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4260,6 +4429,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4276,6 +4446,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4292,6 +4463,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4308,6 +4480,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4326,6 +4499,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4344,6 +4518,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4360,6 +4535,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4376,6 +4552,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4392,6 +4569,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4408,6 +4586,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4424,6 +4603,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4440,6 +4620,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4458,6 +4639,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4476,6 +4658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4492,6 +4675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4508,6 +4692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4524,6 +4709,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4540,6 +4726,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4556,6 +4743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lab_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4572,6 +4760,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4592,6 +4781,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4612,6 +4802,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4628,6 +4819,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4644,6 +4836,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4660,6 +4853,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_1_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4676,6 +4870,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4692,6 +4887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4708,6 +4904,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4724,6 +4921,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4740,6 +4938,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Records_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4756,6 +4955,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4772,6 +4972,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4788,6 +4989,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4804,6 +5006,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_5_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4820,6 +5023,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4836,6 +5040,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4852,6 +5057,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_5_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4868,6 +5074,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4890,6 +5097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4912,6 +5120,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4928,6 +5137,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4944,6 +5154,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4960,6 +5171,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4976,6 +5188,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4992,6 +5205,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5008,6 +5222,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5024,6 +5239,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5040,6 +5256,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5056,6 +5273,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5072,6 +5290,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5094,6 +5313,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5116,6 +5336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5132,6 +5353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5148,6 +5370,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5164,6 +5387,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5180,6 +5404,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5196,6 +5421,7 @@ Wall, !- Surface Type AIR-WALL, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5212,6 +5438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5228,6 +5455,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5244,6 +5472,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5260,6 +5489,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lab_Flr_4_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5276,6 +5506,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5292,6 +5523,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5308,6 +5540,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5324,6 +5557,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5340,6 +5574,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5356,6 +5591,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR1_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR1_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5372,6 +5608,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5388,6 +5625,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5404,6 +5642,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5420,6 +5659,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5436,6 +5676,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5452,6 +5693,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR2_Mult5_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR2_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5468,6 +5710,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5484,6 +5727,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5500,6 +5744,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5516,6 +5761,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5532,6 +5778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5548,6 +5795,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR3_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR3_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5564,6 +5812,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5580,6 +5829,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5596,6 +5846,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5612,6 +5863,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5628,6 +5880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5644,6 +5897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR4_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR4_Flr_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5660,6 +5914,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5680,6 +5935,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5700,6 +5956,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5716,6 +5973,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5732,6 +5990,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5748,6 +6007,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5764,6 +6024,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5780,6 +6041,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5796,6 +6058,7 @@ Wall, !- Surface Type int-walls, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition OR_NurseSat_Flr_2_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5812,6 +6075,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5828,6 +6092,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5844,6 +6109,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5860,6 +6126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5876,6 +6143,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Flr_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5892,6 +6160,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5908,6 +6177,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office1_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5924,6 +6194,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5940,6 +6211,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5956,6 +6228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5972,6 +6245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5988,6 +6262,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6004,6 +6279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office1_Mult4_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6020,6 +6296,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6036,6 +6313,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6052,6 +6330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6068,6 +6347,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6084,6 +6364,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Mult5_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6100,6 +6381,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office2_Mult5_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6116,6 +6398,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6132,6 +6415,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6148,6 +6432,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6164,6 +6449,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6180,6 +6466,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office3_Flr_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6196,6 +6483,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office3_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6212,6 +6500,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6228,6 +6517,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6244,6 +6534,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6260,6 +6551,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6276,6 +6568,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6292,6 +6585,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office4_Mult6_Flr_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office4_Mult6_Flr_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6308,6 +6602,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6324,6 +6619,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6340,6 +6636,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6356,6 +6653,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6372,6 +6670,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6388,6 +6687,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6404,6 +6704,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6420,6 +6721,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6436,6 +6738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6452,6 +6755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6468,6 +6772,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6484,6 +6789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom1_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6500,6 +6806,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6516,6 +6823,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6532,6 +6840,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6548,6 +6857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6564,6 +6874,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6580,6 +6891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6596,6 +6908,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6612,6 +6925,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6628,6 +6942,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6644,6 +6959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6660,6 +6976,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6676,6 +6993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom2_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom2_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6692,6 +7010,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6708,6 +7027,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6724,6 +7044,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6740,6 +7061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6756,6 +7078,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6772,6 +7095,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6788,6 +7112,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6804,6 +7129,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6820,6 +7146,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6836,6 +7163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6852,6 +7180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6868,6 +7197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom3_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6884,6 +7214,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6900,6 +7231,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6916,6 +7248,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6932,6 +7265,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6948,6 +7282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6964,6 +7299,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_3_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6980,6 +7316,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6996,6 +7333,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7012,6 +7350,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7028,6 +7367,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7044,6 +7384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7060,6 +7401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom4_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom4_Flr_4_Wall_West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7076,6 +7418,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7092,6 +7435,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7108,6 +7452,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7124,6 +7469,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7140,6 +7486,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7156,6 +7503,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7172,6 +7520,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7188,6 +7537,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7204,6 +7554,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7220,6 +7571,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7236,6 +7588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7252,6 +7605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom5_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7268,6 +7622,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7284,6 +7639,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7300,6 +7656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7316,6 +7673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7332,6 +7690,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7348,6 +7707,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7364,6 +7724,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7380,6 +7741,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7396,6 +7758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7412,6 +7775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom6_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7428,6 +7792,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7444,6 +7809,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom6_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7460,6 +7826,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7476,6 +7843,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7492,6 +7860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7508,6 +7877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7524,6 +7894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7540,6 +7911,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7556,6 +7928,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7572,6 +7945,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7588,6 +7962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7604,6 +7979,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7620,6 +7996,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom7_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7636,6 +8013,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7652,6 +8030,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7668,6 +8047,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7684,6 +8064,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7700,6 +8081,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7716,6 +8098,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7732,6 +8115,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom8_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7748,6 +8132,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7764,6 +8149,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7780,6 +8166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7796,6 +8183,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7812,6 +8200,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PatRoom8_Flr_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7828,6 +8217,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name PatRoom8_Flr_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7844,6 +8234,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7860,6 +8251,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition PhysTherapy_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7876,6 +8268,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7892,6 +8285,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_3_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7908,6 +8302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7924,6 +8319,7 @@ Wall, !- Surface Type int-walls, !- Construction Name PhysTherapy_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7940,6 +8336,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7956,6 +8353,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Radiology_Flr_4_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7972,6 +8370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_SE_Flr_4_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7988,6 +8387,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_NW_Flr_4_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8004,6 +8404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8020,6 +8421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Radiology_Flr_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition NurseSat_Lobby_Flr_4_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12012,331 +12414,386 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7478.6947; !- Surface Area {m2} + , !- Surface Area {m2} + 7478.6947; !- Extended Field InternalMass, Corridor_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_1, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field InternalMass, Corridor_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_2, !- Zone or ZoneList Name - 1138.0622; !- Surface Area {m2} + , !- Surface Area {m2} + 1138.0622; !- Extended Field InternalMass, Corridor_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_5, !- Zone or ZoneList Name - 1003.3528; !- Surface Area {m2} + , !- Surface Area {m2} + 1003.3528; !- Extended Field InternalMass, Corridor_NW_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Corridor_NW_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_NW_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Corridor_SE_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_3, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Corridor_SE_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_SE_Flr_4, !- Zone or ZoneList Name - 1133.4171; !- Surface Area {m2} + , !- Surface Area {m2} + 1133.4171; !- Extended Field InternalMass, Dining_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Dining_Flr_5, !- Zone or ZoneList Name - 1393.5456; !- Surface Area {m2} + , !- Surface Area {m2} + 1393.5456; !- Extended Field InternalMass, ER_Exam1_Mult4_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Exam3_Mult4_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_NurseStn_Lobby_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name - 2471.2209; !- Surface Area {m2} + , !- Surface Area {m2} + 2471.2209; !- Extended Field InternalMass, ER_Trauma1_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_Trauma1_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Trauma2_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_Trauma2_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ER_Triage_Mult4_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, ICU_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ICU_Flr_2, !- Zone or ZoneList Name - 1235.9289; !- Surface Area {m2} + , !- Surface Area {m2} + 1235.9289; !- Extended Field InternalMass, ICU_NurseStn_Lobby_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name - 1337.5356; !- Surface Area {m2} + , !- Surface Area {m2} + 1337.5356; !- Extended Field InternalMass, IC_PatRoom1_Mult5_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, IC_PatRoom2_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom2_Flr_2, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, IC_PatRoom3_Mult6_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, Kitchen_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen_Flr_5, !- Zone or ZoneList Name - 1858.0608; !- Surface Area {m2} + , !- Surface Area {m2} + 1858.0608; !- Extended Field InternalMass, Lab_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lab_Flr_3, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field InternalMass, Lab_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lab_Flr_4, !- Zone or ZoneList Name - 529.5473; !- Surface Area {m2} + , !- Surface Area {m2} + 529.5473; !- Extended Field InternalMass, Lobby_Records_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby_Records_Flr_1, !- Zone or ZoneList Name - 2949.6212; !- Surface Area {m2} + , !- Surface Area {m2} + 2949.6212; !- Extended Field InternalMass, NurseStn_Lobby_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field InternalMass, NurseStn_Lobby_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name - 1811.6093; !- Surface Area {m2} + , !- Surface Area {m2} + 1811.6093; !- Extended Field InternalMass, NurseStn_Lobby_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name - 2081.0281; !- Surface Area {m2} + , !- Surface Area {m2} + 2081.0281; !- Extended Field InternalMass, OR1_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name OR1_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR2_Mult5_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name OR2_Mult5_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR3_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name OR3_Flr_2, !- Zone or ZoneList Name - 111.4836; !- Surface Area {m2} + , !- Surface Area {m2} + 111.4836; !- Extended Field InternalMass, OR4_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name OR4_Flr_2, !- Zone or ZoneList Name - 445.9346; !- Surface Area {m2} + , !- Surface Area {m2} + 445.9346; !- Extended Field InternalMass, OR_NurseStn_Lobby_Flr_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name - 2025.2863; !- Surface Area {m2} + , !- Surface Area {m2} + 2025.2863; !- Extended Field InternalMass, Office1_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office1_Flr_5, !- Zone or ZoneList Name - 139.3911; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3911; !- Extended Field InternalMass, Office1_Mult4_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office1_Mult4_Flr_1, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, Office2_Mult5_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office2_Mult5_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field InternalMass, Office3_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office3_Flr_5, !- Zone or ZoneList Name - 139.3546; !- Surface Area {m2} + , !- Surface Area {m2} + 139.3546; !- Extended Field InternalMass, Office4_Mult6_Flr_5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office4_Mult6_Flr_5, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, PatRoom1_Mult10_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom1_Mult10_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom2_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom2_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom2_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom3_Mult10_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom3_Mult10_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom4_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_3, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom4_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom4_Flr_4, !- Zone or ZoneList Name - 69.6773; !- Surface Area {m2} + , !- Surface Area {m2} + 69.6773; !- Extended Field InternalMass, PatRoom5_Mult10_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom5_Mult10_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, PatRoom6_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PatRoom6_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom6_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PatRoom7_Mult10_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom7_Mult10_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name - 40.4165; !- Surface Area {m2} + , !- Surface Area {m2} + 40.4165; !- Extended Field InternalMass, PatRoom8_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_3, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PatRoom8_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PatRoom8_Flr_4, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, PhysTherapy_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name PhysTherapy_Flr_3, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field InternalMass, Radiology_Flr_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Radiology_Flr_4, !- Zone or ZoneList Name - 975.4819; !- Surface Area {m2} + , !- Surface Area {m2} + 975.4819; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgLargeHotelNew2004_Chicago.idf b/testfiles/RefBldgLargeHotelNew2004_Chicago.idf index 4501ea3db53..70cb1babd0a 100644 --- a/testfiles/RefBldgLargeHotelNew2004_Chicago.idf +++ b/testfiles/RefBldgLargeHotelNew2004_Chicago.idf @@ -975,6 +975,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -991,6 +992,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1026,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1043,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1060,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Banquet_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1077,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1094,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1111,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1128,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1145,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1162,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1179,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1185,6 +1198,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1217,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1234,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1235,6 +1251,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,6 +1268,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1267,6 +1285,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1283,6 +1302,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1299,6 +1319,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1370,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1363,6 +1387,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1379,6 +1404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafe_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1421,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1413,6 +1440,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1429,6 +1457,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Ceiling_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1476,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1495,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1512,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1531,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1548,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1531,6 +1565,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1547,6 +1582,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1616,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1595,6 +1633,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1611,6 +1650,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1627,6 +1667,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1684,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1701,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1718,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1691,6 +1735,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1752,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1769,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1743,6 +1790,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1761,6 +1809,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1801,6 +1851,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1817,6 +1868,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1885,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1849,6 +1902,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1865,6 +1919,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1881,6 +1936,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1897,6 +1953,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1913,6 +1970,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_1_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1929,6 +1987,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1945,6 +2004,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Banquet_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1961,6 +2021,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_4_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1977,6 +2038,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1993,6 +2055,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2009,6 +2072,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2025,6 +2089,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2041,6 +2106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2057,6 +2123,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_2_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2073,6 +2140,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2091,6 +2159,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2109,6 +2178,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2125,6 +2195,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_6_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2141,6 +2212,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Flr_6_Wall_2_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2157,6 +2229,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2173,6 +2246,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2189,6 +2263,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Kitchen_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2205,6 +2280,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2221,6 +2297,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2237,6 +2314,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2253,6 +2331,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2269,6 +2348,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_2_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2285,6 +2365,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Laundry_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2301,6 +2382,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2323,6 +2405,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2339,6 +2422,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2357,6 +2441,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2375,6 +2460,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2391,6 +2477,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2407,6 +2494,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2423,6 +2511,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2439,6 +2528,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2455,6 +2545,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2471,6 +2562,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2487,6 +2579,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2503,6 +2596,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Laundry_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2613,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2630,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafe_Flr_1_Wall_1_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2647,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2664,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2583,6 +2681,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2599,6 +2698,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2615,6 +2715,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2631,6 +2732,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2647,6 +2749,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2663,6 +2766,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2679,6 +2783,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_1_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2695,6 +2800,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2711,6 +2817,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2727,6 +2834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2743,6 +2851,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2759,6 +2868,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2775,6 +2885,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Retail_1_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2791,6 +2902,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_2_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2807,6 +2919,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2823,6 +2936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2839,6 +2953,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_2_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2855,6 +2970,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Retail_1_Flr_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2871,6 +2987,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Retail_2_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2887,6 +3004,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2903,6 +3021,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2919,6 +3038,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2935,6 +3055,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2951,6 +3072,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2967,6 +3089,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_1_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2983,6 +3106,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2999,6 +3123,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3015,6 +3140,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3031,6 +3157,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3047,6 +3174,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3063,6 +3191,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_1_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3079,6 +3208,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3095,6 +3225,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3111,6 +3242,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3127,6 +3259,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3143,6 +3276,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3159,6 +3293,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_2_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3175,6 +3310,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3191,6 +3327,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3207,6 +3344,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_2_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3223,6 +3361,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3239,6 +3378,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_1_Flr_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3255,6 +3395,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_2_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3271,6 +3412,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3287,6 +3429,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3303,6 +3446,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3319,6 +3463,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3335,6 +3480,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3351,6 +3497,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult19_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3367,6 +3514,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3383,6 +3531,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3399,6 +3548,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3415,6 +3565,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3431,6 +3582,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3447,6 +3599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_3_Mult9_Flr_6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_3_Mult9_Flr_6_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3463,6 +3616,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3479,6 +3633,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3495,6 +3650,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3511,6 +3667,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3527,6 +3684,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3543,6 +3701,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_4_Mult19_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_4_Mult19_Flr_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3559,6 +3718,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3575,6 +3735,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3591,6 +3752,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3607,6 +3769,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3623,6 +3786,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3639,6 +3803,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_5_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_3_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3655,6 +3820,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3671,6 +3837,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_6_Flr_3_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3687,6 +3854,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3703,6 +3871,7 @@ Wall, !- Surface Type Mass Res Ext Wall, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3719,6 +3888,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room_5_Flr_3_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3735,6 +3905,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Room_6_Flr_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Flr_3_Wall_4_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3751,6 +3922,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Storage_Flr_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3767,6 +3939,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3783,6 +3956,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_4_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3799,6 +3973,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3815,6 +3990,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_Flr_1_Wall_4_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3831,6 +4007,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Storage_Flr_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_Flr_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5743,133 +5920,155 @@ Banquet_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Banquet_Flr_6, !- Zone or ZoneList Name - 663.3149; !- Surface Area {m2} + , !- Surface Area {m2} + 663.3149; !- Extended Field InternalMass, Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 3957.6604; !- Surface Area {m2} + , !- Surface Area {m2} + 3957.6604; !- Extended Field InternalMass, Cafe_Flr_1 Internal Mass,!- Name InteriorFurnishings, !- Construction Name Cafe_Flr_1, !- Zone or ZoneList Name - 377.7238; !- Surface Area {m2} + , !- Surface Area {m2} + 377.7238; !- Extended Field InternalMass, Corridor_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_3, !- Zone or ZoneList Name - 778.8094; !- Surface Area {m2} + , !- Surface Area {m2} + 778.8094; !- Extended Field InternalMass, Corridor_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Flr_6, !- Zone or ZoneList Name - 824.2494; !- Surface Area {m2} + , !- Surface Area {m2} + 824.2494; !- Extended Field InternalMass, Dining_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Dining_Flr_6, !- Zone or ZoneList Name - 663.3149; !- Surface Area {m2} + , !- Surface Area {m2} + 663.3149; !- Extended Field InternalMass, Kitchen_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen_Flr_6, !- Zone or ZoneList Name - 206.6089; !- Surface Area {m2} + , !- Surface Area {m2} + 206.6089; !- Extended Field InternalMass, Laundry_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Laundry_Flr_1, !- Zone or ZoneList Name - 156.0789; !- Surface Area {m2} + , !- Surface Area {m2} + 156.0789; !- Extended Field InternalMass, Lobby_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby_Flr_1, !- Zone or ZoneList Name - 2616.3722; !- Surface Area {m2} + , !- Surface Area {m2} + 2616.3722; !- Extended Field InternalMass, Mech_Flr_1 Internal Mass,!- Name InteriorFurnishings, !- Construction Name Mech_Flr_1, !- Zone or ZoneList Name - 328.4864; !- Surface Area {m2} + , !- Surface Area {m2} + 328.4864; !- Extended Field InternalMass, Retail_1_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Retail_1_Flr_1, !- Zone or ZoneList Name - 134.1427; !- Surface Area {m2} + , !- Surface Area {m2} + 134.1427; !- Extended Field InternalMass, Retail_2_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Retail_2_Flr_1, !- Zone or ZoneList Name - 155.3378; !- Surface Area {m2} + , !- Surface Area {m2} + 155.3378; !- Extended Field InternalMass, Room_1_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_1_Flr_3, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_1_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_1_Flr_6, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_2_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_2_Flr_3, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Room_2_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_2_Flr_6, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Room_3_Mult19_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_3_Mult19_Flr_3, !- Zone or ZoneList Name - 49.0477; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0477; !- Extended Field InternalMass, Room_3_Mult9_Flr_6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_3_Mult9_Flr_6, !- Zone or ZoneList Name - 49.0611; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0611; !- Extended Field InternalMass, Room_4_Mult19_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_4_Mult19_Flr_3, !- Zone or ZoneList Name - 49.0611; !- Surface Area {m2} + , !- Surface Area {m2} + 49.0611; !- Extended Field InternalMass, Room_5_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_5_Flr_3, !- Zone or ZoneList Name - 78.0440; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0440; !- Extended Field InternalMass, Room_6_Flr_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Room_6_Flr_3, !- Zone or ZoneList Name - 78.0349; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0349; !- Extended Field InternalMass, Storage_Flr_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Storage_Flr_1, !- Zone or ZoneList Name - 189.5185; !- Surface Area {m2} + , !- Surface Area {m2} + 189.5185; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgLargeOfficeNew2004_Chicago-ReturnReset.idf b/testfiles/RefBldgLargeOfficeNew2004_Chicago-ReturnReset.idf index c40942a301a..3f22117219c 100644 --- a/testfiles/RefBldgLargeOfficeNew2004_Chicago-ReturnReset.idf +++ b/testfiles/RefBldgLargeOfficeNew2004_Chicago-ReturnReset.idf @@ -894,6 +894,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +911,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +928,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +945,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +962,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +979,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +996,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1013,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1030,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1047,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1064,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1081,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1098,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1132,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1183,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1200,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1234,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1230,6 +1251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1268,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1262,6 +1285,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1278,6 +1302,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1319,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1387,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1374,6 +1404,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1421,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1438,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1455,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1472,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1489,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1470,6 +1506,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1486,6 +1523,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1502,6 +1540,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1557,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1574,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1591,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1566,6 +1608,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1625,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1598,6 +1642,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1659,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1630,6 +1676,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1646,6 +1693,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1662,6 +1710,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1678,6 +1727,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1744,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1710,6 +1761,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1726,6 +1778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1742,6 +1795,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1758,6 +1812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1774,6 +1829,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1790,6 +1846,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1806,6 +1863,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1822,6 +1880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1838,6 +1897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1931,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1948,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1902,6 +1965,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1918,6 +1982,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1934,6 +1999,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1950,6 +2016,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1966,6 +2033,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1982,6 +2050,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1998,6 +2067,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2014,6 +2084,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2030,6 +2101,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2046,6 +2118,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2062,6 +2135,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2078,6 +2152,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2094,6 +2169,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2186,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2203,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2142,6 +2220,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2237,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2254,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2271,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2206,6 +2288,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2222,6 +2305,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2238,6 +2322,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2254,6 +2339,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2270,6 +2356,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2286,6 +2373,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2302,6 +2390,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2318,6 +2407,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2334,6 +2424,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2350,6 +2441,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2366,6 +2458,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2382,6 +2475,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2398,6 +2492,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2414,6 +2509,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2430,6 +2526,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2446,6 +2543,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2462,6 +2560,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2478,6 +2577,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2494,6 +2594,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2510,6 +2611,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2526,6 +2628,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2542,6 +2645,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2558,6 +2662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2574,6 +2679,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2590,6 +2696,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2606,6 +2713,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2622,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2638,6 +2747,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2654,6 +2764,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2670,6 +2781,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2686,6 +2798,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2702,6 +2815,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2718,6 +2832,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2734,6 +2849,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2750,6 +2866,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2766,6 +2883,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2782,6 +2900,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2798,6 +2917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2814,6 +2934,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2830,6 +2951,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2846,6 +2968,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2862,6 +2985,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2878,6 +3002,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2894,6 +3019,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2910,6 +3036,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2926,6 +3053,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2942,6 +3070,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2958,6 +3087,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4199,97 +4329,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgLargeOfficeNew2004_Chicago.idf b/testfiles/RefBldgLargeOfficeNew2004_Chicago.idf index c135569e930..ca814443d64 100644 --- a/testfiles/RefBldgLargeOfficeNew2004_Chicago.idf +++ b/testfiles/RefBldgLargeOfficeNew2004_Chicago.idf @@ -893,6 +893,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -909,6 +910,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +927,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +944,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +961,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Basement, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +978,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +995,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1012,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1029,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1037,6 +1046,7 @@ Wall, !- Surface Type Underground Wall Non-res,!- Construction Name Basement, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1063,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1080,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1182,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1199,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1233,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1250,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1267,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1284,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1301,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1335,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1352,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1369,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1386,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1403,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1420,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1437,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1454,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1471,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1488,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1469,6 +1505,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1522,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1501,6 +1539,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name GroundFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1517,6 +1556,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1573,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1549,6 +1590,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1565,6 +1607,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1581,6 +1624,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1597,6 +1641,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1613,6 +1658,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1629,6 +1675,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1645,6 +1692,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1661,6 +1709,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1677,6 +1726,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1693,6 +1743,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1709,6 +1760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1725,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1741,6 +1794,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1757,6 +1811,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1773,6 +1828,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1789,6 +1845,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1805,6 +1862,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1821,6 +1879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1837,6 +1896,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1853,6 +1913,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1869,6 +1930,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1885,6 +1947,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1901,6 +1964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1917,6 +1981,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1933,6 +1998,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1949,6 +2015,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1965,6 +2032,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1981,6 +2049,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Basement_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1997,6 +2066,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2013,6 +2083,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2029,6 +2100,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2045,6 +2117,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2061,6 +2134,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2077,6 +2151,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2093,6 +2168,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2109,6 +2185,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2125,6 +2202,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2141,6 +2219,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2157,6 +2236,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2173,6 +2253,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2189,6 +2270,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2205,6 +2287,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2221,6 +2304,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2237,6 +2321,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2253,6 +2338,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2269,6 +2355,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2285,6 +2372,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2301,6 +2389,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2317,6 +2406,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2333,6 +2423,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2349,6 +2440,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2365,6 +2457,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2381,6 +2474,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2397,6 +2491,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2413,6 +2508,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2429,6 +2525,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2445,6 +2542,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2461,6 +2559,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2477,6 +2576,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2493,6 +2593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2509,6 +2610,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2525,6 +2627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2541,6 +2644,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2557,6 +2661,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2573,6 +2678,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2589,6 +2695,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2605,6 +2712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2621,6 +2729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2637,6 +2746,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2653,6 +2763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2669,6 +2780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2685,6 +2797,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2701,6 +2814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2717,6 +2831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2733,6 +2848,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2749,6 +2865,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2765,6 +2882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2781,6 +2899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2797,6 +2916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2813,6 +2933,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2829,6 +2950,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2845,6 +2967,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2861,6 +2984,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2877,6 +3001,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +3018,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +3035,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +3052,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2941,6 +3069,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2957,6 +3086,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4198,97 +4328,113 @@ Basement Internal Mass, !- Name InteriorFurnishings, !- Construction Name Basement, !- Zone or ZoneList Name - 7126.2120; !- Surface Area {m2} + , !- Surface Area {m2} + 7126.2120; !- Extended Field InternalMass, Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 5064.6464; !- Surface Area {m2} + , !- Surface Area {m2} + 5064.6464; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 626.8394; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8394; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 626.8257; !- Surface Area {m2} + , !- Surface Area {m2} + 626.8257; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 403.9503; !- Surface Area {m2} + , !- Surface Area {m2} + 403.9503; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago.idf b/testfiles/RefBldgMediumOfficeNew2004_Chicago.idf index 9f44dbbcae3..9ce04fc857b 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago.idf +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago.idf @@ -857,6 +857,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +874,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +959,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +976,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1061,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1078,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1112,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1197,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1214,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1231,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1248,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1265,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1282,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1299,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1316,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1333,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1350,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1367,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1384,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1401,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1418,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1435,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1452,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1433,6 +1469,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1449,6 +1486,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1503,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1520,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1537,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1529,6 +1571,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1545,6 +1588,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1605,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1577,6 +1622,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1639,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1656,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1625,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1707,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1724,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1689,6 +1741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1792,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1809,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1826,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1843,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1894,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1849,6 +1911,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1865,6 +1928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1881,6 +1945,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1897,6 +1962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1913,6 +1979,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1929,6 +1996,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1945,6 +2013,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1961,6 +2030,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1977,6 +2047,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1993,6 +2064,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2009,6 +2081,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2025,6 +2098,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2041,6 +2115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2057,6 +2132,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2073,6 +2149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2089,6 +2166,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2105,6 +2183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2121,6 +2200,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2137,6 +2217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2153,6 +2234,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2169,6 +2251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2185,6 +2268,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2201,6 +2285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2217,6 +2302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2233,6 +2319,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2249,6 +2336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2265,6 +2353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2281,6 +2370,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2297,6 +2387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2313,6 +2404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2329,6 +2421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2345,6 +2438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2361,6 +2455,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2377,6 +2472,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2393,6 +2489,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2409,6 +2506,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2425,6 +2523,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2441,6 +2540,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2457,6 +2557,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2473,6 +2574,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2489,6 +2591,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2608,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2521,6 +2625,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2537,6 +2642,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2553,6 +2659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2569,6 +2676,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2585,6 +2693,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2601,6 +2710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2617,6 +2727,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2633,6 +2744,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2649,6 +2761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2665,6 +2778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2681,6 +2795,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2697,6 +2812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2713,6 +2829,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2729,6 +2846,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2745,6 +2863,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2761,6 +2880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2777,6 +2897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2793,6 +2914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2809,6 +2931,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2825,6 +2948,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2841,6 +2965,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2857,6 +2982,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2873,6 +2999,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2889,6 +3016,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4086,91 +4214,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago_JSON_Outputs.idf b/testfiles/RefBldgMediumOfficeNew2004_Chicago_JSON_Outputs.idf index 4c1943cb923..d4609ad5907 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago_JSON_Outputs.idf +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago_JSON_Outputs.idf @@ -857,6 +857,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +874,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +959,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +976,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1061,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1078,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1112,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1197,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1214,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1231,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1248,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1265,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1282,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1299,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1316,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1333,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1350,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1367,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1384,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1401,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1418,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1435,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1452,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1433,6 +1469,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1449,6 +1486,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1503,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1520,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1537,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1529,6 +1571,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1545,6 +1588,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1605,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1577,6 +1622,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1639,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1656,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1625,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1707,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1673,6 +1724,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1689,6 +1741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1721,6 +1775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1792,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1809,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1769,6 +1826,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1843,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1833,6 +1894,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1849,6 +1911,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1865,6 +1928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1881,6 +1945,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1897,6 +1962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1913,6 +1979,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1929,6 +1996,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1945,6 +2013,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1961,6 +2030,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1977,6 +2047,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1993,6 +2064,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2009,6 +2081,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2025,6 +2098,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2041,6 +2115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2057,6 +2132,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2073,6 +2149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2089,6 +2166,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2105,6 +2183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2121,6 +2200,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2137,6 +2217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2153,6 +2234,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2169,6 +2251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2185,6 +2268,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2201,6 +2285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2217,6 +2302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2233,6 +2319,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2249,6 +2336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2265,6 +2353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2281,6 +2370,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2297,6 +2387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2313,6 +2404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2329,6 +2421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2345,6 +2438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2361,6 +2455,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2377,6 +2472,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2393,6 +2489,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2409,6 +2506,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2425,6 +2523,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2441,6 +2540,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2457,6 +2557,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2473,6 +2574,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2489,6 +2591,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2608,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2521,6 +2625,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2537,6 +2642,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2553,6 +2659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2569,6 +2676,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2585,6 +2693,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2601,6 +2710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2617,6 +2727,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2633,6 +2744,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2649,6 +2761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2665,6 +2778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2681,6 +2795,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2697,6 +2812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2713,6 +2829,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2729,6 +2846,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2745,6 +2863,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2761,6 +2880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2777,6 +2897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2793,6 +2914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2809,6 +2931,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2825,6 +2948,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2841,6 +2965,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2857,6 +2982,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2873,6 +2999,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2889,6 +3016,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4086,91 +4214,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago_OutputControl.idf b/testfiles/RefBldgMediumOfficeNew2004_Chicago_OutputControl.idf index 63ccc08f0b2..365f387a03e 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago_OutputControl.idf +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago_OutputControl.idf @@ -76,7 +76,9 @@ YES, !- Do System Sizing Calculation YES, !- Do Plant Sizing Calculation YES, !- Run Simulation for Sizing Periods - NO; !- Run Simulation for Weather File Run Periods + NO, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes Building, Ref Bldg Medium Office New2004_v1.3_5.0, !- Name @@ -855,6 +857,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +874,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -903,6 +908,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -919,6 +925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +959,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +976,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1015,6 +1027,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1031,6 +1044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1061,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1078,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1112,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1180,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1197,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,6 +1214,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1207,6 +1231,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1223,6 +1248,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1239,6 +1265,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1282,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1299,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1316,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1333,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1350,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1367,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1384,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1401,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1418,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1435,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1452,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1469,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1486,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1503,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1479,6 +1520,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1495,6 +1537,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1527,6 +1571,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1543,6 +1588,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1559,6 +1605,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1622,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1639,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1656,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1623,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1690,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1707,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1724,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1687,6 +1741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1735,6 +1792,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1751,6 +1809,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1767,6 +1826,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1783,6 +1843,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1799,6 +1860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1815,6 +1877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1831,6 +1894,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1847,6 +1911,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1863,6 +1928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1879,6 +1945,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1895,6 +1962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1911,6 +1979,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1927,6 +1996,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1943,6 +2013,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1959,6 +2030,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1975,6 +2047,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1991,6 +2064,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2007,6 +2081,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2023,6 +2098,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2039,6 +2115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2055,6 +2132,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2071,6 +2149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2087,6 +2166,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2103,6 +2183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2119,6 +2200,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2135,6 +2217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2151,6 +2234,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2167,6 +2251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2183,6 +2268,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2199,6 +2285,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2215,6 +2302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2231,6 +2319,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2247,6 +2336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2263,6 +2353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2279,6 +2370,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2295,6 +2387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2311,6 +2404,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2327,6 +2421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2343,6 +2438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2359,6 +2455,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2375,6 +2472,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2391,6 +2489,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2407,6 +2506,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2423,6 +2523,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2439,6 +2540,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2455,6 +2557,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2471,6 +2574,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2487,6 +2591,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2503,6 +2608,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2519,6 +2625,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2535,6 +2642,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2551,6 +2659,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2567,6 +2676,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2583,6 +2693,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2599,6 +2710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2615,6 +2727,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2631,6 +2744,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2647,6 +2761,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2663,6 +2778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2679,6 +2795,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2695,6 +2812,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2711,6 +2829,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2727,6 +2846,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2743,6 +2863,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2759,6 +2880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2775,6 +2897,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2791,6 +2914,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2807,6 +2931,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2823,6 +2948,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2839,6 +2965,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2855,6 +2982,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2871,6 +2999,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2887,6 +3016,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4084,91 +4214,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** @@ -7659,7 +7804,7 @@ UtilityCost:Tariff, IN_EIAMonthlyRateGas, !- Name - NaturalGas:Facility, !- Output Meter Name + NaturalGas:Facility, !- Output Meter Name MCF, !- Conversion Factor Choice , !- Energy Conversion Factor , !- Demand Conversion Factor @@ -7712,39 +7857,38 @@ 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} - OutputControl:Files, - Yes, ! CSV - No , ! MTR - No , ! ESO - No , ! EIO - No , ! Tabular - No , ! SQLite - No , ! JSON - No , ! AUDIT - No , ! Zone Sizing - No , ! System Sizing - No , ! DXF - No , ! BND - No , ! RDD - No , ! MDD - No , ! MTD - Yes, ! END - No , ! SHD - No , ! DFS - No , ! GLHE - No , ! DelightIn - No , ! DelightELdmp - No , ! DelightDFdmp - No , ! EDD - No , ! DBG - No , ! PerfLog - No , ! SLN - No , ! SCI - No , ! WRL - No , ! Screen - No , ! ExtShd - No ; ! Tarcog + Yes, !- Output CSV + No, !- Output MTR + No, !- Output ESO + No, !- Output EIO + No, !- Output Tabular + No, !- Output SQLite + No, !- Output JSON + No, !- Output AUDIT + No, !- Output Zone Sizing + No, !- Output System Sizing + No, !- Output DXF + No, !- Output BND + No, !- Output RDD + No, !- Output MDD + No, !- Output MTD + Yes, !- Output END + No, !- Output SHD + No, !- Output DFS + No, !- Output GLHE + No, !- Output DelightIn + No, !- Output DelightELdmp + No, !- Output DelightDFdmp + No, !- Output EDD + No, !- Output DBG + No, !- Output PerfLog + No, !- Output SLN + No, !- Output SCI + No, !- Output WRL + No, !- Output Screen + No, !- Output ExtShd + No; !- Output Tarcog Output:SQLite, SimpleAndTabular; !- Option Type @@ -7903,9 +8047,9 @@ Output:Table:Monthly, Heating Part Load Performance, !- Name 0, !- Digits After Decimal - Heating Coil NaturalGas Rate, !- Variable or Meter 1 Name + Heating Coil NaturalGas Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Heating Coil NaturalGas Rate, !- Variable or Meter 2 Name + Heating Coil NaturalGas Rate, !- Variable or Meter 2 Name Maximum; !- Aggregation Type for Variable or Meter 2 Output:Table:Monthly, @@ -7919,9 +8063,9 @@ Output:Table:Monthly, Fan Part Load Performance, !- Name 0, !- Digits After Decimal - Fan Electricity Rate, !- Variable or Meter 1 Name + Fan Electricity Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Fan Electricity Rate, !- Variable or Meter 2 Name + Fan Electricity Rate, !- Variable or Meter 2 Name Maximum; !- Aggregation Type for Variable or Meter 2 Output:Table:TimeBins, diff --git a/testfiles/RefBldgMidriseApartmentNew2004_Chicago.idf b/testfiles/RefBldgMidriseApartmentNew2004_Chicago.idf index 2e928b7ea27..3115535e630 100644 --- a/testfiles/RefBldgMidriseApartmentNew2004_Chicago.idf +++ b/testfiles/RefBldgMidriseApartmentNew2004_Chicago.idf @@ -998,6 +998,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1015,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1032,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1049,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1066,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1083,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g WWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1096,6 +1102,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1112,6 +1119,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1128,6 +1136,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1153,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,6 +1170,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g NWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1176,6 +1187,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition G WWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1206,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1210,6 +1223,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1226,6 +1240,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1257,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1274,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g SWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1291,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1310,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1308,6 +1327,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1324,6 +1344,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1361,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1378,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1414,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1406,6 +1431,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1448,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1465,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1482,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g WWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1499,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1518,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1504,6 +1535,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1520,6 +1552,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1569,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1552,6 +1586,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g WWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1568,6 +1603,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1586,6 +1622,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1602,6 +1639,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1618,6 +1656,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1634,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1650,6 +1690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g WWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1666,6 +1707,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1726,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1743,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1716,6 +1760,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1732,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Wall 3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1748,6 +1794,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g WWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1764,6 +1811,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g EIWALL S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1782,6 +1830,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1798,6 +1847,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1864,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1881,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1846,6 +1898,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m SWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1880,6 +1934,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1896,6 +1951,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1912,6 +1968,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1928,6 +1985,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1944,6 +2002,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1960,6 +2019,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1978,6 +2038,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1994,6 +2055,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2010,6 +2072,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2026,6 +2089,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2042,6 +2106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2058,6 +2123,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2076,6 +2142,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2092,6 +2159,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2108,6 +2176,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2124,6 +2193,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2140,6 +2210,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m NWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2156,6 +2227,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2246,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2190,6 +2263,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2206,6 +2280,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2222,6 +2297,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2238,6 +2314,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2254,6 +2331,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2272,6 +2350,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2288,6 +2367,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2304,6 +2384,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2320,6 +2401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2336,6 +2418,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2352,6 +2435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2370,6 +2454,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2386,6 +2471,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2402,6 +2488,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2418,6 +2505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2434,6 +2522,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2450,6 +2539,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2468,6 +2558,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2484,6 +2575,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceilin S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2500,6 +2592,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2516,6 +2609,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Wall 2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2532,6 +2626,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m WWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2548,6 +2643,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m EIWALL S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2566,6 +2662,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2582,6 +2679,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2696,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2614,6 +2713,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2630,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t SWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2646,6 +2747,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T SW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2664,6 +2766,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2680,6 +2783,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2696,6 +2800,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2712,6 +2817,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2728,6 +2834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2744,6 +2851,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T NW Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2870,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2778,6 +2887,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2794,6 +2904,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2810,6 +2921,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2826,6 +2938,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2955,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T SE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2860,6 +2974,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2876,6 +2991,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2892,6 +3008,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2908,6 +3025,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2924,6 +3042,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t NWall C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2940,6 +3059,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T NE Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2958,6 +3078,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2974,6 +3095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2990,6 +3112,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3006,6 +3129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3022,6 +3146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3038,6 +3163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3056,6 +3182,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3072,6 +3199,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3088,6 +3216,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3104,6 +3233,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3120,6 +3250,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3136,6 +3267,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T N2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3154,6 +3286,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3170,6 +3303,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3186,6 +3320,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3202,6 +3337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3218,6 +3354,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3234,6 +3371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S1 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3252,6 +3390,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t GFloor S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3268,6 +3407,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3284,6 +3424,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3300,6 +3441,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Wall 5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3316,6 +3458,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t WWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3332,6 +3475,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T S2 Apartment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t EIWALL S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3350,6 +3494,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3366,6 +3511,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3382,6 +3528,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3398,6 +3545,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3414,6 +3562,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t NIWall SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3430,6 +3579,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t SIWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3446,6 +3596,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t SIWall NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3462,6 +3613,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t SIWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3478,6 +3630,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t SIWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3494,6 +3647,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t NIWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3510,6 +3664,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t NIWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3526,6 +3681,7 @@ Wall, !- Surface Type int-walls, !- Construction Name T Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition t NIWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3544,6 +3700,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3560,6 +3717,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3576,6 +3734,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3592,6 +3751,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g NIWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3608,6 +3768,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g SIWall NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3624,6 +3785,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name G Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3640,6 +3802,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g NIWall SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3656,6 +3819,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g NIWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3672,6 +3836,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g NIWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3688,6 +3853,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g SIWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3704,6 +3870,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g SIWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3720,6 +3887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name G Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition g SIWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3738,6 +3906,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3754,6 +3923,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name M Corridor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3770,6 +3940,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Ceiling C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3786,6 +3957,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m Floor C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3802,6 +3974,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m SIWall NEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3818,6 +3991,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m NIWall SWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3834,6 +4008,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m NIWall S1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3850,6 +4025,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m NIWall S2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3866,6 +4042,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m NIWall SEA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3882,6 +4059,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m SIWall NWA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3898,6 +4076,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m SIWall N1A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3914,6 +4093,7 @@ Wall, !- Surface Type int-walls, !- Construction Name M Corridor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition m SIWall N2A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6277,163 +6457,190 @@ Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G Corridor Internal Mass,!- Name InteriorFurnishings, !- Construction Name G Corridor, !- Zone or ZoneList Name - 155.3169; !- Surface Area {m2} + , !- Surface Area {m2} + 155.3169; !- Extended Field InternalMass, M Corridor Internal Mass,!- Name InteriorFurnishings, !- Construction Name M Corridor, !- Zone or ZoneList Name - 155.3169; !- Surface Area {m2} + , !- Surface Area {m2} + 155.3169; !- Extended Field InternalMass, T Corridor Internal Mass,!- Name InteriorFurnishings, !- Construction Name T Corridor, !- Zone or ZoneList Name - 155.3169; !- Surface Area {m2} + , !- Surface Area {m2} + 155.3169; !- Extended Field InternalMass, G SW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G SW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G NW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G NW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G NE Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G NE Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G N1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G N1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G N2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G N2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G S1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G S1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, G S2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name G S2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M SW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M SW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M NW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M NW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M SE Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M SE Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M NE Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M NE Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M N1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M N1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M N2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M N2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M S1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M S1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, M S2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name M S2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T SW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T SW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T NW Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T NW Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T SE Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T SE Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T NE Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T NE Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T N1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T N1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T N2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T N2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T S1 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T S1 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field InternalMass, T S2 Apartment Internal Mass, !- Name InteriorFurnishings, !- Construction Name T S2 Apartment, !- Zone or ZoneList Name - 176.4974; !- Surface Area {m2} + , !- Surface Area {m2} + 176.4974; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgOutPatientNew2004_Chicago.idf b/testfiles/RefBldgOutPatientNew2004_Chicago.idf index e9f213f2e9d..d0732cd0175 100644 --- a/testfiles/RefBldgOutPatientNew2004_Chicago.idf +++ b/testfiles/RefBldgOutPatientNew2004_Chicago.idf @@ -2477,6 +2477,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1003C1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2493,6 +2494,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 102EC4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2509,6 +2511,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BAD27A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2525,6 +2528,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10830D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2541,6 +2545,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10E44F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2557,6 +2562,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 10FB67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2573,6 +2579,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 111907, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2589,6 +2596,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 114EC6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2605,6 +2613,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 115AA8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2621,6 +2630,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 11E9BF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2637,6 +2647,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 121DFF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2653,6 +2664,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 13225F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2669,6 +2681,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 137A14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2685,6 +2698,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 137CDB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2701,6 +2715,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14A82B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2717,6 +2732,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 14F382, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2733,6 +2749,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2749,6 +2766,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2765,6 +2783,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 156F92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2781,6 +2800,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8FC82, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2797,6 +2817,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 16E41D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2813,6 +2834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1701A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2829,6 +2851,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3DE7A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2845,6 +2868,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1747DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2861,6 +2885,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2877,6 +2902,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 180143, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2919,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1875B3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2909,6 +2936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 18AFE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2925,6 +2953,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 192E17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +2970,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 196C5F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +2987,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 19D150, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2973,6 +3004,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1AD133, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2989,6 +3021,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1B2EF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3005,6 +3038,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3021,6 +3055,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1CF7B0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3037,6 +3072,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1D53D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3053,6 +3089,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3069,6 +3106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1D9EED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3085,6 +3123,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1DC177, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3101,6 +3140,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3117,6 +3157,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1E3410, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3133,6 +3174,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1EB5B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3149,6 +3191,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1F37D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3165,6 +3208,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A28F01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3181,6 +3225,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3197,6 +3242,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 211EA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3213,6 +3259,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 212961, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3229,6 +3276,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2272E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3245,6 +3293,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 231744, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3261,6 +3310,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23683B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3277,6 +3327,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23C13E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3293,6 +3344,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 23FD0A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3309,6 +3361,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 240A7C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3325,6 +3378,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2451B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3341,6 +3395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 247258, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3357,6 +3412,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 247FD8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3373,6 +3429,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24DA9F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3389,6 +3446,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 24EAE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3405,6 +3463,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 256F02, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3421,6 +3480,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25A972, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3437,6 +3497,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 25AB11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3453,6 +3514,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 26E66C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3469,6 +3531,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3485,6 +3548,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2730E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3501,6 +3565,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2740BD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3517,6 +3582,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 27B0D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3533,6 +3599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 27D999, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3549,6 +3616,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2805F0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3565,6 +3633,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3581,6 +3650,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 28DE5A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3597,6 +3667,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 290CAB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3613,6 +3684,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 290DF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3629,6 +3701,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 296861, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3645,6 +3718,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2AC8D1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3661,6 +3735,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B4DBD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3677,6 +3752,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2B5816, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3693,6 +3769,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2BC70D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3709,6 +3786,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2C8181, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3725,6 +3803,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2CB843, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3741,6 +3820,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2CF0AA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3757,6 +3837,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2D0A7F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3773,6 +3854,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2D53AC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3789,6 +3871,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2DB420, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3805,6 +3888,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2DEB73, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3821,6 +3905,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3837,6 +3922,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E6DF0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3853,6 +3939,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E74E6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3869,6 +3956,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2E8328, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3885,6 +3973,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2FAF44, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3901,6 +3990,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 2FEACD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3917,6 +4007,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 301CE0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3933,6 +4024,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 307901, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3949,6 +4041,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 30A09C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3965,6 +4058,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 30DB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3981,6 +4075,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3179A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3997,6 +4092,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 319A6B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4013,6 +4109,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 31B3DF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4029,6 +4126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 32CC19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4045,6 +4143,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 330DF9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4061,6 +4160,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4077,6 +4177,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 33A280, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4093,6 +4194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 34019D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4109,6 +4211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 34B8D8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4125,6 +4228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 35028C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4141,6 +4245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 35051E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4157,6 +4262,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 352740, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4173,6 +4279,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3613B7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4189,6 +4296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 361D65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4205,6 +4313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8FF821, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4221,6 +4330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 36E420, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4237,6 +4347,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 37E2C7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4253,6 +4364,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 388F10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4269,6 +4381,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4285,6 +4398,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 38F548, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4301,6 +4415,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 390BCF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4317,6 +4432,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3947B8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4333,6 +4449,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 39E49D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4349,6 +4466,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3A6904, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4365,6 +4483,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3C5322, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4381,6 +4500,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3C9825, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4397,6 +4517,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3D4DE8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4413,6 +4534,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3D7175, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4429,6 +4551,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 17258E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4445,6 +4568,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 3F71D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4461,6 +4585,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 41514F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4477,6 +4602,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 415590, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4493,6 +4619,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4161C8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4509,6 +4636,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4180E7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4525,6 +4653,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 41CE25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4541,6 +4670,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4557,6 +4687,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 42E287, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4573,6 +4704,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 42FAB2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4589,6 +4721,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 430C7E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4605,6 +4738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 436189, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4621,6 +4755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4398AD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4637,6 +4772,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 976E3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4653,6 +4789,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 442699, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4669,6 +4806,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 446771, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4685,6 +4823,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4497EF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4701,6 +4840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 44D36C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4717,6 +4857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4507E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4733,6 +4874,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 460DA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4749,6 +4891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 462370, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4765,6 +4908,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46237E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4781,6 +4925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46292D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4797,6 +4942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 464A53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4813,6 +4959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 46E87C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4829,6 +4976,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4783F2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4845,6 +4993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 479A9C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4861,6 +5010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 47CE83, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4877,6 +5027,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4893,6 +5044,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 484FB1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4909,6 +5061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4911A5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4925,6 +5078,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 491317, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4941,6 +5095,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 49516D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4957,6 +5112,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4973,6 +5129,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BDE9D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4989,6 +5146,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 49DA86, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5005,6 +5163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4A07CD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5021,6 +5180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4A854B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5037,6 +5197,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4AB310, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5053,6 +5214,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5069,6 +5231,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4AD319, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5085,6 +5248,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5101,6 +5265,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5117,6 +5282,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4BFCC1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5133,6 +5299,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4C4C25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5149,6 +5316,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4C8372, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5165,6 +5333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CCA8D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5181,6 +5350,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CDC86, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5197,6 +5367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4CE123, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5213,6 +5384,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4D50C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5229,6 +5401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4DA0F5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5245,6 +5418,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E1563, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5261,6 +5435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E3BB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5277,6 +5452,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4E78E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5293,6 +5469,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4EB51A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5309,6 +5486,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4ED109, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5325,6 +5503,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4EE021, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5341,6 +5520,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 4F0CD7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5357,6 +5537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 50DB3D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5373,6 +5554,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 513564, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5389,6 +5571,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5405,6 +5588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 52CA89, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5421,6 +5605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 53450D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5437,6 +5622,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5453,6 +5639,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5469,6 +5656,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 55191F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5485,6 +5673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 551E65, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5501,6 +5690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5556EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5517,6 +5707,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 55BD05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5533,6 +5724,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 56C7DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5549,6 +5741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1B522, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5565,6 +5758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 575A7B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5581,6 +5775,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 577A10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5597,6 +5792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 577E2E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5613,6 +5809,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5629,6 +5826,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58A74A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5645,6 +5843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58AD84, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5661,6 +5860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 58B6B6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5677,6 +5877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 596DE0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5693,6 +5894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 59E0E4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5709,6 +5911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5A39B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5725,6 +5928,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5741,6 +5945,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5757,6 +5962,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B255F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5773,6 +5979,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5B736E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5789,6 +5996,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5C7E1E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5805,6 +6013,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5CB500, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5825,6 +6034,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5CD67D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5841,6 +6051,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D199F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5857,6 +6068,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D2769, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5873,6 +6085,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5D8FAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5889,6 +6102,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5DACB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5905,6 +6119,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5DBD9D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5921,6 +6136,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5937,6 +6153,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF47AC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5953,6 +6170,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EB34C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5969,6 +6187,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5F697A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5985,6 +6204,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6001,6 +6221,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5FDFAE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6017,6 +6238,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6F0E5D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6033,6 +6255,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 612A96, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6049,6 +6272,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 619EE6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6065,6 +6289,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6081,6 +6306,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 62475F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6097,6 +6323,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 624E8A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6113,6 +6340,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 628387, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6129,6 +6357,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 637F6F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6145,6 +6374,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 63B825, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6161,6 +6391,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 640E64, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6177,6 +6408,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 65AB67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6193,6 +6425,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 66B6F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6209,6 +6442,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6713DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6225,6 +6459,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 673317, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6241,6 +6476,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 67BF89, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6257,6 +6493,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 680AA1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6273,6 +6510,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 685FFA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6289,6 +6527,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6305,6 +6544,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 68F53B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6321,6 +6561,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 695D6E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6337,6 +6578,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6975B0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6353,6 +6595,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6A2DCE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6369,6 +6612,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6B31A8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6385,6 +6629,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6C68C2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6401,6 +6646,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6417,6 +6663,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6433,6 +6680,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6449,6 +6697,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6D960C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6465,6 +6714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6E46A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6481,6 +6731,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EA05E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6497,6 +6748,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EA718, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6513,6 +6765,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EC372, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6529,6 +6782,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6ED237, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6545,6 +6799,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B2F07D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6561,6 +6816,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 60F634, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6577,6 +6833,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6F1456, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6595,6 +6852,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6FB351, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6611,6 +6869,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6FCE5C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6627,6 +6886,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7008C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6643,6 +6903,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 703D3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6659,6 +6920,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 704EC3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6675,6 +6937,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 707E04, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6691,6 +6954,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 70C0BF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6707,6 +6971,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 70DAD1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6723,6 +6988,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7149EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6739,6 +7005,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 71A3C4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6755,6 +7022,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 726F67, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6771,6 +7039,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72A819, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6787,6 +7056,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72BCFE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6803,6 +7073,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 72C4ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6819,6 +7090,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 738F37, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6835,6 +7107,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 73E892, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6851,6 +7124,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 92A2CB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6867,6 +7141,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 75353D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6883,6 +7158,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 758B3C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6899,6 +7175,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 761D33, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6915,6 +7192,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7620CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6931,6 +7209,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 762874, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6947,6 +7226,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 762F8C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6963,6 +7243,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 76F2F2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6979,6 +7260,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 772842, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6995,6 +7277,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7816FD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7011,6 +7294,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7949FA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7027,6 +7311,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 79D0A5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7043,6 +7328,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A03ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7059,6 +7345,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7A3F36, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7075,6 +7362,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7AE5B9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7091,6 +7379,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B1677, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7107,6 +7396,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B67EC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7123,6 +7413,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7B9EEC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7139,6 +7430,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7DCAF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7155,6 +7447,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7C84B6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7171,6 +7464,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7D08C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7187,6 +7481,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7DB101, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7203,6 +7498,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7C0F83, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7219,6 +7515,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7E0561, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7235,6 +7532,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7251,6 +7549,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D699FF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7267,6 +7566,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 803791, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7283,6 +7583,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 808817, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7299,6 +7600,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 809229, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7315,6 +7617,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8134C2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7331,6 +7634,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8144C0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7347,6 +7651,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 815D63, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7363,6 +7668,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 X-Ray, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 816C9F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7379,6 +7685,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 816F6D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7395,6 +7702,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7411,6 +7719,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA9233, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7427,6 +7736,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 82303C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7443,6 +7753,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 824665, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7459,6 +7770,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 824F52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7475,6 +7787,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 825233, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7491,6 +7804,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 827528, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7507,6 +7821,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 830326, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7523,6 +7838,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8316C5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7539,6 +7855,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8364DC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7555,6 +7872,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 839A66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7571,6 +7889,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83A098, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7587,6 +7906,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 83B6E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7603,6 +7923,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7619,6 +7940,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7635,6 +7957,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7651,6 +7974,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 852027, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7667,6 +7991,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 855B07, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7683,6 +8008,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8594D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7699,6 +8025,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7715,6 +8042,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86244A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7731,6 +8059,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 867BBB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7747,6 +8076,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 869ED5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7763,6 +8093,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86A0D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7779,6 +8110,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86A28D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7795,6 +8127,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 86E9C2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7813,6 +8146,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 874DF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7829,6 +8163,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7845,6 +8180,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87BFF8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7861,6 +8197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 87BFF9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7877,6 +8214,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7893,6 +8231,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 88CB69, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7909,6 +8248,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 88D2F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7925,6 +8265,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7941,6 +8282,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 897BAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7957,6 +8299,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 89A685, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7973,6 +8316,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 89BBEB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7989,6 +8333,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A30DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8005,6 +8350,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8A5790, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8021,6 +8367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8BB36F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8037,6 +8384,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8BCB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8053,6 +8401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C3884, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8069,6 +8418,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C4550, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8085,6 +8435,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8C4FA5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8101,6 +8452,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8117,6 +8469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8D03E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8133,6 +8486,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BEDECA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8149,6 +8503,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8165,6 +8520,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8181,6 +8537,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8E1DCD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8197,6 +8554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8213,6 +8571,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8F966C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8229,6 +8588,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 368E02, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8245,6 +8605,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 906F5E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8261,6 +8622,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 90FDA9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8277,6 +8639,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 910B03, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8293,6 +8656,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 917AB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8309,6 +8673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 91DE28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8325,6 +8690,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 74AB49, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8341,6 +8707,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 92E22C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8357,6 +8724,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 942718, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8373,6 +8741,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 94A56A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8389,6 +8758,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 95486C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8405,6 +8775,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 957242, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8421,6 +8792,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 958E3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8437,6 +8809,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8453,6 +8826,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 962DB5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8469,6 +8843,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 96662A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8485,6 +8860,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 966665, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8501,6 +8877,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 969F22, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8517,6 +8894,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97616F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8533,6 +8911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 43A2A2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8549,6 +8928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97B688, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8565,6 +8945,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 97BB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8581,6 +8962,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8597,6 +8979,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9853A2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8613,6 +8996,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1C64E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8629,6 +9013,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9879B2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8645,6 +9030,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9926F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8661,6 +9047,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FCDEAC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8677,6 +9064,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 995832, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8693,6 +9081,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9969B3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8709,6 +9098,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8725,6 +9115,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9A5B84, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8741,6 +9132,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9A776E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8757,6 +9149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AB92B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8773,6 +9166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9ABA5B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8789,6 +9183,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AC2BE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8805,6 +9200,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9AC2E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8821,6 +9217,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D5E94D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8837,6 +9234,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9BB388, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8853,6 +9251,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C0202, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8869,6 +9268,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8885,6 +9285,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C568B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8901,6 +9302,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9C6F66, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8917,6 +9319,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8933,6 +9336,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9DB411, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8949,6 +9353,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9E12D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8965,6 +9370,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9E6B6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8981,6 +9387,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9EADD8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -8997,6 +9404,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9013,6 +9421,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9FBDA3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9029,6 +9438,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9FF31D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9045,6 +9455,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9FF92B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9061,6 +9472,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A02892, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9079,6 +9491,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A1087A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9095,6 +9508,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A11DA8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9111,6 +9525,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A168ED, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9127,6 +9542,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 204CB9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9143,6 +9559,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A2AAC5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9159,6 +9576,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A3E3D6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9175,6 +9593,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9191,6 +9610,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A49FCC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9207,6 +9627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A4B378, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9223,6 +9644,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A4BE81, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9239,6 +9661,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A524F1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9255,6 +9678,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A59907, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9271,6 +9695,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9287,6 +9712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A6D45E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9303,6 +9729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A78253, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9319,6 +9746,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A7F46C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9335,6 +9763,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8A4FA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9351,6 +9780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A8DB72, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9367,6 +9797,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 16BE00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9383,6 +9814,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A9A1F6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9399,6 +9831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition A9C27A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9415,6 +9848,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA1709, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9431,6 +9865,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AA26DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9447,6 +9882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AAD404, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9463,6 +9899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AAF377, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9479,6 +9916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AB4E10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9495,6 +9933,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AC05CF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9511,6 +9950,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AC74DB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9527,6 +9967,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AC956A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9543,6 +9984,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ACADA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9559,6 +10001,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ACB61B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9577,6 +10020,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9593,6 +10037,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ADD799, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9609,6 +10054,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE206C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9625,6 +10071,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AE702D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9641,6 +10088,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AEA170, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9657,6 +10105,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Conference, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9673,6 +10122,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9689,6 +10139,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition AF27F8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9705,6 +10156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B04C98, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9721,6 +10173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B1856A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9737,6 +10190,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 6EE166, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9753,6 +10207,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9769,6 +10224,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B352F7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9785,6 +10241,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9801,6 +10258,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B3A518, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9817,6 +10275,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9833,6 +10292,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B45B50, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9849,6 +10309,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B46F2C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9865,6 +10326,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9881,6 +10343,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B4F89F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9897,6 +10360,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B51929, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9913,6 +10377,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B551AD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9929,6 +10394,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B5E37D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9945,6 +10411,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B76374, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9961,6 +10428,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B840A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9977,6 +10445,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B92155, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -9993,6 +10462,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B972D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10009,6 +10479,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition B9D6E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10025,6 +10496,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BA91C7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10041,6 +10513,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BABBB4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10057,6 +10530,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 1068C8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10073,6 +10547,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BADB96, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10089,6 +10564,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BB097B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10105,6 +10581,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BBEE0B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10121,6 +10598,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC25F3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10137,6 +10615,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D68874, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10153,6 +10632,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC6EE7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10169,6 +10649,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BD4B70, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10185,6 +10666,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BDC047, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10201,6 +10683,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 49DA28, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10217,6 +10700,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10233,6 +10717,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 8D1659, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10249,6 +10734,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BF7411, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10265,6 +10751,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE6295, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10281,6 +10768,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFB8E1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10303,6 +10791,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFD4BB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10319,6 +10808,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C050FD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10335,6 +10825,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C0697F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10351,6 +10842,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C0F51F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10367,6 +10859,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10383,6 +10876,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1AD55, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10399,6 +10893,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 573330, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10415,6 +10910,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10431,6 +10927,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 986A05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10447,6 +10944,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2156D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10463,6 +10961,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2CE5F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10479,6 +10978,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C34217, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10495,6 +10995,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C39FCC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10513,6 +11014,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3FB92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10529,6 +11031,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Nurse Station 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C45BF3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10545,6 +11048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C48E94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10561,6 +11065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4A89B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10577,6 +11082,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C51FD6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10593,6 +11099,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10609,6 +11116,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10625,6 +11133,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5ECA6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10641,6 +11150,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10657,6 +11167,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C732D4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10673,6 +11184,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C75191, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10689,6 +11201,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C78153, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10705,6 +11218,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C7B7AA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10721,6 +11235,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10737,6 +11252,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C86932, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10753,6 +11269,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C92A6E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10769,6 +11286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C9D24D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10785,6 +11303,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C9F74B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10801,6 +11320,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA45DE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10817,6 +11337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA6EDA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10833,6 +11354,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA9485, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10849,6 +11371,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CA9655, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10865,6 +11388,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CADDAF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10881,6 +11405,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CBB2D7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10897,6 +11422,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC17E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10913,6 +11439,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC4EB4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10929,6 +11456,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CC8990, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10945,6 +11473,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CD21EC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10961,6 +11490,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CD7BAD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10977,6 +11507,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CDD69A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10993,6 +11524,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11009,6 +11541,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CE4555, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11025,6 +11558,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11041,6 +11575,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11057,6 +11592,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition CF2803, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11073,6 +11609,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D0731B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11089,6 +11626,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D0C6E8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11105,6 +11643,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D10EC7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11121,6 +11660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D13E00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11137,6 +11677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D197DA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11153,6 +11694,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D1A180, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11169,6 +11711,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D21333, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11185,6 +11728,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11201,6 +11745,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2C53A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11217,6 +11762,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EEFDE3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11233,6 +11779,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D37566, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11249,6 +11796,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D4A2A4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11265,6 +11813,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D4C22E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11281,6 +11830,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11297,6 +11847,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E2AFEB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11313,6 +11864,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 9BA592, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11329,6 +11881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D6005B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11345,6 +11898,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D60B94, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11361,6 +11915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D61127, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11377,6 +11932,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D67C59, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11393,6 +11949,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BC2C22, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11409,6 +11966,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 7F6FC2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11425,6 +11983,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D6F20A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11443,6 +12002,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D75504, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11459,6 +12019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D7AC92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11475,6 +12036,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D7DC8D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11491,6 +12053,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D88779, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11507,6 +12070,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11523,6 +12087,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D9965C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11539,6 +12104,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D9F81F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11555,6 +12121,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DA6040, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11571,6 +12138,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DA760E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11587,6 +12155,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DB7F62, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11603,6 +12172,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11619,6 +12189,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DDCF3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11635,6 +12206,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE027F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11651,6 +12223,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BFA29B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11667,6 +12240,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DE64CC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11683,6 +12257,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF3AA3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11699,6 +12274,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 5EAFB3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11715,6 +12291,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF5076, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11731,6 +12308,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DF91E0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11747,6 +12325,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Office Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFA16C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11763,6 +12342,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFA4B1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11779,6 +12359,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11795,6 +12376,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition DFDE4F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11811,6 +12393,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11827,6 +12410,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0C0A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11843,6 +12427,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0C60A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11859,6 +12444,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9DFA4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11875,6 +12461,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0D6E9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11891,6 +12478,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0FD95, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11907,6 +12495,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E11109, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11923,6 +12512,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E13FC4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11939,6 +12529,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E1B4BB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11955,6 +12546,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Dictation, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E1B973, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11971,6 +12563,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E26130, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11987,6 +12580,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D5C4E5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12003,6 +12597,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E321D9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12019,6 +12614,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12035,6 +12631,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F41621, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12051,6 +12648,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5BC3F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12067,6 +12665,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E5CB03, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12083,6 +12682,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E608B9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12099,6 +12699,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E63515, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12115,6 +12716,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E648BC, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12131,6 +12733,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E77E00, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12147,6 +12750,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7A265, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12163,6 +12767,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12179,6 +12784,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E7EC3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12195,6 +12801,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E82152, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12211,6 +12818,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12227,6 +12835,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E88E01, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12243,6 +12852,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E89C6C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12259,6 +12869,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam Hall 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9AEFF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12275,6 +12886,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 2 Scheduling 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9B121, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12291,6 +12903,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Reception Toilet,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9C76F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12307,6 +12920,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E9F3F6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12323,6 +12937,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EA4A9E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12339,6 +12954,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12355,6 +12971,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EA8FA7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12371,6 +12988,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EAD1EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12387,6 +13005,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EAE60F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12403,6 +13022,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EC28A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12419,6 +13039,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ECDEDB, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12435,6 +13056,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED1C1D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12451,6 +13073,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Nurse Station 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED1D7F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12467,6 +13090,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ED650B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12483,6 +13107,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition D2E9BA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12499,6 +13124,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition EFFB3B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12515,6 +13141,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F07866, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12531,6 +13158,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0AF69, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12547,6 +13175,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0B690, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12563,6 +13192,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0D8EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12579,6 +13209,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F0E4AA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12595,6 +13226,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 2 Exam Hall 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12611,6 +13243,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F22E15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12627,6 +13260,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F23BF4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12643,6 +13277,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F23EB6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12659,6 +13294,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F2515C, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12675,6 +13311,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F29458, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12691,6 +13328,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3084E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12707,6 +13345,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F3F6EA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12723,6 +13362,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E55935, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12739,6 +13379,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F43F35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12755,6 +13396,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4D6DD, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12771,6 +13413,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F4FE92, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12787,6 +13430,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F5E7FE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12803,6 +13447,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12819,6 +13464,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Scheduling 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F631E4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12835,6 +13481,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Conference Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6D879, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12851,6 +13498,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6DDE6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12867,6 +13515,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Janitor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6E6D8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12883,6 +13532,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Storage 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6E717, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12899,6 +13549,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F6F6C6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12915,6 +13566,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F740DF, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12931,6 +13583,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F77E4B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12949,6 +13602,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12965,6 +13619,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F7F8BA, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12981,6 +13636,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F85F32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12997,6 +13653,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F8F69A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13013,6 +13670,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F951A6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13029,6 +13687,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F976A9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13045,6 +13704,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9B592, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13061,6 +13721,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition E0CB0D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13077,6 +13738,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F9FB5A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13093,6 +13755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA21EE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13109,6 +13772,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FA769A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13125,6 +13789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 822161, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13141,6 +13806,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13157,6 +13823,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB63A7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13173,6 +13840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FB87D3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13189,6 +13857,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FBDD49, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13205,6 +13874,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13221,6 +13891,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Floor 2 Work Toilet, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FC3B6D, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13237,6 +13908,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13253,6 +13925,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FCD8D2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13269,6 +13942,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Reception, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition 99468F, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13285,6 +13959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FD0958, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13301,6 +13976,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FD8CF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13317,6 +13993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE2C3E, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13333,6 +14010,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE5062, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13349,6 +14027,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13365,6 +14044,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE5F03, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13381,6 +14061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FE7511, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13397,6 +14078,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FEC1E3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13413,6 +14095,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Floor 2 Exam 7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FF8B08, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13429,6 +14112,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Anesthesia, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13445,6 +14129,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Bio Haz, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13461,6 +14146,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Cafe, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13477,6 +14163,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Clean, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13493,6 +14180,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Clean Work, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13509,6 +14197,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Dictation, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13525,6 +14214,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Dressing Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13541,6 +14231,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Electrical Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13557,6 +14248,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Elevator Pump Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13573,6 +14265,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Humid, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13589,6 +14282,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 IT Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13605,6 +14299,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 IT Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13621,6 +14316,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Lobby Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13637,6 +14333,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Lobby, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13659,6 +14356,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Lobby Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13675,6 +14373,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Locker Room Hall,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13691,6 +14390,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Locker Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13707,6 +14407,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Lounge, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13723,6 +14424,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 MRI Control Room,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13739,6 +14441,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 MRI Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13759,6 +14462,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 MRI Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13775,6 +14479,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 MRI Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13791,6 +14496,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13807,6 +14513,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Med Gas, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13823,6 +14530,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Nourishment, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13839,6 +14547,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Nurse Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13855,6 +14564,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Nurse Janitor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13871,6 +14581,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Nurse Station, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13887,6 +14598,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Sterile Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13903,6 +14615,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Nurse Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13919,6 +14632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13935,6 +14649,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Operating Room 1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13951,6 +14666,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Operating Room 2,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13967,6 +14683,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Operating Room 3,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13983,6 +14700,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 PACU, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13999,6 +14717,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Pre-Op Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14015,6 +14734,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14031,6 +14751,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14047,6 +14768,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14063,6 +14785,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Procedure Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14079,6 +14802,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Reception Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14095,6 +14819,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Reception, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14113,6 +14838,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Recovery Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14129,6 +14855,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Scheduling, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14145,6 +14872,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Scrub, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14161,6 +14889,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Soil Hold, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14177,6 +14906,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Soil, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14193,6 +14923,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Soil Work, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14209,6 +14940,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Step Down, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14225,6 +14957,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Sterile Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14241,6 +14974,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14257,6 +14991,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 1 Storage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14273,6 +15008,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Sub-Sterile, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14289,6 +15025,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14305,6 +15042,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Utility Hall, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14321,6 +15059,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Utility Janitor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14337,6 +15076,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Utility Room, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14353,6 +15093,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Floor 1 Vestibule, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14369,6 +15110,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Dressing Room, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14385,6 +15127,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Elevator Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14403,6 +15146,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Humid, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14419,6 +15163,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Janitor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14435,6 +15180,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Locker, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14451,6 +15197,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Lounge, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14467,6 +15214,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Lounge Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14483,6 +15231,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Mechanical Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14499,6 +15248,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Mechanical, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14515,6 +15265,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Office Hall, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14531,6 +15282,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14547,6 +15299,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Office Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14563,6 +15316,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Physical Therapy 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14579,6 +15333,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Physical Therapy 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14595,6 +15350,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14611,6 +15367,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Storage 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14627,6 +15384,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Storage 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14643,6 +15401,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Treatment, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14659,6 +15418,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Undeveloped 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14675,6 +15435,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Undeveloped 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14693,6 +15454,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Utility, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14709,6 +15471,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Floor 3 Work, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14725,6 +15488,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14741,6 +15505,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name NE Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14757,6 +15522,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14773,6 +15539,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name NW Elevator, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14789,6 +15556,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14805,6 +15573,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name NW Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14821,6 +15590,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14837,6 +15607,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SW Stair, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -21679,709 +22450,827 @@ Floor 1 Anesthesia Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Anesthesia, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 1 Bio Haz Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Bio Haz, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 Cafe Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Cafe, !- Zone or ZoneList Name - 78.0386; !- Surface Area {m2} + , !- Surface Area {m2} + 78.0386; !- Extended Field InternalMass, Floor 1 Clean Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Clean Work Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Clean Work, !- Zone or ZoneList Name - 30.6580; !- Surface Area {m2} + , !- Surface Area {m2} + 30.6580; !- Extended Field InternalMass, Floor 1 Dictation Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dictation, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Dressing Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Dressing Room, !- Zone or ZoneList Name - 8.3613; !- Surface Area {m2} + , !- Surface Area {m2} + 8.3613; !- Extended Field InternalMass, Floor 1 Electrical Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Electrical Room, !- Zone or ZoneList Name - 18.2090; !- Surface Area {m2} + , !- Surface Area {m2} + 18.2090; !- Extended Field InternalMass, Floor 1 Elevator Pump Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Elevator Pump Room, !- Zone or ZoneList Name - 16.9084; !- Surface Area {m2} + , !- Surface Area {m2} + 16.9084; !- Extended Field InternalMass, Floor 1 Humid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Humid, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 IT Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 IT Hall, !- Zone or ZoneList Name - 26.0129; !- Surface Area {m2} + , !- Surface Area {m2} + 26.0129; !- Extended Field InternalMass, Floor 1 IT Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 IT Room, !- Zone or ZoneList Name - 20.8103; !- Surface Area {m2} + , !- Surface Area {m2} + 20.8103; !- Extended Field InternalMass, Floor 1 Lobby Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby Hall, !- Zone or ZoneList Name - 44.5935; !- Surface Area {m2} + , !- Surface Area {m2} + 44.5935; !- Extended Field InternalMass, Floor 1 Lobby Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby, !- Zone or ZoneList Name - 115.5714; !- Surface Area {m2} + , !- Surface Area {m2} + 115.5714; !- Extended Field InternalMass, Floor 1 Lobby Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lobby Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Locker Room Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Locker Room Hall,!- Zone or ZoneList Name - 92.1598; !- Surface Area {m2} + , !- Surface Area {m2} + 92.1598; !- Extended Field InternalMass, Floor 1 Locker Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Locker Room, !- Zone or ZoneList Name - 122.6320; !- Surface Area {m2} + , !- Surface Area {m2} + 122.6320; !- Extended Field InternalMass, Floor 1 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Lounge, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 1 MRI Control Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Control Room,!- Zone or ZoneList Name - 31.2154; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2154; !- Extended Field InternalMass, Floor 1 MRI Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Hall, !- Zone or ZoneList Name - 27.3135; !- Surface Area {m2} + , !- Surface Area {m2} + 27.3135; !- Extended Field InternalMass, Floor 1 MRI Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Room, !- Zone or ZoneList Name - 81.7547; !- Surface Area {m2} + , !- Surface Area {m2} + 81.7547; !- Extended Field InternalMass, Floor 1 MRI Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 MRI Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Med Gas Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Med Gas, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 Nourishment Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nourishment, !- Zone or ZoneList Name - 33.8167; !- Surface Area {m2} + , !- Surface Area {m2} + 33.8167; !- Extended Field InternalMass, Floor 1 Nurse Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Hall, !- Zone or ZoneList Name - 92.1598; !- Surface Area {m2} + , !- Surface Area {m2} + 92.1598; !- Extended Field InternalMass, Floor 1 Nurse Janitor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Janitor, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Nurse Station Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Station, !- Zone or ZoneList Name - 48.4954; !- Surface Area {m2} + , !- Surface Area {m2} + 48.4954; !- Extended Field InternalMass, Floor 1 Nurse Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Nurse Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Office, !- Zone or ZoneList Name - 89.7443; !- Surface Area {m2} + , !- Surface Area {m2} + 89.7443; !- Extended Field InternalMass, Floor 1 Operating Room 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 1,!- Zone or ZoneList Name - 85.4708; !- Surface Area {m2} + , !- Surface Area {m2} + 85.4708; !- Extended Field InternalMass, Floor 1 Operating Room 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 2,!- Zone or ZoneList Name - 89.1869; !- Surface Area {m2} + , !- Surface Area {m2} + 89.1869; !- Extended Field InternalMass, Floor 1 Operating Room 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Operating Room 3,!- Zone or ZoneList Name - 88.4437; !- Surface Area {m2} + , !- Surface Area {m2} + 88.4437; !- Extended Field InternalMass, Floor 1 PACU Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 PACU, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 1 Pre-Op Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Hall, !- Zone or ZoneList Name - 98.1056; !- Surface Area {m2} + , !- Surface Area {m2} + 98.1056; !- Extended Field InternalMass, Floor 1 Pre-Op Room 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Room 1, !- Zone or ZoneList Name - 35.1173; !- Surface Area {m2} + , !- Surface Area {m2} + 35.1173; !- Extended Field InternalMass, Floor 1 Pre-Op Room 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Room 2, !- Zone or ZoneList Name - 62.8025; !- Surface Area {m2} + , !- Surface Area {m2} + 62.8025; !- Extended Field InternalMass, Floor 1 Pre-Op Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Pre-Op Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 1 Procedure Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Procedure Room, !- Zone or ZoneList Name - 52.9547; !- Surface Area {m2} + , !- Surface Area {m2} + 52.9547; !- Extended Field InternalMass, Floor 1 Reception Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception Hall, !- Zone or ZoneList Name - 23.7832; !- Surface Area {m2} + , !- Surface Area {m2} + 23.7832; !- Extended Field InternalMass, Floor 1 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Reception, !- Zone or ZoneList Name - 94.5753; !- Surface Area {m2} + , !- Surface Area {m2} + 94.5753; !- Extended Field InternalMass, Floor 1 Recovery Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Recovery Room, !- Zone or ZoneList Name - 100.3353; !- Surface Area {m2} + , !- Surface Area {m2} + 100.3353; !- Extended Field InternalMass, Floor 1 Scheduling Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Scheduling, !- Zone or ZoneList Name - 22.1109; !- Surface Area {m2} + , !- Surface Area {m2} + 22.1109; !- Extended Field InternalMass, Floor 1 Scrub Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Scrub, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 1 Soil Hold Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil Hold, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 1 Soil Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 1 Soil Work Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Soil Work, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 1 Step Down Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Step Down, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, Floor 1 Sterile Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sterile Hall, !- Zone or ZoneList Name - 114.4565; !- Surface Area {m2} + , !- Surface Area {m2} + 114.4565; !- Extended Field InternalMass, Floor 1 Sterile Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sterile Storage, !- Zone or ZoneList Name - 73.5792; !- Surface Area {m2} + , !- Surface Area {m2} + 73.5792; !- Extended Field InternalMass, Floor 1 Storage Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Storage, !- Zone or ZoneList Name - 170.9416; !- Surface Area {m2} + , !- Surface Area {m2} + 170.9416; !- Extended Field InternalMass, Floor 1 Sub-Sterile Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Sub-Sterile, !- Zone or ZoneList Name - 36.4180; !- Surface Area {m2} + , !- Surface Area {m2} + 36.4180; !- Extended Field InternalMass, Floor 1 Utility Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Hall, !- Zone or ZoneList Name - 47.5664; !- Surface Area {m2} + , !- Surface Area {m2} + 47.5664; !- Extended Field InternalMass, Floor 1 Utility Janitor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Janitor, !- Zone or ZoneList Name - 7.8039; !- Surface Area {m2} + , !- Surface Area {m2} + 7.8039; !- Extended Field InternalMass, Floor 1 Utility Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Utility Room, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 1 Vestibule Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 1 Vestibule, !- Zone or ZoneList Name - 13.3780; !- Surface Area {m2} + , !- Surface Area {m2} + 13.3780; !- Extended Field InternalMass, Floor 2 Conference Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Conference, !- Zone or ZoneList Name - 62.4308; !- Surface Area {m2} + , !- Surface Area {m2} + 62.4308; !- Extended Field InternalMass, Floor 2 Conference Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Conference Toilet, !- Zone or ZoneList Name - 11.8916; !- Surface Area {m2} + , !- Surface Area {m2} + 11.8916; !- Extended Field InternalMass, Floor 2 Dictation Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Dictation, !- Zone or ZoneList Name - 13.0064; !- Surface Area {m2} + , !- Surface Area {m2} + 13.0064; !- Extended Field InternalMass, Floor 2 Exam 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 1, !- Zone or ZoneList Name - 66.8902; !- Surface Area {m2} + , !- Surface Area {m2} + 66.8902; !- Extended Field InternalMass, Floor 2 Exam 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 2, !- Zone or ZoneList Name - 100.3353; !- Surface Area {m2} + , !- Surface Area {m2} + 100.3353; !- Extended Field InternalMass, Floor 2 Exam 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 3, !- Zone or ZoneList Name - 133.7804; !- Surface Area {m2} + , !- Surface Area {m2} + 133.7804; !- Extended Field InternalMass, Floor 2 Exam 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 4, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 2 Exam 5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 5, !- Zone or ZoneList Name - 65.0321; !- Surface Area {m2} + , !- Surface Area {m2} + 65.0321; !- Extended Field InternalMass, Floor 2 Exam 6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 6, !- Zone or ZoneList Name - 41.8064; !- Surface Area {m2} + , !- Surface Area {m2} + 41.8064; !- Extended Field InternalMass, Floor 2 Exam 7 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 7, !- Zone or ZoneList Name - 147.1584; !- Surface Area {m2} + , !- Surface Area {m2} + 147.1584; !- Extended Field InternalMass, Floor 2 Exam 8 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 8, !- Zone or ZoneList Name - 50.1676; !- Surface Area {m2} + , !- Surface Area {m2} + 50.1676; !- Extended Field InternalMass, Floor 2 Exam 9 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam 9, !- Zone or ZoneList Name - 73.5792; !- Surface Area {m2} + , !- Surface Area {m2} + 73.5792; !- Extended Field InternalMass, Floor 2 Exam Hall 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 1, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 2, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 3, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Exam Hall 4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 4, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Exam Hall 5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 5, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Exam Hall 6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Exam Hall 6, !- Zone or ZoneList Name - 36.7896; !- Surface Area {m2} + , !- Surface Area {m2} + 36.7896; !- Extended Field InternalMass, Floor 2 Janitor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Janitor, !- Zone or ZoneList Name - 11.7058; !- Surface Area {m2} + , !- Surface Area {m2} + 11.7058; !- Extended Field InternalMass, Floor 2 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Lounge, !- Zone or ZoneList Name - 14.8645; !- Surface Area {m2} + , !- Surface Area {m2} + 14.8645; !- Extended Field InternalMass, Floor 2 Nurse Station 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 1, !- Zone or ZoneList Name - 27.8709; !- Surface Area {m2} + , !- Surface Area {m2} + 27.8709; !- Extended Field InternalMass, Floor 2 Nurse Station 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Nurse Station 2, !- Zone or ZoneList Name - 33.4451; !- Surface Area {m2} + , !- Surface Area {m2} + 33.4451; !- Extended Field InternalMass, Floor 2 Office Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office Hall, !- Zone or ZoneList Name - 82.4979; !- Surface Area {m2} + , !- Surface Area {m2} + 82.4979; !- Extended Field InternalMass, Floor 2 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Office, !- Zone or ZoneList Name - 104.0514; !- Surface Area {m2} + , !- Surface Area {m2} + 104.0514; !- Extended Field InternalMass, Floor 2 Reception Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception Hall, !- Zone or ZoneList Name - 104.7946; !- Surface Area {m2} + , !- Surface Area {m2} + 104.7946; !- Extended Field InternalMass, Floor 2 Reception Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception, !- Zone or ZoneList Name - 182.8332; !- Surface Area {m2} + , !- Surface Area {m2} + 182.8332; !- Extended Field InternalMass, Floor 2 Reception Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Reception Toilet,!- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 2 Scheduling 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Scheduling 1, !- Zone or ZoneList Name - 60.2012; !- Surface Area {m2} + , !- Surface Area {m2} + 60.2012; !- Extended Field InternalMass, Floor 2 Scheduling 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Scheduling 2, !- Zone or ZoneList Name - 63.5457; !- Surface Area {m2} + , !- Surface Area {m2} + 63.5457; !- Extended Field InternalMass, Floor 2 Storage 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 1, !- Zone or ZoneList Name - 10.4051; !- Surface Area {m2} + , !- Surface Area {m2} + 10.4051; !- Extended Field InternalMass, Floor 2 Storage 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 2, !- Zone or ZoneList Name - 22.2967; !- Surface Area {m2} + , !- Surface Area {m2} + 22.2967; !- Extended Field InternalMass, Floor 2 Storage 3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Storage 3, !- Zone or ZoneList Name - 26.7561; !- Surface Area {m2} + , !- Surface Area {m2} + 26.7561; !- Extended Field InternalMass, Floor 2 Utility Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Utility, !- Zone or ZoneList Name - 23.4116; !- Surface Area {m2} + , !- Surface Area {m2} + 23.4116; !- Extended Field InternalMass, Floor 2 Work Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work Hall, !- Zone or ZoneList Name - 154.9623; !- Surface Area {m2} + , !- Surface Area {m2} + 154.9623; !- Extended Field InternalMass, Floor 2 Work Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work, !- Zone or ZoneList Name - 314.0123; !- Surface Area {m2} + , !- Surface Area {m2} + 314.0123; !- Extended Field InternalMass, Floor 2 Work Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 Work Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 2 X-Ray Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 2 X-Ray, !- Zone or ZoneList Name - 167.2255; !- Surface Area {m2} + , !- Surface Area {m2} + 167.2255; !- Extended Field InternalMass, Floor 3 Dressing Room Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Dressing Room, !- Zone or ZoneList Name - 7.8039; !- Surface Area {m2} + , !- Surface Area {m2} + 7.8039; !- Extended Field InternalMass, Floor 3 Elevator Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Elevator Hall, !- Zone or ZoneList Name - 68.7482; !- Surface Area {m2} + , !- Surface Area {m2} + 68.7482; !- Extended Field InternalMass, Floor 3 Humid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Humid, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 3 Janitor Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Janitor, !- Zone or ZoneList Name - 11.7058; !- Surface Area {m2} + , !- Surface Area {m2} + 11.7058; !- Extended Field InternalMass, Floor 3 Locker Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Locker, !- Zone or ZoneList Name - 22.2967; !- Surface Area {m2} + , !- Surface Area {m2} + 22.2967; !- Extended Field InternalMass, Floor 3 Lounge Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Lounge, !- Zone or ZoneList Name - 141.0268; !- Surface Area {m2} + , !- Surface Area {m2} + 141.0268; !- Extended Field InternalMass, Floor 3 Lounge Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Lounge Toilet, !- Zone or ZoneList Name - 35.6748; !- Surface Area {m2} + , !- Surface Area {m2} + 35.6748; !- Extended Field InternalMass, Floor 3 Mechanical Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Mechanical Hall, !- Zone or ZoneList Name - 55.7418; !- Surface Area {m2} + , !- Surface Area {m2} + 55.7418; !- Extended Field InternalMass, Floor 3 Mechanical Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Mechanical, !- Zone or ZoneList Name - 65.0321; !- Surface Area {m2} + , !- Surface Area {m2} + 65.0321; !- Extended Field InternalMass, Floor 3 Office Hall Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office Hall, !- Zone or ZoneList Name - 154.9623; !- Surface Area {m2} + , !- Surface Area {m2} + 154.9623; !- Extended Field InternalMass, Floor 3 Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office, !- Zone or ZoneList Name - 564.1073; !- Surface Area {m2} + , !- Surface Area {m2} + 564.1073; !- Extended Field InternalMass, Floor 3 Office Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Office Toilet, !- Zone or ZoneList Name - 10.0335; !- Surface Area {m2} + , !- Surface Area {m2} + 10.0335; !- Extended Field InternalMass, Floor 3 Physical Therapy 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy 1, !- Zone or ZoneList Name - 241.5479; !- Surface Area {m2} + , !- Surface Area {m2} + 241.5479; !- Extended Field InternalMass, Floor 3 Physical Therapy 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy 2, !- Zone or ZoneList Name - 109.9972; !- Surface Area {m2} + , !- Surface Area {m2} + 109.9972; !- Extended Field InternalMass, Floor 3 Physical Therapy Toilet Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Physical Therapy Toilet, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 3 Storage 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Storage 1, !- Zone or ZoneList Name - 20.0671; !- Surface Area {m2} + , !- Surface Area {m2} + 20.0671; !- Extended Field InternalMass, Floor 3 Storage 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Storage 2, !- Zone or ZoneList Name - 15.6077; !- Surface Area {m2} + , !- Surface Area {m2} + 15.6077; !- Extended Field InternalMass, Floor 3 Treatment Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Treatment, !- Zone or ZoneList Name - 88.4437; !- Surface Area {m2} + , !- Surface Area {m2} + 88.4437; !- Extended Field InternalMass, Floor 3 Undeveloped 1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Undeveloped 1, !- Zone or ZoneList Name - 421.4082; !- Surface Area {m2} + , !- Surface Area {m2} + 421.4082; !- Extended Field InternalMass, Floor 3 Undeveloped 2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Undeveloped 2, !- Zone or ZoneList Name - 214.0486; !- Surface Area {m2} + , !- Surface Area {m2} + 214.0486; !- Extended Field InternalMass, Floor 3 Utility Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Utility, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, Floor 3 Work Internal Mass, !- Name InteriorFurnishings, !- Construction Name Floor 3 Work, !- Zone or ZoneList Name - 106.6527; !- Surface Area {m2} + , !- Surface Area {m2} + 106.6527; !- Extended Field InternalMass, NE Stair Internal Mass, !- Name InteriorFurnishings, !- Construction Name NE Stair, !- Zone or ZoneList Name - 31.2154; !- Surface Area {m2} + , !- Surface Area {m2} + 31.2154; !- Extended Field InternalMass, NW Elevator Internal Mass, !- Name InteriorFurnishings, !- Construction Name NW Elevator, !- Zone or ZoneList Name - 26.0129; !- Surface Area {m2} + , !- Surface Area {m2} + 26.0129; !- Extended Field InternalMass, NW Stair Internal Mass, !- Name InteriorFurnishings, !- Construction Name NW Stair, !- Zone or ZoneList Name - 35.6748; !- Surface Area {m2} + , !- Surface Area {m2} + 35.6748; !- Extended Field InternalMass, SW Stair Internal Mass, !- Name InteriorFurnishings, !- Construction Name SW Stair, !- Zone or ZoneList Name - 17.8374; !- Surface Area {m2} + , !- Surface Area {m2} + 17.8374; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgPrimarySchoolNew2004_Chicago.idf b/testfiles/RefBldgPrimarySchoolNew2004_Chicago.idf index a282ff6998a..c4cecae9160 100644 --- a/testfiles/RefBldgPrimarySchoolNew2004_Chicago.idf +++ b/testfiles/RefBldgPrimarySchoolNew2004_Chicago.idf @@ -1014,6 +1014,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1031,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1065,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1082,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1099,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1116,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bath_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1133,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1142,6 +1150,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1167,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1174,6 +1184,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1190,6 +1201,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1206,6 +1218,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1235,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1238,6 +1252,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1254,6 +1269,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1270,6 +1286,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1286,6 +1303,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1302,6 +1320,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1318,6 +1337,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1354,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1350,6 +1371,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1366,6 +1388,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1382,6 +1405,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1422,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1439,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1456,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1473,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1490,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1478,6 +1507,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1524,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1541,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1526,6 +1558,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1542,6 +1575,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1558,6 +1592,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1574,6 +1609,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1626,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1643,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1622,6 +1660,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1677,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1694,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1711,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1728,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1702,6 +1745,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1718,6 +1762,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1734,6 +1779,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1750,6 +1796,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1766,6 +1813,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1782,6 +1830,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1798,6 +1847,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1814,6 +1864,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1830,6 +1881,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1898,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1932,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1894,6 +1949,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1910,6 +1966,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1926,6 +1983,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +2000,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +2017,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2034,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2051,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2068,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2022,6 +2085,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2038,6 +2102,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2054,6 +2119,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2136,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2086,6 +2153,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2102,6 +2170,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2187,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2134,6 +2204,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2150,6 +2221,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2166,6 +2238,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2182,6 +2255,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2272,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2289,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2306,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2323,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2340,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2278,6 +2357,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2374,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2310,6 +2391,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2326,6 +2408,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2342,6 +2425,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2442,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2374,6 +2459,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2390,6 +2476,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2406,6 +2493,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2422,6 +2510,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2527,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2544,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2470,6 +2561,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2486,6 +2578,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2502,6 +2595,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2518,6 +2612,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2534,6 +2629,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2550,6 +2646,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2566,6 +2663,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2582,6 +2680,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2697,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2614,6 +2714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2630,6 +2731,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2646,6 +2748,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2662,6 +2765,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2678,6 +2782,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2799,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2816,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2726,6 +2833,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2850,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2758,6 +2867,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2774,6 +2884,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2790,6 +2901,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2806,6 +2918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2935,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2838,6 +2952,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2854,6 +2969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2870,6 +2986,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2886,6 +3003,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2902,6 +3020,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2918,6 +3037,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2934,6 +3054,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2950,6 +3071,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2966,6 +3088,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2982,6 +3105,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2998,6 +3122,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3014,6 +3139,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3030,6 +3156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bath_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3046,6 +3173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3062,6 +3190,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3078,6 +3207,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3094,6 +3224,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3110,6 +3241,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3126,6 +3258,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3142,6 +3275,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3158,6 +3292,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3174,6 +3309,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3190,6 +3326,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3206,6 +3343,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3222,6 +3360,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3238,6 +3377,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3254,6 +3394,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3270,6 +3411,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3286,6 +3428,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3302,6 +3445,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Library_Media_Center_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3318,6 +3462,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3334,6 +3479,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3350,6 +3496,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3366,6 +3513,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3382,6 +3530,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3398,6 +3547,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3414,6 +3564,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3430,6 +3581,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3446,6 +3598,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3462,6 +3615,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3478,6 +3632,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3494,6 +3649,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3510,6 +3666,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3526,6 +3683,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3542,6 +3700,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3558,6 +3717,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3574,6 +3734,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3590,6 +3751,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Computer_Class_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3606,6 +3768,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3622,6 +3785,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3638,6 +3802,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3654,6 +3819,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3670,6 +3836,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3686,6 +3853,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3702,6 +3870,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3718,6 +3887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3734,6 +3904,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5979,151 +6150,176 @@ Bath_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Bath_ZN_1_FLR_1, !- Zone or ZoneList Name - 380.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 380.0000; !- Extended Field InternalMass, Cafeteria_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name - 630.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 630.0000; !- Extended Field InternalMass, Computer_Class_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Computer_Class_ZN_1_FLR_1, !- Zone or ZoneList Name - 324.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 324.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corridor_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field InternalMass, Corridor_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field InternalMass, Corridor_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 384.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 384.0000; !- Extended Field InternalMass, Gym_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Gym_ZN_1_FLR_1, !- Zone or ZoneList Name - 714.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 714.0000; !- Extended Field InternalMass, Kitchen_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name - 336.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 336.0000; !- Extended Field InternalMass, Library_Media_Center_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Library_Media_Center_ZN_1_FLR_1, !- Zone or ZoneList Name - 798.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 798.0000; !- Extended Field InternalMass, Lobby_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name - 342.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 342.0000; !- Extended Field InternalMass, Main_Corridor_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name - 1092.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1092.0000; !- Extended Field InternalMass, Mech_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mech_ZN_1_FLR_1, !- Zone or ZoneList Name - 504.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 504.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 630.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 630.0000; !- Extended Field InternalMass, Offices_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Offices_ZN_1_FLR_1, !- Zone or ZoneList Name - 882.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 882.0000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgQuickServiceRestaurantNew2004_Chicago.idf b/testfiles/RefBldgQuickServiceRestaurantNew2004_Chicago.idf index 05cac21350b..5a13bc344d4 100644 --- a/testfiles/RefBldgQuickServiceRestaurantNew2004_Chicago.idf +++ b/testfiles/RefBldgQuickServiceRestaurantNew2004_Chicago.idf @@ -609,6 +609,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-dining, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -625,6 +626,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -641,6 +643,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +660,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +677,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +694,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +711,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +728,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-kitchen, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +745,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +762,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +779,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +796,7 @@ Wall, !- Surface Type Wood Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +813,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +830,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +847,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +863,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -864,6 +880,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +897,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1112,13 +1130,15 @@ Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Dining, !- Zone or ZoneList Name - 232.3430; !- Surface Area {m2} + , !- Surface Area {m2} + 232.3430; !- Extended Field InternalMass, Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen, !- Zone or ZoneList Name - 232.3430; !- Surface Area {m2} + , !- Surface Area {m2} + 232.3430; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgSecondarySchoolNew2004_Chicago.idf b/testfiles/RefBldgSecondarySchoolNew2004_Chicago.idf index 3810e49cf73..f5023052c84 100644 --- a/testfiles/RefBldgSecondarySchoolNew2004_Chicago.idf +++ b/testfiles/RefBldgSecondarySchoolNew2004_Chicago.idf @@ -1366,6 +1366,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1382,6 +1383,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1398,6 +1400,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1417,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1434,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1451,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1462,6 +1468,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1485,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_4_B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1502,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1510,6 +1519,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1526,6 +1536,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1542,6 +1553,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1558,6 +1570,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1574,6 +1587,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1590,6 +1604,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1606,6 +1621,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1622,6 +1638,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1655,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1654,6 +1672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1689,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1706,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1702,6 +1723,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1718,6 +1740,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1734,6 +1757,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1750,6 +1774,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1766,6 +1791,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1782,6 +1808,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1798,6 +1825,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1842,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1830,6 +1859,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1846,6 +1876,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1862,6 +1893,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1878,6 +1910,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1894,6 +1927,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1910,6 +1944,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1926,6 +1961,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1942,6 +1978,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Floor_B, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1958,6 +1995,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2029,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2006,6 +2046,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2063,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2038,6 +2080,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2054,6 +2097,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2070,6 +2114,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2086,6 +2131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2102,6 +2148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2118,6 +2165,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2134,6 +2182,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2150,6 +2199,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2166,6 +2216,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2182,6 +2233,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2250,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2267,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2230,6 +2284,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2246,6 +2301,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2262,6 +2318,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2278,6 +2335,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2294,6 +2352,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2310,6 +2369,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2326,6 +2386,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2342,6 +2403,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2358,6 +2420,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2374,6 +2437,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2390,6 +2454,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2406,6 +2471,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2422,6 +2488,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2438,6 +2505,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2454,6 +2522,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2470,6 +2539,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2486,6 +2556,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2502,6 +2573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2518,6 +2590,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2534,6 +2607,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2550,6 +2624,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2566,6 +2641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2582,6 +2658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2675,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2614,6 +2692,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2630,6 +2709,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2646,6 +2726,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2662,6 +2743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2760,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2694,6 +2777,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2710,6 +2794,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2726,6 +2811,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2758,6 +2845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2774,6 +2862,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2790,6 +2879,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2806,6 +2896,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2822,6 +2913,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2838,6 +2930,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2854,6 +2947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2870,6 +2964,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2886,6 +2981,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2902,6 +2998,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2918,6 +3015,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2934,6 +3032,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2950,6 +3049,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2966,6 +3066,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2982,6 +3083,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2998,6 +3100,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3014,6 +3117,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3030,6 +3134,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3046,6 +3151,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3062,6 +3168,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3078,6 +3185,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3094,6 +3202,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3110,6 +3219,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3126,6 +3236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3142,6 +3253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3158,6 +3270,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3174,6 +3287,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3190,6 +3304,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3206,6 +3321,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3222,6 +3338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3238,6 +3355,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3254,6 +3372,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3270,6 +3389,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3286,6 +3406,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3302,6 +3423,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3318,6 +3440,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3334,6 +3457,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3350,6 +3474,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3366,6 +3491,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3382,6 +3508,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3398,6 +3525,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3414,6 +3542,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3430,6 +3559,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3446,6 +3576,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3462,6 +3593,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3478,6 +3610,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3494,6 +3627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3510,6 +3644,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3526,6 +3661,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3542,6 +3678,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3558,6 +3695,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3574,6 +3712,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3590,6 +3729,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3606,6 +3746,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3622,6 +3763,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3638,6 +3780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3654,6 +3797,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3670,6 +3814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3686,6 +3831,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3702,6 +3848,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3718,6 +3865,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3734,6 +3882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3750,6 +3899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3766,6 +3916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3782,6 +3933,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3798,6 +3950,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3814,6 +3967,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3830,6 +3984,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3846,6 +4001,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3862,6 +4018,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3878,6 +4035,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3894,6 +4052,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3910,6 +4069,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3926,6 +4086,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3942,6 +4103,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3958,6 +4120,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3974,6 +4137,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3990,6 +4154,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4006,6 +4171,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4022,6 +4188,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4038,6 +4205,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4054,6 +4222,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4070,6 +4239,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4086,6 +4256,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4102,6 +4273,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Gym_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4118,6 +4290,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Floor_A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4134,6 +4307,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4150,6 +4324,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4166,6 +4341,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4182,6 +4358,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4198,6 +4375,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4214,6 +4392,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4230,6 +4409,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4246,6 +4426,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cafeteria_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4262,6 +4443,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Aux_Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4278,6 +4460,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4294,6 +4477,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4310,6 +4494,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4326,6 +4511,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4342,6 +4528,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4358,6 +4545,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4374,6 +4562,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4390,6 +4579,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4406,6 +4596,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4422,6 +4613,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4438,6 +4630,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4454,6 +4647,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4470,6 +4664,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4486,6 +4681,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4502,6 +4698,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4518,6 +4715,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4534,6 +4732,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4550,6 +4749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4566,6 +4766,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4582,6 +4783,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4598,6 +4800,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4614,6 +4817,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4630,6 +4834,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4646,6 +4851,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4662,6 +4868,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4678,6 +4885,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4694,6 +4902,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4710,6 +4919,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4726,6 +4936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4742,6 +4953,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4758,6 +4970,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4774,6 +4987,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4790,6 +5004,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4806,6 +5021,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4822,6 +5038,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4838,6 +5055,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4854,6 +5072,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4870,6 +5089,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4886,6 +5106,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4902,6 +5123,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4918,6 +5140,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4934,6 +5157,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4950,6 +5174,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4966,6 +5191,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4982,6 +5208,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4998,6 +5225,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5014,6 +5242,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5030,6 +5259,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5046,6 +5276,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5062,6 +5293,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5078,6 +5310,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5094,6 +5327,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5110,6 +5344,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5126,6 +5361,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mech_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5142,6 +5378,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5158,6 +5395,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LIBRARY_MEDIA_CENTER_Wall_4_A, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5174,6 +5412,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Auditorium_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5190,6 +5429,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mech_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5206,6 +5446,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5222,6 +5463,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5238,6 +5480,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5254,6 +5497,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5270,6 +5514,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5286,6 +5531,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5302,6 +5548,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5318,6 +5565,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5334,6 +5582,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5350,6 +5599,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5366,6 +5616,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5382,6 +5633,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5398,6 +5650,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5414,6 +5667,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5430,6 +5684,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5446,6 +5701,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5462,6 +5718,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5478,6 +5735,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5494,6 +5752,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5510,6 +5769,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5526,6 +5786,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5542,6 +5803,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5558,6 +5820,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5574,6 +5837,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5590,6 +5854,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5606,6 +5871,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5622,6 +5888,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5638,6 +5905,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5654,6 +5922,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5670,6 +5939,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5686,6 +5956,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5702,6 +5973,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5718,6 +5990,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5734,6 +6007,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5750,6 +6024,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5766,6 +6041,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5782,6 +6058,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5798,6 +6075,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5814,6 +6092,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5830,6 +6109,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5846,6 +6126,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5862,6 +6143,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5878,6 +6160,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5894,6 +6177,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5910,6 +6194,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5926,6 +6211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5942,6 +6228,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5958,6 +6245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5974,6 +6262,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5990,6 +6279,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6006,6 +6296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6022,6 +6313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_1_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6038,6 +6330,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6054,6 +6347,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6070,6 +6364,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6086,6 +6381,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6102,6 +6398,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6118,6 +6415,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_Corridor_ZN_1_FLR_2_Wall_8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6134,6 +6432,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6150,6 +6449,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6166,6 +6466,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6182,6 +6483,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6198,6 +6500,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6214,6 +6517,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6230,6 +6534,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6246,6 +6551,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6262,6 +6568,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6278,6 +6585,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Mult_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6294,6 +6602,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corridor_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6310,6 +6619,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bathrooms_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6326,6 +6636,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6342,6 +6653,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6358,6 +6670,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6374,6 +6687,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6390,6 +6704,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6406,6 +6721,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6422,6 +6738,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6438,6 +6755,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6454,6 +6772,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6470,6 +6789,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Offices_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6486,6 +6806,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6502,6 +6823,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6518,6 +6840,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Gym_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6534,6 +6857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Offices_ZN_1_FLR_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Lobby_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11803,277 +12127,323 @@ Auditorium_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name - 1976.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1976.0000; !- Extended Field InternalMass, Aux_Gym_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name - 2496.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 2496.0000; !- Extended Field InternalMass, Bathrooms_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name - 420.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 420.0000; !- Extended Field InternalMass, Bathrooms_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name - 420.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 420.0000; !- Extended Field InternalMass, Cafeteria_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name - 1248.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1248.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_1_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_2_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_1_Pod_3_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_1_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_2_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corner_Class_2_Pod_3_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name - 198.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 198.0000; !- Extended Field InternalMass, Corridor_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Corridor_Pod_1_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Corridor_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Corridor_Pod_2_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Corridor_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Corridor_Pod_3_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name - 640.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 640.0000; !- Extended Field InternalMass, Gym_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Gym_ZN_1_FLR_1, !- Zone or ZoneList Name - 3952.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 3952.0000; !- Extended Field InternalMass, Kitchen_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name - 432.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 432.0000; !- Extended Field InternalMass, LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name - 1680.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1680.0000; !- Extended Field InternalMass, Lobby_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name - 420.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 420.0000; !- Extended Field InternalMass, Lobby_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name - 420.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 420.0000; !- Extended Field InternalMass, Main_Corridor_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name - 2280.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 2280.0000; !- Extended Field InternalMass, Main_Corridor_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name - 2280.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 2280.0000; !- Extended Field InternalMass, Mech_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mech_ZN_1_FLR_1, !- Zone or ZoneList Name - 684.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 684.0000; !- Extended Field InternalMass, Mech_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mech_ZN_1_FLR_2, !- Zone or ZoneList Name - 684.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 684.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_1_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_2_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_1_Pod_3_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_1_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_1_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_2_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_2_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_3_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Mult_Class_2_Pod_3_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name - 954.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 954.0000; !- Extended Field InternalMass, Offices_ZN_1_FLR_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Offices_ZN_1_FLR_1, !- Zone or ZoneList Name - 1064.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1064.0000; !- Extended Field InternalMass, Offices_ZN_1_FLR_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Offices_ZN_1_FLR_2, !- Zone or ZoneList Name - 1064.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 1064.0000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgSmallHotelNew2004_Chicago.idf b/testfiles/RefBldgSmallHotelNew2004_Chicago.idf index f296f0817f6..d424559f8e7 100644 --- a/testfiles/RefBldgSmallHotelNew2004_Chicago.idf +++ b/testfiles/RefBldgSmallHotelNew2004_Chicago.idf @@ -1650,6 +1650,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr2_10004_0_10003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1670,6 +1671,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10005_0_10004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1686,6 +1688,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr3_10102_0_10063, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1706,6 +1709,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_CorridorFlr4_10200_0_10108, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1726,6 +1730,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr2_10077_0_10051, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1742,6 +1747,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr3_10166_0_10095, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1758,6 +1764,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_ElevatorCoreFlr4_10257_0_10140, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1774,6 +1781,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10068_0_10046, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1790,6 +1798,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom220_223_10081_0_10052, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1806,6 +1815,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom201_10031_0_10028, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1822,6 +1832,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom202_205_10032_0_10029, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1838,6 +1849,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom220_223_10085_0_10054, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1866,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom224_10086_0_10055, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1883,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr2_10090_0_10057, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1900,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr3_10192_0_10104, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1902,6 +1917,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStairsFlr4_10282_0_10149, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1918,6 +1934,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr2_10093_0_10059, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1934,6 +1951,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr3_10187_0_10102, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1950,6 +1968,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_FrontStorageFlr4_10277_0_10147, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1966,6 +1985,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10048_0_10037, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1982,6 +2002,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10052_0_10039, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1998,6 +2019,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom213_10056_0_10041, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2014,6 +2036,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom214_10060_0_10042, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2030,6 +2053,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10064_0_10044, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2046,6 +2070,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom301_10125_0_10082, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2062,6 +2087,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom302_305_10129_0_10084, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2078,6 +2104,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom306_308_10136_0_10086, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2094,6 +2121,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom309_312_10144_0_10088, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2110,6 +2138,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom313_10149_0_10090, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2155,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom314_10154_0_10091, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2142,6 +2172,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom315_318_10161_0_10093, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2189,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom319_10171_0_10097, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2206,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom320_323_10177_0_10098, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2223,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom324_10182_0_10100, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2206,6 +2240,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom401_10223_0_10127, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2222,6 +2257,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom402_405_10227_0_10129, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2238,6 +2274,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom406_408_10232_0_10131, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2254,6 +2291,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom409_412_10237_0_10133, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2270,6 +2308,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom413_10242_0_10135, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2286,6 +2325,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom414_10247_0_10136, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2302,6 +2342,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom415_418_10252_0_10138, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2318,6 +2359,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom419_10262_0_10142, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2334,6 +2376,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom420_423_10267_0_10143, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2350,6 +2393,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom424_10272_0_10145, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2366,6 +2410,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom215_218_10072_0_10048, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2382,6 +2427,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom219_10073_0_10049, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2398,6 +2444,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10044_0_10035, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2414,6 +2461,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10039_0_10032, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2430,6 +2478,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom209_212_10040_0_10033, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2446,6 +2495,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr2_10001_0_10000, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2462,6 +2512,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr3_10098_0_10060, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2478,6 +2529,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStairsFlr4_10196_0_10105, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2494,6 +2546,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr2_10028_0_10026, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2510,6 +2563,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr3_10121_0_10080, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2526,6 +2580,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_RearStorageFlr4_10219_0_10125, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2542,6 +2597,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition F_GuestRoom206_208_10035_0_10031, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2558,6 +2614,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2578,6 +2635,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2598,6 +2656,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2618,6 +2677,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr1_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2634,6 +2694,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr2_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2650,6 +2711,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ElevatorCoreFlr3_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2666,6 +2728,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2682,6 +2745,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2698,6 +2762,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStairsFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2714,6 +2779,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr1_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2730,6 +2796,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr2_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2746,6 +2813,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontStorageFlr3_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2762,6 +2830,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontLoungeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2778,6 +2847,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontLoungeFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2794,6 +2864,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_CorridorFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2810,6 +2881,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RestroomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2826,6 +2898,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MeetingRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2842,6 +2915,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MeetingRoomFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2858,6 +2932,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_MechanicalRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2874,6 +2949,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom101_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2890,6 +2966,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom102_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2906,6 +2983,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom103_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2922,6 +3000,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom104_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2938,6 +3017,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom105_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2954,6 +3034,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_EmployeeLoungeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2970,6 +3051,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_LaundryRoomFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2986,6 +3068,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_LaundryRoomFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3002,6 +3085,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_ExerciseCenterFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3018,6 +3102,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontOfficeFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3034,6 +3119,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_FrontOfficeFlr1_1_1_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3050,6 +3136,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom201_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3066,6 +3153,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom202_205_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3082,6 +3170,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom206_208_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3098,6 +3187,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom209_212_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3114,6 +3204,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom213_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3130,6 +3221,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom214_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3146,6 +3238,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom215_218_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3162,6 +3255,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom219_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3178,6 +3272,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom220_223_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3194,6 +3289,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom224_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3210,6 +3306,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom301_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3226,6 +3323,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom302_305_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3242,6 +3340,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom306_308_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3258,6 +3357,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom309_312_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3274,6 +3374,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom313_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3290,6 +3391,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom314_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3306,6 +3408,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom315_318_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3322,6 +3425,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom319_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3338,6 +3442,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom320_323_1_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3354,6 +3459,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_GuestRoom324_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3370,6 +3476,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3386,6 +3493,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3402,6 +3510,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStairsFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3418,6 +3527,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr1_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,6 +3544,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr2_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3450,6 +3561,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C_RearStorageFlr3_1_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3466,6 +3578,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr1_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3482,6 +3595,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_10013_0_10011, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3498,6 +3612,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_10014_0_10012, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3514,6 +3629,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_10015_0_10013, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3530,6 +3646,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10016_0_10014, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3546,6 +3663,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr1_10017_0_10015, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3562,6 +3680,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontLoungeFlr1_10018_0_10016, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3578,6 +3697,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10019_0_10017, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3594,6 +3714,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10020_0_10018, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3610,6 +3731,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_10021_0_10019, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3626,6 +3748,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_10022_0_10020, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3642,6 +3765,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_10023_0_10021, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3658,6 +3782,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_10024_0_10022, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3674,6 +3799,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_10025_0_10023, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3690,6 +3816,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10026_0_10024, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3706,6 +3833,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr1_10027_0_10025, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3722,6 +3850,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_10007_0_10005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3738,6 +3867,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_10008_0_10006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3754,6 +3884,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_10009_0_10007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3770,6 +3901,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_10010_0_10008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3786,6 +3918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10011_0_10009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3802,6 +3935,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10012_0_10010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3818,6 +3952,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr2_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3834,6 +3969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_10109_0_10069, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3850,6 +3986,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_10110_0_10070, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3866,6 +4003,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_10111_0_10071, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3882,6 +4020,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_10112_0_10072, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3898,6 +4037,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr2_10113_0_10073, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3914,6 +4054,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom201_10114_0_10074, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3930,6 +4071,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_10115_0_10075, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3946,6 +4088,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_10116_0_10076, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3962,6 +4105,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_10117_0_10077, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3978,6 +4122,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10118_0_10078, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3994,6 +4139,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr2_10119_0_10079, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4010,6 +4156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_10104_0_10064, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4026,6 +4173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_10105_0_10065, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4042,6 +4190,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10106_0_10066, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4058,6 +4207,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_10107_0_10067, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4074,6 +4224,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_10108_0_10068, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4090,6 +4241,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr3_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4106,6 +4258,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_10207_0_10114, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4122,6 +4275,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_10208_0_10115, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4138,6 +4292,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_10209_0_10116, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4154,6 +4309,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_10210_0_10117, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4170,6 +4326,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr3_10211_0_10118, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4186,6 +4343,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom301_10212_0_10119, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4202,6 +4360,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_10213_0_10120, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4218,6 +4377,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_10214_0_10121, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4234,6 +4394,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_10215_0_10122, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4250,6 +4411,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10216_0_10123, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4266,6 +4428,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr3_10217_0_10124, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4282,6 +4445,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_10202_0_10109, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4298,6 +4462,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_10203_0_10110, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4314,6 +4479,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10204_0_10111, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4330,6 +4496,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_10205_0_10112, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4346,6 +4513,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_10206_0_10113, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4362,6 +4530,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr4_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4378,6 +4547,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_10295_0_10157, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4394,6 +4564,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_10296_0_10158, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4410,6 +4581,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_10297_0_10159, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4426,6 +4598,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_10298_0_10160, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4442,6 +4615,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr4_10299_0_10161, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4458,6 +4632,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom401_10300_0_10162, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4474,6 +4649,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_10301_0_10163, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4490,6 +4666,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_10302_0_10164, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4506,6 +4683,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_10303_0_10165, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4522,6 +4700,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10304_0_10166, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4538,6 +4717,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr4_10305_0_10167, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4554,6 +4734,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_10290_0_10152, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4570,6 +4751,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_10291_0_10153, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4586,6 +4768,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10292_0_10154, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4602,6 +4785,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_10293_0_10155, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4618,6 +4802,7 @@ Wall, !- Surface Type int-walls, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_10294_0_10156, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4634,6 +4819,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4650,6 +4836,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_9_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4666,6 +4853,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4682,6 +4870,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4698,6 +4887,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4714,6 +4904,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10167_0_10096, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4730,6 +4921,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4746,6 +4938,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4762,6 +4955,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10258_0_10141, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4778,6 +4972,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4794,6 +4989,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_8_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4810,6 +5006,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10337_0_10175, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4826,6 +5023,7 @@ Wall, !- Surface Type int-walls, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4842,6 +5040,7 @@ Wall, !- Surface Type int-walls, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4858,6 +5057,7 @@ Wall, !- Surface Type int-walls, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_LaundryRoomFlr1_10070_0_10047, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4874,6 +5074,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4890,6 +5091,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4906,6 +5108,7 @@ Wall, !- Surface Type int-walls, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_10083_0_10053, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4922,6 +5125,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4938,6 +5142,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RestroomFlr1_10033_0_10030, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4954,6 +5159,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4970,6 +5176,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ExerciseCenterFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4986,6 +5193,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10088_0_10056, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5002,6 +5210,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_15_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5018,6 +5227,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr1_10091_0_10058, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5034,6 +5244,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5050,6 +5261,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5066,6 +5278,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5082,6 +5295,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5098,6 +5312,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5114,6 +5329,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5130,6 +5346,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_14_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5146,6 +5363,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontOfficeFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5162,6 +5380,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5178,6 +5397,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5194,6 +5414,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5210,6 +5431,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr2_10189_0_10103, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5226,6 +5448,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5242,6 +5465,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5258,6 +5482,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr3_10279_0_10148, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5274,6 +5499,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_13_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5290,6 +5516,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5306,6 +5533,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStairsFlr4_10354_0_10178, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5322,6 +5550,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_24_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5338,6 +5567,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5354,6 +5584,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_10049_0_10038, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5370,6 +5601,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_25_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5386,6 +5618,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5402,6 +5635,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10053_0_10040, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5418,6 +5652,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_26_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5434,6 +5669,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5450,6 +5686,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom102_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5466,6 +5703,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5482,6 +5720,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5498,6 +5737,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom105_10062_0_10043, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5514,6 +5754,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5530,6 +5771,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5546,6 +5788,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_10066_0_10045, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5562,6 +5805,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5578,6 +5822,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_10126_0_10083, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5594,6 +5839,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5610,6 +5856,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom201_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5626,6 +5873,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_10130_0_10085, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5642,6 +5890,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5658,6 +5907,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom202_205_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5674,6 +5924,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_10137_0_10087, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5690,6 +5941,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5706,6 +5958,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom206_208_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5722,6 +5975,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10145_0_10089, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5738,6 +5992,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5754,6 +6009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5770,6 +6026,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom209_212_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5786,6 +6043,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5802,6 +6060,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5818,6 +6077,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_10156_0_10092, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5834,6 +6094,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5850,6 +6111,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5866,6 +6128,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom219_10163_0_10094, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5882,6 +6145,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5898,6 +6162,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom215_218_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5914,6 +6179,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr2_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5930,6 +6196,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5946,6 +6213,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5962,6 +6230,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom224_10179_0_10099, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5978,6 +6247,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5994,6 +6264,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom220_223_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6010,6 +6281,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr2_10184_0_10101, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6026,6 +6298,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6042,6 +6315,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_10224_0_10128, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6058,6 +6332,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6074,6 +6349,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom301_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6090,6 +6366,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_10228_0_10130, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6106,6 +6383,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6122,6 +6400,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom302_305_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6138,6 +6417,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_10233_0_10132, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6154,6 +6434,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6170,6 +6451,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom306_308_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6186,6 +6468,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10238_0_10134, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6202,6 +6485,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6218,6 +6502,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6234,6 +6519,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom309_312_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6250,6 +6536,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6266,6 +6553,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6282,6 +6570,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_10249_0_10137, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6298,6 +6587,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6314,6 +6604,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6330,6 +6621,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom319_10254_0_10139, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6346,6 +6638,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6362,6 +6655,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom315_318_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6378,6 +6672,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr3_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6394,6 +6689,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6410,6 +6706,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6426,6 +6723,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom324_10269_0_10144, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6442,6 +6740,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6458,6 +6757,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom320_323_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6474,6 +6774,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr3_10274_0_10146, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6490,6 +6791,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_16_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6506,6 +6808,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_10310_0_10169, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6522,6 +6825,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_17_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6538,6 +6842,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom401_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6554,6 +6859,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_10313_0_10170, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6570,6 +6876,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6586,6 +6893,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom402_405_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6602,6 +6910,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_10317_0_10171, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6618,6 +6927,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6634,6 +6944,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom406_408_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6650,6 +6961,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10321_0_10172, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6666,6 +6978,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_20_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6682,6 +6995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStorageFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6698,6 +7012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom409_412_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6714,6 +7029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_RearStairsFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6730,6 +7046,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6746,6 +7063,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_10330_0_10173, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6762,6 +7080,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_5_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6778,6 +7097,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6794,6 +7114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom419_10334_0_10174, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6810,6 +7131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_6_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6826,6 +7148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom415_418_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6842,6 +7165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr4_2_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6858,6 +7182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_10_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6874,6 +7199,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_11_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6890,6 +7216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom424_10346_0_10176, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6906,6 +7233,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_12_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6922,6 +7250,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom420_423_4_0_0,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6938,6 +7267,7 @@ Wall, !- Surface Type int-walls, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontStorageFlr4_10350_0_10177, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6954,6 +7284,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_7_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6970,6 +7301,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_EmployeeLoungeFlr1_4_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6986,6 +7318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_ElevatorCoreFlr1_10075_0_10050, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7002,6 +7335,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_23_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7018,6 +7352,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MeetingRoomFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7034,6 +7369,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom101_10045_0_10036, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7050,6 +7386,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7066,6 +7403,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_22_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7082,6 +7420,7 @@ Wall, !- Surface Type int-walls, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_MechanicalRoomFlr1_10041_0_10034, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7098,6 +7437,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom104_10002_0_10001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7114,6 +7454,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_10003_0_10002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7130,6 +7471,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom214_10099_0_10061, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7146,6 +7488,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_10100_0_10062, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7162,6 +7505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom314_10197_0_10106, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7178,6 +7522,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_10198_0_10107, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7194,6 +7539,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom414_10286_0_10150, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7210,6 +7556,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_10287_0_10151, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7226,6 +7573,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_27_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7242,6 +7590,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom103_10030_0_10027, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7258,6 +7607,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr2_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7274,6 +7624,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom213_10123_0_10081, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7290,6 +7641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr3_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7306,6 +7658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom313_10221_0_10126, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7322,6 +7675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr4_21_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7338,6 +7692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_GuestRoom413_10308_0_10168, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7354,6 +7709,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_18_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7370,6 +7726,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_CorridorFlr1_19_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7386,6 +7743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition P_FrontLoungeFlr1_2_0_0, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7402,6 +7760,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7422,6 +7781,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7438,6 +7798,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7454,6 +7815,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7470,6 +7832,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7486,6 +7849,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7502,6 +7866,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7518,6 +7883,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7534,6 +7900,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7550,6 +7917,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7566,6 +7934,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7582,6 +7951,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7598,6 +7968,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7614,6 +7985,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7630,6 +8002,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7646,6 +8019,7 @@ Roof, !- Surface Type IEAD Res Roof, !- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7662,6 +8036,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7686,6 +8061,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7702,6 +8078,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7718,6 +8095,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7734,6 +8112,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7750,6 +8129,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7766,6 +8146,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7782,6 +8163,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7798,6 +8180,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7814,6 +8197,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7830,6 +8214,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7846,6 +8231,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7862,6 +8248,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7878,6 +8265,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7894,6 +8282,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7910,6 +8299,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7926,6 +8316,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7942,6 +8333,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7958,6 +8350,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7974,6 +8367,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7990,6 +8384,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8006,6 +8401,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8022,6 +8418,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8038,6 +8435,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8054,6 +8452,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8070,6 +8469,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8086,6 +8486,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8102,6 +8503,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8118,6 +8520,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8134,6 +8537,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8150,6 +8554,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8166,6 +8571,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name CorridorFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8182,6 +8588,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name ElevatorCoreFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8198,6 +8605,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name ElevatorCoreFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8214,6 +8622,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name ElevatorCoreFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8230,6 +8639,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name ElevatorCoreFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8246,6 +8656,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name EmployeeLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8262,6 +8673,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name ExerciseCenterFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8278,6 +8690,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8294,6 +8707,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontLoungeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8310,6 +8724,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontOfficeFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8326,6 +8741,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8342,6 +8758,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8358,6 +8775,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8374,6 +8792,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8390,6 +8809,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8406,6 +8826,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8422,6 +8843,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8438,6 +8860,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8454,6 +8877,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8470,6 +8894,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8486,6 +8911,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8502,6 +8928,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name FrontStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8518,6 +8945,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom101, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8534,6 +8962,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8550,6 +8979,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom103, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8566,6 +8996,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom104, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8582,6 +9013,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom105, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8598,6 +9030,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8614,6 +9047,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom201, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8630,6 +9064,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom202_205, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8646,6 +9081,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom206_208, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8662,6 +9098,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom209_212, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8678,6 +9115,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom213, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8694,6 +9132,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom214, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8710,6 +9149,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom215_218, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8726,6 +9166,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom219, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8742,6 +9183,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom220_223, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8758,6 +9200,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom224, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8774,6 +9217,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8790,6 +9234,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom301, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8806,6 +9251,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom302_305, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8822,6 +9268,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom306_308, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8838,6 +9285,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom309_312, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8854,6 +9302,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom313, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8870,6 +9319,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom314, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8886,6 +9336,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom315_318, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8902,6 +9353,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom319, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8918,6 +9370,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom320_323, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8934,6 +9387,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom324, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8950,6 +9404,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8966,6 +9421,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom401, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8982,6 +9438,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom402_405, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -8998,6 +9455,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom406_408, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9014,6 +9472,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom409_412, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9030,6 +9489,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom413, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9046,6 +9506,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom414, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9062,6 +9523,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom415_418, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9078,6 +9540,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom419, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9094,6 +9557,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom420_423, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9110,6 +9574,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name GuestRoom424, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9126,6 +9591,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name LaundryRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9142,6 +9608,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name MechanicalRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9158,6 +9625,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name MeetingRoomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9174,6 +9642,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9190,6 +9659,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9206,6 +9676,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9222,6 +9693,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9238,6 +9710,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9254,6 +9727,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9270,6 +9744,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9286,6 +9761,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStairsFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9302,6 +9778,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9318,6 +9795,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9334,6 +9812,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9350,6 +9829,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9366,6 +9846,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9382,6 +9863,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9398,6 +9880,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9414,6 +9897,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RearStorageFlr4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -9430,6 +9914,7 @@ Wall, !- Surface Type Steel Frame Res Ext Wall,!- Construction Name RestroomFlr1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14409,385 +14894,449 @@ CorridorFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name CorridorFlr1, !- Zone or ZoneList Name - 301.0117; !- Surface Area {m2} + , !- Surface Area {m2} + 301.0117; !- Extended Field InternalMass, CorridorFlr2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name CorridorFlr2, !- Zone or ZoneList Name - 250.8404; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8404; !- Extended Field InternalMass, CorridorFlr3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name CorridorFlr3, !- Zone or ZoneList Name - 250.8404; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8404; !- Extended Field InternalMass, CorridorFlr4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name CorridorFlr4, !- Zone or ZoneList Name - 250.8404; !- Surface Area {m2} + , !- Surface Area {m2} + 250.8404; !- Extended Field InternalMass, ElevatorCoreFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ElevatorCoreFlr1, !- Zone or ZoneList Name - 30.1006; !- Surface Area {m2} + , !- Surface Area {m2} + 30.1006; !- Extended Field InternalMass, EmployeeLoungeFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name EmployeeLoungeFlr1, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, ExerciseCenterFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name ExerciseCenterFlr1, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, FrontLoungeFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontLoungeFlr1, !- Zone or ZoneList Name - 326.1134; !- Surface Area {m2} + , !- Surface Area {m2} + 326.1134; !- Extended Field InternalMass, FrontOfficeFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontOfficeFlr1, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, FrontStairsFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStairsFlr1, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, FrontStairsFlr2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStairsFlr2, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, FrontStairsFlr3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStairsFlr3, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, FrontStairsFlr4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStairsFlr4, !- Zone or ZoneList Name - 40.1341; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1341; !- Extended Field InternalMass, FrontStorageFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStorageFlr1, !- Zone or ZoneList Name - 25.0838; !- Surface Area {m2} + , !- Surface Area {m2} + 25.0838; !- Extended Field InternalMass, FrontStorageFlr2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStorageFlr2, !- Zone or ZoneList Name - 25.0838; !- Surface Area {m2} + , !- Surface Area {m2} + 25.0838; !- Extended Field InternalMass, FrontStorageFlr3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStorageFlr3, !- Zone or ZoneList Name - 25.0838; !- Surface Area {m2} + , !- Surface Area {m2} + 25.0838; !- Extended Field InternalMass, FrontStorageFlr4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name FrontStorageFlr4, !- Zone or ZoneList Name - 25.0838; !- Surface Area {m2} + , !- Surface Area {m2} + 25.0838; !- Extended Field InternalMass, GuestRoom101 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom101, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom102 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom102, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom103 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom103, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom104 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom104, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom105 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom105, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom201 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom201, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom202_205 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom202_205, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom206_208 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom206_208, !- Zone or ZoneList Name - 210.7195; !- Surface Area {m2} + , !- Surface Area {m2} + 210.7195; !- Extended Field InternalMass, GuestRoom209_212 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom209_212, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom213 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom213, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom214 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom214, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom215_218 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom215_218, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom219 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom219, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom220_223 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom220_223, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom224 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom224, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom301 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom301, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom302_305 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom302_305, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom306_308 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom306_308, !- Zone or ZoneList Name - 210.7195; !- Surface Area {m2} + , !- Surface Area {m2} + 210.7195; !- Extended Field InternalMass, GuestRoom309_312 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom309_312, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom313 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom313, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom314 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom314, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom315_318 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom315_318, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom319 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom319, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom320_323 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom320_323, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom324 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom324, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom401 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom401, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom402_405 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom402_405, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom406_408 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom406_408, !- Zone or ZoneList Name - 210.7195; !- Surface Area {m2} + , !- Surface Area {m2} + 210.7195; !- Extended Field InternalMass, GuestRoom409_412 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom409_412, !- Zone or ZoneList Name - 260.8908; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8908; !- Extended Field InternalMass, GuestRoom413 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom413, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, GuestRoom414 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom414, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom415_418 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom415_418, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom419 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom419, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, GuestRoom420_423 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom420_423, !- Zone or ZoneList Name - 260.8717; !- Surface Area {m2} + , !- Surface Area {m2} + 260.8717; !- Extended Field InternalMass, GuestRoom424 Internal Mass, !- Name InteriorFurnishings, !- Construction Name GuestRoom424, !- Zone or ZoneList Name - 65.2179; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2179; !- Extended Field InternalMass, LaundryRoomFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LaundryRoomFlr1, !- Zone or ZoneList Name - 195.6538; !- Surface Area {m2} + , !- Surface Area {m2} + 195.6538; !- Extended Field InternalMass, MechanicalRoomFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MechanicalRoomFlr1, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field InternalMass, MeetingRoomFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name MeetingRoomFlr1, !- Zone or ZoneList Name - 160.5482; !- Surface Area {m2} + , !- Surface Area {m2} + 160.5482; !- Extended Field InternalMass, RearStairsFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStairsFlr1, !- Zone or ZoneList Name - 40.1440; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1440; !- Extended Field InternalMass, RearStairsFlr2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStairsFlr2, !- Zone or ZoneList Name - 40.1440; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1440; !- Extended Field InternalMass, RearStairsFlr3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStairsFlr3, !- Zone or ZoneList Name - 40.1440; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1440; !- Extended Field InternalMass, RearStairsFlr4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStairsFlr4, !- Zone or ZoneList Name - 40.1440; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1440; !- Extended Field InternalMass, RearStorageFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStorageFlr1, !- Zone or ZoneList Name - 40.1469; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1469; !- Extended Field InternalMass, RearStorageFlr2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStorageFlr2, !- Zone or ZoneList Name - 40.1469; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1469; !- Extended Field InternalMass, RearStorageFlr3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStorageFlr3, !- Zone or ZoneList Name - 40.1469; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1469; !- Extended Field InternalMass, RearStorageFlr4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RearStorageFlr4, !- Zone or ZoneList Name - 40.1469; !- Surface Area {m2} + , !- Surface Area {m2} + 40.1469; !- Extended Field InternalMass, RestroomFlr1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name RestroomFlr1, !- Zone or ZoneList Name - 65.2227; !- Surface Area {m2} + , !- Surface Area {m2} + 65.2227; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgSmallOfficeNew2004_Chicago.idf b/testfiles/RefBldgSmallOfficeNew2004_Chicago.idf index 02731a00517..bc220341935 100644 --- a/testfiles/RefBldgSmallOfficeNew2004_Chicago.idf +++ b/testfiles/RefBldgSmallOfficeNew2004_Chicago.idf @@ -652,6 +652,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -668,6 +669,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +686,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +703,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +720,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +737,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +753,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +770,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +787,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +803,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +820,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +837,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +854,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +871,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +888,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +905,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +922,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +939,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +956,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +973,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +990,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1007,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1024,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1041,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1058,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1075,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1092,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1109,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,6 +1126,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1143,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1160,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1177,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1194,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1211,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1228,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1210,6 +1245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1262,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1242,6 +1279,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1258,6 +1296,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1313,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1330,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1347,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1364,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2002,31 +2045,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgStand-aloneRetailNew2004_Chicago.idf b/testfiles/RefBldgStand-aloneRetailNew2004_Chicago.idf index 379c7a80dca..37af1a5d182 100644 --- a/testfiles/RefBldgStand-aloneRetailNew2004_Chicago.idf +++ b/testfiles/RefBldgStand-aloneRetailNew2004_Chicago.idf @@ -632,6 +632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -648,6 +649,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +666,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +683,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +700,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +717,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -728,6 +734,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +755,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +776,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +793,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +810,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Back_Space_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +827,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +844,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +861,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +878,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +895,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +912,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +929,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +946,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +963,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +980,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -976,6 +997,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1014,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1031,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1048,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1065,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1082,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1099,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1116,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1133,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1150,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1167,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1184,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_West_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1201,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1218,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1200,6 +1235,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1596,31 +1632,36 @@ Back_Space Internal Mass,!- Name InteriorFurnishings, !- Construction Name Back_Space, !- Zone or ZoneList Name - 759.7800; !- Surface Area {m2} + , !- Surface Area {m2} + 759.7800; !- Extended Field InternalMass, Core_Retail Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_Retail, !- Zone or ZoneList Name - 3200.9658; !- Surface Area {m2} + , !- Surface Area {m2} + 3200.9658; !- Extended Field InternalMass, Front_Entry Internal Mass, !- Name InteriorFurnishings, !- Construction Name Front_Entry, !- Zone or ZoneList Name - 24.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 24.0000; !- Extended Field InternalMass, Front_Retail Internal Mass, !- Name InteriorFurnishings, !- Construction Name Front_Retail, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field InternalMass, Point_Of_Sale Internal Mass, !- Name InteriorFurnishings, !- Construction Name Point_Of_Sale, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgStripMallNew2004_Chicago.idf b/testfiles/RefBldgStripMallNew2004_Chicago.idf index 95b77fce143..9f5b6fd0a2b 100644 --- a/testfiles/RefBldgStripMallNew2004_Chicago.idf +++ b/testfiles/RefBldgStripMallNew2004_Chicago.idf @@ -723,6 +723,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +740,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +757,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +774,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +791,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +808,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +825,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +842,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +859,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +876,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +893,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +910,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +927,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +944,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +961,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +978,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +995,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1029,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1046,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1063,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1080,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1097,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1131,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1148,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1165,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1199,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1187,6 +1216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1233,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1219,6 +1250,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1235,6 +1267,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1251,6 +1284,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1267,6 +1301,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1335,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1352,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1331,6 +1369,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1347,6 +1386,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1363,6 +1403,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1379,6 +1420,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1437,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1454,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1427,6 +1471,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1443,6 +1488,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1459,6 +1505,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1475,6 +1522,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1491,6 +1539,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1507,6 +1556,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1523,6 +1573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1539,6 +1590,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1555,6 +1607,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1571,6 +1624,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1587,6 +1641,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1603,6 +1658,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1619,6 +1675,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1635,6 +1692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1709,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1667,6 +1726,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3071,61 +3131,71 @@ LGstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, LGstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, SMstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore7 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore8 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgSuperMarketNew2004_Chicago.idf b/testfiles/RefBldgSuperMarketNew2004_Chicago.idf index bd9d84d1e3f..db68f087873 100644 --- a/testfiles/RefBldgSuperMarketNew2004_Chicago.idf +++ b/testfiles/RefBldgSuperMarketNew2004_Chicago.idf @@ -662,6 +662,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Bakery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +679,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Bakery, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +696,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Bakery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -710,6 +713,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Bakery, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bakery, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bakery_Wall__4-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +747,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Sales, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bakery_Wall__4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +764,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Deli, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -774,6 +781,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Deli, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -790,6 +798,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Deli, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +815,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Deli, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Deli_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +832,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Bakery, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Deli_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -838,6 +849,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Deli, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Deli_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +866,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Sales, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Deli_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +883,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +900,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +917,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +934,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +951,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -950,6 +968,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +985,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +1002,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1019,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office_Wall_South-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1014,6 +1036,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Deli, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1053,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1046,6 +1070,7 @@ Wall, !- Surface Type int-walls, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1087,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Produce, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1078,6 +1104,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Produce, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1121,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Produce, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Produce_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1138,7 @@ Wall, !- Surface Type int-walls, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Produce_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1155,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Produce, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1142,6 +1172,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Produce, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1158,6 +1189,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Sales, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1174,6 +1206,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Sales, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1223,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Sales, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Sales_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,6 +1240,7 @@ Wall, !- Surface Type int-walls, !- Construction Name DryStorage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Sales_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1257,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Sales, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1238,6 +1274,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Sales, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Sales_Wall_West-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1291,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Produce, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Sales_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1738,37 +1776,43 @@ Bakery Internal Mass, !- Name InteriorFurnishings, !- Construction Name Bakery, !- Zone or ZoneList Name - 418.0818; !- Surface Area {m2} + , !- Surface Area {m2} + 418.0818; !- Extended Field InternalMass, Deli Internal Mass, !- Name InteriorFurnishings, !- Construction Name Deli, !- Zone or ZoneList Name - 449.4372; !- Surface Area {m2} + , !- Surface Area {m2} + 449.4372; !- Extended Field InternalMass, DryStorage Internal Mass,!- Name InteriorFurnishings, !- Construction Name DryStorage, !- Zone or ZoneList Name - 1243.7788; !- Surface Area {m2} + , !- Surface Area {m2} + 1243.7788; !- Extended Field InternalMass, Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office, !- Zone or ZoneList Name - 177.6835; !- Surface Area {m2} + , !- Surface Area {m2} + 177.6835; !- Extended Field InternalMass, Produce Internal Mass, !- Name InteriorFurnishings, !- Construction Name Produce, !- Zone or ZoneList Name - 1422.7283; !- Surface Area {m2} + , !- Surface Area {m2} + 1422.7283; !- Extended Field InternalMass, Sales Internal Mass, !- Name InteriorFurnishings, !- Construction Name Sales, !- Zone or ZoneList Name - 4649.8781; !- Surface Area {m2} + , !- Surface Area {m2} + 4649.8781; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefBldgWarehouseNew2004_Chicago.idf b/testfiles/RefBldgWarehouseNew2004_Chicago.idf index 2c0f8393c5f..465343df393 100644 --- a/testfiles/RefBldgWarehouseNew2004_Chicago.idf +++ b/testfiles/RefBldgWarehouseNew2004_Chicago.idf @@ -621,6 +621,7 @@ Roof, !- Surface Type Metal Bldg Semi-Cond Roof, !- Construction Name BulkStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +638,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name BulkStorage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -653,6 +655,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name BulkStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +672,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name BulkStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +689,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name BulkStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +706,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +723,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +740,7 @@ Roof, !- Surface Type Metal Bldg Semi-Cond Roof, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +757,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +776,7 @@ Floor, !- Surface Type int-walls, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +793,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -799,6 +810,7 @@ Wall, !- Surface Type int-walls, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition BulkStorage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -815,6 +827,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +844,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name FineStorage, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +861,7 @@ Ceiling, !- Surface Type int-walls, !- Construction Name Office, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FineStorage_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +878,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Office, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +895,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FineStorage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +912,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition FineStorage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +929,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +946,7 @@ Wall, !- Surface Type Metal Bldg Semi-Cond Ext Wall, !- Construction Name Office, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1376,19 +1396,22 @@ BulkStorage Internal Mass, !- Name InteriorFurnishings, !- Construction Name BulkStorage, !- Zone or ZoneList Name - 6409.6813; !- Surface Area {m2} + , !- Surface Area {m2} + 6409.6813; !- Extended Field InternalMass, FineStorage Internal Mass, !- Name InteriorFurnishings, !- Construction Name FineStorage, !- Zone or ZoneList Name - 2786.8199; !- Surface Area {m2} + , !- Surface Area {m2} + 2786.8199; !- Extended Field InternalMass, Office Internal Mass, !- Name InteriorFurnishings, !- Construction Name Office, !- Zone or ZoneList Name - 473.7584; !- Surface Area {m2} + , !- Surface Area {m2} + 473.7584; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RefMedOffVAVAllDefVRP.idf b/testfiles/RefMedOffVAVAllDefVRP.idf index 75f976acda0..5c8a0d0f163 100644 --- a/testfiles/RefMedOffVAVAllDefVRP.idf +++ b/testfiles/RefMedOffVAVAllDefVRP.idf @@ -860,6 +860,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +877,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +894,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +911,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +928,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +945,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +962,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +979,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +996,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1013,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1030,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1047,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1064,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1081,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1098,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1115,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1132,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1149,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1166,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1183,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1200,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1217,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1234,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1251,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1268,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1285,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1302,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1319,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1336,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1353,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1370,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1387,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1404,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1421,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1438,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1455,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1472,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1452,6 +1489,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1506,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1523,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1500,6 +1540,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1557,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1532,6 +1574,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1548,6 +1591,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1564,6 +1608,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1625,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1596,6 +1642,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1612,6 +1659,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1628,6 +1676,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1644,6 +1693,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1710,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1727,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1692,6 +1744,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1708,6 +1761,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1724,6 +1778,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1740,6 +1795,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1812,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1829,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1788,6 +1846,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1863,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1820,6 +1880,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1836,6 +1897,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1852,6 +1914,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1868,6 +1931,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1884,6 +1948,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1900,6 +1965,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1916,6 +1982,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1932,6 +1999,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1948,6 +2016,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1964,6 +2033,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1980,6 +2050,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1996,6 +2067,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2012,6 +2084,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2028,6 +2101,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2044,6 +2118,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2060,6 +2135,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2076,6 +2152,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2092,6 +2169,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2108,6 +2186,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2124,6 +2203,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2140,6 +2220,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2156,6 +2237,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2172,6 +2254,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2188,6 +2271,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2204,6 +2288,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2220,6 +2305,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2236,6 +2322,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2252,6 +2339,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2356,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2373,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2390,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2316,6 +2407,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2332,6 +2424,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2348,6 +2441,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2364,6 +2458,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2380,6 +2475,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2396,6 +2492,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2412,6 +2509,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2428,6 +2526,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2444,6 +2543,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2460,6 +2560,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2476,6 +2577,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2492,6 +2594,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2508,6 +2611,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2524,6 +2628,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2540,6 +2645,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2556,6 +2662,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2572,6 +2679,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2588,6 +2696,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2604,6 +2713,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2620,6 +2730,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2636,6 +2747,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2652,6 +2764,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2668,6 +2781,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2684,6 +2798,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2700,6 +2815,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2716,6 +2832,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2732,6 +2849,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2748,6 +2866,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2764,6 +2883,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2780,6 +2900,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2796,6 +2917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2812,6 +2934,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2828,6 +2951,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2844,6 +2968,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2860,6 +2985,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2876,6 +3002,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2892,6 +3019,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4089,91 +4217,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** @@ -8050,3 +8193,4 @@ 0, !- Nuclear High Level Emission Factor {g/MJ} , !- Nuclear High Level Emission Factor Schedule Name 0; !- Nuclear Low Level Emission Factor {m3/MJ} + diff --git a/testfiles/ReflectiveAdjacentBuilding.idf b/testfiles/ReflectiveAdjacentBuilding.idf index ebfc78c1f78..e4b924f696c 100644 --- a/testfiles/ReflectiveAdjacentBuilding.idf +++ b/testfiles/ReflectiveAdjacentBuilding.idf @@ -715,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +798,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +815,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +917,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +951,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +1000,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1017,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1034,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1051,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1068,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/RefrigeratedWarehouse.idf b/testfiles/RefrigeratedWarehouse.idf index c2e8717d9bd..8c2b4812890 100644 --- a/testfiles/RefrigeratedWarehouse.idf +++ b/testfiles/RefrigeratedWarehouse.idf @@ -635,55 +635,64 @@ Freezer_1_Load, !- Name Fish Frozen, !- Construction Name Freezer_1, !- Zone or ZoneList Name - 36200.; !- Surface Area {m2} + , !- Surface Area {m2} + 36200.; !- Extended Field InternalMass, Freezer_2_Load, !- Name Meat, !- Construction Name Freezer_2, !- Zone or ZoneList Name - 8440.; !- Surface Area {m2} + , !- Surface Area {m2} + 8440.; !- Extended Field InternalMass, Freezer_3_Load, !- Name Vegetable Frozen, !- Construction Name Freezer_3, !- Zone or ZoneList Name - 9540.; !- Surface Area {m2} + , !- Surface Area {m2} + 9540.; !- Extended Field InternalMass, Freezer_4_Load, !- Name Fruit Frozen, !- Construction Name Freezer_4, !- Zone or ZoneList Name - 8000.; !- Surface Area {m2} + , !- Surface Area {m2} + 8000.; !- Extended Field InternalMass, Freezer_5_Load, !- Name Fruit Frozen, !- Construction Name Freezer_5, !- Zone or ZoneList Name - 25440.; !- Surface Area {m2} + , !- Surface Area {m2} + 25440.; !- Extended Field InternalMass, Sub Freezer_Load, !- Name Ice Cream, !- Construction Name SubFreezer, !- Zone or ZoneList Name - 7000.; !- Surface Area {m2} + , !- Surface Area {m2} + 7000.; !- Extended Field InternalMass, Cooler_1_Load, !- Name Fruit Fresh, !- Construction Name Cooler_1, !- Zone or ZoneList Name - 18600.; !- Surface Area {m2} + , !- Surface Area {m2} + 18600.; !- Extended Field InternalMass, Cooler_2_Load, !- Name Vegetable Fresh, !- Construction Name Cooler_2, !- Zone or ZoneList Name - 4760.; !- Surface Area {m2} + , !- Surface Area {m2} + 4760.; !- Extended Field InternalMass, Cooler_3_Load, !- Name Dairy Milk, !- Construction Name Cooler_3, !- Zone or ZoneList Name - 4000.; !- Surface Area {m2} + , !- Surface Area {m2} + 4000.; !- Extended Field !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== @@ -1811,6 +1820,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1827,6 +1837,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SubFreezer_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1843,6 +1854,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1859,6 +1871,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1875,6 +1888,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1891,6 +1905,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1916,6 +1931,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,6 +1948,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1948,6 +1965,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_1_Wall_4_SubSurface2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1964,6 +1982,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_2_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1980,6 +1999,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1996,6 +2016,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name SubFreezer, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2021,6 +2042,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2037,6 +2059,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_1_Wall_4_SubSurface1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2053,6 +2076,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2069,6 +2093,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2085,6 +2110,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SubFreezer_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2101,6 +2127,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name Freezer_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2126,6 +2153,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2142,6 +2170,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_1_Wall_2_SubSurface1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2187,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2174,6 +2204,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SubFreezer_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2221,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2206,6 +2238,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name Freezer_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2231,6 +2264,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2247,6 +2281,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2263,6 +2298,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2279,6 +2315,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2295,6 +2332,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2311,6 +2349,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_1_Wall_2_SubSurface2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2336,6 +2375,7 @@ Floor, !- Surface Type Cooler Floor Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2368,6 +2408,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2384,6 +2425,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2400,6 +2442,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2416,6 +2459,7 @@ Roof, !- Surface Type Cooler Roof Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2441,6 +2485,7 @@ Floor, !- Surface Type Cooler Floor Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2457,6 +2502,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2473,6 +2519,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_5_Wall_2_SubSurface1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2489,6 +2536,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Cooler_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2505,6 +2553,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2521,6 +2570,7 @@ Roof, !- Surface Type Cooler Roof Const, !- Construction Name Cooler_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2546,6 +2596,7 @@ Floor, !- Surface Type Cooler Floor Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2562,6 +2613,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2578,6 +2630,7 @@ Wall, !- Surface Type Cooler Wall Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Cooler_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2594,6 +2647,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface10,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2610,6 +2664,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_5_Wall_2_SubSurface2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2626,6 +2681,7 @@ Roof, !- Surface Type Cooler Roof Const, !- Construction Name Cooler_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2651,6 +2707,7 @@ Floor, !- Surface Type Freezer Floor Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2667,6 +2724,7 @@ Roof, !- Surface Type Freezer Roof Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2683,6 +2741,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2758,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2775,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface11,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2792,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2756,6 +2818,7 @@ Floor, !- Surface Type Dock Floor Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2772,6 +2835,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2788,6 +2852,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2804,6 +2869,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Upper_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2820,6 +2886,7 @@ Roof, !- Surface Type Dock Roof Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2836,6 +2903,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freeze_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2861,6 +2929,7 @@ Floor, !- Surface Type Office Floor Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2877,6 +2946,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2893,6 +2963,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2909,6 +2980,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +2997,7 @@ Ceiling, !- Surface Type Office Ceiling Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Upper_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +3014,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Office1_Lower, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2966,6 +3040,7 @@ Floor, !- Surface Type Office Ceiling Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Lower_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2982,6 +3057,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2998,6 +3074,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3014,6 +3091,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3030,6 +3108,7 @@ Roof, !- Surface Type Office Roof Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3046,6 +3125,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Office1_Upper, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3071,6 +3151,7 @@ Floor, !- Surface Type Office Floor Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3087,6 +3168,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3103,6 +3185,7 @@ Ceiling, !- Surface Type Office Ceiling Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Upper_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3119,6 +3202,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3135,6 +3219,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3151,6 +3236,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Lower, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3176,6 +3262,7 @@ Floor, !- Surface Type Office Ceiling Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Lower_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3192,6 +3279,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3208,6 +3296,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3224,6 +3313,7 @@ Roof, !- Surface Type Office Roof Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3240,6 +3330,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dock_Wall_3_Subsurface4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3256,6 +3347,7 @@ Wall, !- Surface Type Office Wall Const, !- Construction Name Office2_Upper, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4172,6 +4264,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4188,6 +4281,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4204,6 +4298,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4220,6 +4315,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_3_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4236,6 +4332,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4252,6 +4349,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4268,6 +4366,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Cooler_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Freezer_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4284,6 +4383,7 @@ Wall, !- Surface Type Freezer Wall Const, !- Construction Name Freezer_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Cooler_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4300,6 +4400,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Upper_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4316,6 +4417,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office1_Lower_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4332,6 +4434,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4348,6 +4451,7 @@ Wall, !- Surface Type Dock Wall Const, !- Construction Name Dock, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Office2_Lower_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ReliefIndEvapCoolerRTUoffice.idf b/testfiles/ReliefIndEvapCoolerRTUoffice.idf index f406b886612..073a3b23eda 100644 --- a/testfiles/ReliefIndEvapCoolerRTUoffice.idf +++ b/testfiles/ReliefIndEvapCoolerRTUoffice.idf @@ -625,6 +625,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +642,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -657,6 +659,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +676,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +693,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +710,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN1_Fl1_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +727,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -737,6 +744,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +761,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +778,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +795,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -801,6 +812,7 @@ ceiling, !- Surface Type Int-Floor-underside, !- Construction Name ZN2_Fl1_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -817,6 +829,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -833,6 +846,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +863,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -865,6 +880,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +897,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +914,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN3_Fl1_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +931,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +948,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -945,6 +965,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -961,6 +982,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +999,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1016,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN4_Fl1_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1033,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1050,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1041,6 +1067,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1057,6 +1084,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1073,6 +1101,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1089,6 +1118,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN5_Fl1_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1135,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1152,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1169,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1153,6 +1186,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1169,6 +1203,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1185,6 +1220,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN6_Fl1_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1201,6 +1237,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1217,6 +1254,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1271,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1288,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1265,6 +1305,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1322,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN7_Fl1_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1297,6 +1339,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1313,6 +1356,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1329,6 +1373,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1345,6 +1390,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1361,6 +1407,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1377,6 +1424,7 @@ ceiling, !- Surface Type Int-Floor-Underside, !- Construction Name ZN8_Fl1_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1393,6 +1441,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_Fl1_S_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1409,6 +1458,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_Fl1_E_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1425,6 +1475,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Fl1_W_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1441,6 +1492,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_Fl1_N_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,6 +1509,7 @@ floor, !- Surface Type EXT-Slab, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1526,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN9_Fl1_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1543,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1560,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1577,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1537,6 +1594,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1553,6 +1611,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Fl1_Core_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1569,6 +1628,7 @@ ceiling, !- Surface Type Int-Floor-underside, !- Construction Name ZN10_Fl1_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1645,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1601,6 +1662,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1679,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1696,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1713,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_Fl1_S_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1730,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN11_Fl2_S_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1681,6 +1747,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1697,6 +1764,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1713,6 +1781,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1729,6 +1798,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1745,6 +1815,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1761,6 +1832,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN12_Fl2_S_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1777,6 +1849,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1793,6 +1866,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1809,6 +1883,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1825,6 +1900,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1841,6 +1917,7 @@ floor, !- Surface Type Int-floor-topside, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_Fl1_E_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1857,6 +1934,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN13_Fl2_E_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1873,6 +1951,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1889,6 +1968,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1905,6 +1985,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1921,6 +2002,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1937,6 +2019,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1953,6 +2036,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN14_Fl2_E_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1969,6 +2053,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1985,6 +2070,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2001,6 +2087,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2017,6 +2104,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2033,6 +2121,7 @@ floor, !- Surface Type Int-Floor-Topside, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_Fl1_W_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2049,6 +2138,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN15_Fl2_W_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2065,6 +2155,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2081,6 +2172,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2097,6 +2189,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2206,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2129,6 +2223,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2145,6 +2240,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN16_Fl2_W_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2161,6 +2257,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2177,6 +2274,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2193,6 +2291,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2209,6 +2308,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2225,6 +2325,7 @@ floor, !- Surface Type Int-Floor-Topside, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_Fl1_N_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2241,6 +2342,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN17_Fl2_N_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2257,6 +2359,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2273,6 +2376,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2289,6 +2393,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2305,6 +2410,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2321,6 +2427,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2337,6 +2444,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN18_Fl2_N_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2353,6 +2461,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Fl2_S_Space:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2369,6 +2478,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Fl2_E_Space:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2385,6 +2495,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Fl2_W_Space:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2401,6 +2512,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN17_Fl2_N_Space:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2417,6 +2529,7 @@ floor, !- Surface Type INT-Floor-topside, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Fl1_Core_Plen:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2433,6 +2546,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN19_Fl2_Core_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN20_Fl2_Core_Plen:floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2449,6 +2563,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Fl2_S_Plen:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2465,6 +2580,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Fl2_E_Plen:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2481,6 +2597,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN16_Fl2_W_Plen:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2497,6 +2614,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN18_Fl2_N_Plen:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2513,6 +2631,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN19_Fl2_Core_Space:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2529,6 +2648,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN20_Fl2_Core_Plen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ReportDaylightFactors.idf b/testfiles/ReportDaylightFactors.idf index 86d261c3176..611e9a4fef2 100644 --- a/testfiles/ReportDaylightFactors.idf +++ b/testfiles/ReportDaylightFactors.idf @@ -859,6 +859,7 @@ Roof, !- Surface Type roof-IEAD-nonres, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +876,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -891,6 +893,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +910,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +927,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +944,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -955,6 +961,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -971,6 +978,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -987,6 +995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1003,6 +1012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1046,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1063,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1080,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1097,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1114,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1131,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1148,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1163,6 +1182,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1179,6 +1199,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1195,6 +1216,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1211,6 +1233,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1250,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1267,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1284,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1301,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1318,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1307,6 +1335,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1323,6 +1352,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1339,6 +1369,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1355,6 +1386,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1371,6 +1403,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1387,6 +1420,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1437,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1454,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1471,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1488,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1505,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1522,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1539,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1556,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1531,6 +1573,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1547,6 +1590,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1607,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1579,6 +1624,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1658,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1627,6 +1675,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1692,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1709,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1726,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1691,6 +1743,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1707,6 +1760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1794,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1755,6 +1811,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1771,6 +1828,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1787,6 +1845,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1803,6 +1862,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1819,6 +1879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1896,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1913,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1930,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1899,6 +1964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1915,6 +1981,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1931,6 +1998,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1947,6 +2015,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1963,6 +2032,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1979,6 +2049,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1995,6 +2066,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2011,6 +2083,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2027,6 +2100,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2117,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2059,6 +2134,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2075,6 +2151,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2168,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2107,6 +2185,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2123,6 +2202,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2219,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2155,6 +2236,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2171,6 +2253,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2270,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2287,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2219,6 +2304,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2235,6 +2321,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2251,6 +2338,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2267,6 +2355,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2283,6 +2372,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2299,6 +2389,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2315,6 +2406,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2331,6 +2423,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2440,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2457,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2379,6 +2474,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2395,6 +2491,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2411,6 +2508,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2427,6 +2525,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2443,6 +2542,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2459,6 +2559,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2475,6 +2576,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2491,6 +2593,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2507,6 +2610,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2523,6 +2627,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2539,6 +2644,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2555,6 +2661,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2571,6 +2678,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2587,6 +2695,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2603,6 +2712,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2619,6 +2729,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2635,6 +2746,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2651,6 +2763,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2667,6 +2780,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2683,6 +2797,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2699,6 +2814,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2715,6 +2831,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2731,6 +2848,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2747,6 +2865,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2763,6 +2882,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2779,6 +2899,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2795,6 +2916,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2811,6 +2933,7 @@ Wall, !- Surface Type ext-walls-steelframe-nonres, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2827,6 +2950,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2843,6 +2967,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2859,6 +2984,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2875,6 +3001,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2891,6 +3018,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4392,91 +4520,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/ReportHeatEmission_RefFSRestaurant.idf b/testfiles/ReportHeatEmission_RefFSRestaurant.idf index bef484a115d..bf4b284394b 100644 --- a/testfiles/ReportHeatEmission_RefFSRestaurant.idf +++ b/testfiles/ReportHeatEmission_RefFSRestaurant.idf @@ -606,6 +606,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-dining, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -622,6 +623,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Dining, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -638,6 +640,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +657,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Dining, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North-PPAutoCreateOther, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +674,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +691,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +708,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Dining, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +725,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition attic-floor-kitchen, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +742,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +759,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +776,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +793,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Kitchen, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +810,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Dining_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +827,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Kitchen_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +844,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +861,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -861,6 +877,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +893,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1120,13 +1138,15 @@ Dining Internal Mass, !- Name InteriorFurnishings, !- Construction Name Dining, !- Zone or ZoneList Name - 743.4961; !- Surface Area {m2} + , !- Surface Area {m2} + 743.4961; !- Extended Field InternalMass, Kitchen Internal Mass, !- Name InteriorFurnishings, !- Construction Name Kitchen, !- Zone or ZoneList Name - 278.8105; !- Surface Area {m2} + , !- Surface Area {m2} + 278.8105; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RetailPackagedTESCoil.idf b/testfiles/RetailPackagedTESCoil.idf index 362e640551b..d5e65226a33 100644 --- a/testfiles/RetailPackagedTESCoil.idf +++ b/testfiles/RetailPackagedTESCoil.idf @@ -605,6 +605,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +622,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +639,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +656,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +690,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Back_Space, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +707,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +728,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -741,6 +749,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +766,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -773,6 +783,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Back_Space_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -789,6 +800,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -805,6 +817,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +834,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +851,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +868,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Core_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +885,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +902,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +919,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Retail_Wall_West_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +936,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_2,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +953,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +970,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Entry, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Point_Of_Sale_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +987,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +1004,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -997,6 +1021,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_3,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1038,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1029,6 +1055,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1072,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_East_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1089,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Front_Retail, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1106,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1093,6 +1123,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1109,6 +1140,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Front_Entry_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1157,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_West_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1174,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_Retail_Wall_South_1,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1157,6 +1191,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1173,6 +1208,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Point_Of_Sale, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1569,31 +1605,36 @@ Back_Space Internal Mass,!- Name InteriorFurnishings, !- Construction Name Back_Space, !- Zone or ZoneList Name - 759.7800; !- Surface Area {m2} + , !- Surface Area {m2} + 759.7800; !- Extended Field InternalMass, Core_Retail Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_Retail, !- Zone or ZoneList Name - 3200.9658; !- Surface Area {m2} + , !- Surface Area {m2} + 3200.9658; !- Extended Field InternalMass, Front_Entry Internal Mass, !- Name InteriorFurnishings, !- Construction Name Front_Entry, !- Zone or ZoneList Name - 24.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 24.0000; !- Extended Field InternalMass, Front_Retail Internal Mass, !- Name InteriorFurnishings, !- Construction Name Front_Retail, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field InternalMass, Point_Of_Sale Internal Mass, !- Name InteriorFurnishings, !- Construction Name Point_Of_Sale, !- Zone or ZoneList Name - 301.6200; !- Surface Area {m2} + , !- Surface Area {m2} + 301.6200; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/RoomAirflowNetwork.idf b/testfiles/RoomAirflowNetwork.idf index ad0d1f2baf2..db0bd09b68b 100644 --- a/testfiles/RoomAirflowNetwork.idf +++ b/testfiles/RoomAirflowNetwork.idf @@ -527,6 +527,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +544,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +561,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -575,6 +578,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -591,6 +595,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +612,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_17_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -623,6 +629,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -639,6 +646,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_10_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -655,6 +663,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -671,6 +680,7 @@ FLOOR, !- Surface Type FLOOR SLAB 4 IN, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition WEST_ZONE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +697,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name WEST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +714,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +731,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +748,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +765,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -767,6 +782,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +799,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_4_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +816,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -815,6 +833,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_18_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +850,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -847,6 +867,7 @@ FLOOR, !- Surface Type FLOOR SLAB 4 IN, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition EAST_ZONE, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +884,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name EAST_ZONE_T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -879,6 +901,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -895,6 +918,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -911,6 +935,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +952,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +969,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +986,7 @@ WALL, !- Surface Type EXTWALL80, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +1003,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1020,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_3_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1037,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11_T, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1054,7 @@ WALL, !- Surface Type PARTITION06, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_11, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1039,6 +1071,7 @@ FLOOR, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Surface_19, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1088,7 @@ ROOF, !- Surface Type ROOF34, !- Construction Name NORTH_ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SeriesActiveBranch.idf b/testfiles/SeriesActiveBranch.idf index 67884a1385d..1d3ccb7b974 100644 --- a/testfiles/SeriesActiveBranch.idf +++ b/testfiles/SeriesActiveBranch.idf @@ -648,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +699,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -712,6 +716,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -728,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -776,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -792,6 +801,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +881,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -937,6 +948,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +965,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1016,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1080,6 +1096,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1128,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1145,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1254,6 +1276,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1300,6 +1323,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1340,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1391,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1443,6 +1471,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1474,6 +1503,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1520,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1571,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1651,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1668,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1681,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1697,6 +1736,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ShopWithPVandBattery.idf b/testfiles/ShopWithPVandBattery.idf index 5651500468a..e7592086837 100644 --- a/testfiles/ShopWithPVandBattery.idf +++ b/testfiles/ShopWithPVandBattery.idf @@ -1041,6 +1041,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1073,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1090,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1107,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1124,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1141,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1151,7 +1157,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1420,6 +1427,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1451,6 +1459,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1476,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1493,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1510,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1527,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,7 +1543,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -1799,6 +1813,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1815,6 +1830,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1831,6 +1847,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1862,6 +1879,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1896,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1913,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1909,7 +1929,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2178,6 +2199,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2216,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2210,6 +2233,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2226,6 +2250,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2257,6 +2282,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2273,6 +2299,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2288,7 +2315,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -2557,6 +2585,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2573,6 +2602,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2589,6 +2619,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2605,6 +2636,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2621,6 +2653,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2637,6 +2670,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2652,7 +2686,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 221.8999; !- Surface Area {m2} + , !- Surface Area {m2} + 221.8999; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/ShopWithPVandLiIonBattery.idf b/testfiles/ShopWithPVandLiIonBattery.idf index 2cfca6ae58a..930a6bb6ef6 100644 --- a/testfiles/ShopWithPVandLiIonBattery.idf +++ b/testfiles/ShopWithPVandLiIonBattery.idf @@ -1041,6 +1041,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1073,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1090,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1107,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1124,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1141,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1151,7 +1157,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1420,6 +1427,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1451,6 +1459,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1476,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1493,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1510,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1527,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,7 +1543,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -1799,6 +1813,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1815,6 +1830,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1831,6 +1847,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1862,6 +1879,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1878,6 +1896,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1894,6 +1913,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1909,7 +1929,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2178,6 +2199,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2216,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2210,6 +2233,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2226,6 +2250,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2257,6 +2282,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2273,6 +2299,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2288,7 +2315,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -2557,6 +2585,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2573,6 +2602,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2589,6 +2619,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2605,6 +2636,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2621,6 +2653,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2637,6 +2670,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2652,7 +2686,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 221.8999; !- Surface Area {m2} + , !- Surface Area {m2} + 221.8999; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name @@ -5018,10 +5053,10 @@ 25, !- Number of Strings in Parallel 0.7, !- Initial Fractional State of Charge , !- DC to DC Charging Efficiency - 342, !- Battery Mass - 4.26, !- Battery Surface Area - , !- Battery Specific Heat Capacity - ; !- Heat Transfer Coefficient Between Battery and Ambient + 342, !- Battery Mass {kg} + 4.26, !- Battery Surface Area {m2} + , !- Battery Specific Heat Capacity {J/kg-K} + ; !- Heat Transfer Coefficient Between Battery and Ambient {W/m2-K} ElectricLoadCenter:Inverter:LookUpTable, PV Inverter, !- Name diff --git a/testfiles/ShopWithPVandStorage.idf b/testfiles/ShopWithPVandStorage.idf index 5d3e18dc30c..e09ae26e827 100644 --- a/testfiles/ShopWithPVandStorage.idf +++ b/testfiles/ShopWithPVandStorage.idf @@ -1040,6 +1040,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1071,6 +1072,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1089,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1106,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1123,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1140,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1150,7 +1156,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1419,6 +1426,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1450,6 +1458,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1466,6 +1475,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1482,6 +1492,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1509,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1514,6 +1526,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1529,7 +1542,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -1798,6 +1812,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1829,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1830,6 +1846,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1861,6 +1878,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1877,6 +1895,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1893,6 +1912,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1908,7 +1928,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2177,6 +2198,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2193,6 +2215,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2209,6 +2232,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2225,6 +2249,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2256,6 +2281,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2272,6 +2298,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2287,7 +2314,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -2556,6 +2584,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2572,6 +2601,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2588,6 +2618,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2604,6 +2635,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2620,6 +2652,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2636,6 +2669,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2651,7 +2685,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 221.8999; !- Surface Area {m2} + , !- Surface Area {m2} + 221.8999; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/ShopWithSimplePVT.idf b/testfiles/ShopWithSimplePVT.idf index bc7dd479eb3..57332e72070 100644 --- a/testfiles/ShopWithSimplePVT.idf +++ b/testfiles/ShopWithSimplePVT.idf @@ -988,6 +988,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1019,6 +1020,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1037,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1054,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1067,6 +1071,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1083,6 +1088,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1098,7 +1104,8 @@ ZN_1_FLR_1_SEC_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_1, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_1_Infiltration, !- Name @@ -1362,6 +1369,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1393,6 +1401,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1409,6 +1418,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1425,6 +1435,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1441,6 +1452,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1457,6 +1469,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1472,7 +1485,8 @@ ZN_1_FLR_1_SEC_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_2, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_2_Infiltration, !- Name @@ -1736,6 +1750,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1752,6 +1767,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1768,6 +1784,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1799,6 +1816,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1815,6 +1833,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1831,6 +1850,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1846,7 +1866,8 @@ ZN_1_FLR_1_SEC_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_3, !- Zone or ZoneList Name - 157.0784; !- Surface Area {m2} + , !- Surface Area {m2} + 157.0784; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_3_Infiltration, !- Name @@ -2110,6 +2131,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2148,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2142,6 +2165,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2158,6 +2182,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Steel-Framed_Ext-wall, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2189,6 +2214,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,6 +2231,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2220,7 +2247,8 @@ ZN_1_FLR_1_SEC_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_4, !- Zone or ZoneList Name - 122.1516; !- Surface Area {m2} + , !- Surface Area {m2} + 122.1516; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_4_Infiltration, !- Name @@ -2484,6 +2512,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_1_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2500,6 +2529,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_2_Wall_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2516,6 +2546,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_3_Wall_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2532,6 +2563,7 @@ wall, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Interior Wall_Int-Wall, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN_1_FLR_1_SEC_4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2548,6 +2580,7 @@ floor, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_Unheated_Ext-slab, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2564,6 +2597,7 @@ ceiling, !- Surface Type ASHRAE 90.1-2004_Sec 5.5-3ab_IEAD_Roof, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2579,7 +2613,8 @@ ZN_1_FLR_1_SEC_5_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name ZN_1_FLR_1_SEC_5, !- Zone or ZoneList Name - 221.8999; !- Surface Area {m2} + , !- Surface Area {m2} + 221.8999; !- Extended Field ZoneInfiltration:DesignFlowRate, ZN_1_FLR_1_SEC_5_Infiltration, !- Name diff --git a/testfiles/SingleFamilyHouse_HP_Slab.idf b/testfiles/SingleFamilyHouse_HP_Slab.idf index c36c5dc49cd..cd000e2ad50 100644 --- a/testfiles/SingleFamilyHouse_HP_Slab.idf +++ b/testfiles/SingleFamilyHouse_HP_Slab.idf @@ -1,18 +1,14 @@ !-Generator IDFEditor 1.51 !-Option SortedOrder UseSpecialFormat - !-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. !- Use '!' comments if they need to be retained when using the IDFEditor. - - !- =========== ALL OBJECTS IN CLASS: VERSION =========== -Version,9.6; + Version,9.6; !- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== - -SimulationControl, + SimulationControl, Yes, !- Do Zone Sizing Calculation Yes, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation @@ -21,11 +17,10 @@ SimulationControl, , !- Do HVAC Sizing Simulation for Sizing Periods ; !- Maximum Number of HVAC Sizing Simulation Passes - !- =========== ALL OBJECTS IN CLASS: BUILDING =========== -Building, - SF_CZ8_HP_SLAB, !- Name + Building, + SF_CZ8_HP_SLAB, !- Name 0, !- North Axis {deg} Suburbs, !- Terrain 0.04, !- Loads Convergence Tolerance Value {W} @@ -34,29 +29,26 @@ Building, 25, !- Maximum Number of Warmup Days 6; !- Minimum Number of Warmup Days - !- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE =========== -SurfaceConvectionAlgorithm:Inside,TARP; + SurfaceConvectionAlgorithm:Inside,TARP; !- =========== ALL OBJECTS IN CLASS: TIMESTEP =========== -Timestep,6; + Timestep,6; !- =========== ALL OBJECTS IN CLASS: SITE:LOCATION =========== - -Site:Location, + Site:Location, Fairbanks Intl Arpt_AK_USA Design_Conditions, !- Name 64.82, !- Latitude {deg} -147.85, !- Longitude {deg} -9.00, !- Time Zone {hr} 133.00; !- Elevation {m} - !- =========== ALL OBJECTS IN CLASS: SIZINGPERIOD:DESIGNDAY =========== -SizingPeriod:DesignDay, + SizingPeriod:DesignDay, Fairbanks Intl Arpt Ann Htg 99.6% Condns DB, !- Name 1, !- Month 21, !- Day of Month @@ -84,7 +76,7 @@ SizingPeriod:DesignDay, , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} 0.00; !- Sky Clearness -SizingPeriod:DesignDay, + SizingPeriod:DesignDay, Fairbanks Intl Arpt Ann Clg .4% Condns DB=>MWB, !- Name 7, !- Month 21, !- Day of Month @@ -111,10 +103,9 @@ SizingPeriod:DesignDay, 0.387, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} 2.212; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} - !- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== -RunPeriod, + RunPeriod, annual, !- Name 1, !- Begin Month 1, !- Begin Day of Month @@ -129,49 +120,46 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators - !- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE =========== -Site:WaterMainsTemperature, + Site:WaterMainsTemperature, Correlation, !- Calculation Method , !- Temperature Schedule Name -1.525, !- Annual Average Outdoor Air Temperature {C} 36.2; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} - !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS =========== -ScheduleTypeLimits, + ScheduleTypeLimits, any number; !- Name -ScheduleTypeLimits, + ScheduleTypeLimits, On/Off, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Discrete; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, control_type, !- Name 0, !- Lower Limit Value 4, !- Upper Limit Value Discrete; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, fraction, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, Temperature, !- Name -60, !- Lower Limit Value 200, !- Upper Limit Value Continuous; !- Numeric Type - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:DAY:HOURLY =========== -Schedule:Day:Hourly, + Schedule:Day:Hourly, OccupancyDay, !- Name Fraction, !- Schedule Type Limits Name 1.00000, !- Hour 1 @@ -199,7 +187,7 @@ Schedule:Day:Hourly, 1.00000, !- Hour 23 1.00000; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay, !- Name Fraction, !- Schedule Type Limits Name 0.0625, !- Hour 1 @@ -227,7 +215,7 @@ Schedule:Day:Hourly, 0.3828125, !- Hour 23 0.15625; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting_OccSensors, !- Name Fraction, !- Schedule Type Limits Name 0.065170403, !- Hour 1 @@ -255,7 +243,7 @@ Schedule:Day:Hourly, 0.399168715, !- Hour 23 0.162926006; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting_Garage_OccSensors, !- Name Fraction, !- Schedule Type Limits Name 0.048125, !- Hour 1 @@ -283,7 +271,7 @@ Schedule:Day:Hourly, 0.294765625, !- Hour 23 0.1203125; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ExteriorLightingDay, !- Name Fraction, !- Schedule Type Limits Name 1, !- Hour 1 @@ -311,7 +299,7 @@ Schedule:Day:Hourly, 1, !- Hour 23 1; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting, !- Name Fraction, !- Schedule Type Limits Name 0.06875, !- Hour 1 @@ -339,7 +327,7 @@ Schedule:Day:Hourly, 0.42109375, !- Hour 23 0.171875; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, RefrigeratorDay, !- Name Fraction, !- Schedule Type Limits Name 0.8, !- Hour 1 @@ -367,7 +355,7 @@ Schedule:Day:Hourly, 0.885714285714286, !- Hour 23 0.828571428571429; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, MiscPlugLoadDay, !- Name Fraction, !- Schedule Type Limits Name 0.607490272373541, !- Hour 1 @@ -395,7 +383,7 @@ Schedule:Day:Hourly, 0.845168612191959, !- Hour 23 0.73443579766537; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, CookingRangeDay, !- Name Fraction, !- Schedule Type Limits Name 0.04715848452508, !- Hour 1 @@ -423,7 +411,7 @@ Schedule:Day:Hourly, 0.103721985058698, !- Hour 23 0.0707043756670224; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.115858456545258, !- Hour 1 @@ -451,7 +439,7 @@ Schedule:Day:Hourly, 0.334819617742518, !- Hour 23 0.23179239091237; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.124134060584205, !- Hour 1 @@ -479,7 +467,7 @@ Schedule:Day:Hourly, 0.358735304724125, !- Hour 23 0.248348990263252; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -507,7 +495,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0796474528960224, !- Hour 1 @@ -535,7 +523,7 @@ Schedule:Day:Hourly, 0.270920725750174, !- Hour 23 0.143433635729239; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0974410327983253, !- Hour 1 @@ -563,7 +551,7 @@ Schedule:Day:Hourly, 0.331445568736915, !- Hour 23 0.175477320307048; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -591,7 +579,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, dhw_profile_day, !- Name fraction, !- Schedule Type Limits Name 0.006, !- Hour 1 @@ -619,7 +607,7 @@ Schedule:Day:Hourly, 0.041, !- Hour 23 0.024; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0996818663838815, !- Hour 1 @@ -647,7 +635,7 @@ Schedule:Day:Hourly, 0.438600212089077, !- Hour 23 0.239236479321316; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.121951219512195, !- Hour 1 @@ -675,7 +663,7 @@ Schedule:Day:Hourly, 0.536585365853659, !- Hour 23 0.292682926829268; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -703,7 +691,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.160052687884461, !- Hour 1 @@ -731,7 +719,7 @@ Schedule:Day:Hourly, 0.44828316394758, !- Hour 23 0.307332809574753; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.169851832040653, !- Hour 1 @@ -759,7 +747,7 @@ Schedule:Day:Hourly, 0.47572907194437, !- Hour 23 0.326149104038513; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -787,7 +775,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.076044361285933, !- Hour 1 @@ -815,7 +803,7 @@ Schedule:Day:Hourly, 0.207555536655894, !- Hour 23 0.148742201054601; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0814761013777853, !- Hour 1 @@ -843,7 +831,7 @@ Schedule:Day:Hourly, 0.222380932131315, !- Hour 23 0.159366643987073; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -871,7 +859,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0492758944582015, !- Hour 1 @@ -899,7 +887,7 @@ Schedule:Day:Hourly, 0.418908931773546, !- Hour 23 0.24644330116984; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0689862522414824, !- Hour 1 @@ -927,7 +915,7 @@ Schedule:Day:Hourly, 0.586472504482965, !- Hour 23 0.345020621637776; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -955,7 +943,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DHWDistDay, !- Name Fraction, !- Schedule Type Limits Name 0.142553149370226, !- Hour 1 @@ -983,7 +971,7 @@ Schedule:Day:Hourly, 0.464292318119835, !- Hour 23 0.299867724445383; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, WinterLoadDay, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -1011,7 +999,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SummerLoadDay, !- Name Fraction, !- Schedule Type Limits Name 1, !- Hour 1 @@ -1039,25 +1027,24 @@ Schedule:Day:Hourly, 1, !- Hour 23 1; !- Hour 24 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:WEEK:COMPACT =========== -Schedule:Week:Compact, + Schedule:Week:Compact, RefrigeratorWeek, !- Name For: AllDays, !- DayType List 1 RefrigeratorDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, MiscPlugLoadWeek, !- Name For: AllDays, !- DayType List 1 MiscPlugLoadDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, CookingRangeWeek, !- Name For: AllDays, !- DayType List 1 CookingRangeDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, DishwasherWeek, !- Name For: Weekdays, !- DayType List 1 DishwasherWeekday, !- Schedule:Day Name 1 @@ -1066,7 +1053,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 DishwasherWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, ClothesWasherWeek, !- Name For: Weekdays, !- DayType List 1 ClothesWasherWeekday, !- Schedule:Day Name 1 @@ -1075,12 +1062,12 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ClothesWasherWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, dhw_profile_week, !- Name AllDays, !- DayType List 1 dhw_profile_day; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, ClothesDryerWeek, !- Name For: Weekdays, !- DayType List 1 ClothesDryerWeekday, !- Schedule:Day Name 1 @@ -1089,7 +1076,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ClothesDryerWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, SinksWeek, !- Name For: Weekdays, !- DayType List 1 SinksWeekday, !- Schedule:Day Name 1 @@ -1098,7 +1085,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 SinksWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, ShowersWeek, !- Name For: Weekdays, !- DayType List 1 ShowersWeekday, !- Schedule:Day Name 1 @@ -1107,7 +1094,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ShowersWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, BathsWeek, !- Name For: Weekdays, !- DayType List 1 BathsWeekday, !- Schedule:Day Name 1 @@ -1116,45 +1103,44 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 BathsWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, DHWDistWeek, !- Name For: AllDays, !- DayType List 1 DHWDistDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, OccupancyWeek, !- Name AllDays, !- DayType List 1 OccupancyDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek, !- Name For: AllDays, !- DayType List 1 LightingDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting_interior_controls, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting_OccSensors; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting_garage_controls, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting_Garage_OccSensors; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, ExteriorLightingProfileWeek, !- Name For: AllDays, !- DayType List 1 ExteriorLightingDay; !- Schedule:Day Name 1 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:YEAR =========== -Schedule:Year, + Schedule:Year, Occupancy, !- Name Fraction, !- Schedule Type Limits Name OccupancyWeek, !- Schedule:Week Name 1 @@ -1163,7 +1149,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLighting, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek, !- Schedule:Week Name 1 @@ -1172,7 +1158,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting, !- Schedule:Week Name 1 @@ -1181,7 +1167,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE_OS, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting_interior_controls, !- Schedule:Week Name 1 @@ -1190,7 +1176,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE_VS, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting_garage_controls, !- Schedule:Week Name 1 @@ -1199,7 +1185,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ExteriorLighting, !- Name Fraction, !- Schedule Type Limits Name ExteriorLightingProfileWeek, !- Schedule:Week Name 1 @@ -1208,7 +1194,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Refrigerator, !- Name Fraction, !- Schedule Type Limits Name RefrigeratorWeek, !- Schedule:Week Name 1 @@ -1217,7 +1203,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, MiscPlugLoad, !- Name Fraction, !- Schedule Type Limits Name MiscPlugLoadWeek, !- Schedule:Week Name 1 @@ -1226,7 +1212,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, CookingRange, !- Name Fraction, !- Schedule Type Limits Name CookingRangeWeek, !- Schedule:Week Name 1 @@ -1235,7 +1221,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, dhw_sch, !- Name fraction, !- Schedule Type Limits Name dhw_profile_week, !- Schedule:Week Name 1 @@ -1244,7 +1230,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Dishwasher, !- Name Fraction, !- Schedule Type Limits Name DishwasherWeek, !- Schedule:Week Name 1 @@ -1253,7 +1239,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ClothesWasher, !- Name Fraction, !- Schedule Type Limits Name ClothesWasherWeek, !- Schedule:Week Name 1 @@ -1262,7 +1248,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ClothesDryer, !- Name Fraction, !- Schedule Type Limits Name ClothesDryerWeek, !- Schedule:Week Name 1 @@ -1271,7 +1257,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Sinks, !- Name Fraction, !- Schedule Type Limits Name SinksWeek, !- Schedule:Week Name 1 @@ -1280,7 +1266,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Showers, !- Name Fraction, !- Schedule Type Limits Name ShowersWeek, !- Schedule:Week Name 1 @@ -1289,7 +1275,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Baths, !- Name Fraction, !- Schedule Type Limits Name BathsWeek, !- Schedule:Week Name 1 @@ -1298,7 +1284,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, DHWDist, !- Name Fraction, !- Schedule Type Limits Name DHWDistWeek, !- Schedule:Week Name 1 @@ -1307,308 +1293,319 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== - -Schedule:Compact, - BA_shower_sch, !- Name - any number, !- Schedule Type Limits Name - Through: 12/31, !- Field 1 - For: AllDays, !- Field 2 - Until: 1:00, 0.00174682444444444, !- Field 4 - Until: 2:00, 0.000794011111111111, !- Field 6 - Until: 3:00, 0.000476406666666667, !- Field 8 - Until: 4:00, 0.000794011111111111, !- Field 10 - Until: 5:00, 0.00222323111111111, !- Field 12 - Until: 6:00, 0.00825771555555556, !- Field 14 - Until: 7:00, 0.0187386622222222, !- Field 16 - Until: 8:00, 0.01857986, !- Field 18 - Until: 9:00, 0.0150862111111111, !- Field 20 - Until: 10:00, 0.0117513644444444, !- Field 22 - Until: 11:00, 0.00952813333333333, !- Field 24 - Until: 12:00, 0.00746370444444444, !- Field 26 - Until: 13:00, 0.00539927555555556, !- Field 28 - Until: 14:00, 0.00460526444444444, !- Field 30 - Until: 15:00, 0.00412885777777778, !- Field 32 - Until: 16:00, 0.00397005555555556, !- Field 34 - Until: 17:00, 0.00476406666666667, !- Field 36 - Until: 18:00, 0.00619328666666667, !- Field 38 - Until: 19:00, 0.00666969333333333, !- Field 40 - Until: 20:00, 0.00666969333333333, !- Field 42 - Until: 21:00, 0.00666969333333333, !- Field 44 - Until: 22:00, 0.00651089111111111, !- Field 46 - Until: 23:00, 0.00460526444444444, !- Field 48 - Until: 24:00, 0.00333484666666667; - !- Field 50 -Schedule:Compact, - BA_bath_sch, !- Name + Schedule:Compact, + BA_shower_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 1:00, 0.000163090909090909, + Until: 1:00,0.00174682444444444, !- Field 3 + Until: 2:00,0.000794011111111111, !- Field 5 + Until: 3:00,0.000476406666666667, !- Field 7 + Until: 4:00,0.000794011111111111, !- Field 9 + Until: 5:00,0.00222323111111111, !- Field 11 + Until: 6:00,0.00825771555555556, !- Field 13 + Until: 7:00,0.0187386622222222, !- Field 15 + Until: 8:00,0.01857986, !- Field 17 + Until: 9:00,0.0150862111111111, !- Field 19 + Until: 10:00,0.0117513644444444, !- Field 21 + Until: 11:00,0.00952813333333333, !- Field 23 + Until: 12:00,0.00746370444444444, !- Field 25 + Until: 13:00,0.00539927555555556, !- Field 27 + Until: 14:00,0.00460526444444444, !- Field 29 + Until: 15:00,0.00412885777777778, !- Field 31 + Until: 16:00,0.00397005555555556, !- Field 33 + Until: 17:00,0.00476406666666667, !- Field 35 + Until: 18:00,0.00619328666666667, !- Field 37 + Until: 19:00,0.00666969333333333, !- Field 39 + Until: 20:00,0.00666969333333333, !- Field 41 + Until: 21:00,0.00666969333333333, !- Field 43 + Until: 22:00,0.00651089111111111, !- Field 45 + Until: 23:00,0.00460526444444444, !- Field 47 + Until: 24:00,0.00333484666666667; !- Field 49 + + !- Field 50 !- Field 4 - Until: 2:00, 8.15454545454545e-05, !- Field 6 - Until: 3:00, 8.15454545454545e-05, !- Field 8 - Until: 4:00, 8.15454545454545e-05, !- Field 10 - Until: 5:00, 0.000163090909090909, !- Field 12 - Until: 6:00, 0.000387340909090909, !- Field 14 - Until: 7:00, 0.000937772727272727, !- Field 16 - Until: 8:00, 0.00118240909090909, !- Field 18 - Until: 9:00, 0.0013455, !- Field 20 - Until: 10:00, 0.00118240909090909, !- Field 22 - Until: 11:00, 0.000937772727272727, !- Field 24 - Until: 12:00, 0.000713522727272727, !- Field 26 - Until: 13:00, 0.000631977272727273, !- Field 28 - Until: 14:00, 0.000468886363636364, !- Field 30 - Until: 15:00, 0.000468886363636364, !- Field 32 - Until: 16:00, 0.000468886363636364, !- Field 34 - Until: 17:00, 0.000795068181818182, !- Field 36 - Until: 18:00, 0.000937772727272727, !- Field 38 - Until: 19:00, 0.00156975,!- Field 40 - Until: 20:00, 0.00203863636363636, !- Field 42 - Until: 21:00, 0.00203863636363636, !- Field 44 - Until: 22:00, 0.00156975,!- Field 46 - Until: 23:00, 0.0013455, !- Field 48 - Until: 24:00, 0.000795068181818182; - !- Field 50 -Schedule:Compact, - BA_sink_sch, !- Name + Schedule:Compact, + BA_bath_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 1:00, 0.00387388596491228, + Until: 1:00,0.000163090909090909, !- Field 3 + Until: 2:00,8.15454545454545e-05, !- Field 5 + Until: 3:00,8.15454545454545e-05, !- Field 7 + Until: 4:00,8.15454545454545e-05, !- Field 9 + Until: 5:00,0.000163090909090909, !- Field 11 + Until: 6:00,0.000387340909090909, !- Field 13 + Until: 7:00,0.000937772727272727, !- Field 15 + Until: 8:00,0.00118240909090909, !- Field 17 + Until: 9:00,0.0013455, !- Field 19 + Until: 10:00,0.00118240909090909, !- Field 21 + Until: 11:00,0.000937772727272727, !- Field 23 + Until: 12:00,0.000713522727272727, !- Field 25 + Until: 13:00,0.000631977272727273, !- Field 27 + Until: 14:00,0.000468886363636364, !- Field 29 + Until: 15:00,0.000468886363636364, !- Field 31 + Until: 16:00,0.000468886363636364, !- Field 33 + Until: 17:00,0.000795068181818182, !- Field 35 + Until: 18:00,0.000937772727272727, !- Field 37 + Until: 19:00,0.00156975, !- Field 39 + Until: 20:00,0.00203863636363636, !- Field 41 + Until: 21:00,0.00203863636363636, !- Field 43 + Until: 22:00,0.00156975, !- Field 45 + Until: 23:00,0.0013455, !- Field 47 + Until: 24:00,0.000795068181818182; !- Field 49 + + !- Field 50 !- Field 4 - Until: 2:00, 0.00193694298245614, !- Field 6 - Until: 3:00, 0.00138353070175439, !- Field 8 - Until: 4:00, 0.00138353070175439, !- Field 10 - Until: 5:00, 0.00193694298245614, !- Field 12 - Until: 6:00, 0.00498071052631579, !- Field 14 - Until: 7:00, 0.0116216578947368, !- Field 16 - Until: 8:00, 0.0171557807017544, !- Field 18 - Until: 9:00, 0.0182626052631579, !- Field 20 - Until: 10:00, 0.0171557807017544, !- Field 22 - Until: 11:00, 0.0149421315789474, !- Field 24 - Until: 12:00, 0.0138353070175439, !- Field 26 - Until: 13:00, 0.013558600877193, !- Field 28 - Until: 14:00, 0.0124517763157895, !- Field 30 - Until: 15:00, 0.0118983640350877, !- Field 32 - Until: 16:00, 0.011344951754386, !- Field 34 - Until: 17:00, 0.0132818947368421, !- Field 36 - Until: 18:00, 0.017985899122807, !- Field 38 - Until: 19:00, 0.0207529605263158, !- Field 40 - Until: 20:00, 0.0190927236842105, !- Field 42 - Until: 21:00, 0.01577225,!- Field 44 - Until: 22:00, 0.0132818947368421, !- Field 46 - Until: 23:00, 0.0110682456140351, !- Field 48 - Until: 24:00, 0.00747106578947368; + + Schedule:Compact, + BA_sink_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00,0.00387388596491228, !- Field 3 + Until: 2:00,0.00193694298245614, !- Field 5 + Until: 3:00,0.00138353070175439, !- Field 7 + Until: 4:00,0.00138353070175439, !- Field 9 + Until: 5:00,0.00193694298245614, !- Field 11 + Until: 6:00,0.00498071052631579, !- Field 13 + Until: 7:00,0.0116216578947368, !- Field 15 + Until: 8:00,0.0171557807017544, !- Field 17 + Until: 9:00,0.0182626052631579, !- Field 19 + Until: 10:00,0.0171557807017544, !- Field 21 + Until: 11:00,0.0149421315789474, !- Field 23 + Until: 12:00,0.0138353070175439, !- Field 25 + Until: 13:00,0.013558600877193, !- Field 27 + Until: 14:00,0.0124517763157895, !- Field 29 + Until: 15:00,0.0118983640350877, !- Field 31 + Until: 16:00,0.011344951754386, !- Field 33 + Until: 17:00,0.0132818947368421, !- Field 35 + Until: 18:00,0.017985899122807, !- Field 37 + Until: 19:00,0.0207529605263158, !- Field 39 + Until: 20:00,0.0190927236842105, !- Field 41 + Until: 21:00,0.01577225, !- Field 43 + Until: 22:00,0.0132818947368421, !- Field 45 + Until: 23:00,0.0110682456140351, !- Field 47 + Until: 24:00,0.00747106578947368; !- Field 49 + !- Field 50 -Schedule:Compact, + Schedule:Compact, activity_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 117.28; !- Field 4 + Until: 24:00,117.28; !- Field 3 -Schedule:Compact, + Schedule:Compact, inf_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 1; !- Field 4 + Until: 24:00,1; !- Field 3 -Schedule:Compact, + Schedule:Compact, zone_control_type, !- Name control_type, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 4; !- Field 4 + Until 24:00,4; !- Field 3 -Schedule:Compact, + Schedule:Compact, shading_2012iecc, !- Name fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 0; !- Field 4 + Until 24:00,0; !- Field 3 -Schedule:Compact, + Schedule:Compact, shading_2009iecc, !- Name any number, !- Schedule Type Limits Name Through: 5/30, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 0.85, !- Field 4 + Until 24:00,0.85, !- Field 3 Through: 8/31, !- Field 5 For: AllDays, !- Field 6 - Until 24:00, !- Field 7 - 0.7, !- Field 8 + Until 24:00,0.7, !- Field 7 Through: 12/31, !- Field 9 For: AllDays, !- Field 10 - Until: 24:00, 0.85; !- Field 12 + Until: 24:00,0.85; !- Field 11 -Schedule:Compact, + Schedule:Compact, dhw_setpt, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 48; !- Field 4 + Until 24:00,48; !- Field 3 -Schedule:Compact, + Schedule:Compact, dhw_setpt_hpwh, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 44; !- Field 4 + Until 24:00,44; !- Field 3 -Schedule:Compact, + Schedule:Compact, Supply-Air-Temp-Sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 12; !- Field 4 + Until: 24:00,12; !- Field 3 -Schedule:Compact, + Schedule:Compact, always_avail, !- Name On/Off, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 1; !- Field 4 + Until: 24:00,1; !- Field 3 -Schedule:Compact, + 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 4 + Until: 24:00,0; !- Field 3 -Schedule:Compact, + Schedule:Compact, heating_sch_HRef, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 20; !- Field 4 + Until: 24:00,20; !- Field 3 -Schedule:Compact, + Schedule:Compact, cooling_sch_HRef, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 25.55; !- Field 4 + Until: 24:00,25.55; !- Field 3 -Schedule:Compact, + Schedule:Compact, heating_sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 22.2222222222223; + Until: 24:00,22.2222222222223; !- Field 3 + !- Field 4 -Schedule:Compact, + Schedule:Compact, cooling_sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 23.888888888889; + Until: 24:00,23.888888888889; !- Field 3 + !- Field 4 -Schedule:Compact, + Schedule:Compact, fan_cycle, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 0; !- Field 4 - + Until: 24:00,0; !- Field 3 !- =========== ALL OBJECTS IN CLASS: SCHEDULE:CONSTANT =========== -Schedule:Constant,DWWaterTempSchedule,Temperature,48.8888888888889; -Schedule:Constant,CWWaterTempSchedule,Temperature,48.8888888888889; -Schedule:Constant,SinkSensSchedule,Fraction,0.687777777777778; -Schedule:Constant,SinkLatSchedule,Fraction,0.312222222222222; -Schedule:Constant,ShowerSensSchedule,Fraction,0.51280276816609; -Schedule:Constant,ShowerLatSchedule,Fraction,0.48719723183391; -Schedule:Constant,BathSensSchedule,Fraction,1; -Schedule:Constant,BathLatSchedule,Fraction,0; -Schedule:Constant,SSBWaterTempSchedule,Temperature,40.5555555555556; -Schedule:Constant,WaterHeaterSP1Schedule,Temperature,48.8888888888889; -Schedule:Constant,WaterHeaterSP2Schedule,Temperature,40.5555555555556; -Schedule:Constant,DHWSupplySetpoint,Temperature,48.8888888888889; -Schedule:Constant,boiler_setpt,Temperature,80; -Schedule:Constant,Compressor Setpoint,Temperature,50; -Schedule:Constant,DOAShightemp,Temperature,200; -Schedule:Constant,DOASlowtemp,Temperature,-60; + Schedule:Constant,DWWaterTempSchedule,Temperature,48.8888888888889; -!- =========== ALL OBJECTS IN CLASS: MATERIAL =========== + Schedule:Constant,CWWaterTempSchedule,Temperature,48.8888888888889; + + Schedule:Constant,SinkSensSchedule,Fraction,0.687777777777778; + + Schedule:Constant,SinkLatSchedule,Fraction,0.312222222222222; + + Schedule:Constant,ShowerSensSchedule,Fraction,0.51280276816609; + + Schedule:Constant,ShowerLatSchedule,Fraction,0.48719723183391; + + Schedule:Constant,BathSensSchedule,Fraction,1; + + Schedule:Constant,BathLatSchedule,Fraction,0; + + Schedule:Constant,SSBWaterTempSchedule,Temperature,40.5555555555556; + + Schedule:Constant,WaterHeaterSP1Schedule,Temperature,48.8888888888889; + + Schedule:Constant,WaterHeaterSP2Schedule,Temperature,40.5555555555556; + + Schedule:Constant,DHWSupplySetpoint,Temperature,48.8888888888889; + + Schedule:Constant,boiler_setpt,Temperature,80; + + Schedule:Constant,Compressor Setpoint,Temperature,50; + + Schedule:Constant,DOAShightemp,Temperature,200; + Schedule:Constant,DOASlowtemp,Temperature,-60; -Material, +!- =========== ALL OBJECTS IN CLASS: MATERIAL =========== + + Material, sheathing_consol_layer, !- Name Rough, !- Roughness 0.031115, !- Thickness {m} @@ -1616,7 +1613,7 @@ Material, 20.1, !- Density {kg/m3} 1465.415; !- Specific Heat {J/kg-K} -Material, + Material, ceil_consol_layer, !- Name Rough, !- Roughness 0.444461299067702, !- Thickness {m} @@ -1624,7 +1621,7 @@ Material, 41.9286, !- Density {kg/m3} 776.25126; !- Specific Heat {J/kg-K} -Material, + Material, floor_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1632,7 +1629,7 @@ Material, 55.074, !- Density {kg/m3} 916.9311; !- Specific Heat {J/kg-K} -Material, + Material, bsmtwall_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1640,7 +1637,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, crawlwall_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1648,7 +1645,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, wall_consol_layer, !- Name Rough, !- Roughness 0.1397, !- Thickness {m} @@ -1656,7 +1653,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, Very High Reflectivity Surface, !- Name Smooth, !- Roughness 0.0005, !- Thickness {m} @@ -1667,7 +1664,7 @@ Material, 0.05, !- Solar Absorptance 0.05; !- Visible Absorptance -Material, + Material, GypsumBoard-5/16in, !- Name Rough, !- Roughness 7.93953E-03, !- Thickness {m} @@ -1678,7 +1675,7 @@ Material, 0.4, !- Solar Absorptance 0.1; !- Visible Absorptance -Material, + Material, CopperPipe, !- Name MediumRough, !- Roughness 1.90500386169072E-02, !- Thickness {m} @@ -1689,7 +1686,7 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance -Material, + Material, F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -1697,7 +1694,7 @@ Material, 7824, !- Density {kg/m3} 500; !- Specific Heat {J/kg-K} -Material, + Material, Concrete_4in, !- Name Rough, !- Roughness 0.1014984, !- Thickness {m} @@ -1705,7 +1702,7 @@ Material, 2242.8, !- Density {kg/m3} 465.2; !- Specific Heat {J/kg-K} -Material, + Material, Asphalt_shingle, !- Name MediumRough, !- Roughness 6.33985285170672E-03, !- Thickness {m} @@ -1715,7 +1712,7 @@ Material, , !- Thermal Absorptance 0.75; !- Solar Absorptance -Material, + Material, Wood_shingle, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1723,7 +1720,7 @@ Material, 426.090847695673, !- Density {kg/m3} 1631.76001234752; !- Specific Heat {J/kg-K} -Material, + Material, Slate_shingle, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1731,7 +1728,7 @@ Material, 1601.845292089, !- Density {kg/m3} 1255.20000949809; !- Specific Heat {J/kg-K} -Material, + Material, cement_stucco, !- Name MediumSmooth, !- Roughness 1.905E-02, !- Thickness {m} @@ -1739,7 +1736,7 @@ Material, 1865.58, !- Density {kg/m3} 878.640006648665; !- Specific Heat {J/kg-K} -Material, + Material, syn_stucco, !- Name MediumSmooth, !- Roughness 0.3048E-02, !- Thickness {m} @@ -1747,7 +1744,7 @@ Material, 400, !- Density {kg/m3} 878.640006648665; !- Specific Heat {J/kg-K} -Material, + Material, Drywall_1/2in, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1755,7 +1752,7 @@ Material, 800.922646044499, !- Density {kg/m3} 1087.84000823168; !- Specific Heat {J/kg-K} -Material, + Material, OSB_5/8in, !- Name MediumSmooth, !- Roughness 0.015875032180756, !- Thickness {m} @@ -1763,7 +1760,7 @@ Material, 544.627399310259, !- Density {kg/m3} 1213.36000918149; !- Specific Heat {J/kg-K} -Material, + Material, OSB_7/16in, !- Name MediumSmooth, !- Roughness 0.0111125, !- Thickness {m} @@ -1771,7 +1768,7 @@ Material, 544.627399310259, !- Density {kg/m3} 1213.36000918149; !- Specific Heat {J/kg-K} -Material, + Material, Blown_R30, !- Name MediumRough, !- Roughness 0.212598430964684, !- Thickness {m} @@ -1779,7 +1776,7 @@ Material, 9.61107175253399, !- Density {kg/m3} 836.800006332062; !- Specific Heat {J/kg-K} -Material, + Material, Blown_R30_top, !- Name MediumRough, !- Roughness 0.117348237880148, !- Thickness {m} @@ -1790,7 +1787,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Plywood_3/4in, !- Name Rough, !- Roughness 0.01905, !- Thickness {m} @@ -1801,7 +1798,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Batt_R19, !- Name MediumRough, !- Roughness 2.54000514892096E-02, !- Thickness {m} @@ -1812,9 +1809,9 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Lumber_2x4, !- Name - Rough , !- Roughness + Rough, !- Roughness 0.0890016, !- Thickness {m} 0.1154577, !- Conductivity {W/m-K} 512.64, !- Density {kg/m3} @@ -1823,7 +1820,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Carpet_n_pad, !- Name MediumSmooth, !- Roughness 2.54000514892096E-02, !- Thickness {m} @@ -1834,7 +1831,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Batt_R13, !- Name MediumRough, !- Roughness 0.0889, !- Thickness {m} @@ -1845,7 +1842,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, OSB_1/2in, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1856,7 +1853,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, soil_12in, !- Name Rough, !- Roughness 0.3048, !- Thickness {m} @@ -1867,7 +1864,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, door_const, !- Name Smooth, !- Roughness 0.0422695734864227, !- Thickness {m} @@ -1875,7 +1872,7 @@ Material, 512.64, !- Density {kg/m3} 767.58; !- Specific Heat {J/kg-K} -Material, + Material, Gyp_board_1/2in, !- Name Rough, !- Roughness 0.01271016, !- Thickness {m} @@ -1886,7 +1883,7 @@ Material, 0.4, !- Solar Absorptance 0.1; !- Visible Absorptance -Material, + Material, Std Wood 6inch, !- Name MediumSmooth, !- Roughness 0.15, !- Thickness {m} @@ -1897,7 +1894,7 @@ Material, 0.7000000, !- Solar Absorptance 0.7000000; !- Visible Absorptance -Material, + Material, Pipe Insulation, !- Name VeryRough, !- Roughness 0.0127032520325203, !- Thickness {m} @@ -1908,52 +1905,48 @@ Material, 0.5, !- Solar Absorptance 0.5; !- Visible Absorptance - !- =========== ALL OBJECTS IN CLASS: MATERIAL:NOMASS =========== -Material:NoMass, + Material:NoMass, Manf_wall_airgap, !- Name Smooth, !- Roughness 0.12; !- Thermal Resistance {m2-K/W} -Material:NoMass, + Material:NoMass, Bldg_paper_felt, !- Name Smooth, !- Roughness 1.05666113069662E-02; !- Thermal Resistance {m2-K/W} -Material:NoMass, + Material:NoMass, R_high, !- Name MediumRough, !- Roughness 177; !- Thermal Resistance {m2-K/W} - !- =========== ALL OBJECTS IN CLASS: MATERIAL:AIRGAP =========== -Material:AirGap, + Material:AirGap, Air_4_in_vert, !- Name 0.158499169604493; !- Thermal Resistance {m2-K/W} -Material:AirGap, + Material:AirGap, 3/4in_air_space, !- Name 0.08513; !- Thermal Resistance {m2-K/W} -Material:AirGap, + Material:AirGap, 3/4in_Reflective_air_space, !- Name 0.246554; !- Thermal Resistance {m2-K/W} - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM =========== -WindowMaterial:SimpleGlazingSystem, + WindowMaterial:SimpleGlazingSystem, Glass, !- Name 1.70358, !- U-Factor {W/m2-K} 0.3344, !- Solar Heat Gain Coefficient 0.88; !- Visible Transmittance - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:GLAZING =========== -WindowMaterial:Glazing, + WindowMaterial:Glazing, Clear Acrylic Plastic, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -1969,7 +1962,7 @@ WindowMaterial:Glazing, 0.90, !- Back Side Infrared Hemispherical Emissivity 0.90; !- Conductivity {W/m-K} -WindowMaterial:Glazing, + WindowMaterial:Glazing, Diffusing Acrylic Plastic, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -1985,10 +1978,9 @@ WindowMaterial:Glazing, 0.90, !- Back Side Infrared Hemispherical Emissivity 0.90; !- Conductivity {W/m-K} - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:BLIND =========== -WindowMaterial:Blind, + WindowMaterial:Blind, int_blind, !- Name Horizontal, !- Slat Orientation 0.025, !- Slat Width {m} @@ -2019,10 +2011,9 @@ WindowMaterial:Blind, , !- Minimum Slat Angle {deg} ; !- Maximum Slat Angle {deg} - !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== -Construction, + Construction, Exterior Wall, !- Name syn_stucco, !- Outside Layer sheathing_consol_layer, !- Layer 2 @@ -2030,75 +2021,75 @@ Construction, wall_consol_layer, !- Layer 4 Drywall_1/2in; !- Layer 5 -Construction, + Construction, InteriorFurnishings, !- Name Std Wood 6inch; !- Outside Layer -Construction, + Construction, ceiling-floor-layer, !- Name Lumber_2x4; !- Outside Layer -Construction, + Construction, Exterior Floor, !- Name floor_consol_layer, !- Outside Layer Plywood_3/4in, !- Layer 2 Carpet_n_pad; !- Layer 3 -Construction, + Construction, Interior Floor, !- Name Plywood_3/4in, !- Outside Layer Carpet_n_pad; !- Layer 2 -Construction, + Construction, Interior Ceiling, !- Name ceil_consol_layer, !- Outside Layer Drywall_1/2in; !- Layer 2 -Construction, + Construction, attic floor, !- Name Drywall_1/2in, !- Outside Layer ceil_consol_layer; !- Layer 2 -Construction, + Construction, fndn_roof, !- Name Carpet_n_pad, !- Outside Layer Plywood_3/4in, !- Layer 2 ceil_consol_layer; !- Layer 3 -Construction, + Construction, interiorwall, !- Name Drywall_1/2in, !- Outside Layer OSB_5/8in, !- Layer 2 Drywall_1/2in; !- Layer 3 -Construction, + Construction, Interior Wall, !- Name Drywall_1/2in, !- Outside Layer Air_4_in_vert, !- Layer 2 Drywall_1/2in; !- Layer 3 -Construction, + Construction, Exterior Roof, !- Name Asphalt_shingle, !- Outside Layer OSB_1/2in; !- Layer 2 -Construction, + Construction, Exterior Window, !- Name Glass; !- Outside Layer -Construction, + Construction, Interior Window, !- Name Glass; !- Outside Layer -Construction, + Construction, Exterior Door, !- Name door_const; !- Outside Layer -Construction, + Construction, Interior Door, !- Name door_const; !- Outside Layer -Construction, + Construction, Gable_end, !- Name cement_stucco, !- Outside Layer Bldg_paper_felt, !- Layer 2 @@ -2106,346 +2097,375 @@ Construction, Air_4_in_vert, !- Layer 4 Drywall_1/2in; !- Layer 5 -Construction, + Construction, crawl_floor, !- Name R_high, !- Outside Layer soil_12in; !- Layer 2 -Construction, + Construction, window_w_blinds, !- Name Glass, !- Outside Layer int_blind; !- Layer 2 -Construction, + Construction, Insulated Pipe, !- Name Pipe Insulation, !- Outside Layer CopperPipe; !- Layer 2 -Construction, + Construction, Plain Pipe, !- Name CopperPipe; !- Outside Layer -Construction, + Construction, TDD Pipe, !- Name Very High Reflectivity Surface; !- Outside Layer -Construction, + Construction, TDD Dome, !- Name Clear Acrylic Plastic; !- Outside Layer -Construction, + Construction, TDD Diffuser, !- Name Diffusing Acrylic Plastic; !- Outside Layer - !- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES =========== -GlobalGeometryRules, + GlobalGeometryRules, LowerLeftCorner, !- Starting Vertex Position Counterclockwise, !- Vertex Entry Direction Relative; !- Coordinate System - !- =========== ALL OBJECTS IN CLASS: ZONE =========== -Zone, + Zone, living_unit1, !- Name 0.0, !- Direction of Relative North {deg} - 0.0, 0.0, 0.0, !- X,Y,Z {m} + 0.0, !- X Origin {m} + 0.0, !- Y Origin {m} + 0.0, !- Z Origin {m} , !- Type 1; !- Multiplier -Zone, + Zone, attic_unit1, !- Name 0.0, !- Direction of Relative North {deg} - 0.0, 0.0, 0.0, !- X,Y,Z {m} + 0.0, !- X Origin {m} + 0.0, !- Y Origin {m} + 0.0, !- Z Origin {m} , !- Type 1; !- Multiplier - !- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED =========== + !- X,Y,Z 2 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Inter zone floor 1, !- Name Floor, !- Surface Type Interior Floor, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 2.60156341463415, !- X,Y,Z 1 {m} - 0, 9.09981820971244, 2.60156341463415, + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, !- X,Y,Z 3 {m} - 12.1330909462833, 0, 2.60156341463415; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, ceiling_unit1, !- Name Ceiling, !- Surface Type Interior Ceiling, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition attic_unit1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 5.19302682926829, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 5.19302682926829, + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 5.19302682926829; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_front_unit1, !- Name Roof, !- Surface Type Exterior Roof, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 5.19302682926829, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 5.19302682926829, + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,4.54990910485622,6.6995631975537, !- X,Y,Z ==> Vertex 3 {m} + 0,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537, !- X,Y,Z 3 {m} - 0, 4.54990910485622, 6.6995631975537; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_back_unit1, !- Name Roof, !- Surface Type Exterior Roof, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 5.19302682926829, + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 0,4.54990910485622,6.6995631975537, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 1 {m} - 0, 9.09981820971244, 5.19302682926829, !- X,Y,Z 2 {m} - 0, 4.54990910485622, 6.6995631975537, - !- X,Y,Z 3 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_right_unit1, !- Name Wall, !- Surface Type Gable_end, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 3, !- Number of Vertices - 12.1330909462833, 0, 5.19302682926829, - !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 2 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537; + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 3 {m} + !- X,Y,Z 3 {m} + !- X,Y,Z 1 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_left_unit1, !- Name Wall, !- Surface Type Gable_end, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 3, !- Number of Vertices - 0, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 1 {m} - 0, 0, 5.19302682926829, !- X,Y,Z 2 {m} - 0, 4.54990910485622, 6.6995631975537; + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 0,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 3 {m} + + !- X,Y,Z 3 {m} !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldf_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 0.0101, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 0.0101, !- X,Y,Z 2 {m} - 12.1330909462833, 0, 2.60156341463415, + 0,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 0,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 2 {m} !- X,Y,Z 3 {m} - 0, 0, 2.60156341463415; !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdr_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 0, 0.0101, !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 3 {m} - 12.1330909462833, 0, 2.60156341463415; + 12.1330909462833,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldb_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 1 {m} - 0, 9.09981820971244, 0.0101, !- X,Y,Z 2 {m} - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 3 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415; + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,9.09981820971244,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdl_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 9.09981820971244, 0.0101, !- X,Y,Z 1 {m} - 0, 0, 0.0101, !- X,Y,Z 2 {m} - 0, 0, 2.60156341463415, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 2.60156341463415; + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 2 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldf_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 2.60156341463415, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 2.60156341463415, + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,0,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 1 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 0, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 0, 5.19302682926829; !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdr_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 0, 2.60156341463415, + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, !- X,Y,Z 3 {m} - 12.1330909462833, 0, 5.19302682926829; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldb_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 1 {m} - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 2 {m} - 0, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 3 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829; + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdl_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 1 {m} - 0, 0, 2.60156341463415, !- X,Y,Z 2 {m} - 0, 0, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 5.19302682926829; + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Floor_unit1, !- Name Floor, !- Surface Type Interior Floor, !- Construction Name living_unit1, !- Zone Name + , !- Space Name GroundSlabPreprocessorAverage, !- Outside Boundary Condition surfPropOthSdCoefSlabAverage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 0.0101, !- X,Y,Z 1 {m} - 0, 9.09981820971244, 0.0101, !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 3 {m} - 12.1330909462833, 0, 0.0101; !- X,Y,Z 4 {m} - + 0,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,0.0101; !- X,Y,Z ==> Vertex 4 {m} !- =========== ALL OBJECTS IN CLASS: WINDOW =========== -Window, + Window, Window_ldf_1.unit1, !- Name Exterior Window, !- Construction Name Wall_ldf_1.unit1, !- Building Surface Name @@ -2456,7 +2476,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldb_1.unit1, !- Name Exterior Window, !- Construction Name Wall_ldb_1.unit1, !- Building Surface Name @@ -2467,7 +2487,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdr_1.unit1, !- Name Exterior Window, !- Construction Name Wall_sdr_1.unit1, !- Building Surface Name @@ -2478,7 +2498,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdl_1.unit1, !- Name Exterior Window, !- Construction Name Wall_sdl_1.unit1, !- Building Surface Name @@ -2489,7 +2509,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldf_2.unit1, !- Name Exterior Window, !- Construction Name Wall_ldf_2.unit1, !- Building Surface Name @@ -2500,7 +2520,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldb_2.unit1, !- Name Exterior Window, !- Construction Name Wall_ldb_2.unit1, !- Building Surface Name @@ -2511,7 +2531,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdr_2.unit1, !- Name Exterior Window, !- Construction Name Wall_sdr_2.unit1, !- Building Surface Name @@ -2522,7 +2542,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdl_2.unit1, !- Name Exterior Window, !- Construction Name Wall_sdl_2.unit1, !- Building Surface Name @@ -2533,10 +2553,9 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} - !- =========== ALL OBJECTS IN CLASS: DOOR =========== -Door, + Door, Door_ldb_unit1, !- Name Exterior Door, !- Construction Name Wall_ldb_1.unit1, !- Building Surface Name @@ -2546,10 +2565,9 @@ Door, 1.74190122145513, !- Length {m} 2.13414634146341; !- Height {m} - !- =========== ALL OBJECTS IN CLASS: WINDOWSHADINGCONTROL =========== -WindowShadingControl, + WindowShadingControl, Shades-living_unit1, !- Name living_unit1, !- Zone Name 1, !- Shading Control Sequence Number @@ -2575,19 +2593,18 @@ WindowShadingControl, Window_sdr_2.unit1, !- Fenestration Surface 7 Name Window_sdl_2.unit1; !- Fenestration Surface 8 Name - !- =========== ALL OBJECTS IN CLASS: INTERNALMASS =========== -InternalMass, + InternalMass, Internalmass_unit1, !- Name InteriorFurnishings, !- Construction Name living_unit1, !- Zone or ZoneList Name - 9.89591078066915; !- Surface Area {m2} - + , !- Surface Area {m2} + 9.89591078066915; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SHADING:OVERHANG =========== -Shading:Overhang, + Shading:Overhang, Overhang_sdr_1.unit1, !- Name Window_sdr_1.unit1, !- Window or Door Name 0, !- Height above Window or Door {m} @@ -2596,7 +2613,7 @@ Shading:Overhang, 0, !- Right extension from Window/Door Width {m} 0.0152439024390244; !- Depth {m} -Shading:Overhang, + Shading:Overhang, Overhang_sdr_2.unit1, !- Name Window_sdr_2.unit1, !- Window or Door Name 0, !- Height above Window or Door {m} @@ -2605,18 +2622,16 @@ Shading:Overhang, 0, !- Right extension from Window/Door Width {m} 0.0152439024390244; !- Depth {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:CONTROL =========== -GroundHeatTransfer:Control, + GroundHeatTransfer:Control, gtp_control, !- Name no, !- Run Basement Preprocessor yes; !- Run Slab Preprocessor - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:MATERIALS =========== -GroundHeatTransfer:Slab:Materials, + GroundHeatTransfer:Slab:Materials, 2, !- NMAT: Number of materials 0.16, !- ALBEDO: Surface Albedo: No Snow 0.4, !- ALBEDO: Surface Albedo: Snow @@ -2627,10 +2642,9 @@ GroundHeatTransfer:Slab:Materials, 6, !- HIN: Indoor HConv: Downward Flow {W/m2-K} 9; !- HIN: Indoor HConv: Upward {W/m2-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:MATLPROPS =========== -GroundHeatTransfer:Slab:MatlProps, + GroundHeatTransfer:Slab:MatlProps, 2300, !- RHO: Slab Material density {kg/m3} 1200, !- RHO: Soil Density {kg/m3} 650, !- CP: Slab CP {J/kg-K} @@ -2638,19 +2652,17 @@ GroundHeatTransfer:Slab:MatlProps, 0.9, !- TCON: Slab k {W/m-K} 1; !- TCON: Soil k {W/m-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:BOUNDCONDS =========== -GroundHeatTransfer:Slab:BoundConds, + GroundHeatTransfer:Slab:BoundConds, FALSE, !- EVTR: Is surface evapotranspiration modeled TRUE, !- FIXBC: is the lower boundary at a fixed temperature 10, !- TDEEPin {C} FALSE; !- USRHflag: Is the ground surface h specified by the user? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:BLDGPROPS =========== -GroundHeatTransfer:Slab:BldgProps, + GroundHeatTransfer:Slab:BldgProps, 10, !- IYRS: Number of years to iterate 0, !- Shape: Slab shape 4, !- HBLDG: Building height {m} @@ -2669,36 +2681,32 @@ GroundHeatTransfer:Slab:BldgProps, 0, !- TINAmp: Daily Indoor sine wave variation amplitude {deltaC} 0.1; !- ConvTol: Convergence Tolerance - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:INSULATION =========== -GroundHeatTransfer:Slab:Insulation, + GroundHeatTransfer:Slab:Insulation, 0, !- RINS: R value of under slab insulation {m2-K/W} 0, !- DINS: Width of strip of under slab insulation {m} 1.76099742894375, !- RVINS: R value of vertical insulation {m2-K/W} 0.6, !- ZVINS: Depth of vertical insulation {m} 1; !- IVINS: Flag: Is there vertical insulation - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:EQUIVALENTSLAB =========== -GroundHeatTransfer:Slab:EquivalentSlab, + GroundHeatTransfer:Slab:EquivalentSlab, 2.59994805991784, !- APRatio: The area to perimeter ratio for this slab {m} 0.1, !- SLABDEPTH: Thickness of slab on grade {m} 15, !- CLEARANCE: Distance from edge of slab to domain edge {m} 15; !- ZCLEARANCE: Distance from bottom of slab to domain bottom {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:SIMPARAMETERS =========== -GroundHeatTransfer:Basement:SimParameters, + GroundHeatTransfer:Basement:SimParameters, 0.1, !- F: Multiplier for the ADI solution 15; !- IYRS: Maximum number of yearly iterations: - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:MATLPROPS =========== -GroundHeatTransfer:Basement:MatlProps, + GroundHeatTransfer:Basement:MatlProps, 6, !- NMAT: Number of materials in this domain 2243, !- Density for Foundation Wall {kg/m3} 2243, !- density for Floor Slab {kg/m3} @@ -2719,17 +2727,15 @@ GroundHeatTransfer:Basement:MatlProps, 1.9, !- thermal conductivity for gravel {W/m-K} 0.12; !- thermal conductivity for wood {W/m-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:INSULATION =========== -GroundHeatTransfer:Basement:Insulation, + GroundHeatTransfer:Basement:Insulation, 1.76099742894375e-05, !- REXT: R Value of any exterior insulation {m2-K/W} True; !- INSFULL: Flag: Is the wall fully insulated? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:SURFACEPROPS =========== -GroundHeatTransfer:Basement:SurfaceProps, + GroundHeatTransfer:Basement:SurfaceProps, 0.16, !- ALBEDO: Surface albedo for No snow conditions 0.4, !- ALBEDO: Surface albedo for snow conditions 0.94, !- EPSLN: Surface emissivity No Snow @@ -2738,20 +2744,18 @@ GroundHeatTransfer:Basement:SurfaceProps, 0.25, !- VEGHT: Surface roughness Snow conditions {cm} False; !- PET: Flag, Potential evapotranspiration on? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:BLDGDATA =========== -GroundHeatTransfer:Basement:BldgData, + GroundHeatTransfer:Basement:BldgData, 0.200000006162114, !- DWALL: Wall thickness {m} 0.243828108701145, !- DSLAB: Floor slab thickness {m} 0.3, !- DGRAVXY: Width of gravel pit beside basement wall {m} 0.2, !- DGRAVZN: Gravel depth extending above the floor slab {m} 0.1; !- DGRAVZP: Gravel depth below the floor slab {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:INTERIOR =========== -GroundHeatTransfer:Basement:Interior, + GroundHeatTransfer:Basement:Interior, True, !- COND: Flag: Is the basement conditioned? 0.92, !- HIN: Downward convection only heat transfer coefficient {W/m2-K} 4.04, !- HIN: Upward convection only heat transfer coefficient {W/m2-K} @@ -2760,10 +2764,9 @@ GroundHeatTransfer:Basement:Interior, 9.26, !- HIN: Upward combined (convection and radiation) heat transfer coefficient {W/m2-K} 8.29; !- HIN: Horizontal combined (convection and radiation) heat transfer coefficient {W/m2-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:COMBLDG =========== -GroundHeatTransfer:Basement:ComBldg, + GroundHeatTransfer:Basement:ComBldg, 21, !- January average temperature {C} 21, !- February average temperature {C} 21, !- March average temperature {C} @@ -2778,25 +2781,22 @@ GroundHeatTransfer:Basement:ComBldg, 21, !- December average temperature {C} 21; !- Daily variation sine wave amplitude {deltaC} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:EQUIVSLAB =========== -GroundHeatTransfer:Basement:EquivSlab, + GroundHeatTransfer:Basement:EquivSlab, 2.59994805991784, !- APRatio: The area to perimeter ratio for this slab {m} True; !- EquivSizing: Flag - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:EQUIVAUTOGRID =========== -GroundHeatTransfer:Basement:EquivAutoGrid, + GroundHeatTransfer:Basement:EquivAutoGrid, 15, !- CLEARANCE: Distance from outside of wall to edge of 3-D ground domain {m} 0.1, !- SlabDepth: Thickness of the floor slab {m} 1.21914054350572; !- BaseDepth: Depth of the basement wall below grade {m} - !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== -People, + People, people_unit1, !- Name living_unit1, !- Zone or ZoneList Name Occupancy, !- Number of People Schedule Name @@ -2811,10 +2811,9 @@ People, No, !- Enable ASHRAE 55 Comfort Warnings ZoneAveraged; !- Mean Radiant Temperature Calculation Type - !- =========== ALL OBJECTS IN CLASS: LIGHTS =========== -Lights, + Lights, Living Hardwired Lighting1, !- Name living_unit1, !- Zone or ZoneList Name InteriorLightingHE, !- Schedule Name @@ -2827,7 +2826,7 @@ Lights, 0.2, !- Fraction Visible 0; !- Fraction Replaceable -Lights, + Lights, Living Plug-in Lighting1,!- Name living_unit1, !- Zone or ZoneList Name InteriorLightingHE, !- Schedule Name @@ -2840,10 +2839,9 @@ Lights, 0.2, !- Fraction Visible 0; !- Fraction Replaceable - !- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== -ElectricEquipment, + ElectricEquipment, dishwasher1, !- Name living_unit1, !- Zone or ZoneList Name DishWasher, !- Schedule Name @@ -2856,7 +2854,7 @@ ElectricEquipment, 0.25, !- Fraction Lost dishwasher; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, refrigerator1, !- Name living_unit1, !- Zone or ZoneList Name Refrigerator, !- Schedule Name @@ -2869,7 +2867,7 @@ ElectricEquipment, 0, !- Fraction Lost refrigerator; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, clotheswasher1, !- Name living_unit1, !- Zone or ZoneList Name ClothesWasher, !- Schedule Name @@ -2882,7 +2880,7 @@ ElectricEquipment, 0.2, !- Fraction Lost clotheswasher; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_dryer1, !- Name living_unit1, !- Zone or ZoneList Name ClothesDryer, !- Schedule Name @@ -2895,7 +2893,7 @@ ElectricEquipment, 0.8, !- Fraction Lost electric_dryer; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_range1, !- Name living_unit1, !- Zone or ZoneList Name CookingRange, !- Schedule Name @@ -2908,7 +2906,7 @@ ElectricEquipment, 0.3, !- Fraction Lost electric_range; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, television1, !- Name living_unit1, !- Zone or ZoneList Name InteriorLighting, !- Schedule Name @@ -2921,7 +2919,7 @@ ElectricEquipment, 0, !- Fraction Lost television; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_mels1, !- Name living_unit1, !- Zone or ZoneList Name MiscPlugLoad, !- Schedule Name @@ -2934,7 +2932,7 @@ ElectricEquipment, 0.25, !- Fraction Lost electric_mels; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, IECC_Adj1, !- Name living_unit1, !- Zone or ZoneList Name MiscPlugLoad, !- Schedule Name @@ -2947,10 +2945,9 @@ ElectricEquipment, 0.251045347957769, !- Fraction Lost IECC_adj; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: ZONEVENTILATION:DESIGNFLOWRATE =========== -ZoneVentilation:DesignFlowRate, + ZoneVentilation:DesignFlowRate, Ventilation_unit1, !- Name living_unit1, !- Zone or ZoneList Name always_avail, !- Schedule Name @@ -2978,10 +2975,9 @@ ZoneVentilation:DesignFlowRate, , !- Maximum Outdoor Temperature Schedule Name 40; !- Maximum Wind Speed {m/s} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:SIMULATIONCONTROL =========== -AirflowNetwork:SimulationControl, + AirflowNetwork:SimulationControl, House AirflowNetwork, !- Name MultizoneWithDistribution, !- AirflowNetwork Control SurfaceAverageCalculation, !- Wind Pressure Coefficient Type @@ -2994,14 +2990,13 @@ AirflowNetwork:SimulationControl, 0, !- Convergence Acceleration Limit {dimensionless} 0, !- Azimuth Angle of Long Axis of Building {deg} 0.75, !- Ratio of Building Width Along Short Axis to Width Along Long Axis - , - , - Yes; - + , !- Height Dependence of External Node Temperature + , !- Solver + Yes; !- Allow Unsupported Zone Equipment !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:ZONE =========== -AirflowNetwork:MultiZone:Zone, + AirflowNetwork:MultiZone:Zone, living_unit1, !- Zone Name NoVent, !- Ventilation Control Mode , !- Ventilation Control Zone Temperature Setpoint Schedule Name @@ -3011,7 +3006,7 @@ AirflowNetwork:MultiZone:Zone, 0.0, !- Indoor and Outdoor Enthalpy Difference Lower Limit For Maximum Venting Open Factor {deltaJ/kg} 300000.0; !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} -AirflowNetwork:MultiZone:Zone, + AirflowNetwork:MultiZone:Zone, attic_unit1, !- Zone Name Constant, !- Ventilation Control Mode , !- Ventilation Control Zone Temperature Setpoint Schedule Name @@ -3022,10 +3017,9 @@ AirflowNetwork:MultiZone:Zone, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:SURFACE =========== -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_front_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3039,7 +3033,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_back_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3053,7 +3047,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_right_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3067,7 +3061,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_left_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3081,237 +3075,232 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, ceiling_unit1, !- Surface Name ZoneLeak_Ceiling, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldf_1.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldb_1.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdl_1.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_1.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldf_2.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldb_2.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_2.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdl_2.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_2.unit1, !- Surface Name Zone Exhaust Fan_unit1, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} Constant; !- Ventilation Control Mode - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:SURFACE:EFFECTIVELEAKAGEAREA =========== -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_LongWall, !- Name 0.00340012477060435, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_ShortWall, !- Name 0.00255009357795326, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_Ceiling, !- Name 0.011939399618037, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_Floor, !- Name 0.00001, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, AtticVent, !- Name 0.37, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, CrawlVent, !- Name 0.37, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:COMPONENT:ZONEEXHAUSTFAN =========== -AirflowNetwork:MultiZone:Component:ZoneExhaustFan, + AirflowNetwork:MultiZone:Component:ZoneExhaustFan, Zone Exhaust Fan_unit1, !- Name 0.01, !- Air Mass Flow Coefficient When the Zone Exhaust Fan is Off at Reference Conditions {kg/s} 0.667; !- Air Mass Flow Exponent When the Zone Exhaust Fan is Off {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:NODE =========== -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, EquipmentInletNode_unit1,!- Name Zone Equipment Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, SplitterNode_unit1, !- Name , !- Component Name or Node Name AirLoopHVAC:ZoneSplitter,!- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyNode_unit1, !- Name , !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyRegisterNode_unit1 ATInlet, !- Name Zone Inlet Node_unit1 ATInlet, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyRegisterNode_unit1, !- Name Zone Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneOutletNode_unit1, !- Name Zone Outlet node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneReturnNode_unit1, !- Name , !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MixerNode_unit1, !- Name , !- Component Name or Node Name AirLoopHVAC:ZoneMixer, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MainReturnNode_unit1, !- Name Return Air Mixer Outlet_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MainInletNode_unit1, !- Name Air Loop Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, FanOutletNode_unit1, !- Name Cooling Coil Air Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, HeatingInletNode_unit1, !- Name Heating Coil Air Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, HeatingOutletNode_unit1, !- Name Air Loop Outlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, SuppHeatingInletNode_unit1, !- Name Supp Heating coil air inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:LEAKAGERATIO =========== -AirflowNetwork:Distribution:Component:LeakageRatio, + AirflowNetwork:Distribution:Component:LeakageRatio, SupplyLeak, !- Name 0.0396, !- Effective Leakage Ratio {dimensionless} 0.56034, !- Maximum Flow Rate {m3/s} 25, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:Distribution:Component:LeakageRatio, + AirflowNetwork:Distribution:Component:LeakageRatio, ReturnLeak, !- Name 0.0396, !- Effective Leakage Ratio {dimensionless} 0.56034, !- Maximum Flow Rate {m3/s} 25, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:DUCT =========== -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, MainTrunk_unit1, !- Name 2.0, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3321,7 +3310,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneSupply_unit1, !- Name 15, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3331,7 +3320,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneSupplyLink2_unit1 ATInlet Duct, !- Name 0.0001, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3341,7 +3330,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneReturn_unit1, !- Name 8.0, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3351,7 +3340,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneConnectionDuct_unit1,!- Name 0.1, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3361,7 +3350,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, MainReturn_unit1, !- Name 1.0, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3371,7 +3360,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, AirLoopReturn_unit1, !- Name 0.1, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3381,7 +3370,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, AirLoopSupply_unit1, !- Name 0.1, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3391,177 +3380,171 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:FAN =========== -AirflowNetwork:Distribution:Component:Fan, + AirflowNetwork:Distribution:Component:Fan, Supply Fan_unit1, !- Fan Name Fan:OnOff; !- Supply Fan Object Type - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:COIL =========== -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, DX Cooling Coil_unit1, !- Coil Name Coil:Cooling:DX:SingleSpeed, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, Main DX Heating Coil_unit1, !- Coil Name Coil:Heating:DX:Singlespeed, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, Supp Heating Coil_unit1, !- Coil Name Coil:Heating:Electric, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:LINKAGE =========== -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, MainSupplyLink_unit1, !- Name EquipmentInletNode_unit1,!- Node 1 Name SplitterNode_unit1, !- Node 2 Name MainTrunk_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink_unit1, !- Name SplitterNode_unit1, !- Node 1 Name ZoneSupplyNode_unit1, !- Node 2 Name ZoneSupply_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink2_unit1 ATInlet, !- Name ZoneSupplyRegisterNode_unit1 ATInlet, !- Node 1 Name ZoneSupplyRegisterNode_unit1, !- Node 2 Name ZoneSupplyLink2_unit1 ATInlet Duct, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink2_unit1, !- Name ZoneSupplyNode_unit1, !- Node 1 Name ZoneSupplyRegisterNode_unit1 ATInlet, !- Node 2 Name ZoneSupply_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyConnectionLink_unit1, !- Name ZoneSupplyRegisterNode_unit1, !- Node 1 Name living_unit1, !- Node 2 Name ZoneConnectionDuct_unit1;!- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnConnectionLink_unit1, !- Name living_unit1, !- Node 1 Name ZoneOutletNode_unit1, !- Node 2 Name ZoneConnectionDuct_unit1;!- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLink1_unit1, !- Name Zoneoutletnode_unit1, !- Node 1 Name ZoneReturnNode_unit1, !- Node 2 Name ZoneReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLink2_unit1, !- Name ZoneReturnNode_unit1, !- Node 1 Name MixerNode_unit1, !- Node 2 Name ZoneReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, MainReturnLink_unit1, !- Name MixerNode_unit1, !- Node 1 Name MainReturnNode_unit1, !- Node 2 Name MainReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SystemReturnLink_unit1, !- Name MainReturnNode_unit1, !- Node 1 Name MainInletNode_unit1, !- Node 2 Name AirLoopReturn_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SupplyFanLink_unit1, !- Name MainInletNode_unit1, !- Node 1 Name FanOutletNode_unit1, !- Node 2 Name Supply Fan_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, CoolingCoilLink_unit1, !- Name FanOutletNode_unit1, !- Node 1 Name HeatingInletNode_unit1, !- Node 2 Name DX Cooling Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, EquipmentAirLoopLink_unit1, !- Name HeatingOutletNode_unit1, !- Node 1 Name EquipmentInletNode_unit1,!- Node 2 Name AirLoopSupply_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, HeatingCoilLink_unit1, !- Name HeatingInletNode_unit1, !- Node 1 Name SuppHeatingInletNode_unit1, !- Node 2 Name Main DX Heating Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SuppHeatingCoilLink_unit1, !- Name SuppHeatingInletNode_unit1, !- Node 1 Name HeatingOutletNode_unit1, !- Node 2 Name Supp Heating Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLeakLink_unit1,!- Name ZoneSupplyNode_unit1, !- Node 1 Name attic_unit1, !- Node 2 Name SupplyLeak; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLeakLink_unit1,!- Name attic_unit1, !- Node 1 Name ZoneReturnNode_unit1, !- Node 2 Name ReturnLeak; !- Component Name - !- =========== ALL OBJECTS IN CLASS: EXTERIOR:LIGHTS =========== -Exterior:Lights, + Exterior:Lights, Exterior-Lights_unit1, !- Name ExteriorLighting, !- Schedule Name 43.2424607481559, !- Design Level {W} , !- Control Option Exterior-Lights; !- End-Use Subcategory -Exterior:Lights, + Exterior:Lights, Garage-Lights_unit1, !- Name InteriorLightingHE, !- Schedule Name 7.16294617434682, !- Design Level {W} , !- Control Option Garage-Lights; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: DESIGNSPECIFICATION:OUTDOORAIR =========== -DesignSpecification:OutdoorAir, + DesignSpecification:OutdoorAir, SZ_DSOA_living_unit1, !- Name Flow/Zone, !- Outdoor Air Method 0, !- Outdoor Air Flow per Person {m3/s-person} , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0283168464628752; !- Outdoor Air Flow per Zone {m3/s} - !- =========== ALL OBJECTS IN CLASS: SIZING:ZONE =========== -Sizing:Zone, + Sizing:Zone, living_unit1, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 12, !- Zone Cooling Design Supply Air Temperature {C} @@ -3590,10 +3573,9 @@ Sizing:Zone, , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} - !- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM =========== -Sizing:System, + Sizing:System, Central System_unit1, !- AirLoop Name Sensible, !- Type of Load to Size On autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -3632,37 +3614,33 @@ Sizing:System, , !- Fraction of Autosized Heating Design Capacity OnOff; !- Central Cooling Capacity Control Method - !- =========== ALL OBJECTS IN CLASS: SIZING:PLANT =========== -Sizing:Plant, + Sizing:Plant, DHW Loop_unit1, !- Plant or Condenser Loop Name Heating, !- Loop Type 48.8888888888889, !- Design Loop Exit Temperature {C} 5.55555555555556; !- Loop Design Temperature Difference {deltaC} - !- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone Thermostat_unit1, !- Name living_unit1, !- Zone or ZoneList Name zone_control_type, !- Control Type Schedule Name ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type thermostat_living Dual SP Control; !- Control 1 Name - !- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:DUALSETPOINT =========== -ThermostatSetpoint:DualSetpoint, + ThermostatSetpoint:DualSetpoint, thermostat_living Dual SP Control, !- Name heating_sch, !- Heating Setpoint Temperature Schedule Name cooling_sch; !- Cooling Setpoint Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:ENERGYRECOVERYVENTILATOR =========== -ZoneHVAC:EnergyRecoveryVentilator, + ZoneHVAC:EnergyRecoveryVentilator, ERV_unit1, !- Name always_avail, !- Availability Schedule Name OA_Heat_Recovery_Unit1, !- Heat Exchanger Name @@ -3671,29 +3649,26 @@ ZoneHVAC:EnergyRecoveryVentilator, OASupplyFan_unit1, !- Supply Air Fan Name OAExhaustFan_unit1; !- Exhaust Air Fan Name - !- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:CONSTANTVOLUME:NOREHEAT =========== -AirTerminal:SingleDuct:ConstantVolume:NoReheat, + AirTerminal:SingleDuct:ConstantVolume:NoReheat, ZoneDirectAir_unit1, !- Name always_avail, !- Availability Schedule Name Zone Inlet Node_unit1 ATInlet, !- Air Inlet Node Name Zone Inlet Node_unit1, !- Air Outlet Node Name autosize; !- Maximum Air Flow Rate {m3/s} - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:AIRDISTRIBUTIONUNIT =========== -ZoneHVAC:AirDistributionUnit, + ZoneHVAC:AirDistributionUnit, ZoneDirectAir_unit1 ADU, !- Name Zone Inlet Node_unit1, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type ZoneDirectAir_unit1; !- Air Terminal Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, ZoneEquipment_unit1, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type @@ -3719,10 +3694,9 @@ ZoneHVAC:EquipmentList, 2, !- Zone Equipment 4 Cooling Sequence 2; !- Zone Equipment 4 Heating or No-Load Sequence - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS =========== -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, living_unit1, !- Zone Name ZoneEquipment_unit1, !- Zone Conditioning Equipment List Name zone inlet nodes_unit1, !- Zone Air Inlet Node or NodeList Name @@ -3730,10 +3704,9 @@ ZoneHVAC:EquipmentConnections, Zone Node_unit1, !- Zone Air Node Name Zone Outlet Node_unit1; !- Zone Return Air Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: FAN:ONOFF =========== -Fan:OnOff, + Fan:OnOff, Supply Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.50054, !- Fan Total Efficiency @@ -3747,7 +3720,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name General; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, OASupplyFan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3761,7 +3734,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name Ventilation; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, OAExhaustFan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3775,7 +3748,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name Ventilation; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, Heat Pump Water Heater Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.7, !- Fan Total Efficiency @@ -3789,10 +3762,9 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name General; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: FAN:ZONEEXHAUST =========== -Fan:ZoneExhaust, + Fan:ZoneExhaust, Zone Exhaust Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3804,10 +3776,9 @@ Fan:ZoneExhaust, , !- Flow Fraction Schedule Name Decoupled; !- System Availability Manager Coupling Mode - !- =========== ALL OBJECTS IN CLASS: COIL:COOLING:DX:SINGLESPEED =========== -Coil:Cooling:DX:SingleSpeed, + Coil:Cooling:DX:SingleSpeed, DX Cooling Coil_unit1, !- Name always_avail, !- Availability Schedule Name autosize, !- Gross Rated Total Cooling Capacity {W} @@ -3823,10 +3794,9 @@ Coil:Cooling:DX:SingleSpeed, HPACCOOLEIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name HPACCOOLPLFFPLR; !- Part Load Fraction Correlation Curve Name - !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:ELECTRIC =========== -Coil:Heating:Electric, + Coil:Heating:Electric, Supp Heating Coil_unit1, !- Name always_avail, !- Availability Schedule Name 1, !- Efficiency @@ -3834,10 +3804,9 @@ Coil:Heating:Electric, Supp Heating Coil Air Inlet Node_unit1, !- Air Inlet Node Name Air Loop Outlet Node_unit1; !- Air Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:DX:SINGLESPEED =========== -Coil:Heating:DX:SingleSpeed, + Coil:Heating:DX:SingleSpeed, Main DX Heating Coil_unit1, !- Name always_avail, !- Availability Schedule Name autosize, !- Gross Rated Heating Capacity {W} @@ -3860,10 +3829,9 @@ Coil:Heating:DX:SingleSpeed, ReverseCycle, !- Defrost Strategy OnDemand; !- Defrost Control - !- =========== ALL OBJECTS IN CLASS: COIL:WATERHEATING:AIRTOWATERHEATPUMP:WRAPPED =========== -Coil:WaterHeating:AirToWaterHeatPump:Wrapped, + Coil:WaterHeating:AirToWaterHeatPump:Wrapped, Heat Pump Water Heater Evaporator_unit1, !- Name 1500, !- Rated Heating Capacity {W} 3.0, !- Rated COP {W/W} @@ -3884,10 +3852,9 @@ Coil:WaterHeating:AirToWaterHeatPump:Wrapped, , !- Heating COP Function of Air Flow Fraction Curve Name HPWH-COP-fPLR; !- Part Load Fraction Correlation Curve Name - !- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== -HeatExchanger:AirToAir:SensibleAndLatent, + HeatExchanger:AirToAir:SensibleAndLatent, OA_Heat_Recovery_Unit1, !- Name always_avail, !- Availability Schedule Name 0.0283168464628752, !- Nominal Supply Air Flow Rate {m3/s} @@ -3912,10 +3879,9 @@ HeatExchanger:AirToAir:SensibleAndLatent, 2.15999989700318E-02, !- Rate of Defrost Time Fraction Increase {1/K} No; !- Economizer Lockout - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:UNITARYHEATPUMP:AIRTOAIR =========== -AirLoopHVAC:UnitaryHeatPump:AirToAir, + AirLoopHVAC:UnitaryHeatPump:AirToAir, Heat Pump_unit1, !- Name always_avail, !- Availability Schedule Name Air Loop Inlet node_unit1, !- Air Inlet Node Name @@ -3937,10 +3903,9 @@ AirLoopHVAC:UnitaryHeatPump:AirToAir, BlowThrough, !- Fan Placement fan_cycle; !- Supply Air Fan Operating Mode Schedule Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== -AirLoopHVAC, + AirLoopHVAC, Central System_unit1, !- Name , !- Controller List Name availability list, !- Availability Manager List Name @@ -3952,44 +3917,39 @@ AirLoopHVAC, Zone Equipment Inlet Node_unit1, !- Demand Side Inlet Node Names Air Loop Outlet Node_unit1; !- Supply Side Outlet Node Names - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== -AirLoopHVAC:ZoneSplitter, + AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter_unit1, !- Name Zone Equipment Inlet Node_unit1, !- Inlet Node Name Zone Inlet Node_unit1 ATInlet; !- Outlet 1 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== -AirLoopHVAC:SupplyPath, + AirLoopHVAC:SupplyPath, SupplyPath_unit1, !- Name Zone Equipment Inlet Node_unit1, !- Supply Air Path Inlet Node Name AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type Zone Supply Air Splitter_unit1; !- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== -AirLoopHVAC:ZoneMixer, + AirLoopHVAC:ZoneMixer, Zone Return Air Mixer_unit1, !- Name Return Air Mixer Outlet_unit1, !- Outlet Node Name Zone Outlet Node_unit1; !- Inlet 1 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== -AirLoopHVAC:ReturnPath, + AirLoopHVAC:ReturnPath, ReturnPath_unit1, !- Name Return Air Mixer Outlet_unit1, !- Return Air Path Outlet Node Name AirLoopHVAC:ZoneMixer, !- Component 1 Object Type Zone Return Air Mixer_unit1; !- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: BRANCH =========== -Branch, + Branch, Air Loop Main Branch_unit1, !- Name , !- Pressure Drop Curve Name AirLoopHVAC:UnitaryHeatPump:AirtoAir, !- Component 1 Object Type @@ -3997,7 +3957,7 @@ Branch, Air Loop Inlet Node_unit1, !- Component 1 Inlet Node Name Air Loop Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Mains Inlet Branch_unit1,!- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -4005,7 +3965,7 @@ Branch, Mains Inlet Node_unit1, !- Component 1 Inlet Node Name Mains Pressure Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, DHW Supply Outlet Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4013,7 +3973,7 @@ Branch, DHW Supply Outlet Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name DHW Supply Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, DHW Demand Inlet Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4021,7 +3981,7 @@ Branch, DHW Demand Inlet Node_unit1, !- Component 1 Inlet Node Name DHW Demand Inlet Pipe Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Sink Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4029,7 +3989,7 @@ Branch, Water Sink Inlet Node_unit1, !- Component 1 Inlet Node Name Water Sink outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Shower Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4037,7 +3997,7 @@ Branch, Water Shower Inlet Node_unit1, !- Component 1 Inlet Node Name Water Shower Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water ClothesWasher Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4045,7 +4005,7 @@ Branch, Water ClothesWasher Inlet Node_unit1, !- Component 1 Inlet Node Name Water ClothesWasher Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Dishwasher Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4053,7 +4013,7 @@ Branch, Water DishWasher Inlet Node_unit1, !- Component 1 Inlet Node Name Water DishWasher outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Bath Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4061,7 +4021,7 @@ Branch, Water Bath Inlet Node_unit1, !- Component 1 Inlet Node Name Water bath Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Mains Makeup Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4069,7 +4029,7 @@ Branch, Mains Makeup Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name Mains Makeup Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Heater Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterHeater:HeatPump:WrappedCondenser, !- Component 1 Object Type @@ -4077,20 +4037,19 @@ Branch, Water Heater Use Inlet Node_unit1, !- Component 1 Inlet Node Name Water Heater Use Outlet Node_unit1; !- Component 1 Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== -BranchList, + BranchList, Air Loop Branches_unit1, !- Name Air Loop Main Branch_unit1; !- Branch 1 Name -BranchList, + BranchList, DHW Supply Branches_unit1, !- Name Mains Inlet Branch_unit1,!- Branch 1 Name Water Heater Branch_unit1, !- Branch 2 Name DHW Supply Outlet Branch_unit1; !- Branch 3 Name -BranchList, + BranchList, DHW Demand Branches_unit1, !- Name DHW Demand Inlet Branch_unit1, !- Branch 1 Name Water Sink Branch_unit1, !- Branch 2 Name @@ -4100,10 +4059,9 @@ BranchList, Water Bath Branch_unit1, !- Branch 6 Name Mains Makeup Branch_unit1; !- Branch 7 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== -Connector:Splitter, + Connector:Splitter, DHW Demand Splitter_unit1, !- Name DHW Demand Inlet Branch_unit1, !- Inlet Branch Name Water Sink Branch_unit1, !- Outlet Branch 1 Name @@ -4112,15 +4070,14 @@ Connector:Splitter, Water Dishwasher Branch_unit1, !- Outlet Branch 4 Name Water Bath Branch_unit1; !- Outlet Branch 5 Name -Connector:Splitter, + Connector:Splitter, DHW Supply Splitter_unit1, !- Name Mains Inlet Branch_unit1,!- Inlet Branch Name Water Heater Branch_unit1; !- Outlet Branch 1 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== -Connector:Mixer, + Connector:Mixer, DHW Demand Mixer_unit1, !- Name Mains Makeup Branch_unit1, !- Outlet Branch Name Water Sink Branch_unit1, !- Inlet Branch 1 Name @@ -4129,77 +4086,71 @@ Connector:Mixer, Water Dishwasher Branch_unit1, !- Inlet Branch 4 Name Water Bath Branch_unit1; !- Inlet Branch 5 Name -Connector:Mixer, + Connector:Mixer, DHW Supply Mixer_unit1, !- Name DHW Supply Outlet Branch_unit1, !- Outlet Branch Name Water Heater Branch_unit1; !- Inlet Branch 1 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== -ConnectorList, + ConnectorList, DHW Demand Connectors_unit1, !- Name Connector:Splitter, !- Connector 1 Object Type DHW Demand Splitter_unit1, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type DHW Demand Mixer_unit1; !- Connector 2 Name -ConnectorList, + ConnectorList, DHW Supply Connectors_unit1, !- Name Connector:Splitter, !- Connector 1 Object Type DHW Supply Splitter_unit1, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type DHW Supply Mixer_unit1; !- Connector 2 Name - !- =========== ALL OBJECTS IN CLASS: NODELIST =========== -NodeList, + NodeList, Zone Inlet Nodes_unit1, !- Name Zone Inlet Node_unit1, !- Node 1 Name HPWH Zone Inlet Node_unit1, !- Node 2 Name OA Inlet Node_unit1; !- Node 3 Name -NodeList, + NodeList, Zone Exhaust Node_list_unit1, !- Name Zone Exhaust Node_unit1, !- Node 1 Name Zone Exhaust Node1_unit1;!- Node 2 Name - !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE =========== -OutdoorAir:Node, + OutdoorAir:Node, outside air inlet node_unit1, !- Name 0.914355407629293; !- Height Above Ground {m} - !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODELIST =========== -OutdoorAir:NodeList, + OutdoorAir:NodeList, outdoor air node_unit1; !- Node or NodeList Name 1 - !- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC =========== -Pipe:Adiabatic, + Pipe:Adiabatic, DHW Supply Outlet Pipe_unit1, !- Name DHW Supply Outlet Pipe Inlet Node_unit1, !- Inlet Node Name DHW Supply Outlet Node_unit1; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Mains Makeup Pipe_unit1, !- Name Mains Makeup Pipe Inlet Node_unit1, !- Inlet Node Name Mains Makeup Node_unit1; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, DHW Demand Inlet Pipe_unit1, !- Name DHW Demand Inlet Node_unit1, !- Inlet Node Name DHW Demand Inlet Pipe Outlet Node_unit1; !- Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLESPEED =========== -Pump:VariableSpeed, + Pump:VariableSpeed, Mains Pressure_unit1, !- Name Mains Inlet Node_unit1, !- Inlet Node Name Mains Pressure Outlet Node_unit1, !- Outlet Node Name @@ -4215,10 +4166,9 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} Intermittent; !- Pump Control Type - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:STRATIFIED =========== -WaterHeater:Stratified, + WaterHeater:Stratified, Water Heater_Tank_unit1, !- Name Water Heater, !- End-Use Subcategory 0.196841372, !- Tank Volume {m3} @@ -4272,10 +4222,9 @@ WaterHeater:Stratified, 1.5, !- Indirect Water Heating Recovery Time {hr} 1; !- Number of Nodes - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:SIZING =========== -WaterHeater:Sizing, + WaterHeater:Sizing, Water Heater_Tank_unit1, !- WaterHeater Name ResidentialHUD-FHAMinimum, !- Design Mode , !- Time Storage Can Meet Peak Draw {hr} @@ -4284,10 +4233,9 @@ WaterHeater:Sizing, 3, !- Number of Bedrooms 3; !- Number of Bathrooms - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:HEATPUMP:WRAPPEDCONDENSER =========== -WaterHeater:HeatPump:WrappedCondenser, + WaterHeater:HeatPump:WrappedCondenser, Water Heater_unit1, !- Name always_avail, !- Availability Schedule Name Compressor Setpoint, !- Compressor Setpoint Temperature Schedule Name @@ -4327,10 +4275,9 @@ WaterHeater:HeatPump:WrappedCondenser, 0.75, !- Control Sensor 1 Weight {dimensionless} 0.464; !- Control Sensor 2 Height In Stratified Tank {m} - !- =========== ALL OBJECTS IN CLASS: PLANTLOOP =========== -PlantLoop, + PlantLoop, DHW Loop_unit1, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -4351,98 +4298,90 @@ PlantLoop, DHW Demand Connectors_unit1, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTLIST =========== -PlantEquipmentList, + PlantEquipmentList, DHW Plant Equipment_unit1, !- Name WaterHeater:HeatPump:WrappedCondenser, !- Equipment 1 Object Type Water Heater_unit1; !- Equipment 1 Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD =========== -PlantEquipmentOperation:HeatingLoad, + PlantEquipmentOperation:HeatingLoad, DHW Control Scheme_unit1,!- Name 0.0, !- Load Range 1 Lower Limit {W} 1000000000000000, !- Load Range 1 Upper Limit {W} DHW Plant Equipment_unit1; !- Range 1 Equipment List Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES =========== -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, DHW Loop Operation_unit1,!- Name PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type DHW Control Scheme_unit1,!- Control Scheme 1 Name always_avail; !- Control Scheme 1 Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:SCHEDULED =========== -AvailabilityManager:Scheduled, + AvailabilityManager:Scheduled, System availability, !- Name always_avail; !- Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST =========== -AvailabilityManagerAssignmentList, + AvailabilityManagerAssignmentList, availability list, !- Name AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type System availability; !- Availability Manager 1 Name - !- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED =========== -SetpointManager:Scheduled, + SetpointManager:Scheduled, DHW Loop Setpoint Manager_unit1, !- Name Temperature, !- Control Variable DHWSupplySetpoint, !- Schedule Name DHW Supply Outlet Node_unit1; !- Setpoint Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: WATERUSE:EQUIPMENT =========== -WaterUse:Equipment, + WaterUse:Equipment, Clothes Washer_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 1.6219189818e-06, !- Peak Flow Rate {m3/s} ClothesWasher, !- Flow Rate Fraction Schedule Name CWWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Dishwasher_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 6.36685353e-07, !- Peak Flow Rate {m3/s} Dishwasher, !- Flow Rate Fraction Schedule Name DWWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Sinks_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 7.1934e-05, !- Peak Flow Rate {m3/s} BA_sink_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Showers_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 0.000141975, !- Peak Flow Rate {m3/s} BA_shower_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Baths_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 0.00027764, !- Peak Flow Rate {m3/s} BA_bath_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: WATERUSE:CONNECTIONS =========== -WaterUse:Connections, + WaterUse:Connections, DHW Sinks_unit1, !- Name Water Sink Inlet Node_unit1, !- Inlet Node Name Water Sink Outlet Node_unit1, !- Outlet Node Name @@ -4455,7 +4394,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Sinks_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW Showers_unit1, !- Name Water Shower Inlet Node_unit1, !- Inlet Node Name Water Shower Outlet Node_unit1, !- Outlet Node Name @@ -4468,7 +4407,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Showers_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW ClothesWasher_unit1, !- Name Water ClothesWasher Inlet Node_unit1, !- Inlet Node Name Water ClothesWasher Outlet Node_unit1, !- Outlet Node Name @@ -4481,7 +4420,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Clothes Washer_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW DishWasher_unit1, !- Name Water DishWasher Inlet Node_unit1, !- Inlet Node Name Water DishWasher Outlet Node_unit1, !- Outlet Node Name @@ -4494,7 +4433,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Dishwasher_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW Baths_unit1, !- Name Water Bath Inlet Node_unit1, !- Inlet Node Name Water Bath Outlet Node_unit1, !- Outlet Node Name @@ -4507,10 +4446,9 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Baths_unit1; !- Water Use Equipment 1 Name - !- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== -Curve:Quadratic, + Curve:Quadratic, HPWH-COP-fPLR, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4518,7 +4456,7 @@ Curve:Quadratic, 0, !- Minimum Value of x 1; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCoolCapFFF, !- Name 0.8, !- Coefficient1 Constant 0.2, !- Coefficient2 x @@ -4526,7 +4464,7 @@ Curve:Quadratic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCOOLEIRFFF, !- Name 1.156, !- Coefficient1 Constant -0.1816, !- Coefficient2 x @@ -4534,7 +4472,7 @@ Curve:Quadratic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCOOLPLFFPLR, !- Name 0.85, !- Coefficient1 Constant 0.15, !- Coefficient2 x @@ -4542,7 +4480,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACHeatEIRFFF, !- Name 1.3824, !- Coefficient1 Constant -0.4336, !- Coefficient2 x @@ -4550,7 +4488,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, ACCoolingCAPFFF, !- Name 0.718605468, !- Coefficient1 Constant 0.410099989, !- Coefficient2 x @@ -4562,7 +4500,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACCoolingEIRFFF, !- Name 1.32299905, !- Coefficient1 Constant -0.477711207, !- Coefficient2 x @@ -4574,7 +4512,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACCoolingPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4582,7 +4520,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPCoolingCAPFFF, !- Name 0.718664047, !- Coefficient1 Constant 0.41797409, !- Coefficient2 x @@ -4594,7 +4532,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPCoolingEIRFFF, !- Name 1.143487507, !- Coefficient1 Constant -0.13943972, !- Coefficient2 x @@ -4606,7 +4544,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPCOOLPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4614,7 +4552,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPHeatingCAPFFF, !- Name 0.694045465, !- Coefficient1 Constant 0.474207981, !- Coefficient2 x @@ -4626,7 +4564,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHeatingEIRFFF, !- Name 2.185418751, !- Coefficient1 Constant -1.942827919, !- Coefficient2 x @@ -4638,7 +4576,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHeatPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4646,7 +4584,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPLowStageHeatingCAPFFF, !- Name 0.741466907, !- Coefficient1 Constant 0.378645444, !- Coefficient2 x @@ -4658,7 +4596,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPLowStageHeatingEIRFFF, !- Name 2.153618211, !- Coefficient1 Constant -1.737190609, !- Coefficient2 x @@ -4670,7 +4608,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageHeatingCAPFFF,!- Name 0.76634609, !- Coefficient1 Constant 0.32840943, !- Coefficient2 x @@ -4682,7 +4620,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageHeatingEIRFFF,!- Name 2.001041353, !- Coefficient1 Constant -1.58869128, !- Coefficient2 x @@ -4694,7 +4632,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HP2StageHeatingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4702,7 +4640,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPLowStageCoolingCAPFFF, !- Name 0.655239515, !- Coefficient1 Constant 0.511655216, !- Coefficient2 x @@ -4714,7 +4652,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPLowStageCoolingEIRFFF, !- Name 1.639108268, !- Coefficient1 Constant -0.998953996, !- Coefficient2 x @@ -4726,7 +4664,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageCoolingCAPFFF,!- Name 0.618281092, !- Coefficient1 Constant 0.569060264, !- Coefficient2 x @@ -4738,7 +4676,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageCoolingEIRFFF,!- Name 1.570774717, !- Coefficient1 Constant -0.914152018, !- Coefficient2 x @@ -4750,7 +4688,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HP2StageCoolingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4758,7 +4696,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, ACLowStageCoolingCAPFFF, !- Name 0.65673024, !- Coefficient1 Constant 0.516470835, !- Coefficient2 x @@ -4770,7 +4708,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACLowStageCoolingEIRFFF, !- Name 1.562945114, !- Coefficient1 Constant -0.791859997, !- Coefficient2 x @@ -4782,7 +4720,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACHighStageCoolingCAPFFF,!- Name 0.690334551, !- Coefficient1 Constant 0.464383753, !- Coefficient2 x @@ -4794,7 +4732,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACHighStageCoolingEIRFFF,!- Name 1.31565404, !- Coefficient1 Constant -0.482467162, !- Coefficient2 x @@ -4806,7 +4744,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, AC2StageCoolingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4814,7 +4752,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, Cool-PLF-fPLR, !- Name 0.80141423, !- Coefficient1 Constant 0.23744685, !- Coefficient2 x @@ -4824,10 +4762,9 @@ Curve:Quadratic, 0.7, !- Minimum Curve Output 1; !- Maximum Curve Output - !- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== -Curve:Cubic, + Curve:Cubic, HPACHeatCapFT, !- Name 0.758746, !- Coefficient1 Constant 0.027626, !- Coefficient2 x @@ -4836,7 +4773,7 @@ Curve:Cubic, -20.0, !- Minimum Value of x 20.0; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, HPACHeatCapFFF, !- Name 0.84, !- Coefficient1 Constant 0.16, !- Coefficient2 x @@ -4845,7 +4782,7 @@ Curve:Cubic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, HPACHeatEIRFT, !- Name 1.19248, !- Coefficient1 Constant -0.0300438, !- Coefficient2 x @@ -4854,7 +4791,7 @@ Curve:Cubic, -20.0, !- Minimum Value of x 20.0; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, Fan-EIR-fPLR, !- Name 0.00000000, !- Coefficient1 Constant 1.00000000, !- Coefficient2 x @@ -4865,7 +4802,7 @@ Curve:Cubic, 0, !- Minimum Curve Output 1; !- Maximum Curve Output -Curve:Cubic, + Curve:Cubic, ConstantCubic, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4874,10 +4811,9 @@ Curve:Cubic, -100, !- Minimum Value of x 100; !- Maximum Value of x - !- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== -Curve:Biquadratic, + Curve:Biquadratic, HPWH-Htg-Cap-fT, !- Name 0.563, !- Coefficient1 Constant 0.0437, !- Coefficient2 x @@ -4891,7 +4827,7 @@ Curve:Biquadratic, 100, !- Maximum Value of y 0; !- Minimum Curve Output -Curve:Biquadratic, + Curve:Biquadratic, HPWH-Htg-COP-fT, !- Name 1.1332, !- Coefficient1 Constant 0.063, !- Coefficient2 x @@ -4904,7 +4840,7 @@ Curve:Biquadratic, 0, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, HPWHHeatingCapFTemp, !- Name 0.369827, !- Coefficient1 Constant 0.043341, !- Coefficient2 x @@ -4922,7 +4858,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPWHHeatingCOPFTemp, !- Name 1.19713, !- Coefficient1 Constant 0.077849, !- Coefficient2 x @@ -4940,7 +4876,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPACCoolCapFT, !- Name 0.766956, !- Coefficient1 Constant 0.0107756, !- Coefficient2 x @@ -4953,7 +4889,7 @@ Curve:Biquadratic, 21.11111, !- Minimum Value of y 46.11111; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, HPACCOOLEIRFT, !- Name 0.297145, !- Coefficient1 Constant 0.0430933, !- Coefficient2 x @@ -4966,7 +4902,7 @@ Curve:Biquadratic, 21.11111, !- Minimum Value of y 46.11111; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, Defrost_EIR_FT, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4979,7 +4915,7 @@ Curve:Biquadratic, 0, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, dummy-waste-heat-curve, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4997,7 +4933,7 @@ Curve:Biquadratic, Dimensionless, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACCoolingCAPFTemp, !- Name 1.5509, !- Coefficient1 Constant -0.07505, !- Coefficient2 x @@ -5015,7 +4951,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACCoolingEIRFTemp, !- Name -0.30428, !- Coefficient1 Constant 0.11805, !- Coefficient2 x @@ -5033,7 +4969,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPCoolingCAPFTemp, !- Name 1.55736, !- Coefficient1 Constant -0.074448, !- Coefficient2 x @@ -5051,7 +4987,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPCoolingEIRFTemp, !- Name -0.350448, !- Coefficient1 Constant 0.11681, !- Coefficient2 x @@ -5069,7 +5005,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHeatingCAPFTemp, !- Name 0.876825, !- Coefficient1 Constant -0.002955, !- Coefficient2 x @@ -5087,7 +5023,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHeatingEIRFTemp, !- Name 0.704658, !- Coefficient1 Constant 0.008767, !- Coefficient2 x @@ -5105,7 +5041,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageHeatingCAPFTemp, !- Name 0.84613, !- Coefficient1 Constant -0.002279, !- Coefficient2 x @@ -5123,7 +5059,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageHeatingEIRFTemp, !- Name 0.551837, !- Coefficient1 Constant 0.02038, !- Coefficient2 x @@ -5141,7 +5077,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageHeatingCAPFTemp, !- Name 0.818223, !- Coefficient1 Constant 0.001981, !- Coefficient2 x @@ -5159,7 +5095,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageHeatingEIRFTemp, !- Name 0.81584, !- Coefficient1 Constant -0.00615, !- Coefficient2 x @@ -5177,7 +5113,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageCoolingCAPFTemp, !- Name 1.658788, !- Coefficient1 Constant -0.083453, !- Coefficient2 x @@ -5195,7 +5131,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageCoolingEIRFTemp, !- Name -0.582916, !- Coefficient1 Constant 0.158101, !- Coefficient2 x @@ -5213,7 +5149,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageCoolingCAPFTemp, !- Name 1.472738, !- Coefficient1 Constant -0.067222, !- Coefficient2 x @@ -5231,7 +5167,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageCoolingEIRFTemp, !- Name -0.488196, !- Coefficient1 Constant 0.099162, !- Coefficient2 x @@ -5249,7 +5185,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACLowStageCoolingCAPFTemp, !- Name 1.66458, !- Coefficient1 Constant -0.08039, !- Coefficient2 x @@ -5267,7 +5203,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACLowStageCoolingEIRFTemp, !- Name -0.42738, !- Coefficient1 Constant 0.14191, !- Coefficient2 x @@ -5285,7 +5221,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACHighStageCoolingCAPFTemp, !- Name 1.36788, !- Coefficient1 Constant -0.06257, !- Coefficient2 x @@ -5303,7 +5239,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACHighStageCoolingEIRFTemp, !- Name 0.04232, !- Coefficient1 Constant 0.07892, !- Coefficient2 x @@ -5321,7 +5257,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, Cool-Cap-fT, !- Name 1.26489391, !- Coefficient1 Constant -0.035054982, !- Coefficient2 x @@ -5334,7 +5270,7 @@ Curve:Biquadratic, -100, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, Cool-EIR-fT, !- Name 0.38402403, !- Coefficient1 Constant 0.029696724, !- Coefficient2 x @@ -5347,29 +5283,26 @@ Curve:Biquadratic, -100, !- Minimum Value of y 100; !- Maximum Value of y - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== -Output:VariableDictionary,Regular; + Output:VariableDictionary,Regular; !- =========== ALL OBJECTS IN CLASS: OUTPUT:CONSTRUCTIONS =========== -Output:Constructions,Constructions,Materials; + Output:Constructions,Constructions,Materials; !- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS =========== - -Output:Table:SummaryReports, + Output:Table:SummaryReports, InputVerificationandResultsSummary, !- Report 1 Name EquipmentSummary, !- Report 2 Name ClimaticDataSummary, !- Report 3 Name EnvelopeSummary, !- Report 4 Name AllSummary; !- Report 5 Name - !- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:MONTHLY =========== -Output:Table:Monthly, + Output:Table:Monthly, FanSplit, !- Name 3, !- Digits After Decimal Air System Cooling Coil Total Cooling Energy, !- Variable or Meter 1 Name @@ -5383,45 +5316,45 @@ Output:Table:Monthly, Air System Fan Electric Energy, !- Variable or Meter 5 Name SumOrAverage; !- Aggregation Type for Variable or Meter 5 -Output:Table:Monthly, + Output:Table:Monthly, CoilLoads, !- Name 2, !- Digits After Decimal - Heating Coil Heating Rate , !- Variable or Meter 1 Name + Heating Coil Heating Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Heating Coil Air Heating Rate , !- Variable or Meter 2 Name + Heating Coil Air Heating Rate, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Cooling Coil Total Cooling Rate , !- Variable or Meter 3 Name + Cooling Coil Total Cooling Rate, !- Variable or Meter 3 Name SumOrAverage; !- Aggregation Type for Variable or Meter 3 -Output:Table:Monthly, + Output:Table:Monthly, Water Heater: Loads, !- Name 2, !- Digits After Decimal - Water Heater Total Demand Rate , !- Variable or Meter 1 Name + Water Heater Total Demand Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Water Heater Total Demand Energy , !- Variable or Meter 2 Name + Water Heater Total Demand Energy, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Water Heater Heating Rate , !- Variable or Meter 3 Name + Water Heater Heating Rate, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Water Heater Heating Energy , !- Variable or Meter 4 Name + Water Heater Heating Energy, !- Variable or Meter 4 Name SumOrAverage; !- Aggregation Type for Variable or Meter 4 -Output:Table:Monthly, + Output:Table:Monthly, Heating and Cooling Loads, !- Name 2, !- Digits After Decimal - Zone/Sys Sensible Cooling Energy , !- Variable or Meter 1 Name + Zone/Sys Sensible Cooling Energy, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Zone/Sys Sensible Heating Energy , !- Variable or Meter 2 Name + Zone/Sys Sensible Heating Energy, !- Variable or Meter 2 Name SumOrAverage; !- Aggregation Type for Variable or Meter 2 -Output:Table:Monthly, + Output:Table:Monthly, Lighting Loads, !- Name 2, !- Digits After Decimal - Zone Lights Electric Consumption , !- Variable or Meter 1 Name + Zone Lights Electric Consumption, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Exterior Lights Electric Consumption , !- Variable or Meter 2 Name + Exterior Lights Electric Consumption, !- Variable or Meter 2 Name SumOrAverage; !- Aggregation Type for Variable or Meter 2 -Output:Table:Monthly, + Output:Table:Monthly, InternalGains, !- Name 2, !- Digits After Decimal Zone People Total Heat Gain, !- Variable or Meter 1 Name @@ -5437,17 +5370,19 @@ Output:Table:Monthly, Zone Total Internal Total Heat Gain, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 - !- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE =========== -OutputControl:Table:Style, + OutputControl:Table:Style, CommaAndHTML, !- Column Separator InchPound; !- Unit Conversion - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== -Output:Variable,*,Cooling Coil Sensible Cooling Rate,Hourly; -Output:Variable,*,Cooling Coil Latent Cooling Rate,Hourly; -Output:Variable,*,Cooling Coil Total Cooling Rate,Hourly; -Output:Variable,*,Heating Coil Heating Rate,Hourly; + Output:Variable,*,Cooling Coil Sensible Cooling Rate,Hourly; + + Output:Variable,*,Cooling Coil Latent Cooling Rate,Hourly; + + Output:Variable,*,Cooling Coil Total Cooling Rate,Hourly; + + Output:Variable,*,Heating Coil Heating Rate,Hourly; + diff --git a/testfiles/SingleFamilyHouse_HP_Slab_Dehumidification.idf b/testfiles/SingleFamilyHouse_HP_Slab_Dehumidification.idf index 567fedac63e..39122ece823 100644 --- a/testfiles/SingleFamilyHouse_HP_Slab_Dehumidification.idf +++ b/testfiles/SingleFamilyHouse_HP_Slab_Dehumidification.idf @@ -1,18 +1,14 @@ !-Generator IDFEditor 1.51 !-Option SortedOrder UseSpecialFormat - !-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. !- Use '!' comments if they need to be retained when using the IDFEditor. - - !- =========== ALL OBJECTS IN CLASS: VERSION =========== -Version,9.6; + Version,9.6; !- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== - -SimulationControl, + SimulationControl, Yes, !- Do Zone Sizing Calculation Yes, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation @@ -21,11 +17,10 @@ SimulationControl, , !- Do HVAC Sizing Simulation for Sizing Periods ; !- Maximum Number of HVAC Sizing Simulation Passes - !- =========== ALL OBJECTS IN CLASS: BUILDING =========== -Building, - SF_CZ8_HP_SLAB_DEH, !- Name + Building, + SF_CZ8_HP_SLAB_DEH, !- Name 0, !- North Axis {deg} Suburbs, !- Terrain 0.04, !- Loads Convergence Tolerance Value {W} @@ -34,29 +29,26 @@ Building, 25, !- Maximum Number of Warmup Days 6; !- Minimum Number of Warmup Days - !- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE =========== -SurfaceConvectionAlgorithm:Inside,TARP; + SurfaceConvectionAlgorithm:Inside,TARP; !- =========== ALL OBJECTS IN CLASS: TIMESTEP =========== -Timestep,6; + Timestep,6; !- =========== ALL OBJECTS IN CLASS: SITE:LOCATION =========== - -Site:Location, + Site:Location, Fairbanks Intl Arpt_AK_USA Design_Conditions, !- Name 64.82, !- Latitude {deg} -147.85, !- Longitude {deg} -9.00, !- Time Zone {hr} 133.00; !- Elevation {m} - !- =========== ALL OBJECTS IN CLASS: SIZINGPERIOD:DESIGNDAY =========== -SizingPeriod:DesignDay, + SizingPeriod:DesignDay, Fairbanks Intl Arpt Ann Htg 99.6% Condns DB, !- Name 1, !- Month 21, !- Day of Month @@ -84,7 +76,7 @@ SizingPeriod:DesignDay, , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} 0.00; !- Sky Clearness -SizingPeriod:DesignDay, + SizingPeriod:DesignDay, Fairbanks Intl Arpt Ann Clg .4% Condns DB=>MWB, !- Name 7, !- Month 21, !- Day of Month @@ -111,10 +103,9 @@ SizingPeriod:DesignDay, 0.387, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} 2.212; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} - !- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== -RunPeriod, + RunPeriod, annual, !- Name 1, !- Begin Month 1, !- Begin Day of Month @@ -129,49 +120,46 @@ RunPeriod, Yes, !- Use Weather File Rain Indicators Yes; !- Use Weather File Snow Indicators - !- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE =========== -Site:WaterMainsTemperature, + Site:WaterMainsTemperature, Correlation, !- Calculation Method , !- Temperature Schedule Name -1.525, !- Annual Average Outdoor Air Temperature {C} 36.2; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} - !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS =========== -ScheduleTypeLimits, + ScheduleTypeLimits, any number; !- Name -ScheduleTypeLimits, + ScheduleTypeLimits, On/Off, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Discrete; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, control_type, !- Name 0, !- Lower Limit Value 4, !- Upper Limit Value Discrete; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, fraction, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type -ScheduleTypeLimits, + ScheduleTypeLimits, Temperature, !- Name -60, !- Lower Limit Value 200, !- Upper Limit Value Continuous; !- Numeric Type - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:DAY:HOURLY =========== -Schedule:Day:Hourly, + Schedule:Day:Hourly, OccupancyDay, !- Name Fraction, !- Schedule Type Limits Name 1.00000, !- Hour 1 @@ -199,7 +187,7 @@ Schedule:Day:Hourly, 1.00000, !- Hour 23 1.00000; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay, !- Name Fraction, !- Schedule Type Limits Name 0.0625, !- Hour 1 @@ -227,7 +215,7 @@ Schedule:Day:Hourly, 0.3828125, !- Hour 23 0.15625; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting_OccSensors, !- Name Fraction, !- Schedule Type Limits Name 0.065170403, !- Hour 1 @@ -255,7 +243,7 @@ Schedule:Day:Hourly, 0.399168715, !- Hour 23 0.162926006; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting_Garage_OccSensors, !- Name Fraction, !- Schedule Type Limits Name 0.048125, !- Hour 1 @@ -283,7 +271,7 @@ Schedule:Day:Hourly, 0.294765625, !- Hour 23 0.1203125; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ExteriorLightingDay, !- Name Fraction, !- Schedule Type Limits Name 1, !- Hour 1 @@ -311,7 +299,7 @@ Schedule:Day:Hourly, 1, !- Hour 23 1; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, LightingDay_EELighting, !- Name Fraction, !- Schedule Type Limits Name 0.06875, !- Hour 1 @@ -339,7 +327,7 @@ Schedule:Day:Hourly, 0.42109375, !- Hour 23 0.171875; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, RefrigeratorDay, !- Name Fraction, !- Schedule Type Limits Name 0.8, !- Hour 1 @@ -367,7 +355,7 @@ Schedule:Day:Hourly, 0.885714285714286, !- Hour 23 0.828571428571429; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, MiscPlugLoadDay, !- Name Fraction, !- Schedule Type Limits Name 0.607490272373541, !- Hour 1 @@ -395,7 +383,7 @@ Schedule:Day:Hourly, 0.845168612191959, !- Hour 23 0.73443579766537; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, CookingRangeDay, !- Name Fraction, !- Schedule Type Limits Name 0.04715848452508, !- Hour 1 @@ -423,7 +411,7 @@ Schedule:Day:Hourly, 0.103721985058698, !- Hour 23 0.0707043756670224; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.115858456545258, !- Hour 1 @@ -451,7 +439,7 @@ Schedule:Day:Hourly, 0.334819617742518, !- Hour 23 0.23179239091237; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.124134060584205, !- Hour 1 @@ -479,7 +467,7 @@ Schedule:Day:Hourly, 0.358735304724125, !- Hour 23 0.248348990263252; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DishwasherVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -507,7 +495,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0796474528960224, !- Hour 1 @@ -535,7 +523,7 @@ Schedule:Day:Hourly, 0.270920725750174, !- Hour 23 0.143433635729239; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0974410327983253, !- Hour 1 @@ -563,7 +551,7 @@ Schedule:Day:Hourly, 0.331445568736915, !- Hour 23 0.175477320307048; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesWasherVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -591,7 +579,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, dhw_profile_day, !- Name fraction, !- Schedule Type Limits Name 0.006, !- Hour 1 @@ -619,7 +607,7 @@ Schedule:Day:Hourly, 0.041, !- Hour 23 0.024; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0996818663838815, !- Hour 1 @@ -647,7 +635,7 @@ Schedule:Day:Hourly, 0.438600212089077, !- Hour 23 0.239236479321316; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.121951219512195, !- Hour 1 @@ -675,7 +663,7 @@ Schedule:Day:Hourly, 0.536585365853659, !- Hour 23 0.292682926829268; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ClothesDryerVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -703,7 +691,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.160052687884461, !- Hour 1 @@ -731,7 +719,7 @@ Schedule:Day:Hourly, 0.44828316394758, !- Hour 23 0.307332809574753; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.169851832040653, !- Hour 1 @@ -759,7 +747,7 @@ Schedule:Day:Hourly, 0.47572907194437, !- Hour 23 0.326149104038513; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SinksVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -787,7 +775,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.076044361285933, !- Hour 1 @@ -815,7 +803,7 @@ Schedule:Day:Hourly, 0.207555536655894, !- Hour 23 0.148742201054601; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0814761013777853, !- Hour 1 @@ -843,7 +831,7 @@ Schedule:Day:Hourly, 0.222380932131315, !- Hour 23 0.159366643987073; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, ShowersVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -871,7 +859,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsWeekday, !- Name Fraction, !- Schedule Type Limits Name 0.0492758944582015, !- Hour 1 @@ -899,7 +887,7 @@ Schedule:Day:Hourly, 0.418908931773546, !- Hour 23 0.24644330116984; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsWeekend, !- Name Fraction, !- Schedule Type Limits Name 0.0689862522414824, !- Hour 1 @@ -927,7 +915,7 @@ Schedule:Day:Hourly, 0.586472504482965, !- Hour 23 0.345020621637776; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, BathsVacation, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -955,7 +943,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, DHWDistDay, !- Name Fraction, !- Schedule Type Limits Name 0.142553149370226, !- Hour 1 @@ -983,7 +971,7 @@ Schedule:Day:Hourly, 0.464292318119835, !- Hour 23 0.299867724445383; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, WinterLoadDay, !- Name Fraction, !- Schedule Type Limits Name 0, !- Hour 1 @@ -1011,7 +999,7 @@ Schedule:Day:Hourly, 0, !- Hour 23 0; !- Hour 24 -Schedule:Day:Hourly, + Schedule:Day:Hourly, SummerLoadDay, !- Name Fraction, !- Schedule Type Limits Name 1, !- Hour 1 @@ -1039,25 +1027,24 @@ Schedule:Day:Hourly, 1, !- Hour 23 1; !- Hour 24 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:WEEK:COMPACT =========== -Schedule:Week:Compact, + Schedule:Week:Compact, RefrigeratorWeek, !- Name For: AllDays, !- DayType List 1 RefrigeratorDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, MiscPlugLoadWeek, !- Name For: AllDays, !- DayType List 1 MiscPlugLoadDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, CookingRangeWeek, !- Name For: AllDays, !- DayType List 1 CookingRangeDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, DishwasherWeek, !- Name For: Weekdays, !- DayType List 1 DishwasherWeekday, !- Schedule:Day Name 1 @@ -1066,7 +1053,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 DishwasherWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, ClothesWasherWeek, !- Name For: Weekdays, !- DayType List 1 ClothesWasherWeekday, !- Schedule:Day Name 1 @@ -1075,12 +1062,12 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ClothesWasherWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, dhw_profile_week, !- Name AllDays, !- DayType List 1 dhw_profile_day; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, ClothesDryerWeek, !- Name For: Weekdays, !- DayType List 1 ClothesDryerWeekday, !- Schedule:Day Name 1 @@ -1089,7 +1076,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ClothesDryerWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, SinksWeek, !- Name For: Weekdays, !- DayType List 1 SinksWeekday, !- Schedule:Day Name 1 @@ -1098,7 +1085,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 SinksWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, ShowersWeek, !- Name For: Weekdays, !- DayType List 1 ShowersWeekday, !- Schedule:Day Name 1 @@ -1107,7 +1094,7 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 ShowersWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, BathsWeek, !- Name For: Weekdays, !- DayType List 1 BathsWeekday, !- Schedule:Day Name 1 @@ -1116,45 +1103,44 @@ Schedule:Week:Compact, For: AllOtherDays, !- DayType List 3 BathsWeekend; !- Schedule:Day Name 3 -Schedule:Week:Compact, + Schedule:Week:Compact, DHWDistWeek, !- Name For: AllDays, !- DayType List 1 DHWDistDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, OccupancyWeek, !- Name AllDays, !- DayType List 1 OccupancyDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek, !- Name For: AllDays, !- DayType List 1 LightingDay; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting_interior_controls, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting_OccSensors; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, LightingProfileWeek_EELighting_garage_controls, !- Name For: AllDays, !- DayType List 1 LightingDay_EELighting_Garage_OccSensors; !- Schedule:Day Name 1 -Schedule:Week:Compact, + Schedule:Week:Compact, ExteriorLightingProfileWeek, !- Name For: AllDays, !- DayType List 1 ExteriorLightingDay; !- Schedule:Day Name 1 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:YEAR =========== -Schedule:Year, + Schedule:Year, Occupancy, !- Name Fraction, !- Schedule Type Limits Name OccupancyWeek, !- Schedule:Week Name 1 @@ -1163,7 +1149,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLighting, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek, !- Schedule:Week Name 1 @@ -1172,7 +1158,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting, !- Schedule:Week Name 1 @@ -1181,7 +1167,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE_OS, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting_interior_controls, !- Schedule:Week Name 1 @@ -1190,7 +1176,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, InteriorLightingHE_VS, !- Name Fraction, !- Schedule Type Limits Name LightingProfileWeek_EELighting_garage_controls, !- Schedule:Week Name 1 @@ -1199,7 +1185,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ExteriorLighting, !- Name Fraction, !- Schedule Type Limits Name ExteriorLightingProfileWeek, !- Schedule:Week Name 1 @@ -1208,7 +1194,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Refrigerator, !- Name Fraction, !- Schedule Type Limits Name RefrigeratorWeek, !- Schedule:Week Name 1 @@ -1217,7 +1203,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, MiscPlugLoad, !- Name Fraction, !- Schedule Type Limits Name MiscPlugLoadWeek, !- Schedule:Week Name 1 @@ -1226,7 +1212,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, CookingRange, !- Name Fraction, !- Schedule Type Limits Name CookingRangeWeek, !- Schedule:Week Name 1 @@ -1235,7 +1221,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, dhw_sch, !- Name fraction, !- Schedule Type Limits Name dhw_profile_week, !- Schedule:Week Name 1 @@ -1244,7 +1230,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Dishwasher, !- Name Fraction, !- Schedule Type Limits Name DishwasherWeek, !- Schedule:Week Name 1 @@ -1253,7 +1239,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ClothesWasher, !- Name Fraction, !- Schedule Type Limits Name ClothesWasherWeek, !- Schedule:Week Name 1 @@ -1262,7 +1248,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, ClothesDryer, !- Name Fraction, !- Schedule Type Limits Name ClothesDryerWeek, !- Schedule:Week Name 1 @@ -1271,7 +1257,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Sinks, !- Name Fraction, !- Schedule Type Limits Name SinksWeek, !- Schedule:Week Name 1 @@ -1280,7 +1266,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Showers, !- Name Fraction, !- Schedule Type Limits Name ShowersWeek, !- Schedule:Week Name 1 @@ -1289,7 +1275,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, Baths, !- Name Fraction, !- Schedule Type Limits Name BathsWeek, !- Schedule:Week Name 1 @@ -1298,7 +1284,7 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 -Schedule:Year, + Schedule:Year, DHWDist, !- Name Fraction, !- Schedule Type Limits Name DHWDistWeek, !- Schedule:Week Name 1 @@ -1307,308 +1293,319 @@ Schedule:Year, 12, !- End Month 1 31; !- End Day 1 - !- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== - -Schedule:Compact, - BA_shower_sch, !- Name - any number, !- Schedule Type Limits Name - Through: 12/31, !- Field 1 - For: AllDays, !- Field 2 - Until: 1:00, 0.00174682444444444, !- Field 4 - Until: 2:00, 0.000794011111111111, !- Field 6 - Until: 3:00, 0.000476406666666667, !- Field 8 - Until: 4:00, 0.000794011111111111, !- Field 10 - Until: 5:00, 0.00222323111111111, !- Field 12 - Until: 6:00, 0.00825771555555556, !- Field 14 - Until: 7:00, 0.0187386622222222, !- Field 16 - Until: 8:00, 0.01857986, !- Field 18 - Until: 9:00, 0.0150862111111111, !- Field 20 - Until: 10:00, 0.0117513644444444, !- Field 22 - Until: 11:00, 0.00952813333333333, !- Field 24 - Until: 12:00, 0.00746370444444444, !- Field 26 - Until: 13:00, 0.00539927555555556, !- Field 28 - Until: 14:00, 0.00460526444444444, !- Field 30 - Until: 15:00, 0.00412885777777778, !- Field 32 - Until: 16:00, 0.00397005555555556, !- Field 34 - Until: 17:00, 0.00476406666666667, !- Field 36 - Until: 18:00, 0.00619328666666667, !- Field 38 - Until: 19:00, 0.00666969333333333, !- Field 40 - Until: 20:00, 0.00666969333333333, !- Field 42 - Until: 21:00, 0.00666969333333333, !- Field 44 - Until: 22:00, 0.00651089111111111, !- Field 46 - Until: 23:00, 0.00460526444444444, !- Field 48 - Until: 24:00, 0.00333484666666667; - !- Field 50 -Schedule:Compact, - BA_bath_sch, !- Name + Schedule:Compact, + BA_shower_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 1:00, 0.000163090909090909, + Until: 1:00,0.00174682444444444, !- Field 3 + Until: 2:00,0.000794011111111111, !- Field 5 + Until: 3:00,0.000476406666666667, !- Field 7 + Until: 4:00,0.000794011111111111, !- Field 9 + Until: 5:00,0.00222323111111111, !- Field 11 + Until: 6:00,0.00825771555555556, !- Field 13 + Until: 7:00,0.0187386622222222, !- Field 15 + Until: 8:00,0.01857986, !- Field 17 + Until: 9:00,0.0150862111111111, !- Field 19 + Until: 10:00,0.0117513644444444, !- Field 21 + Until: 11:00,0.00952813333333333, !- Field 23 + Until: 12:00,0.00746370444444444, !- Field 25 + Until: 13:00,0.00539927555555556, !- Field 27 + Until: 14:00,0.00460526444444444, !- Field 29 + Until: 15:00,0.00412885777777778, !- Field 31 + Until: 16:00,0.00397005555555556, !- Field 33 + Until: 17:00,0.00476406666666667, !- Field 35 + Until: 18:00,0.00619328666666667, !- Field 37 + Until: 19:00,0.00666969333333333, !- Field 39 + Until: 20:00,0.00666969333333333, !- Field 41 + Until: 21:00,0.00666969333333333, !- Field 43 + Until: 22:00,0.00651089111111111, !- Field 45 + Until: 23:00,0.00460526444444444, !- Field 47 + Until: 24:00,0.00333484666666667; !- Field 49 + + !- Field 50 !- Field 4 - Until: 2:00, 8.15454545454545e-05, !- Field 6 - Until: 3:00, 8.15454545454545e-05, !- Field 8 - Until: 4:00, 8.15454545454545e-05, !- Field 10 - Until: 5:00, 0.000163090909090909, !- Field 12 - Until: 6:00, 0.000387340909090909, !- Field 14 - Until: 7:00, 0.000937772727272727, !- Field 16 - Until: 8:00, 0.00118240909090909, !- Field 18 - Until: 9:00, 0.0013455, !- Field 20 - Until: 10:00, 0.00118240909090909, !- Field 22 - Until: 11:00, 0.000937772727272727, !- Field 24 - Until: 12:00, 0.000713522727272727, !- Field 26 - Until: 13:00, 0.000631977272727273, !- Field 28 - Until: 14:00, 0.000468886363636364, !- Field 30 - Until: 15:00, 0.000468886363636364, !- Field 32 - Until: 16:00, 0.000468886363636364, !- Field 34 - Until: 17:00, 0.000795068181818182, !- Field 36 - Until: 18:00, 0.000937772727272727, !- Field 38 - Until: 19:00, 0.00156975,!- Field 40 - Until: 20:00, 0.00203863636363636, !- Field 42 - Until: 21:00, 0.00203863636363636, !- Field 44 - Until: 22:00, 0.00156975,!- Field 46 - Until: 23:00, 0.0013455, !- Field 48 - Until: 24:00, 0.000795068181818182; - !- Field 50 -Schedule:Compact, - BA_sink_sch, !- Name + Schedule:Compact, + BA_bath_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 1:00, 0.00387388596491228, + Until: 1:00,0.000163090909090909, !- Field 3 + Until: 2:00,8.15454545454545e-05, !- Field 5 + Until: 3:00,8.15454545454545e-05, !- Field 7 + Until: 4:00,8.15454545454545e-05, !- Field 9 + Until: 5:00,0.000163090909090909, !- Field 11 + Until: 6:00,0.000387340909090909, !- Field 13 + Until: 7:00,0.000937772727272727, !- Field 15 + Until: 8:00,0.00118240909090909, !- Field 17 + Until: 9:00,0.0013455, !- Field 19 + Until: 10:00,0.00118240909090909, !- Field 21 + Until: 11:00,0.000937772727272727, !- Field 23 + Until: 12:00,0.000713522727272727, !- Field 25 + Until: 13:00,0.000631977272727273, !- Field 27 + Until: 14:00,0.000468886363636364, !- Field 29 + Until: 15:00,0.000468886363636364, !- Field 31 + Until: 16:00,0.000468886363636364, !- Field 33 + Until: 17:00,0.000795068181818182, !- Field 35 + Until: 18:00,0.000937772727272727, !- Field 37 + Until: 19:00,0.00156975, !- Field 39 + Until: 20:00,0.00203863636363636, !- Field 41 + Until: 21:00,0.00203863636363636, !- Field 43 + Until: 22:00,0.00156975, !- Field 45 + Until: 23:00,0.0013455, !- Field 47 + Until: 24:00,0.000795068181818182; !- Field 49 + + !- Field 50 !- Field 4 - Until: 2:00, 0.00193694298245614, !- Field 6 - Until: 3:00, 0.00138353070175439, !- Field 8 - Until: 4:00, 0.00138353070175439, !- Field 10 - Until: 5:00, 0.00193694298245614, !- Field 12 - Until: 6:00, 0.00498071052631579, !- Field 14 - Until: 7:00, 0.0116216578947368, !- Field 16 - Until: 8:00, 0.0171557807017544, !- Field 18 - Until: 9:00, 0.0182626052631579, !- Field 20 - Until: 10:00, 0.0171557807017544, !- Field 22 - Until: 11:00, 0.0149421315789474, !- Field 24 - Until: 12:00, 0.0138353070175439, !- Field 26 - Until: 13:00, 0.013558600877193, !- Field 28 - Until: 14:00, 0.0124517763157895, !- Field 30 - Until: 15:00, 0.0118983640350877, !- Field 32 - Until: 16:00, 0.011344951754386, !- Field 34 - Until: 17:00, 0.0132818947368421, !- Field 36 - Until: 18:00, 0.017985899122807, !- Field 38 - Until: 19:00, 0.0207529605263158, !- Field 40 - Until: 20:00, 0.0190927236842105, !- Field 42 - Until: 21:00, 0.01577225,!- Field 44 - Until: 22:00, 0.0132818947368421, !- Field 46 - Until: 23:00, 0.0110682456140351, !- Field 48 - Until: 24:00, 0.00747106578947368; + + Schedule:Compact, + BA_sink_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00,0.00387388596491228, !- Field 3 + Until: 2:00,0.00193694298245614, !- Field 5 + Until: 3:00,0.00138353070175439, !- Field 7 + Until: 4:00,0.00138353070175439, !- Field 9 + Until: 5:00,0.00193694298245614, !- Field 11 + Until: 6:00,0.00498071052631579, !- Field 13 + Until: 7:00,0.0116216578947368, !- Field 15 + Until: 8:00,0.0171557807017544, !- Field 17 + Until: 9:00,0.0182626052631579, !- Field 19 + Until: 10:00,0.0171557807017544, !- Field 21 + Until: 11:00,0.0149421315789474, !- Field 23 + Until: 12:00,0.0138353070175439, !- Field 25 + Until: 13:00,0.013558600877193, !- Field 27 + Until: 14:00,0.0124517763157895, !- Field 29 + Until: 15:00,0.0118983640350877, !- Field 31 + Until: 16:00,0.011344951754386, !- Field 33 + Until: 17:00,0.0132818947368421, !- Field 35 + Until: 18:00,0.017985899122807, !- Field 37 + Until: 19:00,0.0207529605263158, !- Field 39 + Until: 20:00,0.0190927236842105, !- Field 41 + Until: 21:00,0.01577225, !- Field 43 + Until: 22:00,0.0132818947368421, !- Field 45 + Until: 23:00,0.0110682456140351, !- Field 47 + Until: 24:00,0.00747106578947368; !- Field 49 + !- Field 50 -Schedule:Compact, + Schedule:Compact, activity_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 117.28; !- Field 4 + Until: 24:00,117.28; !- Field 3 -Schedule:Compact, + Schedule:Compact, inf_sch, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 1; !- Field 4 + Until: 24:00,1; !- Field 3 -Schedule:Compact, + Schedule:Compact, zone_control_type, !- Name control_type, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 4; !- Field 4 + Until 24:00,4; !- Field 3 -Schedule:Compact, + Schedule:Compact, shading_2012iecc, !- Name fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 0; !- Field 4 + Until 24:00,0; !- Field 3 -Schedule:Compact, + Schedule:Compact, shading_2009iecc, !- Name any number, !- Schedule Type Limits Name Through: 5/30, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 0.85, !- Field 4 + Until 24:00,0.85, !- Field 3 Through: 8/31, !- Field 5 For: AllDays, !- Field 6 - Until 24:00, !- Field 7 - 0.7, !- Field 8 + Until 24:00,0.7, !- Field 7 Through: 12/31, !- Field 9 For: AllDays, !- Field 10 - Until: 24:00, 0.85; !- Field 12 + Until: 24:00,0.85; !- Field 11 -Schedule:Compact, + Schedule:Compact, dhw_setpt, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 48; !- Field 4 + Until 24:00,48; !- Field 3 -Schedule:Compact, + Schedule:Compact, dhw_setpt_hpwh, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until 24:00, !- Field 3 - 44; !- Field 4 + Until 24:00,44; !- Field 3 -Schedule:Compact, + Schedule:Compact, Supply-Air-Temp-Sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 12; !- Field 4 + Until: 24:00,12; !- Field 3 -Schedule:Compact, + Schedule:Compact, always_avail, !- Name On/Off, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 1; !- Field 4 + Until: 24:00,1; !- Field 3 -Schedule:Compact, + 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 4 + Until: 24:00,0; !- Field 3 -Schedule:Compact, + Schedule:Compact, heating_sch_HRef, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 20; !- Field 4 + Until: 24:00,20; !- Field 3 -Schedule:Compact, + Schedule:Compact, cooling_sch_HRef, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 25.55; !- Field 4 + Until: 24:00,25.55; !- Field 3 -Schedule:Compact, + Schedule:Compact, heating_sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 22.2222222222223; + Until: 24:00,22.2222222222223; !- Field 3 + !- Field 4 -Schedule:Compact, + Schedule:Compact, cooling_sch, !- Name Temperature, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 23.888888888889; + Until: 24:00,23.888888888889; !- Field 3 + !- Field 4 -Schedule:Compact, + Schedule:Compact, fan_cycle, !- Name any number, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 24:00, 0; !- Field 4 - + Until: 24:00,0; !- Field 3 !- =========== ALL OBJECTS IN CLASS: SCHEDULE:CONSTANT =========== -Schedule:Constant,DWWaterTempSchedule,Temperature,48.8888888888889; -Schedule:Constant,CWWaterTempSchedule,Temperature,48.8888888888889; -Schedule:Constant,SinkSensSchedule,Fraction,0.687777777777778; -Schedule:Constant,SinkLatSchedule,Fraction,0.312222222222222; -Schedule:Constant,ShowerSensSchedule,Fraction,0.51280276816609; -Schedule:Constant,ShowerLatSchedule,Fraction,0.48719723183391; -Schedule:Constant,BathSensSchedule,Fraction,1; -Schedule:Constant,BathLatSchedule,Fraction,0; -Schedule:Constant,SSBWaterTempSchedule,Temperature,40.5555555555556; -Schedule:Constant,WaterHeaterSP1Schedule,Temperature,48.8888888888889; -Schedule:Constant,WaterHeaterSP2Schedule,Temperature,40.5555555555556; -Schedule:Constant,DHWSupplySetpoint,Temperature,48.8888888888889; -Schedule:Constant,boiler_setpt,Temperature,80; -Schedule:Constant,Compressor Setpoint,Temperature,50; -Schedule:Constant,DOAShightemp,Temperature,200; -Schedule:Constant,DOASlowtemp,Temperature,-60; + Schedule:Constant,DWWaterTempSchedule,Temperature,48.8888888888889; -!- =========== ALL OBJECTS IN CLASS: MATERIAL =========== + Schedule:Constant,CWWaterTempSchedule,Temperature,48.8888888888889; + + Schedule:Constant,SinkSensSchedule,Fraction,0.687777777777778; + + Schedule:Constant,SinkLatSchedule,Fraction,0.312222222222222; + + Schedule:Constant,ShowerSensSchedule,Fraction,0.51280276816609; + + Schedule:Constant,ShowerLatSchedule,Fraction,0.48719723183391; + + Schedule:Constant,BathSensSchedule,Fraction,1; + + Schedule:Constant,BathLatSchedule,Fraction,0; + + Schedule:Constant,SSBWaterTempSchedule,Temperature,40.5555555555556; + + Schedule:Constant,WaterHeaterSP1Schedule,Temperature,48.8888888888889; + + Schedule:Constant,WaterHeaterSP2Schedule,Temperature,40.5555555555556; + + Schedule:Constant,DHWSupplySetpoint,Temperature,48.8888888888889; + + Schedule:Constant,boiler_setpt,Temperature,80; + + Schedule:Constant,Compressor Setpoint,Temperature,50; + + Schedule:Constant,DOAShightemp,Temperature,200; + Schedule:Constant,DOASlowtemp,Temperature,-60; -Material, +!- =========== ALL OBJECTS IN CLASS: MATERIAL =========== + + Material, sheathing_consol_layer, !- Name Rough, !- Roughness 0.031115, !- Thickness {m} @@ -1616,7 +1613,7 @@ Material, 20.1, !- Density {kg/m3} 1465.415; !- Specific Heat {J/kg-K} -Material, + Material, ceil_consol_layer, !- Name Rough, !- Roughness 0.444461299067702, !- Thickness {m} @@ -1624,7 +1621,7 @@ Material, 41.9286, !- Density {kg/m3} 776.25126; !- Specific Heat {J/kg-K} -Material, + Material, floor_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1632,7 +1629,7 @@ Material, 55.074, !- Density {kg/m3} 916.9311; !- Specific Heat {J/kg-K} -Material, + Material, bsmtwall_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1640,7 +1637,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, crawlwall_consol_layer, !- Name Rough, !- Roughness 0.000254, !- Thickness {m} @@ -1648,7 +1645,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, wall_consol_layer, !- Name Rough, !- Roughness 0.1397, !- Thickness {m} @@ -1656,7 +1653,7 @@ Material, 120.801, !- Density {kg/m3} 1036.25775; !- Specific Heat {J/kg-K} -Material, + Material, Very High Reflectivity Surface, !- Name Smooth, !- Roughness 0.0005, !- Thickness {m} @@ -1667,7 +1664,7 @@ Material, 0.05, !- Solar Absorptance 0.05; !- Visible Absorptance -Material, + Material, GypsumBoard-5/16in, !- Name Rough, !- Roughness 7.93953E-03, !- Thickness {m} @@ -1678,7 +1675,7 @@ Material, 0.4, !- Solar Absorptance 0.1; !- Visible Absorptance -Material, + Material, CopperPipe, !- Name MediumRough, !- Roughness 1.90500386169072E-02, !- Thickness {m} @@ -1689,7 +1686,7 @@ Material, 0.6500000, !- Solar Absorptance 0.6500000; !- Visible Absorptance -Material, + Material, F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -1697,7 +1694,7 @@ Material, 7824, !- Density {kg/m3} 500; !- Specific Heat {J/kg-K} -Material, + Material, Concrete_4in, !- Name Rough, !- Roughness 0.1014984, !- Thickness {m} @@ -1705,7 +1702,7 @@ Material, 2242.8, !- Density {kg/m3} 465.2; !- Specific Heat {J/kg-K} -Material, + Material, Asphalt_shingle, !- Name MediumRough, !- Roughness 6.33985285170672E-03, !- Thickness {m} @@ -1715,7 +1712,7 @@ Material, , !- Thermal Absorptance 0.75; !- Solar Absorptance -Material, + Material, Wood_shingle, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1723,7 +1720,7 @@ Material, 426.090847695673, !- Density {kg/m3} 1631.76001234752; !- Specific Heat {J/kg-K} -Material, + Material, Slate_shingle, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1731,7 +1728,7 @@ Material, 1601.845292089, !- Density {kg/m3} 1255.20000949809; !- Specific Heat {J/kg-K} -Material, + Material, cement_stucco, !- Name MediumSmooth, !- Roughness 1.905E-02, !- Thickness {m} @@ -1739,7 +1736,7 @@ Material, 1865.58, !- Density {kg/m3} 878.640006648665; !- Specific Heat {J/kg-K} -Material, + Material, syn_stucco, !- Name MediumSmooth, !- Roughness 0.3048E-02, !- Thickness {m} @@ -1747,7 +1744,7 @@ Material, 400, !- Density {kg/m3} 878.640006648665; !- Specific Heat {J/kg-K} -Material, + Material, Drywall_1/2in, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1755,7 +1752,7 @@ Material, 800.922646044499, !- Density {kg/m3} 1087.84000823168; !- Specific Heat {J/kg-K} -Material, + Material, OSB_5/8in, !- Name MediumSmooth, !- Roughness 0.015875032180756, !- Thickness {m} @@ -1763,7 +1760,7 @@ Material, 544.627399310259, !- Density {kg/m3} 1213.36000918149; !- Specific Heat {J/kg-K} -Material, + Material, OSB_7/16in, !- Name MediumSmooth, !- Roughness 0.0111125, !- Thickness {m} @@ -1771,7 +1768,7 @@ Material, 544.627399310259, !- Density {kg/m3} 1213.36000918149; !- Specific Heat {J/kg-K} -Material, + Material, Blown_R30, !- Name MediumRough, !- Roughness 0.212598430964684, !- Thickness {m} @@ -1779,7 +1776,7 @@ Material, 9.61107175253399, !- Density {kg/m3} 836.800006332062; !- Specific Heat {J/kg-K} -Material, + Material, Blown_R30_top, !- Name MediumRough, !- Roughness 0.117348237880148, !- Thickness {m} @@ -1790,7 +1787,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Plywood_3/4in, !- Name Rough, !- Roughness 0.01905, !- Thickness {m} @@ -1801,7 +1798,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Batt_R19, !- Name MediumRough, !- Roughness 2.54000514892096E-02, !- Thickness {m} @@ -1812,9 +1809,9 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Lumber_2x4, !- Name - Rough , !- Roughness + Rough, !- Roughness 0.0890016, !- Thickness {m} 0.1154577, !- Conductivity {W/m-K} 512.64, !- Density {kg/m3} @@ -1823,7 +1820,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Carpet_n_pad, !- Name MediumSmooth, !- Roughness 2.54000514892096E-02, !- Thickness {m} @@ -1834,7 +1831,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, Batt_R13, !- Name MediumRough, !- Roughness 0.0889, !- Thickness {m} @@ -1845,7 +1842,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, OSB_1/2in, !- Name MediumSmooth, !- Roughness 1.27000257446048E-02, !- Thickness {m} @@ -1856,7 +1853,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, soil_12in, !- Name Rough, !- Roughness 0.3048, !- Thickness {m} @@ -1867,7 +1864,7 @@ Material, 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -Material, + Material, door_const, !- Name Smooth, !- Roughness 0.0422695734864227, !- Thickness {m} @@ -1875,7 +1872,7 @@ Material, 512.64, !- Density {kg/m3} 767.58; !- Specific Heat {J/kg-K} -Material, + Material, Gyp_board_1/2in, !- Name Rough, !- Roughness 0.01271016, !- Thickness {m} @@ -1886,7 +1883,7 @@ Material, 0.4, !- Solar Absorptance 0.1; !- Visible Absorptance -Material, + Material, Std Wood 6inch, !- Name MediumSmooth, !- Roughness 0.15, !- Thickness {m} @@ -1897,7 +1894,7 @@ Material, 0.7000000, !- Solar Absorptance 0.7000000; !- Visible Absorptance -Material, + Material, Pipe Insulation, !- Name VeryRough, !- Roughness 0.0127032520325203, !- Thickness {m} @@ -1908,52 +1905,48 @@ Material, 0.5, !- Solar Absorptance 0.5; !- Visible Absorptance - !- =========== ALL OBJECTS IN CLASS: MATERIAL:NOMASS =========== -Material:NoMass, + Material:NoMass, Manf_wall_airgap, !- Name Smooth, !- Roughness 0.12; !- Thermal Resistance {m2-K/W} -Material:NoMass, + Material:NoMass, Bldg_paper_felt, !- Name Smooth, !- Roughness 1.05666113069662E-02; !- Thermal Resistance {m2-K/W} -Material:NoMass, + Material:NoMass, R_high, !- Name MediumRough, !- Roughness 177; !- Thermal Resistance {m2-K/W} - !- =========== ALL OBJECTS IN CLASS: MATERIAL:AIRGAP =========== -Material:AirGap, + Material:AirGap, Air_4_in_vert, !- Name 0.158499169604493; !- Thermal Resistance {m2-K/W} -Material:AirGap, + Material:AirGap, 3/4in_air_space, !- Name 0.08513; !- Thermal Resistance {m2-K/W} -Material:AirGap, + Material:AirGap, 3/4in_Reflective_air_space, !- Name 0.246554; !- Thermal Resistance {m2-K/W} - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM =========== -WindowMaterial:SimpleGlazingSystem, + WindowMaterial:SimpleGlazingSystem, Glass, !- Name 1.70358, !- U-Factor {W/m2-K} 0.3344, !- Solar Heat Gain Coefficient 0.88; !- Visible Transmittance - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:GLAZING =========== -WindowMaterial:Glazing, + WindowMaterial:Glazing, Clear Acrylic Plastic, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -1969,7 +1962,7 @@ WindowMaterial:Glazing, 0.90, !- Back Side Infrared Hemispherical Emissivity 0.90; !- Conductivity {W/m-K} -WindowMaterial:Glazing, + WindowMaterial:Glazing, Diffusing Acrylic Plastic, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -1985,10 +1978,9 @@ WindowMaterial:Glazing, 0.90, !- Back Side Infrared Hemispherical Emissivity 0.90; !- Conductivity {W/m-K} - !- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:BLIND =========== -WindowMaterial:Blind, + WindowMaterial:Blind, int_blind, !- Name Horizontal, !- Slat Orientation 0.025, !- Slat Width {m} @@ -2019,10 +2011,9 @@ WindowMaterial:Blind, , !- Minimum Slat Angle {deg} ; !- Maximum Slat Angle {deg} - !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== -Construction, + Construction, Exterior Wall, !- Name syn_stucco, !- Outside Layer sheathing_consol_layer, !- Layer 2 @@ -2030,75 +2021,75 @@ Construction, wall_consol_layer, !- Layer 4 Drywall_1/2in; !- Layer 5 -Construction, + Construction, InteriorFurnishings, !- Name Std Wood 6inch; !- Outside Layer -Construction, + Construction, ceiling-floor-layer, !- Name Lumber_2x4; !- Outside Layer -Construction, + Construction, Exterior Floor, !- Name floor_consol_layer, !- Outside Layer Plywood_3/4in, !- Layer 2 Carpet_n_pad; !- Layer 3 -Construction, + Construction, Interior Floor, !- Name Plywood_3/4in, !- Outside Layer Carpet_n_pad; !- Layer 2 -Construction, + Construction, Interior Ceiling, !- Name ceil_consol_layer, !- Outside Layer Drywall_1/2in; !- Layer 2 -Construction, + Construction, attic floor, !- Name Drywall_1/2in, !- Outside Layer ceil_consol_layer; !- Layer 2 -Construction, + Construction, fndn_roof, !- Name Carpet_n_pad, !- Outside Layer Plywood_3/4in, !- Layer 2 ceil_consol_layer; !- Layer 3 -Construction, + Construction, interiorwall, !- Name Drywall_1/2in, !- Outside Layer OSB_5/8in, !- Layer 2 Drywall_1/2in; !- Layer 3 -Construction, + Construction, Interior Wall, !- Name Drywall_1/2in, !- Outside Layer Air_4_in_vert, !- Layer 2 Drywall_1/2in; !- Layer 3 -Construction, + Construction, Exterior Roof, !- Name Asphalt_shingle, !- Outside Layer OSB_1/2in; !- Layer 2 -Construction, + Construction, Exterior Window, !- Name Glass; !- Outside Layer -Construction, + Construction, Interior Window, !- Name Glass; !- Outside Layer -Construction, + Construction, Exterior Door, !- Name door_const; !- Outside Layer -Construction, + Construction, Interior Door, !- Name door_const; !- Outside Layer -Construction, + Construction, Gable_end, !- Name cement_stucco, !- Outside Layer Bldg_paper_felt, !- Layer 2 @@ -2106,346 +2097,375 @@ Construction, Air_4_in_vert, !- Layer 4 Drywall_1/2in; !- Layer 5 -Construction, + Construction, crawl_floor, !- Name R_high, !- Outside Layer soil_12in; !- Layer 2 -Construction, + Construction, window_w_blinds, !- Name Glass, !- Outside Layer int_blind; !- Layer 2 -Construction, + Construction, Insulated Pipe, !- Name Pipe Insulation, !- Outside Layer CopperPipe; !- Layer 2 -Construction, + Construction, Plain Pipe, !- Name CopperPipe; !- Outside Layer -Construction, + Construction, TDD Pipe, !- Name Very High Reflectivity Surface; !- Outside Layer -Construction, + Construction, TDD Dome, !- Name Clear Acrylic Plastic; !- Outside Layer -Construction, + Construction, TDD Diffuser, !- Name Diffusing Acrylic Plastic; !- Outside Layer - !- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES =========== -GlobalGeometryRules, + GlobalGeometryRules, LowerLeftCorner, !- Starting Vertex Position Counterclockwise, !- Vertex Entry Direction Relative; !- Coordinate System - !- =========== ALL OBJECTS IN CLASS: ZONE =========== -Zone, + Zone, living_unit1, !- Name 0.0, !- Direction of Relative North {deg} - 0.0, 0.0, 0.0, !- X,Y,Z {m} + 0.0, !- X Origin {m} + 0.0, !- Y Origin {m} + 0.0, !- Z Origin {m} , !- Type 1; !- Multiplier -Zone, + Zone, attic_unit1, !- Name 0.0, !- Direction of Relative North {deg} - 0.0, 0.0, 0.0, !- X,Y,Z {m} + 0.0, !- X Origin {m} + 0.0, !- Y Origin {m} + 0.0, !- Z Origin {m} , !- Type 1; !- Multiplier - !- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED =========== + !- X,Y,Z 2 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Inter zone floor 1, !- Name Floor, !- Surface Type Interior Floor, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 2.60156341463415, !- X,Y,Z 1 {m} - 0, 9.09981820971244, 2.60156341463415, + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, !- X,Y,Z 3 {m} - 12.1330909462833, 0, 2.60156341463415; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, ceiling_unit1, !- Name Ceiling, !- Surface Type Interior Ceiling, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition attic_unit1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 5.19302682926829, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 5.19302682926829, + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 5.19302682926829; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_front_unit1, !- Name Roof, !- Surface Type Exterior Roof, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 5.19302682926829, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 5.19302682926829, + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,4.54990910485622,6.6995631975537, !- X,Y,Z ==> Vertex 3 {m} + 0,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537, !- X,Y,Z 3 {m} - 0, 4.54990910485622, 6.6995631975537; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_back_unit1, !- Name Roof, !- Surface Type Exterior Roof, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 5.19302682926829, + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 0,4.54990910485622,6.6995631975537, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 1 {m} - 0, 9.09981820971244, 5.19302682926829, !- X,Y,Z 2 {m} - 0, 4.54990910485622, 6.6995631975537, - !- X,Y,Z 3 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_right_unit1, !- Name Wall, !- Surface Type Gable_end, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 3, !- Number of Vertices - 12.1330909462833, 0, 5.19302682926829, - !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 2 {m} - 12.1330909462833, 4.54990910485622, 6.6995631975537; + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 3 {m} + !- X,Y,Z 3 {m} + !- X,Y,Z 1 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Roof_left_unit1, !- Name Wall, !- Surface Type Gable_end, !- Construction Name attic_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 3, !- Number of Vertices - 0, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 1 {m} - 0, 0, 5.19302682926829, !- X,Y,Z 2 {m} - 0, 4.54990910485622, 6.6995631975537; + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 1 {m} + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 2 {m} + 0,4.54990910485622,6.6995631975537; !- X,Y,Z ==> Vertex 3 {m} + + !- X,Y,Z 3 {m} !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldf_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 0.0101, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 0.0101, !- X,Y,Z 2 {m} - 12.1330909462833, 0, 2.60156341463415, + 0,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 0,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 2 {m} !- X,Y,Z 3 {m} - 0, 0, 2.60156341463415; !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdr_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 0, 0.0101, !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 3 {m} - 12.1330909462833, 0, 2.60156341463415; + 12.1330909462833,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldb_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 1 {m} - 0, 9.09981820971244, 0.0101, !- X,Y,Z 2 {m} - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 3 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415; + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,9.09981820971244,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdl_1.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 9.09981820971244, 0.0101, !- X,Y,Z 1 {m} - 0, 0, 0.0101, !- X,Y,Z 2 {m} - 0, 0, 2.60156341463415, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 2.60156341463415; + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,2.60156341463415; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 2 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldf_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 2.60156341463415, !- X,Y,Z 1 {m} - 12.1330909462833, 0, 2.60156341463415, + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,0,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,0,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 1 {m} !- X,Y,Z 2 {m} - 12.1330909462833, 0, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 0, 5.19302682926829; !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdr_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 0, 2.60156341463415, + 12.1330909462833,0,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} !- X,Y,Z 1 {m} - 12.1330909462833, 9.09981820971244, 2.60156341463415, !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829, !- X,Y,Z 3 {m} - 12.1330909462833, 0, 5.19302682926829; - !- X,Y,Z 4 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_ldb_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 12.1330909462833, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 1 {m} - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 2 {m} - 0, 9.09981820971244, 5.19302682926829, - !- X,Y,Z 3 {m} - 12.1330909462833, 9.09981820971244, 5.19302682926829; + 12.1330909462833,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 0,9.09981820971244,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 1 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Wall_sdl_2.unit1, !- Name Wall, !- Surface Type Exterior Wall, !- Construction Name living_unit1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground 4, !- Number of Vertices - 0, 9.09981820971244, 2.60156341463415, - !- X,Y,Z 1 {m} - 0, 0, 2.60156341463415, !- X,Y,Z 2 {m} - 0, 0, 5.19302682926829, !- X,Y,Z 3 {m} - 0, 9.09981820971244, 5.19302682926829; + 0,9.09981820971244,2.60156341463415, !- X,Y,Z ==> Vertex 1 {m} + 0,0,2.60156341463415, !- X,Y,Z ==> Vertex 2 {m} + 0,0,5.19302682926829, !- X,Y,Z ==> Vertex 3 {m} + 0,9.09981820971244,5.19302682926829; !- X,Y,Z ==> Vertex 4 {m} + !- X,Y,Z 4 {m} + !- X,Y,Z 3 {m} -BuildingSurface:Detailed, + BuildingSurface:Detailed, Floor_unit1, !- Name Floor, !- Surface Type Interior Floor, !- Construction Name living_unit1, !- Zone Name + , !- Space Name GroundSlabPreprocessorAverage, !- Outside Boundary Condition surfPropOthSdCoefSlabAverage, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0.0, !- View Factor to Ground 4, !- Number of Vertices - 0, 0, 0.0101, !- X,Y,Z 1 {m} - 0, 9.09981820971244, 0.0101, !- X,Y,Z 2 {m} - 12.1330909462833, 9.09981820971244, 0.0101, - !- X,Y,Z 3 {m} - 12.1330909462833, 0, 0.0101; !- X,Y,Z 4 {m} - + 0,0,0.0101, !- X,Y,Z ==> Vertex 1 {m} + 0,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 2 {m} + 12.1330909462833,9.09981820971244,0.0101, !- X,Y,Z ==> Vertex 3 {m} + 12.1330909462833,0,0.0101; !- X,Y,Z ==> Vertex 4 {m} !- =========== ALL OBJECTS IN CLASS: WINDOW =========== -Window, + Window, Window_ldf_1.unit1, !- Name Exterior Window, !- Construction Name Wall_ldf_1.unit1, !- Building Surface Name @@ -2456,7 +2476,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldb_1.unit1, !- Name Exterior Window, !- Construction Name Wall_ldb_1.unit1, !- Building Surface Name @@ -2467,7 +2487,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdr_1.unit1, !- Name Exterior Window, !- Construction Name Wall_sdr_1.unit1, !- Building Surface Name @@ -2478,7 +2498,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdl_1.unit1, !- Name Exterior Window, !- Construction Name Wall_sdl_1.unit1, !- Building Surface Name @@ -2489,7 +2509,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldf_2.unit1, !- Name Exterior Window, !- Construction Name Wall_ldf_2.unit1, !- Building Surface Name @@ -2500,7 +2520,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_ldb_2.unit1, !- Name Exterior Window, !- Construction Name Wall_ldb_2.unit1, !- Building Surface Name @@ -2511,7 +2531,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdr_2.unit1, !- Name Exterior Window, !- Construction Name Wall_sdr_2.unit1, !- Building Surface Name @@ -2522,7 +2542,7 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} -Window, + Window, Window_sdl_2.unit1, !- Name Exterior Window, !- Construction Name Wall_sdl_2.unit1, !- Building Surface Name @@ -2533,10 +2553,9 @@ Window, 2.70719591738945, !- Length {m} 1.52439024390244; !- Height {m} - !- =========== ALL OBJECTS IN CLASS: DOOR =========== -Door, + Door, Door_ldb_unit1, !- Name Exterior Door, !- Construction Name Wall_ldb_1.unit1, !- Building Surface Name @@ -2546,10 +2565,9 @@ Door, 1.74190122145513, !- Length {m} 2.13414634146341; !- Height {m} - !- =========== ALL OBJECTS IN CLASS: WINDOWSHADINGCONTROL =========== -WindowShadingControl, + WindowShadingControl, Shades-living_unit1, !- Name living_unit1, !- Zone Name 1, !- Shading Control Sequence Number @@ -2575,19 +2593,18 @@ WindowShadingControl, Window_sdr_2.unit1, !- Fenestration Surface 7 Name Window_sdl_2.unit1; !- Fenestration Surface 8 Name - !- =========== ALL OBJECTS IN CLASS: INTERNALMASS =========== -InternalMass, + InternalMass, Internalmass_unit1, !- Name InteriorFurnishings, !- Construction Name living_unit1, !- Zone or ZoneList Name - 9.89591078066915; !- Surface Area {m2} - + , !- Surface Area {m2} + 9.89591078066915; !- Extended Field !- =========== ALL OBJECTS IN CLASS: SHADING:OVERHANG =========== -Shading:Overhang, + Shading:Overhang, Overhang_sdr_1.unit1, !- Name Window_sdr_1.unit1, !- Window or Door Name 0, !- Height above Window or Door {m} @@ -2596,7 +2613,7 @@ Shading:Overhang, 0, !- Right extension from Window/Door Width {m} 0.0152439024390244; !- Depth {m} -Shading:Overhang, + Shading:Overhang, Overhang_sdr_2.unit1, !- Name Window_sdr_2.unit1, !- Window or Door Name 0, !- Height above Window or Door {m} @@ -2605,18 +2622,16 @@ Shading:Overhang, 0, !- Right extension from Window/Door Width {m} 0.0152439024390244; !- Depth {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:CONTROL =========== -GroundHeatTransfer:Control, + GroundHeatTransfer:Control, gtp_control, !- Name no, !- Run Basement Preprocessor yes; !- Run Slab Preprocessor - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:MATERIALS =========== -GroundHeatTransfer:Slab:Materials, + GroundHeatTransfer:Slab:Materials, 2, !- NMAT: Number of materials 0.16, !- ALBEDO: Surface Albedo: No Snow 0.4, !- ALBEDO: Surface Albedo: Snow @@ -2627,10 +2642,9 @@ GroundHeatTransfer:Slab:Materials, 6, !- HIN: Indoor HConv: Downward Flow {W/m2-K} 9; !- HIN: Indoor HConv: Upward {W/m2-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:MATLPROPS =========== -GroundHeatTransfer:Slab:MatlProps, + GroundHeatTransfer:Slab:MatlProps, 2300, !- RHO: Slab Material density {kg/m3} 1200, !- RHO: Soil Density {kg/m3} 650, !- CP: Slab CP {J/kg-K} @@ -2638,19 +2652,17 @@ GroundHeatTransfer:Slab:MatlProps, 0.9, !- TCON: Slab k {W/m-K} 1; !- TCON: Soil k {W/m-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:BOUNDCONDS =========== -GroundHeatTransfer:Slab:BoundConds, + GroundHeatTransfer:Slab:BoundConds, FALSE, !- EVTR: Is surface evapotranspiration modeled TRUE, !- FIXBC: is the lower boundary at a fixed temperature 10, !- TDEEPin {C} FALSE; !- USRHflag: Is the ground surface h specified by the user? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:BLDGPROPS =========== -GroundHeatTransfer:Slab:BldgProps, + GroundHeatTransfer:Slab:BldgProps, 10, !- IYRS: Number of years to iterate 0, !- Shape: Slab shape 4, !- HBLDG: Building height {m} @@ -2669,36 +2681,32 @@ GroundHeatTransfer:Slab:BldgProps, 0, !- TINAmp: Daily Indoor sine wave variation amplitude {deltaC} 0.1; !- ConvTol: Convergence Tolerance - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:INSULATION =========== -GroundHeatTransfer:Slab:Insulation, + GroundHeatTransfer:Slab:Insulation, 0, !- RINS: R value of under slab insulation {m2-K/W} 0, !- DINS: Width of strip of under slab insulation {m} 1.76099742894375, !- RVINS: R value of vertical insulation {m2-K/W} 0.6, !- ZVINS: Depth of vertical insulation {m} 1; !- IVINS: Flag: Is there vertical insulation - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:SLAB:EQUIVALENTSLAB =========== -GroundHeatTransfer:Slab:EquivalentSlab, + GroundHeatTransfer:Slab:EquivalentSlab, 2.59994805991784, !- APRatio: The area to perimeter ratio for this slab {m} 0.1, !- SLABDEPTH: Thickness of slab on grade {m} 15, !- CLEARANCE: Distance from edge of slab to domain edge {m} 15; !- ZCLEARANCE: Distance from bottom of slab to domain bottom {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:SIMPARAMETERS =========== -GroundHeatTransfer:Basement:SimParameters, + GroundHeatTransfer:Basement:SimParameters, 0.1, !- F: Multiplier for the ADI solution 15; !- IYRS: Maximum number of yearly iterations: - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:MATLPROPS =========== -GroundHeatTransfer:Basement:MatlProps, + GroundHeatTransfer:Basement:MatlProps, 6, !- NMAT: Number of materials in this domain 2243, !- Density for Foundation Wall {kg/m3} 2243, !- density for Floor Slab {kg/m3} @@ -2719,17 +2727,15 @@ GroundHeatTransfer:Basement:MatlProps, 1.9, !- thermal conductivity for gravel {W/m-K} 0.12; !- thermal conductivity for wood {W/m-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:INSULATION =========== -GroundHeatTransfer:Basement:Insulation, + GroundHeatTransfer:Basement:Insulation, 1.76099742894375e-05, !- REXT: R Value of any exterior insulation {m2-K/W} True; !- INSFULL: Flag: Is the wall fully insulated? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:SURFACEPROPS =========== -GroundHeatTransfer:Basement:SurfaceProps, + GroundHeatTransfer:Basement:SurfaceProps, 0.16, !- ALBEDO: Surface albedo for No snow conditions 0.4, !- ALBEDO: Surface albedo for snow conditions 0.94, !- EPSLN: Surface emissivity No Snow @@ -2738,20 +2744,18 @@ GroundHeatTransfer:Basement:SurfaceProps, 0.25, !- VEGHT: Surface roughness Snow conditions {cm} False; !- PET: Flag, Potential evapotranspiration on? - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:BLDGDATA =========== -GroundHeatTransfer:Basement:BldgData, + GroundHeatTransfer:Basement:BldgData, 0.200000006162114, !- DWALL: Wall thickness {m} 0.243828108701145, !- DSLAB: Floor slab thickness {m} 0.3, !- DGRAVXY: Width of gravel pit beside basement wall {m} 0.2, !- DGRAVZN: Gravel depth extending above the floor slab {m} 0.1; !- DGRAVZP: Gravel depth below the floor slab {m} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:INTERIOR =========== -GroundHeatTransfer:Basement:Interior, + GroundHeatTransfer:Basement:Interior, True, !- COND: Flag: Is the basement conditioned? 0.92, !- HIN: Downward convection only heat transfer coefficient {W/m2-K} 4.04, !- HIN: Upward convection only heat transfer coefficient {W/m2-K} @@ -2760,10 +2764,9 @@ GroundHeatTransfer:Basement:Interior, 9.26, !- HIN: Upward combined (convection and radiation) heat transfer coefficient {W/m2-K} 8.29; !- HIN: Horizontal combined (convection and radiation) heat transfer coefficient {W/m2-K} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:COMBLDG =========== -GroundHeatTransfer:Basement:ComBldg, + GroundHeatTransfer:Basement:ComBldg, 21, !- January average temperature {C} 21, !- February average temperature {C} 21, !- March average temperature {C} @@ -2778,25 +2781,22 @@ GroundHeatTransfer:Basement:ComBldg, 21, !- December average temperature {C} 21; !- Daily variation sine wave amplitude {deltaC} - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:EQUIVSLAB =========== -GroundHeatTransfer:Basement:EquivSlab, + GroundHeatTransfer:Basement:EquivSlab, 2.59994805991784, !- APRatio: The area to perimeter ratio for this slab {m} True; !- EquivSizing: Flag - !- =========== ALL OBJECTS IN CLASS: GROUNDHEATTRANSFER:BASEMENT:EQUIVAUTOGRID =========== -GroundHeatTransfer:Basement:EquivAutoGrid, + GroundHeatTransfer:Basement:EquivAutoGrid, 15, !- CLEARANCE: Distance from outside of wall to edge of 3-D ground domain {m} 0.1, !- SlabDepth: Thickness of the floor slab {m} 1.21914054350572; !- BaseDepth: Depth of the basement wall below grade {m} - !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== -People, + People, people_unit1, !- Name living_unit1, !- Zone or ZoneList Name Occupancy, !- Number of People Schedule Name @@ -2811,10 +2811,9 @@ People, No, !- Enable ASHRAE 55 Comfort Warnings ZoneAveraged; !- Mean Radiant Temperature Calculation Type - !- =========== ALL OBJECTS IN CLASS: LIGHTS =========== -Lights, + Lights, Living Hardwired Lighting1, !- Name living_unit1, !- Zone or ZoneList Name InteriorLightingHE, !- Schedule Name @@ -2827,7 +2826,7 @@ Lights, 0.2, !- Fraction Visible 0; !- Fraction Replaceable -Lights, + Lights, Living Plug-in Lighting1,!- Name living_unit1, !- Zone or ZoneList Name InteriorLightingHE, !- Schedule Name @@ -2840,10 +2839,9 @@ Lights, 0.2, !- Fraction Visible 0; !- Fraction Replaceable - !- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== -ElectricEquipment, + ElectricEquipment, dishwasher1, !- Name living_unit1, !- Zone or ZoneList Name DishWasher, !- Schedule Name @@ -2856,7 +2854,7 @@ ElectricEquipment, 0.25, !- Fraction Lost dishwasher; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, refrigerator1, !- Name living_unit1, !- Zone or ZoneList Name Refrigerator, !- Schedule Name @@ -2869,7 +2867,7 @@ ElectricEquipment, 0, !- Fraction Lost refrigerator; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, clotheswasher1, !- Name living_unit1, !- Zone or ZoneList Name ClothesWasher, !- Schedule Name @@ -2882,7 +2880,7 @@ ElectricEquipment, 0.2, !- Fraction Lost clotheswasher; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_dryer1, !- Name living_unit1, !- Zone or ZoneList Name ClothesDryer, !- Schedule Name @@ -2895,7 +2893,7 @@ ElectricEquipment, 0.8, !- Fraction Lost electric_dryer; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_range1, !- Name living_unit1, !- Zone or ZoneList Name CookingRange, !- Schedule Name @@ -2908,7 +2906,7 @@ ElectricEquipment, 0.3, !- Fraction Lost electric_range; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, television1, !- Name living_unit1, !- Zone or ZoneList Name InteriorLighting, !- Schedule Name @@ -2921,7 +2919,7 @@ ElectricEquipment, 0, !- Fraction Lost television; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, electric_mels1, !- Name living_unit1, !- Zone or ZoneList Name MiscPlugLoad, !- Schedule Name @@ -2934,7 +2932,7 @@ ElectricEquipment, 0.25, !- Fraction Lost electric_mels; !- End-Use Subcategory -ElectricEquipment, + ElectricEquipment, IECC_Adj1, !- Name living_unit1, !- Zone or ZoneList Name MiscPlugLoad, !- Schedule Name @@ -2947,10 +2945,9 @@ ElectricEquipment, 0.251045347957769, !- Fraction Lost IECC_adj; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: ZONEVENTILATION:DESIGNFLOWRATE =========== -ZoneVentilation:DesignFlowRate, + ZoneVentilation:DesignFlowRate, Ventilation_unit1, !- Name living_unit1, !- Zone or ZoneList Name always_avail, !- Schedule Name @@ -2978,10 +2975,9 @@ ZoneVentilation:DesignFlowRate, , !- Maximum Outdoor Temperature Schedule Name 40; !- Maximum Wind Speed {m/s} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:SIMULATIONCONTROL =========== -AirflowNetwork:SimulationControl, + AirflowNetwork:SimulationControl, House AirflowNetwork, !- Name MultizoneWithDistribution, !- AirflowNetwork Control SurfaceAverageCalculation, !- Wind Pressure Coefficient Type @@ -2994,14 +2990,13 @@ AirflowNetwork:SimulationControl, 0, !- Convergence Acceleration Limit {dimensionless} 0, !- Azimuth Angle of Long Axis of Building {deg} 0.75, !- Ratio of Building Width Along Short Axis to Width Along Long Axis - , - , - Yes; - + , !- Height Dependence of External Node Temperature + , !- Solver + Yes; !- Allow Unsupported Zone Equipment !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:ZONE =========== -AirflowNetwork:MultiZone:Zone, + AirflowNetwork:MultiZone:Zone, living_unit1, !- Zone Name NoVent, !- Ventilation Control Mode , !- Ventilation Control Zone Temperature Setpoint Schedule Name @@ -3011,7 +3006,7 @@ AirflowNetwork:MultiZone:Zone, 0.0, !- Indoor and Outdoor Enthalpy Difference Lower Limit For Maximum Venting Open Factor {deltaJ/kg} 300000.0; !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} -AirflowNetwork:MultiZone:Zone, + AirflowNetwork:MultiZone:Zone, attic_unit1, !- Zone Name Constant, !- Ventilation Control Mode , !- Ventilation Control Zone Temperature Setpoint Schedule Name @@ -3022,10 +3017,9 @@ AirflowNetwork:MultiZone:Zone, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:SURFACE =========== -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_front_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3039,7 +3033,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_back_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3053,7 +3047,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_right_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3067,7 +3061,7 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Roof_left_unit1, !- Surface Name AtticVent, !- Leakage Component Name , !- External Node Name @@ -3081,237 +3075,232 @@ AirflowNetwork:MultiZone:Surface, 300000, !- Indoor and Outdoor Enthalpy Difference Upper Limit for Minimum Venting Open Factor {deltaJ/kg} inf_sch; !- Venting Availability Schedule Name -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, ceiling_unit1, !- Surface Name ZoneLeak_Ceiling, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldf_1.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldb_1.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdl_1.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_1.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldf_2.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1.0, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_ldb_2.unit1, !- Surface Name ZoneLeak_LongWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_2.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdl_2.unit1, !- Surface Name ZoneLeak_ShortWall, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} NoVent; !- Ventilation Control Mode -AirflowNetwork:MultiZone:Surface, + AirflowNetwork:MultiZone:Surface, Wall_sdr_2.unit1, !- Surface Name Zone Exhaust Fan_unit1, !- Leakage Component Name , !- External Node Name 1, !- Window/Door Opening Factor, or Crack Factor {dimensionless} Constant; !- Ventilation Control Mode - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:SURFACE:EFFECTIVELEAKAGEAREA =========== -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_LongWall, !- Name 0.00340012477060435, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_ShortWall, !- Name 0.00255009357795326, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_Ceiling, !- Name 0.011939399618037, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, ZoneLeak_Floor, !- Name 0.00001, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, AtticVent, !- Name 0.37, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, + AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea, CrawlVent, !- Name 0.37, !- Effective Leakage Area {m2} 1.15, !- Discharge Coefficient {dimensionless} 4, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:MULTIZONE:COMPONENT:ZONEEXHAUSTFAN =========== -AirflowNetwork:MultiZone:Component:ZoneExhaustFan, + AirflowNetwork:MultiZone:Component:ZoneExhaustFan, Zone Exhaust Fan_unit1, !- Name 0.01, !- Air Mass Flow Coefficient When the Zone Exhaust Fan is Off at Reference Conditions {kg/s} 0.667; !- Air Mass Flow Exponent When the Zone Exhaust Fan is Off {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:NODE =========== -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, EquipmentInletNode_unit1,!- Name Zone Equipment Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, SplitterNode_unit1, !- Name , !- Component Name or Node Name AirLoopHVAC:ZoneSplitter,!- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyNode_unit1, !- Name , !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyRegisterNode_unit1 ATInlet, !- Name Zone Inlet Node_unit1 ATInlet, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneSupplyRegisterNode_unit1, !- Name Zone Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneOutletNode_unit1, !- Name Zone Outlet node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, ZoneReturnNode_unit1, !- Name , !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MixerNode_unit1, !- Name , !- Component Name or Node Name AirLoopHVAC:ZoneMixer, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MainReturnNode_unit1, !- Name Return Air Mixer Outlet_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, MainInletNode_unit1, !- Name Air Loop Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, FanOutletNode_unit1, !- Name Cooling Coil Air Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, HeatingInletNode_unit1, !- Name Heating Coil Air Inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, HeatingOutletNode_unit1, !- Name Air Loop Outlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} -AirflowNetwork:Distribution:Node, + AirflowNetwork:Distribution:Node, SuppHeatingInletNode_unit1, !- Name Supp Heating coil air inlet Node_unit1, !- Component Name or Node Name Other, !- Component Object Type or Node Type 3.0; !- Node Height {m} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:LEAKAGERATIO =========== -AirflowNetwork:Distribution:Component:LeakageRatio, + AirflowNetwork:Distribution:Component:LeakageRatio, SupplyLeak, !- Name 0.0396, !- Effective Leakage Ratio {dimensionless} 0.56034, !- Maximum Flow Rate {m3/s} 25, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} -AirflowNetwork:Distribution:Component:LeakageRatio, + AirflowNetwork:Distribution:Component:LeakageRatio, ReturnLeak, !- Name 0.0396, !- Effective Leakage Ratio {dimensionless} 0.56034, !- Maximum Flow Rate {m3/s} 25, !- Reference Pressure Difference {Pa} 0.65; !- Air Mass Flow Exponent {dimensionless} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:DUCT =========== -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, MainTrunk_unit1, !- Name 2.0, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3321,7 +3310,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneSupply_unit1, !- Name 15, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3331,7 +3320,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneSupplyLink2_unit1 ATInlet Duct, !- Name 0.0001, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3341,7 +3330,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneReturn_unit1, !- Name 8.0, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3351,7 +3340,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, ZoneConnectionDuct_unit1,!- Name 0.1, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3361,7 +3350,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, MainReturn_unit1, !- Name 1.0, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3371,7 +3360,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, AirLoopReturn_unit1, !- Name 0.1, !- Duct Length {m} 0.529430338938287, !- Hydraulic Diameter {m} @@ -3381,7 +3370,7 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} -AirflowNetwork:Distribution:Component:Duct, + AirflowNetwork:Distribution:Component:Duct, AirLoopSupply_unit1, !- Name 0.1, !- Duct Length {m} 0.591921113608382, !- Hydraulic Diameter {m} @@ -3391,177 +3380,171 @@ AirflowNetwork:Distribution:Component:Duct, 0.709825, !- Heat Transmittance Coefficient (U-Factor) for Duct Wall Construction {W/m2-K} 0.0000001; !- Overall Moisture Transmittance Coefficient from Air to Air {kg/m2} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:FAN =========== -AirflowNetwork:Distribution:Component:Fan, + AirflowNetwork:Distribution:Component:Fan, Supply Fan_unit1, !- Fan Name Fan:OnOff; !- Supply Fan Object Type - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:COMPONENT:COIL =========== -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, DX Cooling Coil_unit1, !- Coil Name Coil:Cooling:DX:SingleSpeed, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, Main DX Heating Coil_unit1, !- Coil Name Coil:Heating:DX:Singlespeed, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} -AirflowNetwork:Distribution:Component:Coil, + AirflowNetwork:Distribution:Component:Coil, Supp Heating Coil_unit1, !- Coil Name Coil:Heating:Electric, !- Coil Object Type 0.1, !- Air Path Length {m} 1.000; !- Air Path Hydraulic Diameter {m} - !- =========== ALL OBJECTS IN CLASS: AIRFLOWNETWORK:DISTRIBUTION:LINKAGE =========== -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, MainSupplyLink_unit1, !- Name EquipmentInletNode_unit1,!- Node 1 Name SplitterNode_unit1, !- Node 2 Name MainTrunk_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink_unit1, !- Name SplitterNode_unit1, !- Node 1 Name ZoneSupplyNode_unit1, !- Node 2 Name ZoneSupply_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink2_unit1 ATInlet, !- Name ZoneSupplyRegisterNode_unit1 ATInlet, !- Node 1 Name ZoneSupplyRegisterNode_unit1, !- Node 2 Name ZoneSupplyLink2_unit1 ATInlet Duct, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLink2_unit1, !- Name ZoneSupplyNode_unit1, !- Node 1 Name ZoneSupplyRegisterNode_unit1 ATInlet, !- Node 2 Name ZoneSupply_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyConnectionLink_unit1, !- Name ZoneSupplyRegisterNode_unit1, !- Node 1 Name living_unit1, !- Node 2 Name ZoneConnectionDuct_unit1;!- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnConnectionLink_unit1, !- Name living_unit1, !- Node 1 Name ZoneOutletNode_unit1, !- Node 2 Name ZoneConnectionDuct_unit1;!- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLink1_unit1, !- Name Zoneoutletnode_unit1, !- Node 1 Name ZoneReturnNode_unit1, !- Node 2 Name ZoneReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLink2_unit1, !- Name ZoneReturnNode_unit1, !- Node 1 Name MixerNode_unit1, !- Node 2 Name ZoneReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, MainReturnLink_unit1, !- Name MixerNode_unit1, !- Node 1 Name MainReturnNode_unit1, !- Node 2 Name MainReturn_unit1, !- Component Name attic_unit1; !- Thermal Zone Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SystemReturnLink_unit1, !- Name MainReturnNode_unit1, !- Node 1 Name MainInletNode_unit1, !- Node 2 Name AirLoopReturn_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SupplyFanLink_unit1, !- Name MainInletNode_unit1, !- Node 1 Name FanOutletNode_unit1, !- Node 2 Name Supply Fan_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, CoolingCoilLink_unit1, !- Name FanOutletNode_unit1, !- Node 1 Name HeatingInletNode_unit1, !- Node 2 Name DX Cooling Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, EquipmentAirLoopLink_unit1, !- Name HeatingOutletNode_unit1, !- Node 1 Name EquipmentInletNode_unit1,!- Node 2 Name AirLoopSupply_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, HeatingCoilLink_unit1, !- Name HeatingInletNode_unit1, !- Node 1 Name SuppHeatingInletNode_unit1, !- Node 2 Name Main DX Heating Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, SuppHeatingCoilLink_unit1, !- Name SuppHeatingInletNode_unit1, !- Node 1 Name HeatingOutletNode_unit1, !- Node 2 Name Supp Heating Coil_unit1; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneSupplyLeakLink_unit1,!- Name ZoneSupplyNode_unit1, !- Node 1 Name attic_unit1, !- Node 2 Name SupplyLeak; !- Component Name -AirflowNetwork:Distribution:Linkage, + AirflowNetwork:Distribution:Linkage, ZoneReturnLeakLink_unit1,!- Name attic_unit1, !- Node 1 Name ZoneReturnNode_unit1, !- Node 2 Name ReturnLeak; !- Component Name - !- =========== ALL OBJECTS IN CLASS: EXTERIOR:LIGHTS =========== -Exterior:Lights, + Exterior:Lights, Exterior-Lights_unit1, !- Name ExteriorLighting, !- Schedule Name 43.2424607481559, !- Design Level {W} , !- Control Option Exterior-Lights; !- End-Use Subcategory -Exterior:Lights, + Exterior:Lights, Garage-Lights_unit1, !- Name InteriorLightingHE, !- Schedule Name 7.16294617434682, !- Design Level {W} , !- Control Option Garage-Lights; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: DESIGNSPECIFICATION:OUTDOORAIR =========== -DesignSpecification:OutdoorAir, + DesignSpecification:OutdoorAir, SZ_DSOA_living_unit1, !- Name Flow/Zone, !- Outdoor Air Method 0, !- Outdoor Air Flow per Person {m3/s-person} , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0283168464628752; !- Outdoor Air Flow per Zone {m3/s} - !- =========== ALL OBJECTS IN CLASS: SIZING:ZONE =========== -Sizing:Zone, + Sizing:Zone, living_unit1, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 12, !- Zone Cooling Design Supply Air Temperature {C} @@ -3590,10 +3573,9 @@ Sizing:Zone, , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} - !- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM =========== -Sizing:System, + Sizing:System, Central System_unit1, !- AirLoop Name Sensible, !- Type of Load to Size On autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -3632,37 +3614,33 @@ Sizing:System, , !- Fraction of Autosized Heating Design Capacity OnOff; !- Central Cooling Capacity Control Method - !- =========== ALL OBJECTS IN CLASS: SIZING:PLANT =========== -Sizing:Plant, + Sizing:Plant, DHW Loop_unit1, !- Plant or Condenser Loop Name Heating, !- Loop Type 48.8888888888889, !- Design Loop Exit Temperature {C} 5.55555555555556; !- Loop Design Temperature Difference {deltaC} - !- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== -ZoneControl:Thermostat, + ZoneControl:Thermostat, Zone Thermostat_unit1, !- Name living_unit1, !- Zone or ZoneList Name zone_control_type, !- Control Type Schedule Name ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type thermostat_living Dual SP Control; !- Control 1 Name - !- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:DUALSETPOINT =========== -ThermostatSetpoint:DualSetpoint, + ThermostatSetpoint:DualSetpoint, thermostat_living Dual SP Control, !- Name heating_sch, !- Heating Setpoint Temperature Schedule Name cooling_sch; !- Cooling Setpoint Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:DEHUMIDIFIER:DX =========== -ZoneHVAC:Dehumidifier:DX, + ZoneHVAC:Dehumidifier:DX, North Zone Dehumidifier, !- Name always_avail, !- Availability Schedule Name Zone3DehumidifierInlet, !- Air Inlet Node Name @@ -3677,10 +3655,9 @@ ZoneHVAC:Dehumidifier:DX, 32.0, !- Maximum Dry-Bulb Temperature for Dehumidifier Operation {C} 0.0; !- Off-Cycle Parasitic Electric Load {W} - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:ENERGYRECOVERYVENTILATOR =========== -ZoneHVAC:EnergyRecoveryVentilator, + ZoneHVAC:EnergyRecoveryVentilator, ERV_unit1, !- Name always_avail, !- Availability Schedule Name OA_Heat_Recovery_Unit1, !- Heat Exchanger Name @@ -3689,29 +3666,26 @@ ZoneHVAC:EnergyRecoveryVentilator, OASupplyFan_unit1, !- Supply Air Fan Name OAExhaustFan_unit1; !- Exhaust Air Fan Name - !- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:CONSTANTVOLUME:NOREHEAT =========== -AirTerminal:SingleDuct:ConstantVolume:NoReheat, + AirTerminal:SingleDuct:ConstantVolume:NoReheat, ZoneDirectAir_unit1, !- Name always_avail, !- Availability Schedule Name Zone Inlet Node_unit1 ATInlet, !- Air Inlet Node Name Zone Inlet Node_unit1, !- Air Outlet Node Name autosize; !- Maximum Air Flow Rate {m3/s} - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:AIRDISTRIBUTIONUNIT =========== -ZoneHVAC:AirDistributionUnit, + ZoneHVAC:AirDistributionUnit, ZoneDirectAir_unit1 ADU, !- Name Zone Inlet Node_unit1, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type ZoneDirectAir_unit1; !- Air Terminal Name - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== -ZoneHVAC:EquipmentList, + ZoneHVAC:EquipmentList, ZoneEquipment_unit1, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type @@ -3743,10 +3717,9 @@ ZoneHVAC:EquipmentList, 3, !- Zone Equipment 5 Cooling Sequence 3; !- Zone Equipment 5 Heating or No-Load Sequence - !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS =========== -ZoneHVAC:EquipmentConnections, + ZoneHVAC:EquipmentConnections, living_unit1, !- Zone Name ZoneEquipment_unit1, !- Zone Conditioning Equipment List Name zone inlet nodes_unit1, !- Zone Air Inlet Node or NodeList Name @@ -3754,10 +3727,9 @@ ZoneHVAC:EquipmentConnections, Zone Node_unit1, !- Zone Air Node Name Zone Outlet Node_unit1; !- Zone Return Air Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: FAN:ONOFF =========== -Fan:OnOff, + Fan:OnOff, Supply Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.50054, !- Fan Total Efficiency @@ -3771,7 +3743,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name General; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, OASupplyFan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3785,7 +3757,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name Ventilation; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, OAExhaustFan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3799,7 +3771,7 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name Ventilation; !- End-Use Subcategory -Fan:OnOff, + Fan:OnOff, Heat Pump Water Heater Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.7, !- Fan Total Efficiency @@ -3813,10 +3785,9 @@ Fan:OnOff, , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name General; !- End-Use Subcategory - !- =========== ALL OBJECTS IN CLASS: FAN:ZONEEXHAUST =========== -Fan:ZoneExhaust, + Fan:ZoneExhaust, Zone Exhaust Fan_unit1, !- Name always_avail, !- Availability Schedule Name 0.6, !- Fan Total Efficiency @@ -3828,10 +3799,9 @@ Fan:ZoneExhaust, , !- Flow Fraction Schedule Name Decoupled; !- System Availability Manager Coupling Mode - !- =========== ALL OBJECTS IN CLASS: COIL:COOLING:DX:SINGLESPEED =========== -Coil:Cooling:DX:SingleSpeed, + Coil:Cooling:DX:SingleSpeed, DX Cooling Coil_unit1, !- Name always_avail, !- Availability Schedule Name autosize, !- Gross Rated Total Cooling Capacity {W} @@ -3847,10 +3817,9 @@ Coil:Cooling:DX:SingleSpeed, HPACCOOLEIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name HPACCOOLPLFFPLR; !- Part Load Fraction Correlation Curve Name - !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:ELECTRIC =========== -Coil:Heating:Electric, + Coil:Heating:Electric, Supp Heating Coil_unit1, !- Name always_avail, !- Availability Schedule Name 1, !- Efficiency @@ -3858,10 +3827,9 @@ Coil:Heating:Electric, Supp Heating Coil Air Inlet Node_unit1, !- Air Inlet Node Name Air Loop Outlet Node_unit1; !- Air Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:DX:SINGLESPEED =========== -Coil:Heating:DX:SingleSpeed, + Coil:Heating:DX:SingleSpeed, Main DX Heating Coil_unit1, !- Name always_avail, !- Availability Schedule Name autosize, !- Gross Rated Heating Capacity {W} @@ -3884,10 +3852,9 @@ Coil:Heating:DX:SingleSpeed, ReverseCycle, !- Defrost Strategy OnDemand; !- Defrost Control - !- =========== ALL OBJECTS IN CLASS: COIL:WATERHEATING:AIRTOWATERHEATPUMP:WRAPPED =========== -Coil:WaterHeating:AirToWaterHeatPump:Wrapped, + Coil:WaterHeating:AirToWaterHeatPump:Wrapped, Heat Pump Water Heater Evaporator_unit1, !- Name 1500, !- Rated Heating Capacity {W} 3.0, !- Rated COP {W/W} @@ -3908,10 +3875,9 @@ Coil:WaterHeating:AirToWaterHeatPump:Wrapped, , !- Heating COP Function of Air Flow Fraction Curve Name HPWH-COP-fPLR; !- Part Load Fraction Correlation Curve Name - !- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== -HeatExchanger:AirToAir:SensibleAndLatent, + HeatExchanger:AirToAir:SensibleAndLatent, OA_Heat_Recovery_Unit1, !- Name always_avail, !- Availability Schedule Name 0.0283168464628752, !- Nominal Supply Air Flow Rate {m3/s} @@ -3936,10 +3902,9 @@ HeatExchanger:AirToAir:SensibleAndLatent, 2.15999989700318E-02, !- Rate of Defrost Time Fraction Increase {1/K} No; !- Economizer Lockout - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:UNITARYHEATPUMP:AIRTOAIR =========== -AirLoopHVAC:UnitaryHeatPump:AirToAir, + AirLoopHVAC:UnitaryHeatPump:AirToAir, Heat Pump_unit1, !- Name always_avail, !- Availability Schedule Name Air Loop Inlet node_unit1, !- Air Inlet Node Name @@ -3961,10 +3926,9 @@ AirLoopHVAC:UnitaryHeatPump:AirToAir, BlowThrough, !- Fan Placement fan_cycle; !- Supply Air Fan Operating Mode Schedule Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== -AirLoopHVAC, + AirLoopHVAC, Central System_unit1, !- Name , !- Controller List Name availability list, !- Availability Manager List Name @@ -3976,44 +3940,39 @@ AirLoopHVAC, Zone Equipment Inlet Node_unit1, !- Demand Side Inlet Node Names Air Loop Outlet Node_unit1; !- Supply Side Outlet Node Names - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== -AirLoopHVAC:ZoneSplitter, + AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter_unit1, !- Name Zone Equipment Inlet Node_unit1, !- Inlet Node Name Zone Inlet Node_unit1 ATInlet; !- Outlet 1 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== -AirLoopHVAC:SupplyPath, + AirLoopHVAC:SupplyPath, SupplyPath_unit1, !- Name Zone Equipment Inlet Node_unit1, !- Supply Air Path Inlet Node Name AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type Zone Supply Air Splitter_unit1; !- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== -AirLoopHVAC:ZoneMixer, + AirLoopHVAC:ZoneMixer, Zone Return Air Mixer_unit1, !- Name Return Air Mixer Outlet_unit1, !- Outlet Node Name Zone Outlet Node_unit1; !- Inlet 1 Node Name - !- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== -AirLoopHVAC:ReturnPath, + AirLoopHVAC:ReturnPath, ReturnPath_unit1, !- Name Return Air Mixer Outlet_unit1, !- Return Air Path Outlet Node Name AirLoopHVAC:ZoneMixer, !- Component 1 Object Type Zone Return Air Mixer_unit1; !- Component 1 Name - !- =========== ALL OBJECTS IN CLASS: BRANCH =========== -Branch, + Branch, Air Loop Main Branch_unit1, !- Name , !- Pressure Drop Curve Name AirLoopHVAC:UnitaryHeatPump:AirtoAir, !- Component 1 Object Type @@ -4021,7 +3980,7 @@ Branch, Air Loop Inlet Node_unit1, !- Component 1 Inlet Node Name Air Loop Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Mains Inlet Branch_unit1,!- Name , !- Pressure Drop Curve Name Pump:VariableSpeed, !- Component 1 Object Type @@ -4029,7 +3988,7 @@ Branch, Mains Inlet Node_unit1, !- Component 1 Inlet Node Name Mains Pressure Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, DHW Supply Outlet Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4037,7 +3996,7 @@ Branch, DHW Supply Outlet Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name DHW Supply Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, DHW Demand Inlet Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4045,7 +4004,7 @@ Branch, DHW Demand Inlet Node_unit1, !- Component 1 Inlet Node Name DHW Demand Inlet Pipe Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Sink Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4053,7 +4012,7 @@ Branch, Water Sink Inlet Node_unit1, !- Component 1 Inlet Node Name Water Sink outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Shower Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4061,7 +4020,7 @@ Branch, Water Shower Inlet Node_unit1, !- Component 1 Inlet Node Name Water Shower Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water ClothesWasher Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4069,7 +4028,7 @@ Branch, Water ClothesWasher Inlet Node_unit1, !- Component 1 Inlet Node Name Water ClothesWasher Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Dishwasher Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4077,7 +4036,7 @@ Branch, Water DishWasher Inlet Node_unit1, !- Component 1 Inlet Node Name Water DishWasher outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Bath Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterUse:Connections, !- Component 1 Object Type @@ -4085,7 +4044,7 @@ Branch, Water Bath Inlet Node_unit1, !- Component 1 Inlet Node Name Water bath Outlet Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Mains Makeup Branch_unit1, !- Name , !- Pressure Drop Curve Name Pipe:Adiabatic, !- Component 1 Object Type @@ -4093,7 +4052,7 @@ Branch, Mains Makeup Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name Mains Makeup Node_unit1; !- Component 1 Outlet Node Name -Branch, + Branch, Water Heater Branch_unit1, !- Name , !- Pressure Drop Curve Name WaterHeater:HeatPump:WrappedCondenser, !- Component 1 Object Type @@ -4101,20 +4060,19 @@ Branch, Water Heater Use Inlet Node_unit1, !- Component 1 Inlet Node Name Water Heater Use Outlet Node_unit1; !- Component 1 Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== -BranchList, + BranchList, Air Loop Branches_unit1, !- Name Air Loop Main Branch_unit1; !- Branch 1 Name -BranchList, + BranchList, DHW Supply Branches_unit1, !- Name Mains Inlet Branch_unit1,!- Branch 1 Name Water Heater Branch_unit1, !- Branch 2 Name DHW Supply Outlet Branch_unit1; !- Branch 3 Name -BranchList, + BranchList, DHW Demand Branches_unit1, !- Name DHW Demand Inlet Branch_unit1, !- Branch 1 Name Water Sink Branch_unit1, !- Branch 2 Name @@ -4124,10 +4082,9 @@ BranchList, Water Bath Branch_unit1, !- Branch 6 Name Mains Makeup Branch_unit1; !- Branch 7 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== -Connector:Splitter, + Connector:Splitter, DHW Demand Splitter_unit1, !- Name DHW Demand Inlet Branch_unit1, !- Inlet Branch Name Water Sink Branch_unit1, !- Outlet Branch 1 Name @@ -4136,15 +4093,14 @@ Connector:Splitter, Water Dishwasher Branch_unit1, !- Outlet Branch 4 Name Water Bath Branch_unit1; !- Outlet Branch 5 Name -Connector:Splitter, + Connector:Splitter, DHW Supply Splitter_unit1, !- Name Mains Inlet Branch_unit1,!- Inlet Branch Name Water Heater Branch_unit1; !- Outlet Branch 1 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== -Connector:Mixer, + Connector:Mixer, DHW Demand Mixer_unit1, !- Name Mains Makeup Branch_unit1, !- Outlet Branch Name Water Sink Branch_unit1, !- Inlet Branch 1 Name @@ -4153,79 +4109,73 @@ Connector:Mixer, Water Dishwasher Branch_unit1, !- Inlet Branch 4 Name Water Bath Branch_unit1; !- Inlet Branch 5 Name -Connector:Mixer, + Connector:Mixer, DHW Supply Mixer_unit1, !- Name DHW Supply Outlet Branch_unit1, !- Outlet Branch Name Water Heater Branch_unit1; !- Inlet Branch 1 Name - !- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== -ConnectorList, + ConnectorList, DHW Demand Connectors_unit1, !- Name Connector:Splitter, !- Connector 1 Object Type DHW Demand Splitter_unit1, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type DHW Demand Mixer_unit1; !- Connector 2 Name -ConnectorList, + ConnectorList, DHW Supply Connectors_unit1, !- Name Connector:Splitter, !- Connector 1 Object Type DHW Supply Splitter_unit1, !- Connector 1 Name Connector:Mixer, !- Connector 2 Object Type DHW Supply Mixer_unit1; !- Connector 2 Name - !- =========== ALL OBJECTS IN CLASS: NODELIST =========== -NodeList, + NodeList, Zone Inlet Nodes_unit1, !- Name Zone Inlet Node_unit1, !- Node 1 Name HPWH Zone Inlet Node_unit1, !- Node 2 Name OA Inlet Node_unit1, !- Node 3 Name Dehumidifier Outlet Node;!- Node 4 Name -NodeList, + NodeList, Zone Exhaust Node_list_unit1, !- Name Zone Exhaust Node_unit1, !- Node 1 Name Zone Exhaust Node1_unit1,!- Node 2 Name Zone3DehumidifierInlet; !- Node 3 Name - !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE =========== -OutdoorAir:Node, + OutdoorAir:Node, outside air inlet node_unit1, !- Name 0.914355407629293; !- Height Above Ground {m} - !- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODELIST =========== -OutdoorAir:NodeList, + OutdoorAir:NodeList, outdoor air node_unit1; !- Node or NodeList Name 1 - !- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC =========== -Pipe:Adiabatic, + Pipe:Adiabatic, DHW Supply Outlet Pipe_unit1, !- Name DHW Supply Outlet Pipe Inlet Node_unit1, !- Inlet Node Name DHW Supply Outlet Node_unit1; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, Mains Makeup Pipe_unit1, !- Name Mains Makeup Pipe Inlet Node_unit1, !- Inlet Node Name Mains Makeup Node_unit1; !- Outlet Node Name -Pipe:Adiabatic, + Pipe:Adiabatic, DHW Demand Inlet Pipe_unit1, !- Name DHW Demand Inlet Node_unit1, !- Inlet Node Name DHW Demand Inlet Pipe Outlet Node_unit1; !- Outlet Node Name - !- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLESPEED =========== -Pump:VariableSpeed, + Pump:VariableSpeed, Mains Pressure_unit1, !- Name Mains Inlet Node_unit1, !- Inlet Node Name Mains Pressure Outlet Node_unit1, !- Outlet Node Name @@ -4241,10 +4191,9 @@ Pump:VariableSpeed, 0, !- Design Minimum Flow Rate {m3/s} Intermittent; !- Pump Control Type - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:STRATIFIED =========== -WaterHeater:Stratified, + WaterHeater:Stratified, Water Heater_Tank_unit1, !- Name Water Heater, !- End-Use Subcategory 0.196841372, !- Tank Volume {m3} @@ -4298,10 +4247,9 @@ WaterHeater:Stratified, 1.5, !- Indirect Water Heating Recovery Time {hr} 1; !- Number of Nodes - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:SIZING =========== -WaterHeater:Sizing, + WaterHeater:Sizing, Water Heater_Tank_unit1, !- WaterHeater Name ResidentialHUD-FHAMinimum, !- Design Mode , !- Time Storage Can Meet Peak Draw {hr} @@ -4310,10 +4258,9 @@ WaterHeater:Sizing, 3, !- Number of Bedrooms 3; !- Number of Bathrooms - !- =========== ALL OBJECTS IN CLASS: WATERHEATER:HEATPUMP:WRAPPEDCONDENSER =========== -WaterHeater:HeatPump:WrappedCondenser, + WaterHeater:HeatPump:WrappedCondenser, Water Heater_unit1, !- Name always_avail, !- Availability Schedule Name Compressor Setpoint, !- Compressor Setpoint Temperature Schedule Name @@ -4353,10 +4300,9 @@ WaterHeater:HeatPump:WrappedCondenser, 0.75, !- Control Sensor 1 Weight {dimensionless} 0.464; !- Control Sensor 2 Height In Stratified Tank {m} - !- =========== ALL OBJECTS IN CLASS: PLANTLOOP =========== -PlantLoop, + PlantLoop, DHW Loop_unit1, !- Name Water, !- Fluid Type , !- User Defined Fluid Type @@ -4377,98 +4323,90 @@ PlantLoop, DHW Demand Connectors_unit1, !- Demand Side Connector List Name Optimal; !- Load Distribution Scheme - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTLIST =========== -PlantEquipmentList, + PlantEquipmentList, DHW Plant Equipment_unit1, !- Name WaterHeater:HeatPump:WrappedCondenser, !- Equipment 1 Object Type Water Heater_unit1; !- Equipment 1 Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD =========== -PlantEquipmentOperation:HeatingLoad, + PlantEquipmentOperation:HeatingLoad, DHW Control Scheme_unit1,!- Name 0.0, !- Load Range 1 Lower Limit {W} 1000000000000000, !- Load Range 1 Upper Limit {W} DHW Plant Equipment_unit1; !- Range 1 Equipment List Name - !- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES =========== -PlantEquipmentOperationSchemes, + PlantEquipmentOperationSchemes, DHW Loop Operation_unit1,!- Name PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type DHW Control Scheme_unit1,!- Control Scheme 1 Name always_avail; !- Control Scheme 1 Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:SCHEDULED =========== -AvailabilityManager:Scheduled, + AvailabilityManager:Scheduled, System availability, !- Name always_avail; !- Schedule Name - !- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST =========== -AvailabilityManagerAssignmentList, + AvailabilityManagerAssignmentList, availability list, !- Name AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type System availability; !- Availability Manager 1 Name - !- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED =========== -SetpointManager:Scheduled, + SetpointManager:Scheduled, DHW Loop Setpoint Manager_unit1, !- Name Temperature, !- Control Variable DHWSupplySetpoint, !- Schedule Name DHW Supply Outlet Node_unit1; !- Setpoint Node or NodeList Name - !- =========== ALL OBJECTS IN CLASS: WATERUSE:EQUIPMENT =========== -WaterUse:Equipment, + WaterUse:Equipment, Clothes Washer_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 1.6219189818e-06, !- Peak Flow Rate {m3/s} ClothesWasher, !- Flow Rate Fraction Schedule Name CWWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Dishwasher_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 6.36685353e-07, !- Peak Flow Rate {m3/s} Dishwasher, !- Flow Rate Fraction Schedule Name DWWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Sinks_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 7.1934e-05, !- Peak Flow Rate {m3/s} BA_sink_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Showers_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 0.000141975, !- Peak Flow Rate {m3/s} BA_shower_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name -WaterUse:Equipment, + WaterUse:Equipment, Baths_unit1, !- Name Domestic Hot Water, !- End-Use Subcategory 0.00027764, !- Peak Flow Rate {m3/s} BA_bath_sch, !- Flow Rate Fraction Schedule Name SSBWaterTempSchedule; !- Target Temperature Schedule Name - !- =========== ALL OBJECTS IN CLASS: WATERUSE:CONNECTIONS =========== -WaterUse:Connections, + WaterUse:Connections, DHW Sinks_unit1, !- Name Water Sink Inlet Node_unit1, !- Inlet Node Name Water Sink Outlet Node_unit1, !- Outlet Node Name @@ -4481,7 +4419,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Sinks_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW Showers_unit1, !- Name Water Shower Inlet Node_unit1, !- Inlet Node Name Water Shower Outlet Node_unit1, !- Outlet Node Name @@ -4494,7 +4432,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Showers_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW ClothesWasher_unit1, !- Name Water ClothesWasher Inlet Node_unit1, !- Inlet Node Name Water ClothesWasher Outlet Node_unit1, !- Outlet Node Name @@ -4507,7 +4445,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Clothes Washer_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW DishWasher_unit1, !- Name Water DishWasher Inlet Node_unit1, !- Inlet Node Name Water DishWasher Outlet Node_unit1, !- Outlet Node Name @@ -4520,7 +4458,7 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Dishwasher_unit1; !- Water Use Equipment 1 Name -WaterUse:Connections, + WaterUse:Connections, DHW Baths_unit1, !- Name Water Bath Inlet Node_unit1, !- Inlet Node Name Water Bath Outlet Node_unit1, !- Outlet Node Name @@ -4533,10 +4471,9 @@ WaterUse:Connections, , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} Baths_unit1; !- Water Use Equipment 1 Name - !- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== -Curve:Quadratic, + Curve:Quadratic, HPWH-COP-fPLR, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4544,7 +4481,7 @@ Curve:Quadratic, 0, !- Minimum Value of x 1; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCoolCapFFF, !- Name 0.8, !- Coefficient1 Constant 0.2, !- Coefficient2 x @@ -4552,7 +4489,7 @@ Curve:Quadratic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCOOLEIRFFF, !- Name 1.156, !- Coefficient1 Constant -0.1816, !- Coefficient2 x @@ -4560,7 +4497,7 @@ Curve:Quadratic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACCOOLPLFFPLR, !- Name 0.85, !- Coefficient1 Constant 0.15, !- Coefficient2 x @@ -4568,7 +4505,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPACHeatEIRFFF, !- Name 1.3824, !- Coefficient1 Constant -0.4336, !- Coefficient2 x @@ -4576,7 +4513,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, ACCoolingCAPFFF, !- Name 0.718605468, !- Coefficient1 Constant 0.410099989, !- Coefficient2 x @@ -4588,7 +4525,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACCoolingEIRFFF, !- Name 1.32299905, !- Coefficient1 Constant -0.477711207, !- Coefficient2 x @@ -4600,7 +4537,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACCoolingPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4608,7 +4545,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPCoolingCAPFFF, !- Name 0.718664047, !- Coefficient1 Constant 0.41797409, !- Coefficient2 x @@ -4620,7 +4557,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPCoolingEIRFFF, !- Name 1.143487507, !- Coefficient1 Constant -0.13943972, !- Coefficient2 x @@ -4632,7 +4569,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPCOOLPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4640,7 +4577,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPHeatingCAPFFF, !- Name 0.694045465, !- Coefficient1 Constant 0.474207981, !- Coefficient2 x @@ -4652,7 +4589,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHeatingEIRFFF, !- Name 2.185418751, !- Coefficient1 Constant -1.942827919, !- Coefficient2 x @@ -4664,7 +4601,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHeatPLFFPLR, !- Name 0.90, !- Coefficient1 Constant 0.10, !- Coefficient2 x @@ -4672,7 +4609,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPLowStageHeatingCAPFFF, !- Name 0.741466907, !- Coefficient1 Constant 0.378645444, !- Coefficient2 x @@ -4684,7 +4621,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPLowStageHeatingEIRFFF, !- Name 2.153618211, !- Coefficient1 Constant -1.737190609, !- Coefficient2 x @@ -4696,7 +4633,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageHeatingCAPFFF,!- Name 0.76634609, !- Coefficient1 Constant 0.32840943, !- Coefficient2 x @@ -4708,7 +4645,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageHeatingEIRFFF,!- Name 2.001041353, !- Coefficient1 Constant -1.58869128, !- Coefficient2 x @@ -4720,7 +4657,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HP2StageHeatingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4728,7 +4665,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, HPLowStageCoolingCAPFFF, !- Name 0.655239515, !- Coefficient1 Constant 0.511655216, !- Coefficient2 x @@ -4740,7 +4677,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPLowStageCoolingEIRFFF, !- Name 1.639108268, !- Coefficient1 Constant -0.998953996, !- Coefficient2 x @@ -4752,7 +4689,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageCoolingCAPFFF,!- Name 0.618281092, !- Coefficient1 Constant 0.569060264, !- Coefficient2 x @@ -4764,7 +4701,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HPHighStageCoolingEIRFFF,!- Name 1.570774717, !- Coefficient1 Constant -0.914152018, !- Coefficient2 x @@ -4776,7 +4713,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, HP2StageCoolingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4784,7 +4721,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, ACLowStageCoolingCAPFFF, !- Name 0.65673024, !- Coefficient1 Constant 0.516470835, !- Coefficient2 x @@ -4796,7 +4733,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACLowStageCoolingEIRFFF, !- Name 1.562945114, !- Coefficient1 Constant -0.791859997, !- Coefficient2 x @@ -4808,7 +4745,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACHighStageCoolingCAPFFF,!- Name 0.690334551, !- Coefficient1 Constant 0.464383753, !- Coefficient2 x @@ -4820,7 +4757,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, ACHighStageCoolingEIRFFF,!- Name 1.31565404, !- Coefficient1 Constant -0.482467162, !- Coefficient2 x @@ -4832,7 +4769,7 @@ Curve:Quadratic, Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type -Curve:Quadratic, + Curve:Quadratic, AC2StageCoolingPLFFPLR, !- Name 0.93, !- Coefficient1 Constant 0.07, !- Coefficient2 x @@ -4840,7 +4777,7 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x -Curve:Quadratic, + Curve:Quadratic, Cool-PLF-fPLR, !- Name 0.80141423, !- Coefficient1 Constant 0.23744685, !- Coefficient2 x @@ -4850,7 +4787,7 @@ Curve:Quadratic, 0.7, !- Minimum Curve Output 1; !- Maximum Curve Output -Curve:Quadratic, + Curve:Quadratic, ZoneDehumidPLFFPLR, !- Name 0.95, !- Coefficient1 Constant 0.05, !- Coefficient2 x @@ -4858,10 +4795,9 @@ Curve:Quadratic, 0.0, !- Minimum Value of x 1.0; !- Maximum Value of x - !- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== -Curve:Cubic, + Curve:Cubic, HPACHeatCapFT, !- Name 0.758746, !- Coefficient1 Constant 0.027626, !- Coefficient2 x @@ -4870,7 +4806,7 @@ Curve:Cubic, -20.0, !- Minimum Value of x 20.0; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, HPACHeatCapFFF, !- Name 0.84, !- Coefficient1 Constant 0.16, !- Coefficient2 x @@ -4879,7 +4815,7 @@ Curve:Cubic, 0.5, !- Minimum Value of x 1.5; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, HPACHeatEIRFT, !- Name 1.19248, !- Coefficient1 Constant -0.0300438, !- Coefficient2 x @@ -4888,7 +4824,7 @@ Curve:Cubic, -20.0, !- Minimum Value of x 20.0; !- Maximum Value of x -Curve:Cubic, + Curve:Cubic, Fan-EIR-fPLR, !- Name 0.00000000, !- Coefficient1 Constant 1.00000000, !- Coefficient2 x @@ -4899,7 +4835,7 @@ Curve:Cubic, 0, !- Minimum Curve Output 1; !- Maximum Curve Output -Curve:Cubic, + Curve:Cubic, ConstantCubic, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -4908,10 +4844,9 @@ Curve:Cubic, -100, !- Minimum Value of x 100; !- Maximum Value of x - !- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== -Curve:Biquadratic, + Curve:Biquadratic, HPWH-Htg-Cap-fT, !- Name 0.563, !- Coefficient1 Constant 0.0437, !- Coefficient2 x @@ -4925,7 +4860,7 @@ Curve:Biquadratic, 100, !- Maximum Value of y 0; !- Minimum Curve Output -Curve:Biquadratic, + Curve:Biquadratic, HPWH-Htg-COP-fT, !- Name 1.1332, !- Coefficient1 Constant 0.063, !- Coefficient2 x @@ -4938,7 +4873,7 @@ Curve:Biquadratic, 0, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, HPWHHeatingCapFTemp, !- Name 0.369827, !- Coefficient1 Constant 0.043341, !- Coefficient2 x @@ -4956,7 +4891,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPWHHeatingCOPFTemp, !- Name 1.19713, !- Coefficient1 Constant 0.077849, !- Coefficient2 x @@ -4974,7 +4909,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPACCoolCapFT, !- Name 0.766956, !- Coefficient1 Constant 0.0107756, !- Coefficient2 x @@ -4987,7 +4922,7 @@ Curve:Biquadratic, 21.11111, !- Minimum Value of y 46.11111; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, HPACCOOLEIRFT, !- Name 0.297145, !- Coefficient1 Constant 0.0430933, !- Coefficient2 x @@ -5000,7 +4935,7 @@ Curve:Biquadratic, 21.11111, !- Minimum Value of y 46.11111; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, Defrost_EIR_FT, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -5013,7 +4948,7 @@ Curve:Biquadratic, 0, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, dummy-waste-heat-curve, !- Name 1, !- Coefficient1 Constant 0, !- Coefficient2 x @@ -5031,7 +4966,7 @@ Curve:Biquadratic, Dimensionless, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACCoolingCAPFTemp, !- Name 1.5509, !- Coefficient1 Constant -0.07505, !- Coefficient2 x @@ -5049,7 +4984,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACCoolingEIRFTemp, !- Name -0.30428, !- Coefficient1 Constant 0.11805, !- Coefficient2 x @@ -5067,7 +5002,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPCoolingCAPFTemp, !- Name 1.55736, !- Coefficient1 Constant -0.074448, !- Coefficient2 x @@ -5085,7 +5020,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPCoolingEIRFTemp, !- Name -0.350448, !- Coefficient1 Constant 0.11681, !- Coefficient2 x @@ -5103,7 +5038,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHeatingCAPFTemp, !- Name 0.876825, !- Coefficient1 Constant -0.002955, !- Coefficient2 x @@ -5121,7 +5056,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHeatingEIRFTemp, !- Name 0.704658, !- Coefficient1 Constant 0.008767, !- Coefficient2 x @@ -5139,7 +5074,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageHeatingCAPFTemp, !- Name 0.84613, !- Coefficient1 Constant -0.002279, !- Coefficient2 x @@ -5157,7 +5092,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageHeatingEIRFTemp, !- Name 0.551837, !- Coefficient1 Constant 0.02038, !- Coefficient2 x @@ -5175,7 +5110,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageHeatingCAPFTemp, !- Name 0.818223, !- Coefficient1 Constant 0.001981, !- Coefficient2 x @@ -5193,7 +5128,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageHeatingEIRFTemp, !- Name 0.81584, !- Coefficient1 Constant -0.00615, !- Coefficient2 x @@ -5211,7 +5146,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageCoolingCAPFTemp, !- Name 1.658788, !- Coefficient1 Constant -0.083453, !- Coefficient2 x @@ -5229,7 +5164,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPLowStageCoolingEIRFTemp, !- Name -0.582916, !- Coefficient1 Constant 0.158101, !- Coefficient2 x @@ -5247,7 +5182,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageCoolingCAPFTemp, !- Name 1.472738, !- Coefficient1 Constant -0.067222, !- Coefficient2 x @@ -5265,7 +5200,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, HPHighStageCoolingEIRFTemp, !- Name -0.488196, !- Coefficient1 Constant 0.099162, !- Coefficient2 x @@ -5283,7 +5218,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACLowStageCoolingCAPFTemp, !- Name 1.66458, !- Coefficient1 Constant -0.08039, !- Coefficient2 x @@ -5301,7 +5236,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACLowStageCoolingEIRFTemp, !- Name -0.42738, !- Coefficient1 Constant 0.14191, !- Coefficient2 x @@ -5319,7 +5254,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACHighStageCoolingCAPFTemp, !- Name 1.36788, !- Coefficient1 Constant -0.06257, !- Coefficient2 x @@ -5337,7 +5272,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, ACHighStageCoolingEIRFTemp, !- Name 0.04232, !- Coefficient1 Constant 0.07892, !- Coefficient2 x @@ -5355,7 +5290,7 @@ Curve:Biquadratic, Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type -Curve:Biquadratic, + Curve:Biquadratic, Cool-Cap-fT, !- Name 1.26489391, !- Coefficient1 Constant -0.035054982, !- Coefficient2 x @@ -5368,7 +5303,7 @@ Curve:Biquadratic, -100, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, Cool-EIR-fT, !- Name 0.38402403, !- Coefficient1 Constant 0.029696724, !- Coefficient2 x @@ -5381,7 +5316,7 @@ Curve:Biquadratic, -100, !- Minimum Value of y 100; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, ZoneDehumidWaterRemoval, !- Name -2.724878664080, !- Coefficient1 Constant 0.100711983591, !- Coefficient2 x @@ -5394,7 +5329,7 @@ Curve:Biquadratic, 40.0, !- Minimum Value of y 80.0; !- Maximum Value of y -Curve:Biquadratic, + Curve:Biquadratic, ZoneDehumidEnergyFactor, !- Name -2.388319068955, !- Coefficient1 Constant 0.093047739452, !- Coefficient2 x @@ -5407,29 +5342,26 @@ Curve:Biquadratic, 40.0, !- Minimum Value of y 80.0; !- Maximum Value of y - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== -Output:VariableDictionary,Regular; + Output:VariableDictionary,Regular; !- =========== ALL OBJECTS IN CLASS: OUTPUT:CONSTRUCTIONS =========== -Output:Constructions,Constructions,Materials; + Output:Constructions,Constructions,Materials; !- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS =========== - -Output:Table:SummaryReports, + Output:Table:SummaryReports, InputVerificationandResultsSummary, !- Report 1 Name EquipmentSummary, !- Report 2 Name ClimaticDataSummary, !- Report 3 Name EnvelopeSummary, !- Report 4 Name AllSummary; !- Report 5 Name - !- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:MONTHLY =========== -Output:Table:Monthly, + Output:Table:Monthly, FanSplit, !- Name 3, !- Digits After Decimal Air System Cooling Coil Total Cooling Energy, !- Variable or Meter 1 Name @@ -5443,45 +5375,45 @@ Output:Table:Monthly, Air System Fan Electric Energy, !- Variable or Meter 5 Name SumOrAverage; !- Aggregation Type for Variable or Meter 5 -Output:Table:Monthly, + Output:Table:Monthly, CoilLoads, !- Name 2, !- Digits After Decimal - Heating Coil Heating Rate , !- Variable or Meter 1 Name + Heating Coil Heating Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Heating Coil Air Heating Rate , !- Variable or Meter 2 Name + Heating Coil Air Heating Rate, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Cooling Coil Total Cooling Rate , !- Variable or Meter 3 Name + Cooling Coil Total Cooling Rate, !- Variable or Meter 3 Name SumOrAverage; !- Aggregation Type for Variable or Meter 3 -Output:Table:Monthly, + Output:Table:Monthly, Water Heater: Loads, !- Name 2, !- Digits After Decimal - Water Heater Total Demand Rate , !- Variable or Meter 1 Name + Water Heater Total Demand Rate, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Water Heater Total Demand Energy , !- Variable or Meter 2 Name + Water Heater Total Demand Energy, !- Variable or Meter 2 Name SumOrAverage, !- Aggregation Type for Variable or Meter 2 - Water Heater Heating Rate , !- Variable or Meter 3 Name + Water Heater Heating Rate, !- Variable or Meter 3 Name SumOrAverage, !- Aggregation Type for Variable or Meter 3 - Water Heater Heating Energy , !- Variable or Meter 4 Name + Water Heater Heating Energy, !- Variable or Meter 4 Name SumOrAverage; !- Aggregation Type for Variable or Meter 4 -Output:Table:Monthly, + Output:Table:Monthly, Heating and Cooling Loads, !- Name 2, !- Digits After Decimal - Zone/Sys Sensible Cooling Energy , !- Variable or Meter 1 Name + Zone/Sys Sensible Cooling Energy, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Zone/Sys Sensible Heating Energy , !- Variable or Meter 2 Name + Zone/Sys Sensible Heating Energy, !- Variable or Meter 2 Name SumOrAverage; !- Aggregation Type for Variable or Meter 2 -Output:Table:Monthly, + Output:Table:Monthly, Lighting Loads, !- Name 2, !- Digits After Decimal - Zone Lights Electric Consumption , !- Variable or Meter 1 Name + Zone Lights Electric Consumption, !- Variable or Meter 1 Name SumOrAverage, !- Aggregation Type for Variable or Meter 1 - Exterior Lights Electric Consumption , !- Variable or Meter 2 Name + Exterior Lights Electric Consumption, !- Variable or Meter 2 Name SumOrAverage; !- Aggregation Type for Variable or Meter 2 -Output:Table:Monthly, + Output:Table:Monthly, InternalGains, !- Name 2, !- Digits After Decimal Zone People Total Heat Gain, !- Variable or Meter 1 Name @@ -5497,17 +5429,19 @@ Output:Table:Monthly, Zone Total Internal Total Heat Gain, !- Variable or Meter 6 Name SumOrAverage; !- Aggregation Type for Variable or Meter 6 - !- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE =========== -OutputControl:Table:Style, + OutputControl:Table:Style, CommaAndHTML, !- Column Separator InchPound; !- Unit Conversion - !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== -Output:Variable,*,Cooling Coil Sensible Cooling Rate,Hourly; -Output:Variable,*,Cooling Coil Latent Cooling Rate,Hourly; -Output:Variable,*,Cooling Coil Total Cooling Rate,Hourly; -Output:Variable,*,Heating Coil Heating Rate,Hourly; + Output:Variable,*,Cooling Coil Sensible Cooling Rate,Hourly; + + Output:Variable,*,Cooling Coil Latent Cooling Rate,Hourly; + + Output:Variable,*,Cooling Coil Total Cooling Rate,Hourly; + + Output:Variable,*,Heating Coil Heating Rate,Hourly; + diff --git a/testfiles/SingleFamilyHouse_TwoSpeed_CutoutTemperature.idf b/testfiles/SingleFamilyHouse_TwoSpeed_CutoutTemperature.idf index f4bdadf27e2..92dfb8abb28 100644 --- a/testfiles/SingleFamilyHouse_TwoSpeed_CutoutTemperature.idf +++ b/testfiles/SingleFamilyHouse_TwoSpeed_CutoutTemperature.idf @@ -480,6 +480,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -496,6 +497,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -512,6 +514,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +531,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +548,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +565,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -576,6 +582,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +599,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +616,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +633,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +650,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +667,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +684,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +701,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +717,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +733,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +749,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +766,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +783,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +799,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +816,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +833,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +850,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +867,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +884,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/SingleFamilyHouse_TwoSpeed_ZoneAirBalance.idf b/testfiles/SingleFamilyHouse_TwoSpeed_ZoneAirBalance.idf index 19b962576f4..678e534eed0 100644 --- a/testfiles/SingleFamilyHouse_TwoSpeed_ZoneAirBalance.idf +++ b/testfiles/SingleFamilyHouse_TwoSpeed_ZoneAirBalance.idf @@ -480,6 +480,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -496,6 +497,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -512,6 +514,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +531,7 @@ Wall, !- Surface Type EXTWALL:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +548,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +565,7 @@ WALL, !- Surface Type INTERIORWall, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Interior, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -576,6 +582,7 @@ FLOOR, !- Surface Type FLOOR:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +599,7 @@ CEILING, !- Surface Type CEILING:LIVING, !- Construction Name LIVING ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:LivingFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +616,7 @@ FLOOR, !- Surface Type reverseCEILING:LIVING, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Living:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +633,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +650,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +667,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +684,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +701,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +717,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +733,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +749,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +766,7 @@ ROOF, !- Surface Type ROOF, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +783,7 @@ WALL, !- Surface Type GABLE, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +799,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +816,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -812,6 +833,7 @@ WALL, !- Surface Type Garage:SteelDoor, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +850,7 @@ FLOOR, !- Surface Type CEILING:Garage, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +867,7 @@ CEILING, !- Surface Type CEILING:Garage, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic:GarageFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +884,7 @@ FLOOR, !- Surface Type FLOOR:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Garage:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/SmOffPSZ-MultiModeDX.idf b/testfiles/SmOffPSZ-MultiModeDX.idf index 2de2e14eda3..e87b2e77853 100644 --- a/testfiles/SmOffPSZ-MultiModeDX.idf +++ b/testfiles/SmOffPSZ-MultiModeDX.idf @@ -484,6 +484,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -500,6 +501,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -516,6 +518,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +537,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +554,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -566,6 +571,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +588,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -600,6 +607,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +627,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +644,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +661,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +680,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +701,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +721,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +740,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +760,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -761,6 +777,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +794,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +811,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +828,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +847,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +867,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +886,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +906,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -901,6 +925,7 @@ FLOOR, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -917,6 +942,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +959,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +976,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +993,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,25 +1189,29 @@ ZSF1-MASS, !- Name FURNITURE, !- Construction Name ZSF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF1-MASS, !- Name FURNITURE, !- Construction Name ZNF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZSF2-MASS, !- Name FURNITURE, !- Construction Name ZSF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF2-MASS, !- Name FURNITURE, !- Construction Name ZNF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, AnyNumber; !- Name diff --git a/testfiles/SmOffPSZ.idf b/testfiles/SmOffPSZ.idf index badf4a5929c..e33632f3c23 100644 --- a/testfiles/SmOffPSZ.idf +++ b/testfiles/SmOffPSZ.idf @@ -463,6 +463,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -479,6 +480,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -495,6 +497,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +514,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +531,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -543,6 +548,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,6 +565,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -575,6 +582,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -591,6 +599,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -607,6 +616,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +633,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +650,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +667,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +684,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -687,6 +701,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -703,6 +718,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +735,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -735,6 +752,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -751,6 +769,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +786,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +803,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +820,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -815,6 +837,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -831,6 +854,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -847,6 +871,7 @@ FLOOR, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -863,6 +888,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +905,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +922,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +939,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,25 +1135,29 @@ ZSF1-MASS, !- Name FURNITURE, !- Construction Name ZSF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF1-MASS, !- Name FURNITURE, !- Construction Name ZNF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZSF2-MASS, !- Name FURNITURE, !- Construction Name ZSF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF2-MASS, !- Name FURNITURE, !- Construction Name ZNF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/SmOffPSZ_OnOffStagedControl.idf b/testfiles/SmOffPSZ_OnOffStagedControl.idf index d02f58cbd68..f007e83c0de 100644 --- a/testfiles/SmOffPSZ_OnOffStagedControl.idf +++ b/testfiles/SmOffPSZ_OnOffStagedControl.idf @@ -464,6 +464,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -480,6 +481,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -496,6 +498,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -512,6 +515,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +532,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -544,6 +549,7 @@ Wall, !- Surface Type INTWALL-1, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition ZSF2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -560,6 +566,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -576,6 +583,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -592,6 +600,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -608,6 +617,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +634,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +651,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +668,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +685,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +702,7 @@ WALL, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +719,7 @@ ROOF, !- Surface Type ROOFR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -720,6 +736,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +753,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +770,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -768,6 +787,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +804,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +821,7 @@ CEILING, !- Surface Type reverseFLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +838,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +855,7 @@ FLOOR, !- Surface Type FLOORR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +872,7 @@ FLOOR, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +889,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -880,6 +906,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +923,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +940,7 @@ WALL, !- Surface Type UNDRWALL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,25 +1136,29 @@ ZSF1-MASS, !- Name FURNITURE, !- Construction Name ZSF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF1-MASS, !- Name FURNITURE, !- Construction Name ZNF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZSF2-MASS, !- Name FURNITURE, !- Construction Name ZSF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF2-MASS, !- Name FURNITURE, !- Construction Name ZNF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/SmallOffice_CentralDOAS.idf b/testfiles/SmallOffice_CentralDOAS.idf index 68f326b5c70..9cf0ef9ccc2 100644 --- a/testfiles/SmallOffice_CentralDOAS.idf +++ b/testfiles/SmallOffice_CentralDOAS.idf @@ -622,6 +622,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -638,6 +639,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -654,6 +656,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +673,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +690,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +707,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -717,6 +723,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -733,6 +740,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +757,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +773,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +790,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +807,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +824,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +841,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +858,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +875,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +892,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +909,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +926,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +943,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +960,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +977,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +994,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1011,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1028,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1045,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1062,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1079,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1096,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1113,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1130,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1147,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1164,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1181,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1198,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1180,6 +1215,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1232,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1249,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1266,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1283,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1300,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1317,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1334,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1972,31 +2015,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/SolarShadingTest.idf b/testfiles/SolarShadingTest.idf index f515b9b282b..97aa6b9d8e5 100644 --- a/testfiles/SolarShadingTest.idf +++ b/testfiles/SolarShadingTest.idf @@ -681,6 +681,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +723,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +755,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +772,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +789,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +821,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +838,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +855,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +872,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +914,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +931,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +948,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +965,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +982,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +999,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1041,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1057,6 +1073,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1090,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1107,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1105,6 +1124,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1121,6 +1141,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1173,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1190,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1207,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1224,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1266,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1272,6 +1298,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1315,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1304,6 +1332,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1320,6 +1349,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1381,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1398,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1415,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1457,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1455,6 +1489,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1471,6 +1506,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1487,6 +1523,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1555,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1572,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1589,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1566,6 +1606,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1607,6 +1648,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1623,6 +1665,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1682,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1699,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1716,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1687,6 +1733,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1728,6 +1775,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1759,6 +1807,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1775,6 +1824,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1791,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1807,6 +1858,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1838,6 +1890,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1907,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1924,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1941,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1943,6 +2000,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1959,6 +2017,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1975,6 +2034,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1991,6 +2051,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2007,6 +2068,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2023,6 +2085,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2064,6 +2127,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2095,6 +2159,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2111,6 +2176,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2127,6 +2193,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2158,6 +2225,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2242,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2259,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2970,9 +3040,10 @@ Output:Surfaces:List,Details; ShadowCalculation, - PolygonClipping, !- Shading Calculation Method - Periodic, !- Shading Calculation Update Frequency Method - , !- Shading Calculation Update Frequency - , !- Maximum Figures in Shadow Overlap Calculations - , !- Polygon Clipping Algorithm - ; !- Pixel Counting Resolution + PolygonClipping, !- Shading Calculation Method + Periodic, !- Shading Calculation Update Frequency Method + , !- Shading Calculation Update Frequency + , !- Maximum Figures in Shadow Overlap Calculations + , !- Polygon Clipping Algorithm + ; !- Pixel Counting Resolution + diff --git a/testfiles/SolarShadingTestGPU.idf b/testfiles/SolarShadingTestGPU.idf index 4a52ff07dd7..80a9ce7de04 100644 --- a/testfiles/SolarShadingTestGPU.idf +++ b/testfiles/SolarShadingTestGPU.idf @@ -681,6 +681,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +723,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +755,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +772,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +789,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +821,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +838,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +855,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +872,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +914,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +931,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +948,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +965,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +982,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +999,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1041,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1057,6 +1073,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1090,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1107,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1105,6 +1124,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1121,6 +1141,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1173,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1190,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1207,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1224,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1266,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1272,6 +1298,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1315,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1304,6 +1332,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1320,6 +1349,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1381,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1398,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1415,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1457,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1455,6 +1489,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1471,6 +1506,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1487,6 +1523,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1555,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1572,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1589,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1566,6 +1606,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1607,6 +1648,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1623,6 +1665,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1682,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1699,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1716,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1687,6 +1733,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1728,6 +1775,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1759,6 +1807,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1775,6 +1824,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1791,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1807,6 +1858,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1838,6 +1890,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1907,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1924,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1941,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1943,6 +2000,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1959,6 +2017,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1975,6 +2034,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1991,6 +2051,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2007,6 +2068,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2023,6 +2085,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2064,6 +2127,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2095,6 +2159,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2111,6 +2176,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2127,6 +2193,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2158,6 +2225,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2242,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2259,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SolarShadingTest_DisableSelfShading.idf b/testfiles/SolarShadingTest_DisableSelfShading.idf index bb838cd67de..75c2b303f72 100644 --- a/testfiles/SolarShadingTest_DisableSelfShading.idf +++ b/testfiles/SolarShadingTest_DisableSelfShading.idf @@ -693,6 +693,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +735,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +767,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +784,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -797,6 +801,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +833,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +850,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +867,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +884,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +926,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +943,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +960,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +977,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +994,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1011,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1053,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1069,6 +1085,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1085,6 +1102,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1101,6 +1119,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1117,6 +1136,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1133,6 +1153,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1164,6 +1185,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1202,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1219,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1236,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1253,6 +1278,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1310,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1300,6 +1327,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1316,6 +1344,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1332,6 +1361,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1363,6 +1393,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1379,6 +1410,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1395,6 +1427,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1436,6 +1469,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1467,6 +1501,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1483,6 +1518,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1499,6 +1535,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,6 +1567,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1584,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1601,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1578,6 +1618,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1619,6 +1660,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1635,6 +1677,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1651,6 +1694,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1667,6 +1711,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1683,6 +1728,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1699,6 +1745,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1740,6 +1787,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1771,6 +1819,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1787,6 +1836,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1803,6 +1853,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1819,6 +1870,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1850,6 +1902,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1866,6 +1919,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1882,6 +1936,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1898,6 +1953,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1914,6 +1970,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1955,6 +2012,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1971,6 +2029,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1987,6 +2046,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2003,6 +2063,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2019,6 +2080,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2035,6 +2097,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2076,6 +2139,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2107,6 +2171,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2123,6 +2188,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2139,6 +2205,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2170,6 +2237,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2186,6 +2254,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2202,6 +2271,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SolarShadingTest_DisableSelfShadingGroup.idf b/testfiles/SolarShadingTest_DisableSelfShadingGroup.idf index e2a94814b14..26dd7028a33 100644 --- a/testfiles/SolarShadingTest_DisableSelfShadingGroup.idf +++ b/testfiles/SolarShadingTest_DisableSelfShadingGroup.idf @@ -702,6 +702,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +744,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -774,6 +776,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -790,6 +793,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +810,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +842,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +859,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +876,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +893,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +935,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +952,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +969,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +986,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +1003,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1020,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1062,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1078,6 +1094,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1128,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1145,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1142,6 +1162,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1173,6 +1194,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1211,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1205,6 +1228,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1221,6 +1245,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1262,6 +1287,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1293,6 +1319,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1309,6 +1336,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1325,6 +1353,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1341,6 +1370,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1372,6 +1402,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1419,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1436,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1445,6 +1478,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1476,6 +1510,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1492,6 +1527,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1508,6 +1544,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1539,6 +1576,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1555,6 +1593,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1571,6 +1610,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1587,6 +1627,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1628,6 +1669,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1644,6 +1686,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1660,6 +1703,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1676,6 +1720,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1692,6 +1737,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1708,6 +1754,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1749,6 +1796,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1780,6 +1828,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1796,6 +1845,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1812,6 +1862,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1828,6 +1879,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1859,6 +1911,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1875,6 +1928,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1891,6 +1945,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1907,6 +1962,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1923,6 +1979,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1964,6 +2021,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1980,6 +2038,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1996,6 +2055,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2012,6 +2072,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2028,6 +2089,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2044,6 +2106,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2085,6 +2148,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2116,6 +2180,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2132,6 +2197,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2148,6 +2214,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2179,6 +2246,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2195,6 +2263,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2211,6 +2280,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SolarShadingTest_ExternalFraction.idf b/testfiles/SolarShadingTest_ExternalFraction.idf index f505b4a043b..64a37fedfee 100644 --- a/testfiles/SolarShadingTest_ExternalFraction.idf +++ b/testfiles/SolarShadingTest_ExternalFraction.idf @@ -2527,6 +2527,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2568,6 +2569,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2599,6 +2601,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2615,6 +2618,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2631,6 +2635,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2662,6 +2667,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2684,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2701,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2718,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2751,6 +2760,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2767,6 +2777,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2783,6 +2794,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2799,6 +2811,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2828,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2831,6 +2845,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2872,6 +2887,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2903,6 +2919,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2919,6 +2936,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2935,6 +2953,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2951,6 +2970,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2967,6 +2987,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2998,6 +3019,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3014,6 +3036,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3030,6 +3053,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3046,6 +3070,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3087,6 +3112,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3118,6 +3144,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3134,6 +3161,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3150,6 +3178,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3166,6 +3195,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3197,6 +3227,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3213,6 +3244,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3229,6 +3261,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3270,6 +3303,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3301,6 +3335,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3317,6 +3352,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3333,6 +3369,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3364,6 +3401,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3380,6 +3418,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3396,6 +3435,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3412,6 +3452,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3453,6 +3494,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3469,6 +3511,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3485,6 +3528,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3501,6 +3545,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3517,6 +3562,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3533,6 +3579,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3574,6 +3621,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3605,6 +3653,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3621,6 +3670,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3637,6 +3687,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3653,6 +3704,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3684,6 +3736,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3700,6 +3753,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3716,6 +3770,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3732,6 +3787,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3748,6 +3804,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3789,6 +3846,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3805,6 +3863,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3821,6 +3880,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3837,6 +3897,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3853,6 +3914,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3869,6 +3931,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3910,6 +3973,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3941,6 +4005,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3957,6 +4022,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3973,6 +4039,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4004,6 +4071,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4020,6 +4088,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4036,6 +4105,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SolarShadingTest_ImportedShading.idf b/testfiles/SolarShadingTest_ImportedShading.idf index 1971cdc5bea..77b02f9f457 100644 --- a/testfiles/SolarShadingTest_ImportedShading.idf +++ b/testfiles/SolarShadingTest_ImportedShading.idf @@ -694,6 +694,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +736,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +768,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -782,6 +785,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +802,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -829,6 +834,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +851,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +868,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -877,6 +885,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +927,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +944,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +961,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +978,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +995,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -998,6 +1012,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1054,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1086,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1103,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1120,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1118,6 +1137,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1154,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1165,6 +1186,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1203,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1220,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1237,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1254,6 +1279,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1285,6 +1311,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1301,6 +1328,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1317,6 +1345,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1333,6 +1362,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1364,6 +1394,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1437,6 +1470,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1468,6 +1502,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1484,6 +1519,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1500,6 +1536,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1531,6 +1568,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1585,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1563,6 +1602,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1579,6 +1619,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1620,6 +1661,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1636,6 +1678,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1695,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1712,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1729,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1746,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1741,6 +1788,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1772,6 +1820,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1788,6 +1837,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1854,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1820,6 +1871,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1851,6 +1903,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1920,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1883,6 +1937,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1899,6 +1954,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1915,6 +1971,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1956,6 +2013,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1972,6 +2030,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1988,6 +2047,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2004,6 +2064,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2020,6 +2081,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2036,6 +2098,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2077,6 +2140,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2108,6 +2172,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2124,6 +2189,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2140,6 +2206,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2171,6 +2238,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2187,6 +2255,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2203,6 +2272,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SolarShadingTest_SQL.idf b/testfiles/SolarShadingTest_SQL.idf index e9d956f49f6..67d927933c9 100644 --- a/testfiles/SolarShadingTest_SQL.idf +++ b/testfiles/SolarShadingTest_SQL.idf @@ -681,6 +681,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +723,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -753,6 +755,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +772,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -785,6 +789,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +821,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +838,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +855,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 1 @ 200 601 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +872,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +914,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +931,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +948,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +965,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +982,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 2 @ 200 200 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +999,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1041,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1057,6 +1073,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1090,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1107,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1105,6 +1124,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1121,6 +1141,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1173,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1168,6 +1190,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1207,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 3 @ 200 610 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1224,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1266,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1272,6 +1298,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1288,6 +1315,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1304,6 +1332,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1320,6 +1349,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1381,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1398,7 @@ Roof, !- Surface Type CEILING, !- Construction Name ZONE 4 @ 200 600 0 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1415,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1457,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1455,6 +1489,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1471,6 +1506,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1487,6 +1523,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1555,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1572,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1589,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 5 @ 200 601 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1566,6 +1606,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1607,6 +1648,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1623,6 +1665,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1682,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1699,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1716,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 6 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1687,6 +1733,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1728,6 +1775,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1759,6 +1807,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1775,6 +1824,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1791,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1807,6 +1858,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1838,6 +1890,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1854,6 +1907,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1870,6 +1924,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1886,6 +1941,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 7 @ 200 610 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1943,6 +2000,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1959,6 +2017,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1975,6 +2034,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1991,6 +2051,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2007,6 +2068,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 8 @ 200 200 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2023,6 +2085,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2064,6 +2127,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2095,6 +2159,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2111,6 +2176,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2127,6 +2193,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2158,6 +2225,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2174,6 +2242,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2190,6 +2259,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 9 @ 200 600 1 T, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SpectralAngularOpticalProperties_TableData.idf b/testfiles/SpectralAngularOpticalProperties_TableData.idf index 1d4c2da31ca..a74767b2332 100644 --- a/testfiles/SpectralAngularOpticalProperties_TableData.idf +++ b/testfiles/SpectralAngularOpticalProperties_TableData.idf @@ -1348,6 +1348,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1364,6 +1365,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1380,6 +1382,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1399,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1416,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1433,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1450,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1460,6 +1467,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1476,6 +1484,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1492,6 +1501,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1518,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1524,6 +1535,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1552,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1556,6 +1569,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1572,6 +1586,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1588,6 +1603,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1604,6 +1620,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1637,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1654,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1671,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1688,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1684,6 +1705,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1700,6 +1722,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1716,6 +1739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1732,6 +1756,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1748,6 +1773,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1764,6 +1790,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1780,6 +1807,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1796,6 +1824,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1812,6 +1841,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1828,6 +1858,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1844,6 +1875,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1860,6 +1892,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1876,6 +1909,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/StackedZonesWithInterzoneIRTLayers.idf b/testfiles/StackedZonesWithInterzoneIRTLayers.idf index dbce5cdacbe..586cc27b4c7 100644 --- a/testfiles/StackedZonesWithInterzoneIRTLayers.idf +++ b/testfiles/StackedZonesWithInterzoneIRTLayers.idf @@ -372,6 +372,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name Bottom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Bottom:South Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -391,6 +392,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name Bottom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Bottom:East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -410,6 +412,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name Bottom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Bottom:North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -429,6 +432,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name Bottom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Bottom:West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +452,7 @@ CEILING, !- Surface Type IRTSurface, !- Construction Name Bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SecondLevel:Bottom, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -466,6 +471,7 @@ Floor, !- Surface Type Light Floor, !- Construction Name Bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bottom:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -485,6 +491,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SecondLevel:South Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -504,6 +511,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SecondLevel:East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -523,6 +531,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SecondLevel:North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -542,6 +551,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SecondLevel:West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -561,6 +571,7 @@ CEILING, !- Surface Type IRTSurface, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ThirdLevel:Bottom, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -580,6 +591,7 @@ FLOOR, !- Surface Type IRTSurface, !- Construction Name SecondLevel, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Bottom:Top, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +611,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition ThirdLevel:South Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +631,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition ThirdLevel:East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +651,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition ThirdLevel:North Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +671,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition ThirdLevel:West Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +691,7 @@ FLOOR, !- Surface Type IRTSurface, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SecondLevel:Top, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +711,7 @@ Wall, !- Surface Type Light Roof/Ceiling, !- Construction Name ThirdLevel, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition ThirdLevel:Top, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,7 +773,8 @@ Bottom:PartitionIntMass1,!- Name Light Partitions, !- Construction Name Bottom, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field ! ========================= @@ -763,7 +782,8 @@ Bottom:PartitionIntMass2,!- Name Light Partitions, !- Construction Name Bottom, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field ! ========================= @@ -771,7 +791,8 @@ SecondLevel:IntMass1, !- Name Light Partitions, !- Construction Name SecondLevel, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field ! ========================= @@ -779,7 +800,8 @@ SecondLevel:IntMass2, !- Name Light Partitions, !- Construction Name SecondLevel, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field ! ========================= @@ -787,7 +809,8 @@ ThirdLevel:IntMass1, !- Name Light Partitions, !- Construction Name ThirdLevel, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field ! ========================= @@ -795,7 +818,8 @@ ThirdLevel:IntMass2, !- Name Light Partitions, !- Construction Name ThirdLevel, !- Zone or ZoneList Name - 4.645; !- Surface Area {m2} + , !- Surface Area {m2} + 4.645; !- Extended Field SurfaceProperty:ConvectionCoefficients, Bottom:Top, !- Surface Name diff --git a/testfiles/SteamSystemAutoSize.idf b/testfiles/SteamSystemAutoSize.idf index b5e263d2f24..a1a33303054 100644 --- a/testfiles/SteamSystemAutoSize.idf +++ b/testfiles/SteamSystemAutoSize.idf @@ -569,6 +569,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +586,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +603,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +620,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +637,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +654,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +671,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +688,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +705,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +739,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +756,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +773,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +790,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +807,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +841,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +858,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +875,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +892,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +909,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +926,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +943,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +960,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +977,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -969,6 +994,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +1011,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1045,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1062,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1096,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1113,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1130,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1147,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1181,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1198,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1215,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1232,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1249,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1266,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1241,6 +1283,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1300,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/StormWindow.idf b/testfiles/StormWindow.idf index 590ebe415c0..133715467d4 100644 --- a/testfiles/StormWindow.idf +++ b/testfiles/StormWindow.idf @@ -678,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -709,6 +710,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -725,6 +727,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -741,6 +744,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -757,6 +761,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -773,6 +778,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +795,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +812,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +829,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -837,6 +846,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +863,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -869,6 +880,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -885,6 +897,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +914,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +931,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -933,6 +948,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -949,6 +965,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +982,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -981,6 +999,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -997,6 +1016,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/StripMallZoneEvapCooler.idf b/testfiles/StripMallZoneEvapCooler.idf index c66df8a518a..f23f935c266 100644 --- a/testfiles/StripMallZoneEvapCooler.idf +++ b/testfiles/StripMallZoneEvapCooler.idf @@ -704,6 +704,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +721,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +738,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +755,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +772,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +806,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +823,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +840,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +908,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +925,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +942,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +976,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -976,6 +993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1010,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1027,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1044,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1078,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1095,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1112,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1129,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1120,6 +1146,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1180,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1168,6 +1197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1214,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1231,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1216,6 +1248,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1232,6 +1265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1282,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1264,6 +1299,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1280,6 +1316,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1333,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1312,6 +1350,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1328,6 +1367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1384,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1360,6 +1401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1418,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1435,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1408,6 +1452,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1440,6 +1486,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1456,6 +1503,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1472,6 +1520,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1537,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1504,6 +1554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1520,6 +1571,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1588,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1552,6 +1605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1568,6 +1622,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1584,6 +1639,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1600,6 +1656,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1616,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1690,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1648,6 +1707,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3052,61 +3112,71 @@ LGstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, LGstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, SMstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore7 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore8 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/StripMallZoneEvapCoolerAutosized.idf b/testfiles/StripMallZoneEvapCoolerAutosized.idf index 54a2d51e0a2..46b8f13b440 100644 --- a/testfiles/StripMallZoneEvapCoolerAutosized.idf +++ b/testfiles/StripMallZoneEvapCoolerAutosized.idf @@ -704,6 +704,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +721,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -736,6 +738,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -752,6 +755,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +772,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +789,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -800,6 +806,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -816,6 +823,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -832,6 +840,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -848,6 +857,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +891,7 @@ Wall, !- Surface Type int-walls, !- Construction Name LGstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -896,6 +908,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -912,6 +925,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +942,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -944,6 +959,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +976,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -976,6 +993,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -992,6 +1010,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1027,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1044,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1061,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore1_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1078,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1095,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1112,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1129,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1120,6 +1146,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1136,6 +1163,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1152,6 +1180,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1168,6 +1197,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore4_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1214,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1200,6 +1231,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1216,6 +1248,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1232,6 +1265,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore3_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,6 +1282,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1264,6 +1299,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1280,6 +1316,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1333,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1312,6 +1350,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1328,6 +1367,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition LGstore2_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1344,6 +1384,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1360,6 +1401,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1376,6 +1418,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1392,6 +1435,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1408,6 +1452,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1469,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore5_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1440,6 +1486,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1456,6 +1503,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1472,6 +1520,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1488,6 +1537,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1504,6 +1554,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1520,6 +1571,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore6_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1536,6 +1588,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1552,6 +1605,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore8_Wall_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1568,6 +1622,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1584,6 +1639,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1600,6 +1656,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1616,6 +1673,7 @@ Wall, !- Surface Type int-walls, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SMstore7_Wall_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1690,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1648,6 +1707,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name SMstore8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3052,61 +3112,71 @@ LGstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore1, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, LGstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name LGstore2, !- Zone or ZoneList Name - 696.7728; !- Surface Area {m2} + , !- Surface Area {m2} + 696.7728; !- Extended Field InternalMass, SMstore1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore1, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore2, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore3, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore4, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore5 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore5, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore6 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore6, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore7 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore7, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field InternalMass, SMstore8 Internal Mass, !- Name InteriorFurnishings, !- Construction Name SMstore8, !- Zone or ZoneList Name - 348.3864; !- Surface Area {m2} + , !- Surface Area {m2} + 348.3864; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/SuperMarketDetailed_DesuperHeatingCoil.idf b/testfiles/SuperMarketDetailed_DesuperHeatingCoil.idf index 52e63c95662..78945419803 100644 --- a/testfiles/SuperMarketDetailed_DesuperHeatingCoil.idf +++ b/testfiles/SuperMarketDetailed_DesuperHeatingCoil.idf @@ -966,6 +966,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +983,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1000,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1017,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1034,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1051,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1062,6 +1068,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1085,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1102,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1119,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1136,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1153,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,25 +1218,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_DesuperHeatingCoil.idf b/testfiles/SuperMarket_DesuperHeatingCoil.idf index 6f0d3ac1d83..4fbe0ea1ca6 100644 --- a/testfiles/SuperMarket_DesuperHeatingCoil.idf +++ b/testfiles/SuperMarket_DesuperHeatingCoil.idf @@ -966,6 +966,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +983,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1000,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1017,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1034,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1051,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1062,6 +1068,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1085,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1102,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1119,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1136,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1153,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,25 +1218,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_DetailedEvapCondenser.idf b/testfiles/SuperMarket_DetailedEvapCondenser.idf index edab70120cb..49b20b38dbf 100644 --- a/testfiles/SuperMarket_DetailedEvapCondenser.idf +++ b/testfiles/SuperMarket_DetailedEvapCondenser.idf @@ -1033,6 +1033,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1049,6 +1050,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1067,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1084,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1101,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1118,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1135,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1152,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1169,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1186,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1193,6 +1203,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1220,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,25 +1285,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_DetailedWaterCondenser.idf b/testfiles/SuperMarket_DetailedWaterCondenser.idf index ec613a2dfaf..ce09be3e8f8 100644 --- a/testfiles/SuperMarket_DetailedWaterCondenser.idf +++ b/testfiles/SuperMarket_DetailedWaterCondenser.idf @@ -1052,6 +1052,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1069,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1084,6 +1086,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1103,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1120,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1132,6 +1137,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1154,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1171,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1188,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1196,6 +1205,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1212,6 +1222,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1239,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,25 +1304,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_EvapCondenser.idf b/testfiles/SuperMarket_EvapCondenser.idf index 1445add2eff..4cb69fad247 100644 --- a/testfiles/SuperMarket_EvapCondenser.idf +++ b/testfiles/SuperMarket_EvapCondenser.idf @@ -980,6 +980,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -996,6 +997,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1012,6 +1014,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1031,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1044,6 +1048,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1065,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1082,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1099,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1116,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1133,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1140,6 +1150,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1167,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,25 +1232,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_SharedEvapCondenser.idf b/testfiles/SuperMarket_SharedEvapCondenser.idf index 0637afbc009..fb0e02951df 100644 --- a/testfiles/SuperMarket_SharedEvapCondenser.idf +++ b/testfiles/SuperMarket_SharedEvapCondenser.idf @@ -1033,6 +1033,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1049,6 +1050,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1065,6 +1067,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1084,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1097,6 +1101,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1113,6 +1118,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1129,6 +1135,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1152,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1169,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1186,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1193,6 +1203,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1220,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,25 +1285,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SuperMarket_WaterCondenser.idf b/testfiles/SuperMarket_WaterCondenser.idf index d32ec6a3d55..61569968b13 100644 --- a/testfiles/SuperMarket_WaterCondenser.idf +++ b/testfiles/SuperMarket_WaterCondenser.idf @@ -1007,6 +1007,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1023,6 +1024,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1041,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1055,6 +1058,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1071,6 +1075,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1087,6 +1092,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1103,6 +1109,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1126,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1143,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1151,6 +1160,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1167,6 +1177,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1183,6 +1194,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1247,25 +1259,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Supermarket.idf b/testfiles/Supermarket.idf index 88beb9383b1..3e56d5fd952 100644 --- a/testfiles/Supermarket.idf +++ b/testfiles/Supermarket.idf @@ -966,6 +966,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -982,6 +983,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1000,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1017,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1034,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1051,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1062,6 +1068,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1085,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1102,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1110,6 +1119,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1126,6 +1136,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1153,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1206,25 +1218,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupermarketSecondary.idf b/testfiles/SupermarketSecondary.idf index c1d9d8dfddc..6824cda3bc1 100644 --- a/testfiles/SupermarketSecondary.idf +++ b/testfiles/SupermarketSecondary.idf @@ -1016,6 +1016,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1032,6 +1033,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1048,6 +1050,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1064,6 +1067,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1080,6 +1084,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1096,6 +1101,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1112,6 +1118,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1128,6 +1135,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1152,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1160,6 +1169,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1176,6 +1186,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1192,6 +1203,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1256,25 +1268,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupermarketSubCoolersVariableSuction.idf b/testfiles/SupermarketSubCoolersVariableSuction.idf index c1a14ed456d..8851cdade04 100644 --- a/testfiles/SupermarketSubCoolersVariableSuction.idf +++ b/testfiles/SupermarketSubCoolersVariableSuction.idf @@ -1013,6 +1013,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1029,6 +1030,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1045,6 +1047,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1061,6 +1064,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1081,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1093,6 +1098,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1109,6 +1115,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1125,6 +1132,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1141,6 +1149,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1157,6 +1166,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1173,6 +1183,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1189,6 +1200,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1253,25 +1265,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupermarketTranscriticalCO2.idf b/testfiles/SupermarketTranscriticalCO2.idf index 7a30f4f5417..3c5749bc007 100644 --- a/testfiles/SupermarketTranscriticalCO2.idf +++ b/testfiles/SupermarketTranscriticalCO2.idf @@ -999,6 +999,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1016,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1033,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1050,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1063,6 +1067,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1084,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1101,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1118,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1135,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1143,6 +1152,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1159,6 +1169,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1186,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1239,25 +1251,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupermarketTwoStageFlashIntercooler.idf b/testfiles/SupermarketTwoStageFlashIntercooler.idf index 93517a8820e..990f4e48f5d 100644 --- a/testfiles/SupermarketTwoStageFlashIntercooler.idf +++ b/testfiles/SupermarketTwoStageFlashIntercooler.idf @@ -1008,6 +1008,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1025,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1042,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1059,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1076,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1093,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1110,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1127,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1144,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1161,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1168,6 +1178,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1195,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,25 +1260,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupermarketTwoStageShellCoilIntercooler.idf b/testfiles/SupermarketTwoStageShellCoilIntercooler.idf index 5f90350d3d9..10689d1412a 100644 --- a/testfiles/SupermarketTwoStageShellCoilIntercooler.idf +++ b/testfiles/SupermarketTwoStageShellCoilIntercooler.idf @@ -1008,6 +1008,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1025,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1040,6 +1042,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1056,6 +1059,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1072,6 +1076,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1088,6 +1093,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1104,6 +1110,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1120,6 +1127,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1136,6 +1144,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1152,6 +1161,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1168,6 +1178,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1184,6 +1195,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1248,25 +1260,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Supermarket_CascadeCond.idf b/testfiles/Supermarket_CascadeCond.idf index 28e000c081c..1003ee69c04 100644 --- a/testfiles/Supermarket_CascadeCond.idf +++ b/testfiles/Supermarket_CascadeCond.idf @@ -1010,6 +1010,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1026,6 +1027,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1042,6 +1044,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1058,6 +1061,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1078,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1090,6 +1095,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1106,6 +1112,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1129,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1146,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1154,6 +1163,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1170,6 +1180,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1197,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,25 +1262,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Supermarket_Detailed.idf b/testfiles/Supermarket_Detailed.idf index d8050c8cf98..12a5a8b63f1 100644 --- a/testfiles/Supermarket_Detailed.idf +++ b/testfiles/Supermarket_Detailed.idf @@ -1011,6 +1011,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1028,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1045,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1062,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1079,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1096,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1113,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1130,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1147,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1164,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1171,6 +1181,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1198,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,25 +1263,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/Supermarket_SharedAirCondenser.idf b/testfiles/Supermarket_SharedAirCondenser.idf index b84187d8ab8..15cba4d869e 100644 --- a/testfiles/Supermarket_SharedAirCondenser.idf +++ b/testfiles/Supermarket_SharedAirCondenser.idf @@ -1011,6 +1011,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1028,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1045,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1059,6 +1062,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1075,6 +1079,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1096,7 @@ Wall, !- Surface Type FaceBrkIns4LWConcBlkGyp_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1107,6 +1113,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall_mirror, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1130,7 @@ Wall, !- Surface Type IntWallConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Main_IntWall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1147,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1155,6 +1164,7 @@ Roof, !- Surface Type SlagFeltIns6LWConcGapAcoTile_R-11, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1171,6 +1181,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name BackRoom, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1198,7 @@ Floor, !- Surface Type BotFloorConstruction, !- Construction Name SalesFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1251,25 +1263,29 @@ BackRoom_Furniture1, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, BackRoom_Furniture2, !- Name FurnitureConstruction, !- Construction Name BackRoom, !- Zone or ZoneList Name - 95.0; !- Surface Area {m2} + , !- Surface Area {m2} + 95.0; !- Extended Field InternalMass, SalesFloor_Furniture1, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field InternalMass, SalesFloor_Furniture2, !- Name FurnitureConstruction, !- Construction Name SalesFloor, !- Zone or ZoneList Name - 845.0; !- Surface Area {m2} + , !- Surface Area {m2} + 845.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: PEOPLE =========== diff --git a/testfiles/SupplyPlenumVAV.idf b/testfiles/SupplyPlenumVAV.idf index 9e9375997ec..53f553f69a8 100644 --- a/testfiles/SupplyPlenumVAV.idf +++ b/testfiles/SupplyPlenumVAV.idf @@ -579,6 +579,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -610,6 +611,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -626,6 +628,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -642,6 +645,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -658,6 +662,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -674,6 +679,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +696,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +713,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -722,6 +730,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -738,6 +747,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -754,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +781,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -786,6 +798,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -802,6 +815,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -818,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -834,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +866,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -866,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +900,7 @@ Floor, !- Surface Type PLENUM FLOOR, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +917,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -914,6 +934,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +951,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +1002,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1019,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1010,6 +1036,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1026,6 +1053,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1042,6 +1070,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1087,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1074,6 +1104,7 @@ Roof, !- Surface Type PLENUM CEILING, !- Construction Name SUPPLY PLENUM ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/SurfaceGroundHeatExchanger.idf b/testfiles/SurfaceGroundHeatExchanger.idf index c211df521ea..f4f014c50d9 100644 --- a/testfiles/SurfaceGroundHeatExchanger.idf +++ b/testfiles/SurfaceGroundHeatExchanger.idf @@ -479,7 +479,7 @@ ConstructionProperty:InternalHeatSource, Internal Source, !- Name Outside Surface Construction, !- Construction Name - 1, !- Source Present After Layer Number + 1, !- Thermal Source Present After Layer Number 1, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -604,6 +604,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -620,6 +621,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +638,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +655,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +672,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +689,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +706,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +740,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +757,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +774,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -780,6 +791,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +808,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +825,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +842,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +859,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +876,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +893,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +910,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +927,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +944,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +961,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +978,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +995,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1012,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1046,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1063,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1080,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1097,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1114,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1100,6 +1131,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1148,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1165,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1182,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1199,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1216,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1233,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1212,6 +1250,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1267,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/SurfaceHeatSourceTerm_RefBldgSmallOfficeNew2004.idf b/testfiles/SurfaceHeatSourceTerm_RefBldgSmallOfficeNew2004.idf index 362f8c1e05f..8511d246eee 100644 --- a/testfiles/SurfaceHeatSourceTerm_RefBldgSmallOfficeNew2004.idf +++ b/testfiles/SurfaceHeatSourceTerm_RefBldgSmallOfficeNew2004.idf @@ -654,6 +654,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +671,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +688,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +705,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +722,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +739,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -749,6 +755,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +772,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +789,7 @@ Roof, !- Surface Type Attic Non-res Roof, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -796,6 +805,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +822,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +839,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -844,6 +856,7 @@ Floor, !- Surface Type Attic Non-res Floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -860,6 +873,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +890,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +907,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +924,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +941,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +958,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +975,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +992,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1009,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1026,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1043,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1036,6 +1060,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1077,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1068,6 +1094,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1084,6 +1111,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1128,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1116,6 +1145,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1162,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1179,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1164,6 +1196,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1180,6 +1213,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1196,6 +1230,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1212,6 +1247,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1264,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1281,7 @@ Ceiling, !- Surface Type Attic Non-res Floor, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1260,6 +1298,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1315,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1292,6 +1332,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1308,6 +1349,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1324,6 +1366,7 @@ Wall, !- Surface Type Mass Non-res Ext Wall, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2060,31 +2103,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/SurfacePropTest_SurfLWR.idf b/testfiles/SurfacePropTest_SurfLWR.idf index 950c76aab4c..a4279949bc8 100644 --- a/testfiles/SurfacePropTest_SurfLWR.idf +++ b/testfiles/SurfacePropTest_SurfLWR.idf @@ -815,6 +815,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +857,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +919,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +981,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1043,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1060,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1077,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1094,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1111,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1128,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1145,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1162,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,13 +1178,15 @@ Zn001:IntM001, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 130.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 130.0000; !- Extended Field InternalMass, Zn001:IntM002, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 920.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 920.0000; !- Extended Field ! Floor subdivided: ! BuildingSurface:Detailed, @@ -1261,6 +1275,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1302,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1303,6 +1319,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1336,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1335,6 +1353,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1370,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1391,13 +1411,15 @@ Zn001:IntM003, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 2380.000; !- Surface Area {m2} + , !- Surface Area {m2} + 2380.000; !- Extended Field BuildingSurface:Detailed, Zn002:Wall001, !- Name Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1414,6 +1436,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1453,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1476,6 +1500,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1522,6 +1547,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall012, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1564,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall011, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1581,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1598,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1586,6 +1615,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1652,6 +1682,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1708,6 +1739,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1724,6 +1756,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1740,6 +1773,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1790,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1807,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1788,6 +1824,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1870,6 +1908,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1886,6 +1925,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1942,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1958,6 +1999,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2016,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2033,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2050,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2067,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2038,6 +2084,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2084,6 +2131,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2178,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2195,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2212,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2178,6 +2229,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2246,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SurfaceTest.idf b/testfiles/SurfaceTest.idf index 2502d7b61eb..98c22a61267 100644 --- a/testfiles/SurfaceTest.idf +++ b/testfiles/SurfaceTest.idf @@ -815,6 +815,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +857,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +919,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +981,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1043,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1060,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1077,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1094,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1111,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1128,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1145,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1162,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,13 +1178,15 @@ Zn001:IntM001, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 130.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 130.0000; !- Extended Field InternalMass, Zn001:IntM002, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 920.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 920.0000; !- Extended Field ! Floor subdivided: ! BuildingSurface:Detailed, @@ -1261,6 +1275,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1302,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1303,6 +1319,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1336,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1335,6 +1353,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1370,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1391,13 +1411,15 @@ Zn001:IntM003, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 2380.000; !- Surface Area {m2} + , !- Surface Area {m2} + 2380.000; !- Extended Field BuildingSurface:Detailed, Zn002:Wall001, !- Name Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1414,6 +1436,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1453,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1476,6 +1500,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1522,6 +1547,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall012, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1564,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall011, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1581,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1598,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1586,6 +1615,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1652,6 +1682,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1708,6 +1739,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1724,6 +1756,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1740,6 +1773,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1790,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1807,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1788,6 +1824,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1870,6 +1908,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1886,6 +1925,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1942,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1958,6 +1999,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2016,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2033,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2050,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2067,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2038,6 +2084,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2084,6 +2131,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition OSCCoef:Zn005:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2178,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition OSCCoef:Zn005:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2195,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2212,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2178,6 +2229,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2246,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/SurfaceZonePropTest_LocalEnv.idf b/testfiles/SurfaceZonePropTest_LocalEnv.idf index 7e7d0e4d2ce..80cd1747d72 100644 --- a/testfiles/SurfaceZonePropTest_LocalEnv.idf +++ b/testfiles/SurfaceZonePropTest_LocalEnv.idf @@ -815,6 +815,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -856,6 +857,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +919,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +981,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1039,6 +1043,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1055,6 +1060,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1071,6 +1077,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1087,6 +1094,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1103,6 +1111,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1119,6 +1128,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1135,6 +1145,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1151,6 +1162,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,13 +1178,15 @@ Zn001:IntM001, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 130.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 130.0000; !- Extended Field InternalMass, Zn001:IntM002, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 920.0000; !- Surface Area {m2} + , !- Surface Area {m2} + 920.0000; !- Extended Field ! Floor subdivided: ! BuildingSurface:Detailed, @@ -1261,6 +1275,7 @@ Floor, !- Surface Type FLOOR32, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1302,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1303,6 +1319,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1336,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1335,6 +1353,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1370,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name HEARTLAND AREA, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1391,13 +1411,15 @@ Zn001:IntM003, !- Name CUSTPARTITION, !- Construction Name HEARTLAND AREA, !- Zone or ZoneList Name - 2380.000; !- Surface Area {m2} + , !- Surface Area {m2} + 2380.000; !- Extended Field BuildingSurface:Detailed, Zn002:Wall001, !- Name Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1414,6 +1436,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1430,6 +1453,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1476,6 +1500,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1522,6 +1547,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall012, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1564,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall011, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1554,6 +1581,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1570,6 +1598,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name OREGON WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1586,6 +1615,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1652,6 +1682,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1708,6 +1739,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1724,6 +1756,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1740,6 +1773,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall008, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1756,6 +1790,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall007, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1772,6 +1807,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1788,6 +1824,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name GEORGIA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1841,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1870,6 +1908,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1886,6 +1925,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1902,6 +1942,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1958,6 +1999,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall006, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1974,6 +2016,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1990,6 +2033,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2006,6 +2050,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ARIZONA WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2022,6 +2067,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2038,6 +2084,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2084,6 +2131,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2130,6 +2178,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2146,6 +2195,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall009, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2162,6 +2212,7 @@ Wall, !- Surface Type INTERIOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall010, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2178,6 +2229,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2194,6 +2246,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MAINE WING, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TRHConstFlowChillerOneBranch.idf b/testfiles/TRHConstFlowChillerOneBranch.idf index d6f24f18163..4a203d54d47 100644 --- a/testfiles/TRHConstFlowChillerOneBranch.idf +++ b/testfiles/TRHConstFlowChillerOneBranch.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TRHEvapCoolerOAStaged.idf b/testfiles/TRHEvapCoolerOAStaged.idf index e03da750fa1..cd525c4437e 100644 --- a/testfiles/TRHEvapCoolerOAStaged.idf +++ b/testfiles/TRHEvapCoolerOAStaged.idf @@ -411,6 +411,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -427,6 +428,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -443,6 +445,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -459,6 +462,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -475,6 +479,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -491,6 +496,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -507,6 +513,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -523,6 +530,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -539,6 +547,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -555,6 +564,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -571,6 +581,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -587,6 +598,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -603,6 +615,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +632,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +649,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +666,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +683,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -683,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +717,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +734,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TRHEvapCoolerOAStagedWetCoil.idf b/testfiles/TRHEvapCoolerOAStagedWetCoil.idf index 801d7878e4f..4b5887db5be 100644 --- a/testfiles/TRHEvapCoolerOAStagedWetCoil.idf +++ b/testfiles/TRHEvapCoolerOAStagedWetCoil.idf @@ -411,6 +411,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -427,6 +428,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -443,6 +445,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -459,6 +462,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -475,6 +479,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -491,6 +496,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name SouthWest ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -507,6 +513,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -523,6 +530,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -539,6 +547,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -555,6 +564,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -571,6 +581,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -587,6 +598,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -603,6 +615,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -619,6 +632,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +649,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +666,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +683,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -683,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +717,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +734,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRHDXSystem.idf b/testfiles/TermRHDXSystem.idf index 8a5000233c7..c2c437f818c 100644 --- a/testfiles/TermRHDXSystem.idf +++ b/testfiles/TermRHDXSystem.idf @@ -429,6 +429,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -445,6 +446,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -461,6 +463,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -477,6 +480,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -493,6 +497,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -509,6 +514,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -525,6 +531,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -541,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -557,6 +565,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -573,6 +582,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -589,6 +599,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -605,6 +616,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +633,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +650,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +684,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +701,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +735,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +752,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRHGasElecCoils.idf b/testfiles/TermRHGasElecCoils.idf index 25913f39d2c..1c47c5ad2b0 100644 --- a/testfiles/TermRHGasElecCoils.idf +++ b/testfiles/TermRHGasElecCoils.idf @@ -756,6 +756,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +805,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +822,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +839,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +856,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +873,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +890,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +907,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +924,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +941,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +958,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +975,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +992,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1009,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1026,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1027,6 +1043,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1060,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1077,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1094,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermReheat.idf b/testfiles/TermReheat.idf index f3bb7588b4c..d29e09e474b 100644 --- a/testfiles/TermReheat.idf +++ b/testfiles/TermReheat.idf @@ -762,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +811,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -841,6 +845,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +862,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -873,6 +879,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -889,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +930,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +964,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +981,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -985,6 +998,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1015,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1032,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1049,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1066,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1083,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1100,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermReheatPri-SecLoop.idf b/testfiles/TermReheatPri-SecLoop.idf index aebc50d99c2..cce39bbe16d 100644 --- a/testfiles/TermReheatPri-SecLoop.idf +++ b/testfiles/TermReheatPri-SecLoop.idf @@ -767,6 +767,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -798,6 +799,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -814,6 +816,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +833,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -846,6 +850,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -862,6 +867,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +884,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +901,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +918,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +935,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +952,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +969,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +986,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1003,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1020,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1037,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1054,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1071,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1088,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1105,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermReheatScheduledPump.idf b/testfiles/TermReheatScheduledPump.idf index 6270361ce04..878e0c4189b 100644 --- a/testfiles/TermReheatScheduledPump.idf +++ b/testfiles/TermReheatScheduledPump.idf @@ -431,6 +431,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +448,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -463,6 +465,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +482,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +499,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -511,6 +516,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +533,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +550,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +567,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -575,6 +584,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +601,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +618,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -623,6 +635,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +652,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +669,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +686,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -687,6 +703,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +720,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +737,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -735,6 +754,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermReheatSurfTC.idf b/testfiles/TermReheatSurfTC.idf index 8fa7fce222f..65342533a21 100644 --- a/testfiles/TermReheatSurfTC.idf +++ b/testfiles/TermReheatSurfTC.idf @@ -564,6 +564,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +596,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +613,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -627,6 +630,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -643,6 +647,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +664,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +681,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +698,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +732,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +749,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +766,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +783,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +800,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +817,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +834,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -835,6 +851,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +868,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +885,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +902,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermReheatZoneExh.idf b/testfiles/TermReheatZoneExh.idf index 6cd1ddb38ba..bd4d4db8c19 100644 --- a/testfiles/TermReheatZoneExh.idf +++ b/testfiles/TermReheatZoneExh.idf @@ -775,6 +775,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -806,6 +807,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -822,6 +824,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -838,6 +841,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +858,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +875,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +892,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -902,6 +909,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -918,6 +926,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -934,6 +943,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -950,6 +960,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -966,6 +977,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -982,6 +994,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -998,6 +1011,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1028,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1030,6 +1045,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1062,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1062,6 +1079,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1078,6 +1096,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1094,6 +1113,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRhDualSetpointWithDB.idf b/testfiles/TermRhDualSetpointWithDB.idf index df28838d271..ecd282f217b 100644 --- a/testfiles/TermRhDualSetpointWithDB.idf +++ b/testfiles/TermRhDualSetpointWithDB.idf @@ -430,6 +430,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -446,6 +447,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -462,6 +464,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -478,6 +481,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -494,6 +498,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -510,6 +515,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -526,6 +532,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -542,6 +549,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -558,6 +566,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -574,6 +583,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -590,6 +600,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -606,6 +617,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -622,6 +634,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +685,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +719,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +736,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +753,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRhGenericOAHeatRecMinExh.idf b/testfiles/TermRhGenericOAHeatRecMinExh.idf index 6f674d36fe5..d75d67c8636 100644 --- a/testfiles/TermRhGenericOAHeatRecMinExh.idf +++ b/testfiles/TermRhGenericOAHeatRecMinExh.idf @@ -651,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +717,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +734,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +751,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +768,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +802,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +819,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +836,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +853,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +870,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +921,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +938,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +955,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +972,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +989,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRhGenericOAHeatRecPreheat.idf b/testfiles/TermRhGenericOAHeatRecPreheat.idf index 5d031e9a6a4..4733907e6d9 100644 --- a/testfiles/TermRhGenericOAHeatRecPreheat.idf +++ b/testfiles/TermRhGenericOAHeatRecPreheat.idf @@ -651,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -682,6 +683,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -698,6 +700,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +717,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +734,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +751,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +768,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -778,6 +785,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +802,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +819,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +836,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +853,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +870,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +887,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +904,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +921,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +938,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +955,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +972,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +989,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TermRhSingleHeatCoolNoDB.idf b/testfiles/TermRhSingleHeatCoolNoDB.idf index f7be930bfb7..716ab23844e 100644 --- a/testfiles/TermRhSingleHeatCoolNoDB.idf +++ b/testfiles/TermRhSingleHeatCoolNoDB.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ThermalChimneyTest.idf b/testfiles/ThermalChimneyTest.idf index 6986cc239c7..c64125df15f 100644 --- a/testfiles/ThermalChimneyTest.idf +++ b/testfiles/ThermalChimneyTest.idf @@ -539,6 +539,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -555,6 +556,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -571,6 +573,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -587,6 +590,7 @@ Wall, !- Surface Type ThermalChimney IN, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -603,6 +607,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -619,6 +624,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +641,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +658,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +675,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +692,7 @@ Wall, !- Surface Type ThermalChimney OUT, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -699,6 +709,7 @@ Wall, !- Surface Type ThermalChimney OUT, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +726,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +743,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +760,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +777,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +794,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -795,6 +811,7 @@ Wall, !- Surface Type ThermalChimney IN, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +828,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +845,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -843,6 +862,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +879,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +896,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +913,7 @@ Wall, !- Surface Type ThermalChimney OUT, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +930,7 @@ Wall, !- Surface Type ThermalChimney OUT, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -923,6 +947,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +964,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ThermochromicWindow.idf b/testfiles/ThermochromicWindow.idf index 7a252357d4d..9ac28f4480d 100644 --- a/testfiles/ThermochromicWindow.idf +++ b/testfiles/ThermochromicWindow.idf @@ -1211,6 +1211,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1227,6 +1228,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1243,6 +1245,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1259,6 +1262,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1275,6 +1279,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1291,6 +1296,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,7 +1312,8 @@ Core_ZN_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field People, Core_ZN, !- Name @@ -1573,6 +1580,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1589,6 +1597,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1605,6 +1614,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1726,6 +1736,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1742,6 +1753,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1758,6 +1770,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1773,7 +1786,8 @@ Perimeter_ZN_1_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_1_Infiltration, !- Name @@ -2014,6 +2028,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2030,6 +2045,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2122,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2139,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2138,6 +2156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2154,6 +2173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2169,7 +2189,8 @@ Perimeter_ZN_2_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_2_Infiltration, !- Name @@ -2410,6 +2431,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2448,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2465,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2482,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2499,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2580,6 +2606,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2595,7 +2622,8 @@ Perimeter_ZN_3_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_3_Infiltration, !- Name @@ -2836,6 +2864,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2852,6 +2881,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2868,6 +2898,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2884,6 +2915,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2900,6 +2932,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2916,6 +2949,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2991,7 +3025,8 @@ Perimeter_ZN_4_InternalMass_1, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ZoneInfiltration:DesignFlowRate, Perimeter_ZN_4_Infiltration, !- Name @@ -3232,6 +3267,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3248,6 +3284,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3264,6 +3301,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3280,6 +3318,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3296,6 +3335,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3312,6 +3352,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3328,6 +3369,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3344,6 +3386,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3360,6 +3403,7 @@ Floor, !- Surface Type exposed-floor, !- Construction Name Attic, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3376,6 +3420,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3392,6 +3437,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3407,6 +3453,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3422,6 +3469,7 @@ Roof, !- Surface Type roofs, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TransparentInsulationSimple.idf b/testfiles/TransparentInsulationSimple.idf index 3212b8c38b3..d86a4e7a2ef 100644 --- a/testfiles/TransparentInsulationSimple.idf +++ b/testfiles/TransparentInsulationSimple.idf @@ -386,6 +386,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -408,6 +409,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -424,6 +426,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +443,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +460,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +477,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/TranspiredCollectors.idf b/testfiles/TranspiredCollectors.idf index 6c7866e36da..60e43141d41 100644 --- a/testfiles/TranspiredCollectors.idf +++ b/testfiles/TranspiredCollectors.idf @@ -1001,6 +1001,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM 1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1018,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1035,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1052,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1069,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1086,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN1_S_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1103,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1120,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Shop_1:IntWall:West:Low, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1137,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1154,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1171,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1188,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN2_E_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1205,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1222,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1239,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1256,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1273,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1290,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN3_N_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1307,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1324,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1341,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1358,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1375,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1392,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN4_W_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1409,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1426,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1443,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1433,6 +1460,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1449,6 +1477,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1494,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN5_Core_Space_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1481,6 +1511,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM 1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1497,6 +1528,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1513,6 +1545,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1529,6 +1562,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1545,6 +1579,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_S_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1561,6 +1596,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN6_S_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1577,6 +1613,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1593,6 +1630,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Shop_1:IntWall:West:Hi, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1609,6 +1647,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1625,6 +1664,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1641,6 +1681,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1657,6 +1698,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN7_E_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1673,6 +1715,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1689,6 +1732,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1705,6 +1749,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1721,6 +1766,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1783,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_N_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1753,6 +1800,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN8_N_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1769,6 +1817,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1785,6 +1834,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_Core_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1801,6 +1851,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1817,6 +1868,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1833,6 +1885,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_W_Space_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1849,6 +1902,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN9_W_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1865,6 +1919,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_S_Plen_1:IntWall:North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1881,6 +1936,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1897,6 +1953,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_N_Plen_1:IntWall:South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1913,6 +1970,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_W_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1929,6 +1987,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_Core_Space_1:Ceiling,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1945,6 +2004,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN10_Core_Plen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1961,6 +2021,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM ZN11, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1977,6 +2038,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Shop_1:IntWall:West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1993,6 +2055,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2009,6 +2072,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_E_Space_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2025,6 +2089,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_E_Plen_1:IntWall:East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2041,6 +2106,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2057,6 +2123,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN11_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2073,6 +2140,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM ZN12, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2089,6 +2157,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Shop_1:IntWall:West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2105,6 +2174,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2121,6 +2191,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_Shop_1:IntWall:East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2137,6 +2208,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2153,6 +2225,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN12_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2169,6 +2242,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM ZN13, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2185,6 +2259,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Shop_1:IntWall:West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2201,6 +2276,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2217,6 +2293,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN12_Shop_1:IntWall:East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2233,6 +2310,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2249,6 +2327,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN13_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2265,6 +2344,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition UTSC OSCM ZN14, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2281,6 +2361,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN15_Shop_1:IntWall:West,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2297,6 +2378,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2313,6 +2395,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN13_Shop_1:IntWall:East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2329,6 +2412,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2345,6 +2429,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN14_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2361,6 +2446,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2377,6 +2463,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2393,6 +2480,7 @@ wall, !- Surface Type Ext-Wall, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2409,6 +2497,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN14_Shop_1:IntWall:East,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2425,6 +2514,7 @@ floor, !- Surface Type Ext-Slab, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2441,6 +2531,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN15_Shop_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2456,31 +2547,36 @@ ZN1_S_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN1_S_Space_1, !- Zone or ZoneList Name - 429.875; !- Surface Area {m2} + , !- Surface Area {m2} + 429.875; !- Extended Field InternalMass, ZN2_E_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN2_E_Space_1, !- Zone or ZoneList Name - 144.875; !- Surface Area {m2} + , !- Surface Area {m2} + 144.875; !- Extended Field InternalMass, ZN3_N_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN3_N_Space_1, !- Zone or ZoneList Name - 429.875; !- Surface Area {m2} + , !- Surface Area {m2} + 429.875; !- Extended Field InternalMass, ZN4_W_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN4_W_Space_1, !- Zone or ZoneList Name - 144.875; !- Surface Area {m2} + , !- Surface Area {m2} + 144.875; !- Extended Field InternalMass, ZN5_Core_Space_1, !- Name InteriorFurnishings, !- Construction Name ZN5_Core_Space_1, !- Zone or ZoneList Name - 850.500; !- Surface Area {m2} + , !- Surface Area {m2} + 850.500; !- Extended Field FenestrationSurface:Detailed, ZN3_N_Space_1:N_Window_0,!- Name diff --git a/testfiles/TwoWayCommonPipe_Pri-Sec.idf b/testfiles/TwoWayCommonPipe_Pri-Sec.idf index 055a8f4cdf1..bd125d9d5c5 100644 --- a/testfiles/TwoWayCommonPipe_Pri-Sec.idf +++ b/testfiles/TwoWayCommonPipe_Pri-Sec.idf @@ -626,6 +626,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +643,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +660,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +677,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +694,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +711,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -722,6 +728,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -738,6 +745,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -754,6 +762,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +779,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -849,6 +859,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +926,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +943,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +960,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +977,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +994,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1074,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1106,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1123,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1254,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1278,6 +1301,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1318,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1352,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1369,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1449,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1452,6 +1481,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1498,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1515,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1532,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1549,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1629,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1646,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1627,6 +1663,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1680,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1697,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1714,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitHeater.idf b/testfiles/UnitHeater.idf index ec55df6c3ee..16554e95f87 100644 --- a/testfiles/UnitHeater.idf +++ b/testfiles/UnitHeater.idf @@ -568,6 +568,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -599,6 +600,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -615,6 +617,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -631,6 +634,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -647,6 +651,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -663,6 +668,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +685,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +702,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +719,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -727,6 +736,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +753,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +770,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +787,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +804,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +838,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +855,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +872,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +889,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +906,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitHeaterAuto.idf b/testfiles/UnitHeaterAuto.idf index 277f17e4bf7..d3e40b6c83b 100644 --- a/testfiles/UnitHeaterAuto.idf +++ b/testfiles/UnitHeaterAuto.idf @@ -715,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -746,6 +747,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +764,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +798,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +815,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -826,6 +832,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -842,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +883,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +917,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +934,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -938,6 +951,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -970,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +1002,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1019,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1036,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1053,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitHeaterGasElec.idf b/testfiles/UnitHeaterGasElec.idf index 56130713141..a6bc62003b2 100644 --- a/testfiles/UnitHeaterGasElec.idf +++ b/testfiles/UnitHeaterGasElec.idf @@ -565,6 +565,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -596,6 +597,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -612,6 +614,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -628,6 +631,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -644,6 +648,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -660,6 +665,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +682,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +699,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +733,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +767,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -772,6 +784,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +801,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -820,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +852,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +886,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +903,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitVent5Zone.idf b/testfiles/UnitVent5Zone.idf index 72ea8502999..ffc22a1697a 100644 --- a/testfiles/UnitVent5Zone.idf +++ b/testfiles/UnitVent5Zone.idf @@ -579,6 +579,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +596,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +647,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +664,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +681,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +749,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +766,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +783,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +800,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +817,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +953,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +970,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +987,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1055,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1072,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1089,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1106,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1123,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1157,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1174,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1191,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1208,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitVent5ZoneAuto-CycFan2-Variable-MinOAOn-Annual-SelectMonths-Detailed.idf b/testfiles/UnitVent5ZoneAuto-CycFan2-Variable-MinOAOn-Annual-SelectMonths-Detailed.idf index d81da91be3d..b176d6df77f 100644 --- a/testfiles/UnitVent5ZoneAuto-CycFan2-Variable-MinOAOn-Annual-SelectMonths-Detailed.idf +++ b/testfiles/UnitVent5ZoneAuto-CycFan2-Variable-MinOAOn-Annual-SelectMonths-Detailed.idf @@ -586,6 +586,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -602,6 +603,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -618,6 +620,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -634,6 +637,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -650,6 +654,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -666,6 +671,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -682,6 +688,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -698,6 +705,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -714,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -730,6 +739,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -746,6 +756,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -762,6 +773,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -778,6 +790,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -794,6 +807,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -810,6 +824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +841,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +858,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -858,6 +875,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -874,6 +892,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +909,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -906,6 +926,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -922,6 +943,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +960,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -954,6 +977,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +994,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +1011,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1002,6 +1028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1018,6 +1045,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1062,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1050,6 +1079,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1096,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1113,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1164,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1181,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1198,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1215,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1232,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1210,6 +1249,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitVent5ZoneAuto.idf b/testfiles/UnitVent5ZoneAuto.idf index 26fd0fabfe4..629e25bb028 100644 --- a/testfiles/UnitVent5ZoneAuto.idf +++ b/testfiles/UnitVent5ZoneAuto.idf @@ -569,6 +569,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -585,6 +586,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -601,6 +603,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -617,6 +620,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -633,6 +637,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -649,6 +654,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -665,6 +671,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -681,6 +688,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -697,6 +705,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -713,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -729,6 +739,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -745,6 +756,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -761,6 +773,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +790,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -793,6 +807,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -809,6 +824,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -825,6 +841,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +858,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +875,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +892,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +909,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +926,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +943,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -937,6 +960,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +977,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +994,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +1011,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1045,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1033,6 +1062,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1079,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1096,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1113,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1147,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1164,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1145,6 +1181,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1198,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1215,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1232,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitVent5ZoneFixedOANoCoilOpt.idf b/testfiles/UnitVent5ZoneFixedOANoCoilOpt.idf index 7c35d935511..b7f3dc36c0e 100644 --- a/testfiles/UnitVent5ZoneFixedOANoCoilOpt.idf +++ b/testfiles/UnitVent5ZoneFixedOANoCoilOpt.idf @@ -579,6 +579,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -595,6 +596,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -611,6 +613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -627,6 +630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -643,6 +647,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -659,6 +664,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -675,6 +681,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -691,6 +698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -707,6 +715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +749,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -755,6 +766,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -771,6 +783,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -787,6 +800,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +817,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +834,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +851,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +868,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +885,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -883,6 +902,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -899,6 +919,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +936,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +953,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +970,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +987,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -995,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1055,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1043,6 +1072,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1089,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1075,6 +1106,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1091,6 +1123,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1123,6 +1157,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1139,6 +1174,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1155,6 +1191,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1208,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1187,6 +1225,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1203,6 +1242,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf b/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf index 49ec63954c3..ac5ce15e06b 100644 --- a/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf +++ b/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf @@ -367,6 +367,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -383,6 +384,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -399,6 +401,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -415,6 +418,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +435,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -447,6 +452,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_5ZoneWaterLoopHeatPump.idf b/testfiles/UnitarySystem_5ZoneWaterLoopHeatPump.idf index 80f5a2c33d4..9ba9424fa6b 100644 --- a/testfiles/UnitarySystem_5ZoneWaterLoopHeatPump.idf +++ b/testfiles/UnitarySystem_5ZoneWaterLoopHeatPump.idf @@ -498,6 +498,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -514,6 +515,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -530,6 +532,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -546,6 +549,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -562,6 +566,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -578,6 +583,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -594,6 +600,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -610,6 +617,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -626,6 +634,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -642,6 +651,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -721,6 +731,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +798,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +815,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +832,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +849,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +866,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -930,6 +946,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -961,6 +978,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -977,6 +995,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1012,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1009,6 +1029,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1025,6 +1046,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1104,6 +1126,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1150,6 +1173,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1190,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1207,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1224,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1241,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1321,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1324,6 +1353,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1340,6 +1370,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1387,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1404,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1388,6 +1421,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1467,6 +1501,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1483,6 +1518,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1499,6 +1535,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1515,6 +1552,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1531,6 +1569,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1547,6 +1586,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_DXCoilSystemAuto.idf b/testfiles/UnitarySystem_DXCoilSystemAuto.idf index bbc69f5cfe9..1ee0866d2a8 100644 --- a/testfiles/UnitarySystem_DXCoilSystemAuto.idf +++ b/testfiles/UnitarySystem_DXCoilSystemAuto.idf @@ -413,6 +413,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -429,6 +430,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -445,6 +447,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -461,6 +464,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -477,6 +481,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -493,6 +498,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -509,6 +515,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -525,6 +532,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -541,6 +549,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -557,6 +566,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -573,6 +583,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -589,6 +600,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -605,6 +617,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -621,6 +634,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -637,6 +651,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -653,6 +668,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -669,6 +685,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -685,6 +702,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -701,6 +719,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +736,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf b/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf index c7f5c831553..fe9585778d6 100644 --- a/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf +++ b/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf @@ -675,6 +675,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +692,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +709,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -723,6 +726,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +743,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +760,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +777,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +794,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -803,6 +811,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -819,6 +828,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +845,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -851,6 +862,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -867,6 +879,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +896,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +913,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +930,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +947,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +964,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +981,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +998,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_HeatPumpAuto.idf b/testfiles/UnitarySystem_HeatPumpAuto.idf index 435305734cf..3cafae3254a 100644 --- a/testfiles/UnitarySystem_HeatPumpAuto.idf +++ b/testfiles/UnitarySystem_HeatPumpAuto.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf b/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf index 5c4b4eb0d71..2151f569fc5 100644 --- a/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf +++ b/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf @@ -416,6 +416,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -432,6 +433,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +450,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -464,6 +467,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +484,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -496,6 +501,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -512,6 +518,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +535,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +552,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -560,6 +569,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -576,6 +586,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +603,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +620,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -624,6 +637,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +654,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +671,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +688,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -688,6 +705,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +722,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +739,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_MultiSpeedDX.idf b/testfiles/UnitarySystem_MultiSpeedDX.idf index c4c1e8fb0eb..e13860e0224 100644 --- a/testfiles/UnitarySystem_MultiSpeedDX.idf +++ b/testfiles/UnitarySystem_MultiSpeedDX.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_SingleSpeedDX.idf b/testfiles/UnitarySystem_SingleSpeedDX.idf index 1826241aa39..cd0ca28a36a 100644 --- a/testfiles/UnitarySystem_SingleSpeedDX.idf +++ b/testfiles/UnitarySystem_SingleSpeedDX.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_SubcoolReheatDX.idf b/testfiles/UnitarySystem_SubcoolReheatDX.idf index 7410961eeff..3849071120b 100644 --- a/testfiles/UnitarySystem_SubcoolReheatDX.idf +++ b/testfiles/UnitarySystem_SubcoolReheatDX.idf @@ -620,6 +620,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +637,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +654,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +671,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +688,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +705,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +722,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +739,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +756,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +773,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -843,6 +853,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +920,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -925,6 +937,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +954,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +971,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +988,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1052,6 +1068,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1083,6 +1100,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1117,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1131,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1147,6 +1168,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1226,6 +1248,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1272,6 +1295,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1288,6 +1312,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1304,6 +1329,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1320,6 +1346,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1336,6 +1363,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1415,6 +1443,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1446,6 +1475,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1492,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1509,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1589,6 +1623,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1605,6 +1640,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1621,6 +1657,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1637,6 +1674,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1653,6 +1691,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1669,6 +1708,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_TwoSpeedDX.idf b/testfiles/UnitarySystem_TwoSpeedDX.idf index 575da6326f2..b730df5e4c7 100644 --- a/testfiles/UnitarySystem_TwoSpeedDX.idf +++ b/testfiles/UnitarySystem_TwoSpeedDX.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_TwoStageDX.idf b/testfiles/UnitarySystem_TwoStageDX.idf index 260f95d9a93..774688fba64 100644 --- a/testfiles/UnitarySystem_TwoStageDX.idf +++ b/testfiles/UnitarySystem_TwoStageDX.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf b/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf index 34ff98e5aab..ce1cc9b9b41 100644 --- a/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf +++ b/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_VSCoolingCoil.idf b/testfiles/UnitarySystem_VSCoolingCoil.idf index 836d3d71ab8..578509d42bf 100644 --- a/testfiles/UnitarySystem_VSCoolingCoil.idf +++ b/testfiles/UnitarySystem_VSCoolingCoil.idf @@ -415,6 +415,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -431,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -447,6 +449,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -463,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -479,6 +483,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -495,6 +500,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +517,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +568,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -591,6 +602,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -607,6 +619,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -623,6 +636,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -639,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -655,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -671,6 +687,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -687,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -703,6 +721,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -719,6 +738,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UnitarySystem_VSHeatPumpWaterToAirEquationFit.idf b/testfiles/UnitarySystem_VSHeatPumpWaterToAirEquationFit.idf index 04ec1a24f98..6a434961366 100644 --- a/testfiles/UnitarySystem_VSHeatPumpWaterToAirEquationFit.idf +++ b/testfiles/UnitarySystem_VSHeatPumpWaterToAirEquationFit.idf @@ -2401,6 +2401,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2417,6 +2418,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2433,6 +2435,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2449,6 +2452,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2465,6 +2469,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2481,6 +2486,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2497,6 +2503,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2513,6 +2520,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2529,6 +2537,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2545,6 +2554,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2624,6 +2634,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2690,6 +2701,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2706,6 +2718,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2722,6 +2735,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2738,6 +2752,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2754,6 +2769,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2833,6 +2849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2864,6 +2881,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2880,6 +2898,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2896,6 +2915,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2912,6 +2932,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2928,6 +2949,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3007,6 +3029,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3053,6 +3076,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3069,6 +3093,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3085,6 +3110,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3101,6 +3127,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3117,6 +3144,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3196,6 +3224,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3227,6 +3256,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3243,6 +3273,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3259,6 +3290,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3275,6 +3307,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3291,6 +3324,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3370,6 +3404,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3386,6 +3421,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3402,6 +3438,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3418,6 +3455,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,6 +3472,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3450,6 +3489,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/UnitarySystem_WaterCoils_wMultiSpeedFan.idf b/testfiles/UnitarySystem_WaterCoils_wMultiSpeedFan.idf index 943ebf30172..60fe4ee23e0 100644 --- a/testfiles/UnitarySystem_WaterCoils_wMultiSpeedFan.idf +++ b/testfiles/UnitarySystem_WaterCoils_wMultiSpeedFan.idf @@ -716,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +787,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +804,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name WEST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +838,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +855,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +872,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +889,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +909,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +926,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -946,6 +960,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -962,6 +977,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -978,6 +994,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1011,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1013,6 +1031,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1029,6 +1048,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/UserDefinedRoomAirPatterns.idf b/testfiles/UserDefinedRoomAirPatterns.idf index 64b146d19e6..cc35eb2fc65 100644 --- a/testfiles/UserDefinedRoomAirPatterns.idf +++ b/testfiles/UserDefinedRoomAirPatterns.idf @@ -1293,6 +1293,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1309,6 +1310,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1325,6 +1327,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1344,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1357,6 +1361,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1373,6 +1378,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1395,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1412,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1421,6 +1429,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1437,6 +1446,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1463,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1480,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1485,6 +1497,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1501,6 +1514,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1517,6 +1531,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1533,6 +1548,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1549,6 +1565,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1565,6 +1582,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1581,6 +1599,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1597,6 +1616,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1613,6 +1633,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1629,6 +1650,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1645,6 +1667,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1661,6 +1684,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1677,6 +1701,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1693,6 +1718,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1709,6 +1735,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1725,6 +1752,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1741,6 +1769,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1757,6 +1786,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1773,6 +1803,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1789,6 +1820,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1805,6 +1837,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1821,6 +1854,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1837,6 +1871,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1853,6 +1888,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1869,6 +1905,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:SW_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1885,6 +1922,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN1_SW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:SW_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1901,6 +1939,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1917,6 +1956,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1933,6 +1973,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1949,6 +1990,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1965,6 +2007,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1981,6 +2024,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1997,6 +2041,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2013,6 +2058,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2029,6 +2075,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2045,6 +2092,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2061,6 +2109,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2077,6 +2126,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2093,6 +2143,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2109,6 +2160,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2125,6 +2177,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2141,6 +2194,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2157,6 +2211,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2173,6 +2228,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2189,6 +2245,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2205,6 +2262,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2221,6 +2279,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2237,6 +2296,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2253,6 +2313,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2269,6 +2330,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2285,6 +2347,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2301,6 +2364,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2317,6 +2381,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2333,6 +2398,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2349,6 +2415,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2365,6 +2432,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2381,6 +2449,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2397,6 +2466,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2413,6 +2483,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2429,6 +2500,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2445,6 +2517,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2461,6 +2534,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2477,6 +2551,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:S_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2493,6 +2568,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN2_S_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:S_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2509,6 +2585,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2525,6 +2602,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2541,6 +2619,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2557,6 +2636,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2573,6 +2653,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2589,6 +2670,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2605,6 +2687,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2621,6 +2704,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2637,6 +2721,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2653,6 +2738,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2669,6 +2755,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2685,6 +2772,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2701,6 +2789,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2717,6 +2806,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2733,6 +2823,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2749,6 +2840,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2765,6 +2857,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2781,6 +2874,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2797,6 +2891,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2813,6 +2908,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2829,6 +2925,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2845,6 +2942,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2861,6 +2959,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2877,6 +2976,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2893,6 +2993,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2909,6 +3010,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2925,6 +3027,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2941,6 +3044,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2957,6 +3061,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2973,6 +3078,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2989,6 +3095,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3005,6 +3112,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3021,6 +3129,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3037,6 +3146,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3053,6 +3163,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3069,6 +3180,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3085,6 +3197,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:SE_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3101,6 +3214,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN3_SE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:SE_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3117,6 +3231,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3133,6 +3248,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3149,6 +3265,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3165,6 +3282,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3181,6 +3299,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3197,6 +3316,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3213,6 +3333,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3229,6 +3350,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3245,6 +3367,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3261,6 +3384,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3277,6 +3401,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3293,6 +3418,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3309,6 +3435,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3325,6 +3452,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3341,6 +3469,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3357,6 +3486,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3373,6 +3503,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3389,6 +3520,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3405,6 +3537,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3421,6 +3554,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3437,6 +3571,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3453,6 +3588,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3469,6 +3605,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3485,6 +3622,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3501,6 +3639,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3517,6 +3656,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3533,6 +3673,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3549,6 +3690,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3565,6 +3707,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3581,6 +3724,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3597,6 +3741,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3613,6 +3758,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3629,6 +3775,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3645,6 +3792,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3661,6 +3809,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3677,6 +3826,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3693,6 +3843,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:E_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3709,6 +3860,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN4_E_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:E_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3725,6 +3877,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3741,6 +3894,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3757,6 +3911,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3773,6 +3928,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3789,6 +3945,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3805,6 +3962,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3821,6 +3979,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3837,6 +3996,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3853,6 +4013,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3869,6 +4030,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3885,6 +4047,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3901,6 +4064,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3917,6 +4081,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3933,6 +4098,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3949,6 +4115,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3965,6 +4132,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3981,6 +4149,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3997,6 +4166,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4013,6 +4183,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4029,6 +4200,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4045,6 +4217,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4061,6 +4234,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4077,6 +4251,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4093,6 +4268,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4109,6 +4285,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4125,6 +4302,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4141,6 +4319,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4157,6 +4336,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4173,6 +4353,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4189,6 +4370,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4205,6 +4387,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4221,6 +4404,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4237,6 +4421,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4253,6 +4438,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4269,6 +4455,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4285,6 +4472,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4301,6 +4489,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:NE_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4317,6 +4506,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN5_NE_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:NE_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4333,6 +4523,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4349,6 +4540,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4365,6 +4557,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4381,6 +4574,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4397,6 +4591,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4413,6 +4608,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4429,6 +4625,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4445,6 +4642,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4461,6 +4659,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4477,6 +4676,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4493,6 +4693,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4509,6 +4710,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4525,6 +4727,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4541,6 +4744,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4557,6 +4761,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4573,6 +4778,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4589,6 +4795,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4605,6 +4812,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4621,6 +4829,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4637,6 +4846,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4653,6 +4863,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4669,6 +4880,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4685,6 +4897,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4701,6 +4914,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4717,6 +4931,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4733,6 +4948,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4749,6 +4965,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4765,6 +4982,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4781,6 +4999,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4797,6 +5016,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4813,6 +5033,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4829,6 +5050,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4845,6 +5067,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4861,6 +5084,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4877,6 +5101,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4893,6 +5118,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4909,6 +5135,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:N_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4925,6 +5152,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN6_N_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:N_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4941,6 +5169,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4957,6 +5186,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4973,6 +5203,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -4989,6 +5220,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5005,6 +5237,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5021,6 +5254,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5037,6 +5271,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5053,6 +5288,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5069,6 +5305,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5085,6 +5322,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5101,6 +5339,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5117,6 +5356,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5133,6 +5373,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5149,6 +5390,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5165,6 +5407,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5181,6 +5424,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5197,6 +5441,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5213,6 +5458,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5229,6 +5475,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5245,6 +5492,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5261,6 +5509,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5277,6 +5526,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5293,6 +5543,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5309,6 +5560,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5325,6 +5577,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5341,6 +5594,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5357,6 +5611,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5373,6 +5628,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5389,6 +5645,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5405,6 +5662,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5421,6 +5679,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5437,6 +5696,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5453,6 +5713,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5469,6 +5730,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5485,6 +5747,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5501,6 +5764,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5517,6 +5781,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:NW_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5533,6 +5798,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN7_NW_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:NW_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5549,6 +5815,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5565,6 +5832,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5581,6 +5849,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5597,6 +5866,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5613,6 +5883,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5629,6 +5900,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5645,6 +5917,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5661,6 +5934,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5677,6 +5951,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5693,6 +5968,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5709,6 +5985,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5725,6 +6002,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5741,6 +6019,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5757,6 +6036,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5773,6 +6053,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5789,6 +6070,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5805,6 +6087,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5821,6 +6104,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5837,6 +6121,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5853,6 +6138,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5869,6 +6155,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5885,6 +6172,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5901,6 +6189,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5917,6 +6206,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5933,6 +6223,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5949,6 +6240,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5965,6 +6257,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -5981,6 +6274,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -5997,6 +6291,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6013,6 +6308,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6029,6 +6325,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6045,6 +6342,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6061,6 +6359,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6077,6 +6376,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6093,6 +6393,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6109,6 +6410,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6125,6 +6427,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:W_Ceil, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6141,6 +6444,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN8_W_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:W_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6157,6 +6461,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6173,6 +6478,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6189,6 +6495,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6205,6 +6512,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6221,6 +6529,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6237,6 +6546,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6253,6 +6563,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6269,6 +6580,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6285,6 +6597,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6301,6 +6614,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6317,6 +6631,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6333,6 +6648,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6349,6 +6665,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6365,6 +6682,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6381,6 +6699,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6397,6 +6716,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6413,6 +6733,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6429,6 +6750,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6445,6 +6767,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6461,6 +6784,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6477,6 +6801,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6493,6 +6818,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6509,6 +6835,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6525,6 +6852,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:6, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6541,6 +6869,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6557,6 +6886,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6573,6 +6903,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6589,6 +6920,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:7, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6605,6 +6937,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6621,6 +6954,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6637,6 +6971,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6653,6 +6988,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:8, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6669,6 +7005,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:N_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6685,6 +7022,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:W_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6701,6 +7039,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:S_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6717,6 +7056,7 @@ wall, !- Surface Type Int-Wall, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:E_IntWall:9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6733,6 +7073,7 @@ floor, !- Surface Type Raised-Floor-TopSide, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN10_FlrPlen_1:Core_Ceil,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6749,6 +7090,7 @@ ceiling, !- Surface Type dropceiling, !- Construction Name ZN9_Core_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN11_CeilPlen_1:Core_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6765,6 +7107,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6781,6 +7124,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6797,6 +7141,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6813,6 +7158,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -6829,6 +7175,7 @@ floor, !- Surface Type Ext-slab, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6845,6 +7192,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6861,6 +7209,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6877,6 +7226,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6893,6 +7243,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6909,6 +7260,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6925,6 +7277,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6941,6 +7294,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6957,6 +7311,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6973,6 +7328,7 @@ ceiling, !- Surface Type Raised-Floor-UnderSide, !- Construction Name ZN10_FlrPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -6989,6 +7345,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7005,6 +7362,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7021,6 +7379,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7037,6 +7396,7 @@ wall, !- Surface Type Ext-wall, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7053,6 +7413,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN1_SW_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7069,6 +7430,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN2_S_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7085,6 +7447,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN3_SE_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7101,6 +7464,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN4_E_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7117,6 +7481,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN5_NE_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7133,6 +7498,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN6_N_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7149,6 +7515,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN7_NW_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7165,6 +7532,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN8_W_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7181,6 +7549,7 @@ floor, !- Surface Type dropceiling, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZN9_Core_1:Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -7197,6 +7566,7 @@ roof, !- Surface Type Roof, !- Construction Name ZN11_CeilPlen_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -7212,55 +7582,64 @@ ZN1_SW_1, !- Name InteriorFurnishings, !- Construction Name ZN1_SW_1, !- Zone or ZoneList Name - 50.000; !- Surface Area {m2} + , !- Surface Area {m2} + 50.000; !- Extended Field InternalMass, ZN2_S_1, !- Name InteriorFurnishings, !- Construction Name ZN2_S_1, !- Zone or ZoneList Name - 607.107; !- Surface Area {m2} + , !- Surface Area {m2} + 607.107; !- Extended Field InternalMass, ZN3_SE_1, !- Name InteriorFurnishings, !- Construction Name ZN3_SE_1, !- Zone or ZoneList Name - 50.000; !- Surface Area {m2} + , !- Surface Area {m2} + 50.000; !- Extended Field InternalMass, ZN4_E_1, !- Name InteriorFurnishings, !- Construction Name ZN4_E_1, !- Zone or ZoneList Name - 182.843; !- Surface Area {m2} + , !- Surface Area {m2} + 182.843; !- Extended Field InternalMass, ZN5_NE_1, !- Name InteriorFurnishings, !- Construction Name ZN5_NE_1, !- Zone or ZoneList Name - 50.000; !- Surface Area {m2} + , !- Surface Area {m2} + 50.000; !- Extended Field InternalMass, ZN6_N_1, !- Name InteriorFurnishings, !- Construction Name ZN6_N_1, !- Zone or ZoneList Name - 607.107; !- Surface Area {m2} + , !- Surface Area {m2} + 607.107; !- Extended Field InternalMass, ZN7_NW_1, !- Name InteriorFurnishings, !- Construction Name ZN7_NW_1, !- Zone or ZoneList Name - 50.000; !- Surface Area {m2} + , !- Surface Area {m2} + 50.000; !- Extended Field InternalMass, ZN8_W_1, !- Name InteriorFurnishings, !- Construction Name ZN8_W_1, !- Zone or ZoneList Name - 182.843; !- Surface Area {m2} + , !- Surface Area {m2} + 182.843; !- Extended Field InternalMass, ZN9_Core_1, !- Name InteriorFurnishings, !- Construction Name ZN9_Core_1, !- Zone or ZoneList Name - 2220.101; !- Surface Area {m2} + , !- Surface Area {m2} + 2220.101; !- Extended Field FenestrationSurface:Detailed, ZN1_SW_1:S_Window:3, !- Name diff --git a/testfiles/UserInputViewFactorFile-LshapedZone.idf b/testfiles/UserInputViewFactorFile-LshapedZone.idf index 5b6095b261a..0546c85a696 100644 --- a/testfiles/UserInputViewFactorFile-LshapedZone.idf +++ b/testfiles/UserInputViewFactorFile-LshapedZone.idf @@ -803,6 +803,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:South Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -821,6 +822,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +841,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:North Wall-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +860,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:West Wall-1,!- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +879,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:NorthWall-2,!- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +898,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:WestWall-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -911,6 +917,7 @@ Roof, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:Roof-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -929,6 +936,7 @@ Roof, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:Roof-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +955,7 @@ Floor, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:Floor-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -965,6 +974,7 @@ Floor, !- Surface Type SpandrelSheet, !- Construction Name Lshaped zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Lshaped zone:Floor-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +993,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:South Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1001,6 +1012,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:East Wall, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1019,6 +1031,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:North Wall-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1037,6 +1050,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:West Wall-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1055,6 +1069,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:NorthWall-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1088,7 @@ Wall, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:WestWall-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1091,6 +1107,7 @@ Roof, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:Roof-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1109,6 +1126,7 @@ Roof, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:Roof-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1127,6 +1145,7 @@ Floor, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:Floor-1, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1145,6 +1164,7 @@ Floor, !- Surface Type SpandrelSheet, !- Construction Name LshapedZoneBase, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition LshapedZoneBase:Floor-2, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctConstFlowBoiler.idf b/testfiles/VAVSingleDuctConstFlowBoiler.idf index b3cf012070e..2252d6fc539 100644 --- a/testfiles/VAVSingleDuctConstFlowBoiler.idf +++ b/testfiles/VAVSingleDuctConstFlowBoiler.idf @@ -422,6 +422,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -438,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +456,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -486,6 +490,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -502,6 +507,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +524,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -566,6 +575,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -598,6 +609,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -614,6 +626,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +643,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctReheat.idf b/testfiles/VAVSingleDuctReheat.idf index be8a2402054..642cad4cea2 100644 --- a/testfiles/VAVSingleDuctReheat.idf +++ b/testfiles/VAVSingleDuctReheat.idf @@ -763,6 +763,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -794,6 +795,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -810,6 +812,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -826,6 +829,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +846,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -858,6 +863,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -874,6 +880,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +897,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +914,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -922,6 +931,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -938,6 +948,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -954,6 +965,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -970,6 +982,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -986,6 +999,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1002,6 +1016,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1033,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1034,6 +1050,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1050,6 +1067,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1066,6 +1084,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1101,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctReheatBaseboard.idf b/testfiles/VAVSingleDuctReheatBaseboard.idf index 372607bdafc..5f289de7f99 100644 --- a/testfiles/VAVSingleDuctReheatBaseboard.idf +++ b/testfiles/VAVSingleDuctReheatBaseboard.idf @@ -423,6 +423,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -439,6 +440,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -455,6 +457,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -471,6 +474,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -487,6 +491,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -503,6 +508,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -519,6 +525,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +542,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +559,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +576,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -583,6 +593,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +610,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -615,6 +627,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -631,6 +644,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +661,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +678,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +695,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +712,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -711,6 +729,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +746,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctReheatNoReheat.idf b/testfiles/VAVSingleDuctReheatNoReheat.idf index 5524ed32713..a5647adce15 100644 --- a/testfiles/VAVSingleDuctReheatNoReheat.idf +++ b/testfiles/VAVSingleDuctReheatNoReheat.idf @@ -424,6 +424,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -440,6 +441,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -456,6 +458,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -472,6 +475,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -488,6 +492,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -504,6 +509,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -520,6 +526,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -536,6 +543,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -552,6 +560,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -568,6 +577,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -584,6 +594,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -600,6 +611,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -616,6 +628,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +662,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +679,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +696,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -696,6 +713,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +730,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +747,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctReheat_DualMax.idf b/testfiles/VAVSingleDuctReheat_DualMax.idf index 305d38ec683..5a73eaaf522 100644 --- a/testfiles/VAVSingleDuctReheat_DualMax.idf +++ b/testfiles/VAVSingleDuctReheat_DualMax.idf @@ -760,6 +760,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -791,6 +792,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +809,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -823,6 +826,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +843,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +860,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +877,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -887,6 +894,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +911,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +928,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -935,6 +945,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -951,6 +962,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +979,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +996,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1013,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1030,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1047,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1064,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1081,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1098,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctReheat_MaxSAT_ReverseActing.idf b/testfiles/VAVSingleDuctReheat_MaxSAT_ReverseActing.idf index f7a588d867d..5c93f898e39 100644 --- a/testfiles/VAVSingleDuctReheat_MaxSAT_ReverseActing.idf +++ b/testfiles/VAVSingleDuctReheat_MaxSAT_ReverseActing.idf @@ -792,6 +792,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +824,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +841,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -855,6 +858,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -871,6 +875,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +892,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +909,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +926,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +943,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +960,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -967,6 +977,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +994,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -999,6 +1011,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1028,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1045,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1062,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1063,6 +1079,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1096,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VAVSingleDuctVarFlowBoiler.idf b/testfiles/VAVSingleDuctVarFlowBoiler.idf index 2e847307338..6e456647592 100644 --- a/testfiles/VAVSingleDuctVarFlowBoiler.idf +++ b/testfiles/VAVSingleDuctVarFlowBoiler.idf @@ -422,6 +422,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -438,6 +439,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -454,6 +456,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +473,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -486,6 +490,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -502,6 +507,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +524,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +541,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -566,6 +575,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -582,6 +592,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -598,6 +609,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -614,6 +626,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +643,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +660,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VSDXCoilSystemAuto.idf b/testfiles/VSDXCoilSystemAuto.idf index ee036aaca69..bbe92e28c97 100644 --- a/testfiles/VSDXCoilSystemAuto.idf +++ b/testfiles/VSDXCoilSystemAuto.idf @@ -999,6 +999,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1016,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1033,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1050,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1067,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1084,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1101,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1118,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1127,6 +1135,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1143,6 +1152,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1169,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1186,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,6 +1203,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1207,6 +1220,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1223,6 +1237,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1239,6 +1254,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1255,6 +1271,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1288,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1305,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1322,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/VSHeatPumpWaterHeater.idf b/testfiles/VSHeatPumpWaterHeater.idf index d36b5aff0ca..1b115bc8860 100644 --- a/testfiles/VSHeatPumpWaterHeater.idf +++ b/testfiles/VSHeatPumpWaterHeater.idf @@ -667,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +684,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +701,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -715,6 +718,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -731,6 +735,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -747,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -779,6 +786,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -795,6 +803,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +820,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -890,6 +900,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +967,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +984,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1001,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1018,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1035,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1115,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1130,6 +1147,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1164,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1162,6 +1181,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1178,6 +1198,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1194,6 +1215,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1295,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1342,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1359,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1410,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1490,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1493,6 +1522,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1539,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1525,6 +1556,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1541,6 +1573,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1557,6 +1590,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1670,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1687,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1684,6 +1721,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1700,6 +1738,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1716,6 +1755,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VSHeatPumpWaterToAirEquationFit.idf b/testfiles/VSHeatPumpWaterToAirEquationFit.idf index cc7c61b989b..8dd0e0038ee 100644 --- a/testfiles/VSHeatPumpWaterToAirEquationFit.idf +++ b/testfiles/VSHeatPumpWaterToAirEquationFit.idf @@ -2360,6 +2360,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2376,6 +2377,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2392,6 +2394,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2408,6 +2411,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2424,6 +2428,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2440,6 +2445,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2456,6 +2462,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2472,6 +2479,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2488,6 +2496,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2504,6 +2513,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2583,6 +2593,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2649,6 +2660,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2665,6 +2677,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2681,6 +2694,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2697,6 +2711,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2713,6 +2728,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2792,6 +2808,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2823,6 +2840,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2839,6 +2857,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2855,6 +2874,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2871,6 +2891,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2887,6 +2908,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2966,6 +2988,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3012,6 +3035,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3028,6 +3052,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3044,6 +3069,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3060,6 +3086,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3076,6 +3103,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3155,6 +3183,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3186,6 +3215,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3202,6 +3232,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3218,6 +3249,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3234,6 +3266,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3250,6 +3283,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3329,6 +3363,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3345,6 +3380,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3361,6 +3397,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3377,6 +3414,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3393,6 +3431,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3409,6 +3448,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VSHeatPumpWaterToAirWithRHControl.idf b/testfiles/VSHeatPumpWaterToAirWithRHControl.idf index c3128137102..ecbbd8f58bc 100644 --- a/testfiles/VSHeatPumpWaterToAirWithRHControl.idf +++ b/testfiles/VSHeatPumpWaterToAirWithRHControl.idf @@ -2373,6 +2373,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2389,6 +2390,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2405,6 +2407,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2421,6 +2424,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2437,6 +2441,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2453,6 +2458,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2469,6 +2475,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2485,6 +2492,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2501,6 +2509,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2517,6 +2526,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2596,6 +2606,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2662,6 +2673,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2678,6 +2690,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2694,6 +2707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2710,6 +2724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2726,6 +2741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2805,6 +2821,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2836,6 +2853,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2852,6 +2870,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2868,6 +2887,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2884,6 +2904,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2900,6 +2921,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2979,6 +3001,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3025,6 +3048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3041,6 +3065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3057,6 +3082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3073,6 +3099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3089,6 +3116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3168,6 +3196,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3199,6 +3228,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3215,6 +3245,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3231,6 +3262,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3247,6 +3279,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3263,6 +3296,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3342,6 +3376,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3358,6 +3393,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3374,6 +3410,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3390,6 +3427,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3406,6 +3444,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3422,6 +3461,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_5Zone.idf b/testfiles/VariableRefrigerantFlow_5Zone.idf index 1ec1c9a8896..0e94ebfadec 100644 --- a/testfiles/VariableRefrigerantFlow_5Zone.idf +++ b/testfiles/VariableRefrigerantFlow_5Zone.idf @@ -518,44 +518,44 @@ 30, !- Zone Terminal Unit On Parasitic Electric Energy Use {W} 20, !- Zone Terminal Unit Off Parasitic Electric Energy Use {W} , !- Rated Heating Capacity Sizing Ratio {W/W} - TU1-NightCycleManagerList, !- Availability Manager List Name + TU1-NightCycleManagerList, !- Availability Manager List Name , !- Design Specification ZoneHVAC Sizing Object Name , !- Supplemental Heating Coil Object Type , !- Supplemental Heating Coil Name ; !- Maximum Supply Air Temperature from Supplemental Heater {C} AvailabilityManagerAssignmentList, - TU1-NightCycleManagerList, !- Name - AvailabilityManager:NightCycle, !- Availability Manager Object Type 1 - TU1-NightCycleManager; !- Availability Manager Name 1 + TU1-NightCycleManagerList, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + TU1-NightCycleManager; !- Availability Manager 1 Name AvailabilityManager:NightCycle, - TU1-NightCycleManager, !- Name - NightCycleAvailSched, !- Applicability Schedule Name - TU1FanAvailSched, !- Fan Schedule Name - CycleOnControlZone, !- Control Type - 0.2, !- Thermostat Tolerance {deltaC} + TU1-NightCycleManager, !- Name + NightCycleAvailSched, !- Applicability Schedule Name + TU1FanAvailSched, !- Fan Schedule Name + CycleOnControlZone, !- Control Type + 0.2, !- Thermostat Tolerance {deltaC} ThermostatWithMinimumRuntime, !- Cycling Run Time Control Type - 300, !- Cycling Run Time {s} - SPACE1-1; !- Control Zone or Zone List Name + 300, !- Cycling Run Time {s} + SPACE1-1; !- Control Zone or Zone List Name Schedule:Compact, TU1FanAvailSched, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 7:00, 0.0, !- Field 3 - Until: 17:00, 1.0, !- Field 5 - Until: 24:00, 0.0; !- Field 7 + Until: 7:00,0.0, !- Field 3 + Until: 17:00,1.0, !- Field 5 + Until: 24:00,0.0; !- Field 7 Schedule:Compact, NightCycleAvailSched, !- Name Fraction, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 - Until: 7:00, 1.0, !- Field 3 - Until: 17:00, 0.0, !- Field 5 - Until: 24:00, 1.0; !- Field 7 + Until: 7:00,1.0, !- Field 3 + Until: 17:00,0.0, !- Field 5 + Until: 24:00,1.0; !- Field 7 ZoneHVAC:TerminalUnit:VariableRefrigerantFlow, TU2, !- Zone Terminal Unit Name @@ -1514,6 +1514,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1530,6 +1531,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1546,6 +1548,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1562,6 +1565,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1578,6 +1582,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1594,6 +1599,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1616,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1626,6 +1633,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1642,6 +1650,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1667,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1737,6 +1747,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1803,6 +1814,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1819,6 +1831,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1835,6 +1848,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1851,6 +1865,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1867,6 +1882,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1946,6 +1962,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1977,6 +1994,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1993,6 +2011,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2009,6 +2028,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2025,6 +2045,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2041,6 +2062,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2120,6 +2142,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2166,6 +2189,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2182,6 +2206,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2198,6 +2223,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2214,6 +2240,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2230,6 +2257,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2309,6 +2337,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2340,6 +2369,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2356,6 +2386,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2372,6 +2403,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2388,6 +2420,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2404,6 +2437,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2483,6 +2517,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2499,6 +2534,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2515,6 +2551,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2531,6 +2568,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2547,6 +2585,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2563,6 +2602,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_5Zone_wAirloop.idf b/testfiles/VariableRefrigerantFlow_5Zone_wAirloop.idf index f3a38baf8ca..03f1b648551 100644 --- a/testfiles/VariableRefrigerantFlow_5Zone_wAirloop.idf +++ b/testfiles/VariableRefrigerantFlow_5Zone_wAirloop.idf @@ -1947,6 +1947,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1963,6 +1964,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1979,6 +1981,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1995,6 +1998,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2011,6 +2015,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2027,6 +2032,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2043,6 +2049,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2059,6 +2066,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2075,6 +2083,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2091,6 +2100,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2170,6 +2180,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2236,6 +2247,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2252,6 +2264,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2281,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2298,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2315,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2379,6 +2395,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2410,6 +2427,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2426,6 +2444,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2442,6 +2461,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2458,6 +2478,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2474,6 +2495,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2553,6 +2575,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2599,6 +2622,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2615,6 +2639,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2631,6 +2656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2647,6 +2673,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2663,6 +2690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2742,6 +2770,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2773,6 +2802,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2789,6 +2819,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2805,6 +2836,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2821,6 +2853,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2837,6 +2870,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2916,6 +2950,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2932,6 +2967,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2948,6 +2984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2964,6 +3001,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2980,6 +3018,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2996,6 +3035,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_FluidTCtrl_5Zone.idf b/testfiles/VariableRefrigerantFlow_FluidTCtrl_5Zone.idf index 68fafd98265..3203e1bba70 100644 --- a/testfiles/VariableRefrigerantFlow_FluidTCtrl_5Zone.idf +++ b/testfiles/VariableRefrigerantFlow_FluidTCtrl_5Zone.idf @@ -2560,6 +2560,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2576,6 +2577,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2592,6 +2594,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2608,6 +2611,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2624,6 +2628,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2640,6 +2645,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2656,6 +2662,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2672,6 +2679,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2688,6 +2696,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2704,6 +2713,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2783,6 +2793,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2849,6 +2860,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2865,6 +2877,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2881,6 +2894,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2897,6 +2911,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2913,6 +2928,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2992,6 +3008,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3023,6 +3040,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3039,6 +3057,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3055,6 +3074,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3071,6 +3091,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3087,6 +3108,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3166,6 +3188,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3212,6 +3235,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3228,6 +3252,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3244,6 +3269,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3260,6 +3286,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3276,6 +3303,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3355,6 +3383,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3386,6 +3415,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3402,6 +3432,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3418,6 +3449,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3434,6 +3466,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3450,6 +3483,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3529,6 +3563,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3545,6 +3580,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3561,6 +3597,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3577,6 +3614,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3593,6 +3631,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3609,6 +3648,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_FluidTCtrl_HR_5Zone.idf b/testfiles/VariableRefrigerantFlow_FluidTCtrl_HR_5Zone.idf index 2c54f4f75f3..51955895713 100644 --- a/testfiles/VariableRefrigerantFlow_FluidTCtrl_HR_5Zone.idf +++ b/testfiles/VariableRefrigerantFlow_FluidTCtrl_HR_5Zone.idf @@ -2579,6 +2579,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2595,6 +2596,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2611,6 +2613,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2627,6 +2630,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2643,6 +2647,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2659,6 +2664,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2675,6 +2681,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2691,6 +2698,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2707,6 +2715,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2723,6 +2732,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2802,6 +2812,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2868,6 +2879,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2884,6 +2896,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2900,6 +2913,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2916,6 +2930,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2932,6 +2947,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3011,6 +3027,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3042,6 +3059,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3058,6 +3076,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3074,6 +3093,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3090,6 +3110,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3106,6 +3127,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3185,6 +3207,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3231,6 +3254,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3247,6 +3271,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3263,6 +3288,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3279,6 +3305,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3295,6 +3322,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3374,6 +3402,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3405,6 +3434,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3421,6 +3451,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3437,6 +3468,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3453,6 +3485,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3469,6 +3502,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3548,6 +3582,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3564,6 +3599,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3580,6 +3616,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3596,6 +3633,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3612,6 +3650,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3628,6 +3667,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_FluidTCtrl_wSuppHeater_5Zone.idf b/testfiles/VariableRefrigerantFlow_FluidTCtrl_wSuppHeater_5Zone.idf index 549c8bcfa01..dab3341128f 100644 --- a/testfiles/VariableRefrigerantFlow_FluidTCtrl_wSuppHeater_5Zone.idf +++ b/testfiles/VariableRefrigerantFlow_FluidTCtrl_wSuppHeater_5Zone.idf @@ -862,6 +862,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +879,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +896,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -910,6 +913,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -926,6 +930,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -942,6 +947,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -958,6 +964,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -974,6 +981,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -990,6 +998,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1006,6 +1015,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1022,6 +1032,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1049,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1066,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1083,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1100,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1134,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1151,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1168,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1185,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1202,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1219,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1236,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1230,6 +1253,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1270,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1262,6 +1287,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1278,6 +1304,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1321,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1338,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1326,6 +1355,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1372,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1389,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1374,6 +1406,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1423,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1440,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1422,6 +1457,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1474,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1491,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1508,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VariableRefrigerantFlow_wSuppHeater_5Zone.idf b/testfiles/VariableRefrigerantFlow_wSuppHeater_5Zone.idf index f3fb2c02212..0df7a2bdd47 100644 --- a/testfiles/VariableRefrigerantFlow_wSuppHeater_5Zone.idf +++ b/testfiles/VariableRefrigerantFlow_wSuppHeater_5Zone.idf @@ -861,6 +861,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +878,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +895,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +912,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +929,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -941,6 +946,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +963,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +980,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -989,6 +997,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1005,6 +1014,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1021,6 +1031,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1037,6 +1048,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1053,6 +1065,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1069,6 +1082,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1085,6 +1099,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1116,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1133,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1133,6 +1150,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1167,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1213,6 +1235,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1229,6 +1252,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1269,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1286,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1303,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1293,6 +1320,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1309,6 +1337,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1325,6 +1354,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1341,6 +1371,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1357,6 +1388,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1373,6 +1405,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1389,6 +1422,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1405,6 +1439,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1456,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1437,6 +1473,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1490,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1507,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1524,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VaryingLocationAndOrientation.idf b/testfiles/VaryingLocationAndOrientation.idf index 7b481665b73..e95d76a7d3c 100644 --- a/testfiles/VaryingLocationAndOrientation.idf +++ b/testfiles/VaryingLocationAndOrientation.idf @@ -185,6 +185,7 @@ Wall, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -201,6 +202,7 @@ Wall, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -217,6 +219,7 @@ Wall, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -233,6 +236,7 @@ Wall, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -249,6 +253,7 @@ Roof, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -265,6 +270,7 @@ Floor, !- Surface Type Main Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition Underwater, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VentilatedSlab.idf b/testfiles/VentilatedSlab.idf index 214ddc5703a..ac059441cee 100644 --- a/testfiles/VentilatedSlab.idf +++ b/testfiles/VentilatedSlab.idf @@ -845,7 +845,7 @@ ConstructionProperty:InternalHeatSource, Ceiling Source, !- Name Ceiling with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -854,7 +854,7 @@ ConstructionProperty:InternalHeatSource, Reverse Ceiling Source, !- Name reverseCeiling with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -863,7 +863,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Floor with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -951,6 +951,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +968,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +985,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1002,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1019,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1036,7 @@ FLOOR, !- Surface Type reverseceiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1047,6 +1053,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1070,7 @@ FLOOR, !- Surface Type reverseCeiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1087,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1104,7 @@ FLOOR, !- Surface Type reverseceiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1121,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1127,6 +1138,7 @@ CEILING, !- Surface Type ceiling with Radiant, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1155,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1159,6 +1172,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1189,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1191,6 +1206,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1207,6 +1223,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1223,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1239,6 +1257,7 @@ FLOOR, !- Surface Type Floor with radiant, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1325,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1342,7 @@ CEILING, !- Surface Type Ceiling with Radiant, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1359,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1351,6 +1376,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1393,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1383,6 +1410,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1399,6 +1427,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1415,6 +1444,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1431,6 +1461,7 @@ FLOOR, !- Surface Type Floor with Radiant, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1447,6 +1478,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1463,6 +1495,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1479,6 +1512,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1495,6 +1529,7 @@ CEILING, !- Surface Type ceiling with Radiant, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1511,6 +1546,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1527,6 +1563,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1543,6 +1580,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1559,6 +1597,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1575,6 +1614,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VentilatedSlab_SeriesSlabs.idf b/testfiles/VentilatedSlab_SeriesSlabs.idf index 624668bae5d..37ca0f3cd82 100644 --- a/testfiles/VentilatedSlab_SeriesSlabs.idf +++ b/testfiles/VentilatedSlab_SeriesSlabs.idf @@ -852,7 +852,7 @@ ConstructionProperty:InternalHeatSource, Ceiling Source, !- Name Ceiling with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -861,7 +861,7 @@ ConstructionProperty:InternalHeatSource, Reverse Ceiling Source, !- Name reverseCeiling with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -870,7 +870,7 @@ ConstructionProperty:InternalHeatSource, Floor Source, !- Name Floor with Radiant, !- Construction Name - 2, !- Source Present After Layer Number + 2, !- Thermal Source Present After Layer Number 2, !- Temperature Calculation Requested After Layer Number 1, !- Dimensions for the CTF Calculation 0.1524, !- Tube Spacing {m} @@ -958,6 +958,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +975,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +992,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1009,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1026,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1043,7 @@ FLOOR, !- Surface Type reverseceiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1060,7 @@ FLOOR, !- Surface Type reverseCeiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1077,7 @@ FLOOR, !- Surface Type reverseCeiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1094,7 @@ FLOOR, !- Surface Type reverseCeiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1111,7 @@ FLOOR, !- Surface Type reverseceiling with Radiant, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1128,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1134,6 +1145,7 @@ CEILING, !- Surface Type ceiling with Radiant, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1162,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1166,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1182,6 +1196,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1198,6 +1213,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1214,6 +1230,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1230,6 +1247,7 @@ CEILING, !- Surface Type Ceiling with Radiant, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1246,6 +1264,7 @@ FLOOR, !- Surface Type Floor with radiant, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1262,6 +1281,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1278,6 +1298,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1315,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1332,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1326,6 +1349,7 @@ CEILING, !- Surface Type Ceiling with Radiant, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1366,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1358,6 +1383,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1374,6 +1400,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1390,6 +1417,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1406,6 +1434,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1422,6 +1451,7 @@ CEILING, !- Surface Type Ceiling with Radiant, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1438,6 +1468,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1454,6 +1485,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1470,6 +1502,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1486,6 +1519,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1536,7 @@ CEILING, !- Surface Type ceiling with Radiant, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1518,6 +1553,7 @@ FLOOR, !- Surface Type FLOOR-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1570,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1550,6 +1587,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1566,6 +1604,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1582,6 +1621,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/VentilationSimpleTest.idf b/testfiles/VentilationSimpleTest.idf index 3f8e2567111..be6ca8d4fa1 100644 --- a/testfiles/VentilationSimpleTest.idf +++ b/testfiles/VentilationSimpleTest.idf @@ -621,6 +621,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +663,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +680,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -719,6 +722,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +739,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -776,6 +781,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +798,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +840,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +857,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +899,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -906,6 +916,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +975,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1017,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1034,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1051,6 +1066,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1073,6 +1089,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1107,6 +1124,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1135,6 +1153,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1176,6 +1195,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1192,6 +1212,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1233,6 +1254,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1249,6 +1271,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1290,6 +1313,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1306,6 +1330,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1347,6 +1372,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1363,6 +1389,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1404,6 +1431,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1420,6 +1448,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1461,6 +1490,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1477,6 +1507,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1549,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1534,6 +1566,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1565,6 +1598,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1587,6 +1621,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1621,6 +1656,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1649,6 +1685,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1690,6 +1727,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1706,6 +1744,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1747,6 +1786,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1763,6 +1803,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1804,6 +1845,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1820,6 +1862,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1861,6 +1904,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1877,6 +1921,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1918,6 +1963,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1934,6 +1980,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1975,6 +2022,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1991,6 +2039,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2032,6 +2081,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2048,6 +2098,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2079,6 +2130,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2101,6 +2153,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2135,6 +2188,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE 3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/WCE_Diffuse_Shade.idf b/testfiles/WCE_Diffuse_Shade.idf index 936f42544cf..b69c7d9e303 100644 --- a/testfiles/WCE_Diffuse_Shade.idf +++ b/testfiles/WCE_Diffuse_Shade.idf @@ -495,6 +495,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +512,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -527,6 +529,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -543,6 +546,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,6 +563,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +580,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/WCE_DoubleClear_BSDF.idf b/testfiles/WCE_DoubleClear_BSDF.idf index a5892c5f964..427a59ed74c 100644 --- a/testfiles/WCE_DoubleClear_BSDF.idf +++ b/testfiles/WCE_DoubleClear_BSDF.idf @@ -495,6 +495,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +512,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -527,6 +529,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -543,6 +546,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,6 +563,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +580,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/WCE_Interior_VB_-45_deg.idf b/testfiles/WCE_Interior_VB_-45_deg.idf index 1a40897bf2f..264ca1b1ad7 100644 --- a/testfiles/WCE_Interior_VB_-45_deg.idf +++ b/testfiles/WCE_Interior_VB_-45_deg.idf @@ -495,6 +495,7 @@ WALL, !- Surface Type Room Wall - South, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -511,6 +512,7 @@ FLOOR, !- Surface Type Room Floor, !- Construction Name Room 102, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -527,6 +529,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 West Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -543,6 +546,7 @@ WALL, !- Surface Type Room Wall - North, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 North Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,6 +563,7 @@ WALL, !- Surface Type Room Wall - East West, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -575,6 +580,7 @@ CEILING, !- Surface Type Room Ceiling, !- Construction Name Room 102, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Room102 Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/WWHPSimpleAuto.idf b/testfiles/WWHPSimpleAuto.idf index bc89e5963bb..1ead190ebfd 100644 --- a/testfiles/WWHPSimpleAuto.idf +++ b/testfiles/WWHPSimpleAuto.idf @@ -821,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -852,6 +853,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +870,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -884,6 +887,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -900,6 +904,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +921,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +938,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -948,6 +955,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +972,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +989,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1006,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1023,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1040,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1044,6 +1057,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1074,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1091,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1092,6 +1108,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1125,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1142,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1159,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,12 +1502,12 @@ GshpHeating; !- Companion Heating Heat Pump Name Curve:QuadLinear, - CoolCapCurve, !- Curve Name - -1.52030596, !- CoefficientC1 - 3.46625667, !- CoefficientC2 - -1.32267797, !- CoefficientC3 - 0.09395678, !- CoefficientC4 - 0.038975504, !- CoefficientC5 + CoolCapCurve, !- Name + -1.52030596, !- Coefficient1 Constant + 3.46625667, !- Coefficient2 w + -1.32267797, !- Coefficient3 x + 0.09395678, !- Coefficient4 y + 0.038975504, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1500,12 +1520,12 @@ 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, !- Curve Name - -8.59564386, !- CoefficientC1 - 0.96265085, !- CoefficientC2 - 8.69489229, !- CoefficientC3 - 0.02501669, !- CoefficientC4 - -0.20132665, !- CoefficientC5 + CoolPowCurve, !- Name + -8.59564386, !- Coefficient1 Constant + 0.96265085, !- Coefficient2 w + 8.69489229, !- Coefficient3 x + 0.02501669, !- Coefficient4 y + -0.20132665, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1814,12 +1834,12 @@ GshpCLG; !- Companion Cooling Heat Pump Name Curve:QuadLinear, - HeatCapCurve, !- Curve Name - -3.33491153, !- CoefficientC1 - -0.51451946, !- CoefficientC2 - 4.51592706, !- CoefficientC3 - 0.01797107, !- CoefficientC4 - 0.155797661, !- CoefficientC5 + HeatCapCurve, !- Name + -3.33491153, !- Coefficient1 Constant + -0.51451946, !- Coefficient2 w + 4.51592706, !- Coefficient3 x + 0.01797107, !- Coefficient4 y + 0.155797661, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x @@ -1832,12 +1852,12 @@ 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, !- Curve Name - -8.93121751, !- CoefficientC1 - 8.57035762, !- CoefficientC2 - 1.29660976, !- CoefficientC3 - -0.21629222, !- CoefficientC4 - 0.033862378, !- CoefficientC5 + HeatPowCurve, !- Name + -8.93121751, !- Coefficient1 Constant + 8.57035762, !- Coefficient2 w + 1.29660976, !- Coefficient3 x + -0.21629222, !- Coefficient4 y + 0.033862378, !- Coefficient5 z -100, !- Minimum Value of w 100, !- Maximum Value of w -100, !- Minimum Value of x diff --git a/testfiles/WaterSideEconomizer_Integrated.idf b/testfiles/WaterSideEconomizer_Integrated.idf index e8fc3367fe6..9d4a90ed581 100644 --- a/testfiles/WaterSideEconomizer_Integrated.idf +++ b/testfiles/WaterSideEconomizer_Integrated.idf @@ -622,6 +622,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +639,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +656,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +673,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +690,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +707,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +724,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +741,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +758,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +775,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +855,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -911,6 +922,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -927,6 +939,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +956,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +973,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +990,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1070,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1085,6 +1102,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1101,6 +1119,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1136,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1153,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1170,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1250,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1274,6 +1297,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1290,6 +1314,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1331,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1348,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1365,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1445,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1448,6 +1477,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1464,6 +1494,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1480,6 +1511,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1496,6 +1528,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1545,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1591,6 +1625,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1642,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1623,6 +1659,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1676,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1693,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1710,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/WaterSideEconomizer_NonIntegrated.idf b/testfiles/WaterSideEconomizer_NonIntegrated.idf index e6512fe8a3b..77c745155a9 100644 --- a/testfiles/WaterSideEconomizer_NonIntegrated.idf +++ b/testfiles/WaterSideEconomizer_NonIntegrated.idf @@ -785,6 +785,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -801,6 +802,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -817,6 +819,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -833,6 +836,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -849,6 +853,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +870,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -881,6 +887,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -897,6 +904,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -913,6 +921,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -929,6 +938,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1008,6 +1018,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1074,6 +1085,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1090,6 +1102,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1106,6 +1119,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1122,6 +1136,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1153,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1217,6 +1233,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1248,6 +1265,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1264,6 +1282,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1280,6 +1299,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1296,6 +1316,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1312,6 +1333,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1391,6 +1413,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1437,6 +1460,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1453,6 +1477,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1469,6 +1494,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1485,6 +1511,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1501,6 +1528,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1580,6 +1608,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1611,6 +1640,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1627,6 +1657,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1674,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1691,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1708,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1754,6 +1788,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1770,6 +1805,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1786,6 +1822,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1802,6 +1839,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1818,6 +1856,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1834,6 +1873,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/WindACAirtoAir.idf b/testfiles/WindACAirtoAir.idf index 078bcc94abf..1161cb06d9b 100644 --- a/testfiles/WindACAirtoAir.idf +++ b/testfiles/WindACAirtoAir.idf @@ -758,6 +758,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -789,6 +790,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -805,6 +807,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -821,6 +824,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -837,6 +841,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -853,6 +858,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -869,6 +875,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +892,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +909,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +926,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -933,6 +943,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -949,6 +960,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -965,6 +977,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -981,6 +994,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -997,6 +1011,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1013,6 +1028,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1029,6 +1045,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1045,6 +1062,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1061,6 +1079,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1077,6 +1096,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/WindACAuto.idf b/testfiles/WindACAuto.idf index fa0c670215f..be781985822 100644 --- a/testfiles/WindACAuto.idf +++ b/testfiles/WindACAuto.idf @@ -761,6 +761,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -792,6 +793,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -808,6 +810,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -824,6 +827,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -840,6 +844,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -856,6 +861,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -872,6 +878,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -888,6 +895,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -904,6 +912,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +929,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +946,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +963,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +980,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -984,6 +997,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1000,6 +1014,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1016,6 +1031,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1032,6 +1048,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1065,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1064,6 +1082,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1080,6 +1099,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/WindACRHControl.idf b/testfiles/WindACRHControl.idf index 8e5c5b42a22..c5948faff9c 100644 --- a/testfiles/WindACRHControl.idf +++ b/testfiles/WindACRHControl.idf @@ -446,6 +446,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -462,6 +463,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -478,6 +480,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -494,6 +497,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -510,6 +514,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN WITH CARPET, !- Construction Name West Zone, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -526,6 +531,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -542,6 +548,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -558,6 +565,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -574,6 +582,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -590,6 +599,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -606,6 +616,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -622,6 +633,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN WITH CARPET, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -638,6 +650,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +667,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +684,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +701,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +718,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +735,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +752,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN WITH CARPET, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +769,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,19 +785,22 @@ InternalMassWest, !- Name Medium Furniture, !- Construction Name West Zone, !- Zone or ZoneList Name - 18.; !- Surface Area {m2} + , !- Surface Area {m2} + 18.; !- Extended Field InternalMass, InternalMassEast, !- Name Medium Furniture, !- Construction Name EAST ZONE, !- Zone or ZoneList Name - 18.; !- Surface Area {m2} + , !- Surface Area {m2} + 18.; !- Extended Field InternalMass, InternalMassNorth, !- Name Medium Furniture, !- Construction Name NORTH ZONE, !- Zone or ZoneList Name - 27.; !- Surface Area {m2} + , !- Surface Area {m2} + 27.; !- Extended Field FenestrationSurface:Detailed, Zn001:Wall001:Win001, !- Name diff --git a/testfiles/WindowTests.idf b/testfiles/WindowTests.idf index a96ee6c449f..4dcf59d40f5 100644 --- a/testfiles/WindowTests.idf +++ b/testfiles/WindowTests.idf @@ -890,6 +890,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -921,6 +922,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -952,6 +954,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -983,6 +986,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1014,6 +1018,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name SPHW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1030,6 +1035,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1046,6 +1052,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1077,6 +1084,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1108,6 +1116,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1148,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1170,6 +1180,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1186,6 +1197,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1202,6 +1214,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1233,6 +1246,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1264,6 +1278,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1295,6 +1310,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1326,6 +1342,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWB, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1359,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1358,6 +1376,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1389,6 +1408,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1420,6 +1440,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1451,6 +1472,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1482,6 +1504,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWD, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1498,6 +1521,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1514,6 +1538,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1545,6 +1570,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1576,6 +1602,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1607,6 +1634,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1638,6 +1666,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1654,6 +1683,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1670,6 +1700,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1701,6 +1732,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1732,6 +1764,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1763,6 +1796,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1794,6 +1828,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name TPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1810,6 +1845,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1826,6 +1862,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1857,6 +1894,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1888,6 +1926,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1919,6 +1958,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1950,6 +1990,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name QPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1966,6 +2007,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1982,6 +2024,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2013,6 +2056,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2044,6 +2088,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2075,6 +2120,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2106,6 +2152,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2122,6 +2169,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2138,6 +2186,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2169,6 +2218,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2200,6 +2250,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2231,6 +2282,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2262,6 +2314,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2278,6 +2331,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2294,6 +2348,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPSG, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2325,6 +2380,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPSG, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2356,6 +2412,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPSG, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2387,6 +2444,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPSG, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2418,6 +2476,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPSG, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn010:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2434,6 +2493,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPSG, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/WindowTestsSimple.idf b/testfiles/WindowTestsSimple.idf index 31ad13b65ff..c0b54928947 100644 --- a/testfiles/WindowTestsSimple.idf +++ b/testfiles/WindowTestsSimple.idf @@ -738,6 +738,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -769,6 +770,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +802,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +834,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +866,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name SPHW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -878,6 +883,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name SPHW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -894,6 +900,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +932,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +964,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -987,6 +996,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1018,6 +1028,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1034,6 +1045,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1050,6 +1062,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1081,6 +1094,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1112,6 +1126,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1143,6 +1158,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1174,6 +1190,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWB, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1190,6 +1207,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWB, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1206,6 +1224,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1237,6 +1256,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1288,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1299,6 +1320,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1330,6 +1352,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWD, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1346,6 +1369,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWD, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1362,6 +1386,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1393,6 +1418,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1424,6 +1450,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1455,6 +1482,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1486,6 +1514,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPWS, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1502,6 +1531,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPWS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1548,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1549,6 +1580,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1580,6 +1612,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1611,6 +1644,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1642,6 +1676,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name TPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1658,6 +1693,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name TPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1674,6 +1710,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1705,6 +1742,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1736,6 +1774,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1767,6 +1806,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1798,6 +1838,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name QPW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1814,6 +1855,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name QPW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1830,6 +1872,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1861,6 +1904,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1892,6 +1936,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1923,6 +1968,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1954,6 +2000,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name DPM, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1970,6 +2017,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name DPM, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1986,6 +2034,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2017,6 +2066,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2048,6 +2098,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2079,6 +2130,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2110,6 +2162,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2126,6 +2179,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name SCWINDOW, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneCoupledGroundHTBasement.idf b/testfiles/ZoneCoupledGroundHTBasement.idf index 4e9ce297771..546af7114ad 100644 --- a/testfiles/ZoneCoupledGroundHTBasement.idf +++ b/testfiles/ZoneCoupledGroundHTBasement.idf @@ -204,6 +204,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -220,6 +221,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -236,6 +238,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -252,6 +255,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementWallOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -268,6 +272,7 @@ Floor, !- Surface Type Basement Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition BasementFloorOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -284,6 +289,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -327,6 +333,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -343,6 +350,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -359,6 +367,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -375,6 +384,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -391,6 +401,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneCoupledGroundHTSlabInGrade.idf b/testfiles/ZoneCoupledGroundHTSlabInGrade.idf index 573ea326bfc..eb09e532541 100644 --- a/testfiles/ZoneCoupledGroundHTSlabInGrade.idf +++ b/testfiles/ZoneCoupledGroundHTSlabInGrade.idf @@ -301,6 +301,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -317,6 +318,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -333,6 +335,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -349,6 +352,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -365,6 +369,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -381,6 +386,7 @@ Floor, !- Surface Type Floor Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ZoneCoupledGroundHTSlabOnGrade.idf b/testfiles/ZoneCoupledGroundHTSlabOnGrade.idf index fee0c227678..892d8b3fa7b 100644 --- a/testfiles/ZoneCoupledGroundHTSlabOnGrade.idf +++ b/testfiles/ZoneCoupledGroundHTSlabOnGrade.idf @@ -301,6 +301,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -317,6 +318,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -333,6 +335,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -349,6 +352,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -365,6 +369,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -381,6 +386,7 @@ Floor, !- Surface Type Floor Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name OtherSideConditionsModel,!- Outside Boundary Condition GroundCoupledOSCM, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ZoneCoupledKivaBasement.idf b/testfiles/ZoneCoupledKivaBasement.idf index 9ef1bf6f363..cc8a2ab378b 100644 --- a/testfiles/ZoneCoupledKivaBasement.idf +++ b/testfiles/ZoneCoupledKivaBasement.idf @@ -200,6 +200,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -216,6 +217,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -232,6 +234,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -248,6 +251,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -274,6 +278,7 @@ Floor, !- Surface Type Basement Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -290,6 +295,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -322,6 +328,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -338,6 +345,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -354,6 +362,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -370,6 +379,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +396,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf b/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf index 3ac3fdd8b53..1fd9d9d5b2a 100644 --- a/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf +++ b/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf @@ -312,6 +312,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -328,6 +329,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -344,6 +346,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -360,6 +363,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -386,6 +390,7 @@ Floor, !- Surface Type Basement Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -402,6 +407,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -434,6 +440,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -450,6 +457,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -466,6 +474,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -482,6 +491,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -498,6 +508,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneCoupledKivaConvection.idf b/testfiles/ZoneCoupledKivaConvection.idf index 4b299df114e..74dba0380f8 100644 --- a/testfiles/ZoneCoupledKivaConvection.idf +++ b/testfiles/ZoneCoupledKivaConvection.idf @@ -558,6 +558,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -589,6 +590,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -605,6 +607,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -621,6 +624,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -637,6 +641,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -659,6 +664,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -675,6 +681,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -691,6 +698,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -707,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -723,6 +732,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -739,6 +749,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -755,6 +766,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -777,6 +789,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +806,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +823,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -825,6 +840,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +857,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -857,6 +874,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +891,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +914,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneCoupledKivaConvectionAdaptiveSmallOffice.idf b/testfiles/ZoneCoupledKivaConvectionAdaptiveSmallOffice.idf index 7e160bbaeeb..326c0150689 100644 --- a/testfiles/ZoneCoupledKivaConvectionAdaptiveSmallOffice.idf +++ b/testfiles/ZoneCoupledKivaConvectionAdaptiveSmallOffice.idf @@ -790,6 +790,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -806,6 +807,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +824,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -838,6 +841,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +858,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +875,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -885,6 +891,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -901,6 +908,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -917,6 +925,7 @@ Roof, !- Surface Type attic-roof-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +941,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +958,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +975,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +992,7 @@ Floor, !- Surface Type attic-floor-nonres, !- Construction Name Attic, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1009,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_core, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1026,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1038,6 +1053,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1054,6 +1070,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1087,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1086,6 +1104,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_ZN, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1121,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1118,6 +1138,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1144,6 +1165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1160,6 +1182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1176,6 +1199,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1192,6 +1216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1208,6 +1233,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1224,6 +1250,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1250,6 +1277,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1266,6 +1294,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1282,6 +1311,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1298,6 +1328,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_east, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1314,6 +1345,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1330,6 +1362,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1389,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1372,6 +1406,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1388,6 +1423,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1404,6 +1440,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1420,6 +1457,7 @@ Ceiling, !- Surface Type attic-floor-nonres, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Attic_floor_perimeter_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1436,6 +1474,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1462,6 +1501,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_ZN_wall_west, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1478,6 +1518,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1494,6 +1535,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1510,6 +1552,7 @@ Wall, !- Surface Type ext-walls-mass-nonres, !- Construction Name Perimeter_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2199,31 +2242,36 @@ Core_ZN Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_ZN, !- Zone or ZoneList Name - 299.3148; !- Surface Area {m2} + , !- Surface Area {m2} + 299.3148; !- Extended Field InternalMass, Perimeter_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_1, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_2, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field InternalMass, Perimeter_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_3, !- Zone or ZoneList Name - 226.9000; !- Surface Area {m2} + , !- Surface Area {m2} + 226.9000; !- Extended Field InternalMass, Perimeter_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_ZN_4, !- Zone or ZoneList Name - 134.6000; !- Surface Area {m2} + , !- Surface Area {m2} + 134.6000; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf b/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf index 5ce7ea4d817..60f8a954010 100644 --- a/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf +++ b/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf @@ -874,6 +874,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +891,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +935,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +952,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1071,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1377,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1524,6 +1564,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1581,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1556,6 +1598,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1572,6 +1615,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1659,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1630,6 +1676,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1646,6 +1693,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1662,6 +1710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1678,6 +1727,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1744,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1720,6 +1771,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1736,6 +1788,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1752,6 +1805,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1768,6 +1822,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1784,6 +1839,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1800,6 +1856,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1826,6 +1883,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1842,6 +1900,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1858,6 +1917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1874,6 +1934,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1890,6 +1951,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1906,6 +1968,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,6 +1995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1948,6 +2012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1964,6 +2029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1980,6 +2046,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1996,6 +2063,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2012,6 +2080,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2028,6 +2097,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2044,6 +2114,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2060,6 +2131,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2076,6 +2148,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2092,6 +2165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2108,6 +2182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2124,6 +2199,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2140,6 +2216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2156,6 +2233,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2172,6 +2250,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2188,6 +2267,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2204,6 +2284,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2220,6 +2301,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2236,6 +2318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2252,6 +2335,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2352,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2369,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2386,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2316,6 +2403,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2332,6 +2420,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2348,6 +2437,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2364,6 +2454,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2380,6 +2471,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2396,6 +2488,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2412,6 +2505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2428,6 +2522,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2444,6 +2539,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2460,6 +2556,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2476,6 +2573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2492,6 +2590,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2508,6 +2607,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2524,6 +2624,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2540,6 +2641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2556,6 +2658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2572,6 +2675,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2588,6 +2692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2604,6 +2709,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2620,6 +2726,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2636,6 +2743,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2652,6 +2760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2668,6 +2777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2684,6 +2794,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2700,6 +2811,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2716,6 +2828,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2732,6 +2845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2748,6 +2862,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2764,6 +2879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2780,6 +2896,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2796,6 +2913,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2812,6 +2930,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2828,6 +2947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2844,6 +2964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2860,6 +2981,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2876,6 +2998,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2892,6 +3015,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2908,6 +3032,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2924,6 +3049,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2940,6 +3066,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,6 +3083,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4153,91 +4281,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf b/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf index 4b4718de0fe..ae40b69223f 100644 --- a/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf +++ b/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf @@ -874,6 +874,7 @@ Roof, !- Surface Type IEAD Non-res Roof, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -890,6 +891,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -916,6 +918,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +935,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +952,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +969,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +986,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_bottom, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -996,6 +1003,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1012,6 +1020,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1028,6 +1037,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1054,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1060,6 +1071,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1076,6 +1088,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_mid, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1092,6 +1105,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1108,6 +1122,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1124,6 +1139,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1156,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1156,6 +1173,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1172,6 +1190,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Core_top, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1188,6 +1207,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1204,6 +1224,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1241,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1258,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1275,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1292,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1309,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1326,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1343,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1360,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bottom_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1348,6 +1377,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1394,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1380,6 +1411,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1396,6 +1428,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1412,6 +1445,7 @@ Ceiling, !- Surface Type INT-FLOOR-UNDERSIDE, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1462,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1444,6 +1479,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1460,6 +1496,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1476,6 +1513,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1492,6 +1530,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1508,6 +1547,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1524,6 +1564,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1540,6 +1581,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1556,6 +1598,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name FirstFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1572,6 +1615,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1632,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1614,6 +1659,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1630,6 +1676,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1646,6 +1693,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1662,6 +1710,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1678,6 +1727,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1694,6 +1744,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1720,6 +1771,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1736,6 +1788,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1752,6 +1805,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1768,6 +1822,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1784,6 +1839,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1800,6 +1856,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1826,6 +1883,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1842,6 +1900,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1858,6 +1917,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1874,6 +1934,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1890,6 +1951,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1906,6 +1968,7 @@ Floor, !- Surface Type ext-slab, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,6 +1995,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1948,6 +2012,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1964,6 +2029,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1980,6 +2046,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_bot_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1996,6 +2063,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2012,6 +2080,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2028,6 +2097,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2044,6 +2114,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name MidFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2060,6 +2131,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2076,6 +2148,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2092,6 +2165,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2108,6 +2182,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2124,6 +2199,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2140,6 +2216,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2156,6 +2233,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2172,6 +2250,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2188,6 +2267,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2204,6 +2284,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2220,6 +2301,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2236,6 +2318,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2252,6 +2335,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2268,6 +2352,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2284,6 +2369,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2300,6 +2386,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2316,6 +2403,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2332,6 +2420,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2348,6 +2437,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2364,6 +2454,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2380,6 +2471,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2396,6 +2488,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2412,6 +2505,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2428,6 +2522,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_mid_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2444,6 +2539,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2460,6 +2556,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2476,6 +2573,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2492,6 +2590,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2508,6 +2607,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2524,6 +2624,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2540,6 +2641,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2556,6 +2658,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2572,6 +2675,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2588,6 +2692,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2604,6 +2709,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2620,6 +2726,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2636,6 +2743,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2652,6 +2760,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2668,6 +2777,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2684,6 +2794,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2700,6 +2811,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2716,6 +2828,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2732,6 +2845,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2748,6 +2862,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2764,6 +2879,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2780,6 +2896,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2796,6 +2913,7 @@ Ceiling, !- Surface Type DropCeiling, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2812,6 +2930,7 @@ Floor, !- Surface Type INT-FLOOR-TOPSIDE, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2828,6 +2947,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2844,6 +2964,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2860,6 +2981,7 @@ Wall, !- Surface Type int-walls, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2876,6 +2998,7 @@ Wall, !- Surface Type Steel Frame Non-res Ext Wall, !- Construction Name Perimeter_top_ZN_4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2892,6 +3015,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2908,6 +3032,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2924,6 +3049,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2940,6 +3066,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2956,6 +3083,7 @@ Floor, !- Surface Type DropCeiling, !- Construction Name TopFloor_Plenum, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -4153,91 +4281,106 @@ Core_bottom Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_bottom, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_mid Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_mid, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Core_top Internal Mass, !- Name InteriorFurnishings, !- Construction Name Core_top, !- Zone or ZoneList Name - 1967.0731; !- Surface Area {m2} + , !- Surface Area {m2} + 1967.0731; !- Extended Field InternalMass, Perimeter_bot_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_bot_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_bot_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_bot_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_mid_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_mid_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_mid_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_mid_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field InternalMass, Perimeter_top_ZN_1 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_1, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_2 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_2, !- Zone or ZoneList Name - 262.5244; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5244; !- Extended Field InternalMass, Perimeter_top_ZN_3 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_3, !- Zone or ZoneList Name - 414.6763; !- Surface Area {m2} + , !- Surface Area {m2} + 414.6763; !- Extended Field InternalMass, Perimeter_top_ZN_4 Internal Mass, !- Name InteriorFurnishings, !- Construction Name Perimeter_top_ZN_4, !- Zone or ZoneList Name - 262.5072; !- Surface Area {m2} + , !- Surface Area {m2} + 262.5072; !- Extended Field ! ***INTERNAL GAINS SCHEDULES*** diff --git a/testfiles/ZoneCoupledKivaSlab.idf b/testfiles/ZoneCoupledKivaSlab.idf index 3e7f8d34c31..3e6c9315bcf 100644 --- a/testfiles/ZoneCoupledKivaSlab.idf +++ b/testfiles/ZoneCoupledKivaSlab.idf @@ -288,6 +288,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -304,6 +305,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -320,6 +322,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -336,6 +339,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -352,6 +356,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -378,6 +383,7 @@ Floor, !- Surface Type Floor Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Slab Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/ZoneCoupledKivaWalkoutBasement.idf b/testfiles/ZoneCoupledKivaWalkoutBasement.idf index 0e48c26dbf6..9dbae09a9e1 100644 --- a/testfiles/ZoneCoupledKivaWalkoutBasement.idf +++ b/testfiles/ZoneCoupledKivaWalkoutBasement.idf @@ -200,6 +200,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -216,6 +217,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -232,6 +234,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -258,6 +261,7 @@ Floor, !- Surface Type Basement Floor Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -274,6 +278,7 @@ Ceiling, !- Surface Type Ceiling Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Main Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -290,6 +295,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -306,6 +312,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -322,6 +329,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -338,6 +346,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -354,6 +363,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -370,6 +380,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -386,6 +397,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -402,6 +414,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -418,6 +431,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -434,6 +448,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Foundation, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -450,6 +465,7 @@ Wall, !- Surface Type Basement Wall Construction, !- Construction Name Basement, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition Basement Foundation, !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -527,6 +543,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -543,6 +560,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -559,6 +577,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -575,6 +594,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -591,6 +611,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneSysAvailManager.idf b/testfiles/ZoneSysAvailManager.idf index 313e83d7c79..03ff6287805 100644 --- a/testfiles/ZoneSysAvailManager.idf +++ b/testfiles/ZoneSysAvailManager.idf @@ -797,97 +797,97 @@ Until: 24:00,0.0; !- Field 3 Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Coil:Cooling:WaterToAirHeatPump:EquationFit, Sys 1 Heat Pump Cooling Mode, !- Name @@ -1454,6 +1454,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1470,6 +1471,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1486,6 +1488,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1502,6 +1505,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1518,6 +1522,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1534,6 +1539,7 @@ Roof, !- Surface Type ROOF19, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneVSWSHP_wDOAS.idf b/testfiles/ZoneVSWSHP_wDOAS.idf index 0f9d51b7401..0417f03acf8 100644 --- a/testfiles/ZoneVSWSHP_wDOAS.idf +++ b/testfiles/ZoneVSWSHP_wDOAS.idf @@ -1761,6 +1761,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1777,6 +1778,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1793,6 +1795,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1809,6 +1812,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1825,6 +1829,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1841,6 +1846,7 @@ Roof, !- Surface Type ROOF19, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/ZoneWSHP_wDOAS.idf b/testfiles/ZoneWSHP_wDOAS.idf index 7397cbdf895..6caff8f33e9 100644 --- a/testfiles/ZoneWSHP_wDOAS.idf +++ b/testfiles/ZoneWSHP_wDOAS.idf @@ -743,98 +743,98 @@ Until: 24:00,0.0; !- Field 3 Curve:QuadLinear, - TotCoolCapCurve, ! Curve Name - -9.149069561, !- CoefficientC1 - 10.87814026, !- CoefficientC2 - -1.718780157, !- CoefficientC3 - 0.746414818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + TotCoolCapCurve, !- Name + -9.149069561, !- Coefficient1 Constant + 10.87814026, !- Coefficient2 w + -1.718780157, !- Coefficient3 x + 0.746414818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - CoolPowCurve, ! Curve Name - -3.205409884, !- CoefficientC1 - -0.976409399, !- CoefficientC2 - 3.97892546, !- CoefficientC3 - 0.938181818, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + CoolPowCurve, !- Name + -3.205409884, !- Coefficient1 Constant + -0.976409399, !- Coefficient2 w + 3.97892546, !- Coefficient3 x + 0.938181818, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatCapCurve, ! Curve Name - -1.361311959, !- CoefficientC1 - -2.471798046, !- CoefficientC2 - 4.173164514, !- CoefficientC3 - 0.640757401, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatCapCurve, !- Name + -1.361311959, !- Coefficient1 Constant + -2.471798046, !- Coefficient2 w + 4.173164514, !- Coefficient3 x + 0.640757401, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuadLinear, - HeatPowCurve, ! Curve Name - -2.176941116, !- CoefficientC1 - 0.832114286, !- CoefficientC2 - 1.570743399, !- CoefficientC3 - 0.690793651, !- CoefficientC4 - 0.0, !- CoefficientC5 - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output + HeatPowCurve, !- Name + -2.176941116, !- Coefficient1 Constant + 0.832114286, !- Coefficient2 w + 1.570743399, !- Coefficient3 x + 0.690793651, !- Coefficient4 y + 0.0, !- Coefficient5 z + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output Curve:QuintLinear, - CoolSensCapCurve, ! Curve Name - -5.462690012, !- CoefficientC1 - 17.95968138, !- CoefficientC2 - -11.87818402, !- CoefficientC3 - -0.980163419, !- CoefficientC4 - 0.767285761, !- CoefficientC5 - 0.0, !- CoefficientC6 - -100, ! Minimum Value of v - 100, ! Maximum Value of v - -100, ! Minimum Value of w - 100, ! Maximum Value of w - -100, ! Minimum Value of x - 100, ! Maximum Value of x - 0, ! Minimum Value of y - 100, ! Maximum Value of y - 0, ! Minimum Value of z - 100, ! Maximum Value of z - 0, ! Minimum Curve Output - 38; ! Maximum Curve Output - + CoolSensCapCurve, !- Name + -5.462690012, !- Coefficient1 Constant + 17.95968138, !- Coefficient2 v + -11.87818402, !- Coefficient3 w + -0.980163419, !- Coefficient4 x + 0.767285761, !- Coefficient5 y + 0.0, !- Coefficient6 z + -100, !- Minimum Value of v + 100, !- Maximum Value of v + -100, !- Minimum Value of w + 100, !- Maximum Value of w + -100, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100, !- Maximum Value of y + 0, !- Minimum Value of z + 100, !- Maximum Value of z + 0, !- Minimum Curve Output + 38; !- Maximum Curve Output + Coil:Cooling:WaterToAirHeatPump:EquationFit, Sys 1 Heat Pump Cooling Mode, !- Name Sys 1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name @@ -1508,6 +1508,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1524,6 +1525,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1540,6 +1542,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1556,6 +1559,7 @@ Wall, !- Surface Type ext-walls, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1572,6 +1576,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1593,7 @@ Roof, !- Surface Type ROOF19, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_1ZoneUncontrolled_Feb29.idf b/testfiles/_1ZoneUncontrolled_Feb29.idf index 3a29ce89bd3..5ba15c4ea10 100644 --- a/testfiles/_1ZoneUncontrolled_Feb29.idf +++ b/testfiles/_1ZoneUncontrolled_Feb29.idf @@ -271,6 +271,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -287,6 +288,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -303,6 +305,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -319,6 +322,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -335,6 +339,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -351,6 +356,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_1ZoneUncontrolled_SineOSC.idf b/testfiles/_1ZoneUncontrolled_SineOSC.idf index 120e5987d98..cfeea9a3f8a 100644 --- a/testfiles/_1ZoneUncontrolled_SineOSC.idf +++ b/testfiles/_1ZoneUncontrolled_SineOSC.idf @@ -272,6 +272,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name OtherSideCoefficients, !- Outside Boundary Condition OSCCoef:Zn001:Wall001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -301,6 +302,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -317,6 +319,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -333,6 +336,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -349,6 +353,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -365,6 +370,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_1ZoneUncontrolled_customrange.idf b/testfiles/_1ZoneUncontrolled_customrange.idf index fe16a5de76c..fddefb62451 100644 --- a/testfiles/_1ZoneUncontrolled_customrange.idf +++ b/testfiles/_1ZoneUncontrolled_customrange.idf @@ -280,6 +280,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -296,6 +297,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -312,6 +314,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -328,6 +331,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -344,6 +348,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -360,6 +365,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_1Zone_Heavy_AdiabaticX2.idf b/testfiles/_1Zone_Heavy_AdiabaticX2.idf index 684984ae9f7..edf5c5fecca 100644 --- a/testfiles/_1Zone_Heavy_AdiabaticX2.idf +++ b/testfiles/_1Zone_Heavy_AdiabaticX2.idf @@ -294,6 +294,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -310,6 +311,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -326,6 +328,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -342,6 +345,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -358,6 +362,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -374,6 +379,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +396,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -406,6 +413,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -422,6 +430,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -438,6 +447,7 @@ Wall, !- Surface Type Interior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -454,6 +464,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -470,6 +481,7 @@ Wall, !- Surface Type Interior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_1Zone_Heavy_MassX2.idf b/testfiles/_1Zone_Heavy_MassX2.idf index 349d414afcf..0f022dfab89 100644 --- a/testfiles/_1Zone_Heavy_MassX2.idf +++ b/testfiles/_1Zone_Heavy_MassX2.idf @@ -294,6 +294,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -310,6 +311,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -326,6 +328,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -342,6 +345,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -358,6 +362,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -374,6 +379,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +396,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -406,6 +413,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -422,6 +430,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -438,6 +447,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -455,7 +465,8 @@ WallMass, !- Name Interior, !- Construction Name Zone1, !- Zone or ZoneList Name - 18.5806; !- Surface Area {m2} + , !- Surface Area {m2} + 18.5806; !- Extended Field !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== diff --git a/testfiles/_1Zone_Heavy_SelfRef.idf b/testfiles/_1Zone_Heavy_SelfRef.idf index 7781deee15a..17512153460 100644 --- a/testfiles/_1Zone_Heavy_SelfRef.idf +++ b/testfiles/_1Zone_Heavy_SelfRef.idf @@ -294,6 +294,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -310,6 +311,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -326,6 +328,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -342,6 +345,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -358,6 +362,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -374,6 +379,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -390,6 +396,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -406,6 +413,7 @@ Roof, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -422,6 +430,7 @@ Wall, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -438,6 +447,7 @@ Wall, !- Surface Type Interior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Zone, !- Outside Boundary Condition Zone1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -454,6 +464,7 @@ Floor, !- Surface Type Exterior, !- Construction Name Zone1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_1a-Long0.0.idf b/testfiles/_1a-Long0.0.idf index 82ce6de5c92..ceb30b9c4b2 100644 --- a/testfiles/_1a-Long0.0.idf +++ b/testfiles/_1a-Long0.0.idf @@ -970,6 +970,7 @@ Wall, !- Surface Type CONST 2, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE SOUTH, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -986,6 +987,7 @@ Wall, !- Surface Type CONST 1, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1017,6 +1019,7 @@ Wall, !- Surface Type CONST 2, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE NORTH, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1036,7 @@ Wall, !- Surface Type CONST 2, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE EAST, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1049,6 +1053,7 @@ Ceiling, !- Surface Type CONST 4-Ceiling, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE CEILING, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1070,7 @@ Floor, !- Surface Type CONST 4-Floor, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE FLOOR, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1322,7 @@ Roof, !- Surface Type CONST 4-Ceiling, !- Construction Name ZONE TWO, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_5ZoneAirCooled_LeapYear_annual.idf b/testfiles/_5ZoneAirCooled_LeapYear_annual.idf index c927a6a1b3f..a52262f5a29 100644 --- a/testfiles/_5ZoneAirCooled_LeapYear_annual.idf +++ b/testfiles/_5ZoneAirCooled_LeapYear_annual.idf @@ -561,6 +561,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -577,6 +578,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -593,6 +595,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -609,6 +612,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -625,6 +629,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -641,6 +646,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -657,6 +663,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -673,6 +680,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -689,6 +697,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -705,6 +714,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -784,6 +794,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -850,6 +861,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -866,6 +878,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -882,6 +895,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -898,6 +912,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -914,6 +929,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -993,6 +1009,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1024,6 +1041,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1040,6 +1058,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1056,6 +1075,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1072,6 +1092,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1088,6 +1109,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1167,6 +1189,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1213,6 +1236,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1229,6 +1253,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1245,6 +1270,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1261,6 +1287,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1277,6 +1304,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1356,6 +1384,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1387,6 +1416,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1403,6 +1433,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1419,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1435,6 +1467,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1451,6 +1484,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1530,6 +1564,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1546,6 +1581,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1562,6 +1598,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1578,6 +1615,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1594,6 +1632,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1610,6 +1649,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_5ZoneAirCooled_annual.idf b/testfiles/_5ZoneAirCooled_annual.idf index db4e12b5bed..0c9d0718414 100644 --- a/testfiles/_5ZoneAirCooled_annual.idf +++ b/testfiles/_5ZoneAirCooled_annual.idf @@ -619,6 +619,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -635,6 +636,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -651,6 +653,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -667,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -683,6 +687,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -699,6 +704,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -715,6 +721,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -731,6 +738,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -747,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -763,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -842,6 +852,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -908,6 +919,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +936,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +953,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -956,6 +970,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -972,6 +987,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1067,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1082,6 +1099,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1116,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1133,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1150,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1146,6 +1167,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1247,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1271,6 +1294,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1287,6 +1311,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1303,6 +1328,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1345,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1335,6 +1362,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1414,6 +1442,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1445,6 +1474,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1461,6 +1491,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1477,6 +1508,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1493,6 +1525,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1509,6 +1542,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1588,6 +1622,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1604,6 +1639,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1620,6 +1656,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1636,6 +1673,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1652,6 +1690,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1668,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_5ZoneEvapCooled.idf b/testfiles/_5ZoneEvapCooled.idf index 0fb8730f363..60d1b8ca2ba 100644 --- a/testfiles/_5ZoneEvapCooled.idf +++ b/testfiles/_5ZoneEvapCooled.idf @@ -638,6 +638,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +655,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -670,6 +672,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +689,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +706,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +723,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -734,6 +740,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -750,6 +757,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +774,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +791,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +871,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +938,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +955,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +972,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +989,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1006,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1070,6 +1086,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1101,6 +1118,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1117,6 +1135,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1133,6 +1152,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1169,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1186,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1266,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1290,6 +1313,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1306,6 +1330,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1347,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1364,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1381,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1433,6 +1461,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1464,6 +1493,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1480,6 +1510,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1496,6 +1527,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1544,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1528,6 +1561,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1607,6 +1641,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1623,6 +1658,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1675,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1692,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1709,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1726,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_AllOffOpScheme.idf b/testfiles/_AllOffOpScheme.idf index 44d904e782a..6763c633754 100644 --- a/testfiles/_AllOffOpScheme.idf +++ b/testfiles/_AllOffOpScheme.idf @@ -657,6 +657,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +689,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -704,6 +706,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +723,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +740,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -752,6 +757,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -768,6 +774,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -784,6 +791,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -800,6 +808,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -816,6 +825,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -832,6 +842,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -848,6 +859,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +876,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -880,6 +893,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +910,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -912,6 +927,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -928,6 +944,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -944,6 +961,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -960,6 +978,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -976,6 +995,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_CTFTestsPart1.idf b/testfiles/_CTFTestsPart1.idf index 125257bb42d..fe656674359 100644 --- a/testfiles/_CTFTestsPart1.idf +++ b/testfiles/_CTFTestsPart1.idf @@ -484,6 +484,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -500,6 +501,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -516,6 +518,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -532,6 +535,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -548,6 +552,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -564,6 +569,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name R13WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -580,6 +586,7 @@ Wall, !- Surface Type R26WALL, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -596,6 +603,7 @@ Wall, !- Surface Type R26WALL, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -612,6 +620,7 @@ Wall, !- Surface Type R26WALL, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -628,6 +637,7 @@ Wall, !- Surface Type R26WALL, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -644,6 +654,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -660,6 +671,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name R26WALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +688,7 @@ Wall, !- Surface Type MIXEDWALL, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +705,7 @@ Wall, !- Surface Type MIXEDWALL, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +722,7 @@ Wall, !- Surface Type MIXEDWALL, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -724,6 +739,7 @@ Wall, !- Surface Type MIXEDWALL, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -740,6 +756,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +773,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MIXEDWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +790,7 @@ Wall, !- Surface Type MIXEDWALL2, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +807,7 @@ Wall, !- Surface Type MIXEDWALL2, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +824,7 @@ Wall, !- Surface Type MIXEDWALL2, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -820,6 +841,7 @@ Wall, !- Surface Type MIXEDWALL2, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -836,6 +858,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +875,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MIXEDWALL2 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +892,7 @@ Wall, !- Surface Type MIXEDWALL3, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +909,7 @@ Wall, !- Surface Type MIXEDWALL3, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +926,7 @@ Wall, !- Surface Type MIXEDWALL3, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +943,7 @@ Wall, !- Surface Type MIXEDWALL3, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +960,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +977,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name MIXEDWALL3 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -964,6 +994,7 @@ Wall, !- Surface Type 12 INCHHWCONC, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -980,6 +1011,7 @@ Wall, !- Surface Type 12 INCHHWCONC, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -996,6 +1028,7 @@ Wall, !- Surface Type 12 INCHHWCONC, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1012,6 +1045,7 @@ Wall, !- Surface Type 12 INCHHWCONC, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1028,6 +1062,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1044,6 +1079,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 12INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1060,6 +1096,7 @@ Wall, !- Surface Type 12 INCHHWCONCREV, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1076,6 +1113,7 @@ Wall, !- Surface Type 12 INCHHWCONCREV, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1092,6 +1130,7 @@ Wall, !- Surface Type 12 INCHHWCONCREV, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1108,6 +1147,7 @@ Wall, !- Surface Type 12 INCHHWCONCREV, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1164,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1140,6 +1181,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 12INCHHWCONCREV WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1156,6 +1198,7 @@ Wall, !- Surface Type FOOTOFHWCONC, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1172,6 +1215,7 @@ Wall, !- Surface Type FOOTOFHWCONC, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1188,6 +1232,7 @@ Wall, !- Surface Type FOOTOFHWCONC, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1204,6 +1249,7 @@ Wall, !- Surface Type FOOTOFHWCONC, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1220,6 +1266,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1283,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name FOOTOFHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1252,6 +1300,7 @@ Wall, !- Surface Type 10 LAYERWALL, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1317,7 @@ Wall, !- Surface Type 10 LAYERWALL, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1284,6 +1334,7 @@ Wall, !- Surface Type 10 LAYERWALL, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1300,6 +1351,7 @@ Wall, !- Surface Type 10 LAYERWALL, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1316,6 +1368,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1385,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 10LAYERWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1348,6 +1402,7 @@ Wall, !- Surface Type SLOWHWCONCWALL, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1364,6 +1419,7 @@ Wall, !- Surface Type SLOWHWCONCWALL, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1380,6 +1436,7 @@ Wall, !- Surface Type SLOWHWCONCWALL, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1396,6 +1453,7 @@ Wall, !- Surface Type SLOWHWCONCWALL, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1412,6 +1470,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1428,6 +1487,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name SLOWHWCONCWALL WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_CTFTestsPart2.idf b/testfiles/_CTFTestsPart2.idf index f1b9981bf1c..b1b7eae28b5 100644 --- a/testfiles/_CTFTestsPart2.idf +++ b/testfiles/_CTFTestsPart2.idf @@ -519,6 +519,7 @@ Wall, !- Surface Type 18 INCHHWCONC, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -535,6 +536,7 @@ Wall, !- Surface Type 18 INCHHWCONC, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -551,6 +553,7 @@ Wall, !- Surface Type 18 INCHHWCONC, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -567,6 +570,7 @@ Wall, !- Surface Type 18 INCHHWCONC, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -583,6 +587,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -599,6 +604,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 18INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -615,6 +621,7 @@ Wall, !- Surface Type 24 INCHHWCONC, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -631,6 +638,7 @@ Wall, !- Surface Type 24 INCHHWCONC, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +655,7 @@ Wall, !- Surface Type 24 INCHHWCONC, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +672,7 @@ Wall, !- Surface Type 24 INCHHWCONC, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +689,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -695,6 +706,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 24INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +723,7 @@ Wall, !- Surface Type 28 INCHHWCONC, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -727,6 +740,7 @@ Wall, !- Surface Type 28 INCHHWCONC, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -743,6 +757,7 @@ Wall, !- Surface Type 28 INCHHWCONC, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -759,6 +774,7 @@ Wall, !- Surface Type 28 INCHHWCONC, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -775,6 +791,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -791,6 +808,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 28INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -807,6 +825,7 @@ Wall, !- Surface Type 30 INCHHWCONC, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -823,6 +842,7 @@ Wall, !- Surface Type 30 INCHHWCONC, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -839,6 +859,7 @@ Wall, !- Surface Type 30 INCHHWCONC, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -855,6 +876,7 @@ Wall, !- Surface Type 30 INCHHWCONC, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -871,6 +893,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -887,6 +910,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 30INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -903,6 +927,7 @@ Wall, !- Surface Type 32 INCHHWCONC, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -919,6 +944,7 @@ Wall, !- Surface Type 32 INCHHWCONC, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -935,6 +961,7 @@ Wall, !- Surface Type 32 INCHHWCONC, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -951,6 +978,7 @@ Wall, !- Surface Type 32 INCHHWCONC, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -967,6 +995,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -983,6 +1012,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 32INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -999,6 +1029,7 @@ Wall, !- Surface Type 36 INCHHWCONC, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1015,6 +1046,7 @@ Wall, !- Surface Type 36 INCHHWCONC, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1031,6 +1063,7 @@ Wall, !- Surface Type 36 INCHHWCONC, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1047,6 +1080,7 @@ Wall, !- Surface Type 36 INCHHWCONC, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1063,6 +1097,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1079,6 +1114,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name 36INCHHWCONC WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1095,6 +1131,7 @@ Wall, !- Surface Type EXTWALL11, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1111,6 +1148,7 @@ Wall, !- Surface Type EXTWALL11, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1127,6 +1165,7 @@ Wall, !- Surface Type EXTWALL11, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1143,6 +1182,7 @@ Wall, !- Surface Type EXTWALL11, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1159,6 +1199,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1175,6 +1216,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name XW11 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1191,6 +1233,7 @@ Wall, !- Surface Type EXTWALL17, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1207,6 +1250,7 @@ Wall, !- Surface Type EXTWALL17, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1223,6 +1267,7 @@ Wall, !- Surface Type EXTWALL17, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1239,6 +1284,7 @@ Wall, !- Surface Type EXTWALL17, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1255,6 +1301,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1318,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name XW17 WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1287,6 +1335,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1303,6 +1352,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1319,6 +1369,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1335,6 +1386,7 @@ Wall, !- Surface Type EXTERIOR, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1351,6 +1403,7 @@ Floor, !- Surface Type SLAB FLOOR, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1367,6 +1420,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name EXTERIOR WALLS, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ConvCoefftest.idf b/testfiles/_ConvCoefftest.idf index 579bb6e1782..d5d151b70ff 100644 --- a/testfiles/_ConvCoefftest.idf +++ b/testfiles/_ConvCoefftest.idf @@ -290,6 +290,7 @@ WALL, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -306,6 +307,7 @@ WALL, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE WEST, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -322,6 +324,7 @@ WALL, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE NORTH, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -338,6 +341,7 @@ WALL, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE EAST, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -354,6 +358,7 @@ CEILING, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE CEILING, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -370,6 +375,7 @@ FLOOR, !- Surface Type TESTSURFACE, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE FLOOR, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_CoolingTowerDewPointRangeOp.idf b/testfiles/_CoolingTowerDewPointRangeOp.idf index dedf9721031..7719373c1e9 100644 --- a/testfiles/_CoolingTowerDewPointRangeOp.idf +++ b/testfiles/_CoolingTowerDewPointRangeOp.idf @@ -626,6 +626,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -642,6 +643,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -658,6 +660,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -674,6 +677,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -690,6 +694,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -706,6 +711,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -722,6 +728,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -738,6 +745,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -754,6 +762,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -770,6 +779,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -849,6 +859,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -915,6 +926,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +943,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +960,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -963,6 +977,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -979,6 +994,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1058,6 +1074,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1089,6 +1106,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1105,6 +1123,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1121,6 +1140,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1137,6 +1157,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1153,6 +1174,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1232,6 +1254,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1278,6 +1301,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1294,6 +1318,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1310,6 +1335,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1326,6 +1352,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1342,6 +1369,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1421,6 +1449,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1452,6 +1481,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1468,6 +1498,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1484,6 +1515,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1500,6 +1532,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1516,6 +1549,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1595,6 +1629,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1611,6 +1646,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1627,6 +1663,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1643,6 +1680,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1659,6 +1697,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1675,6 +1714,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_CoolingTowerWithDPDeltaTempOp.idf b/testfiles/_CoolingTowerWithDPDeltaTempOp.idf index 826c6039051..ecb971e5cad 100644 --- a/testfiles/_CoolingTowerWithDPDeltaTempOp.idf +++ b/testfiles/_CoolingTowerWithDPDeltaTempOp.idf @@ -631,6 +631,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -647,6 +648,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -663,6 +665,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -679,6 +682,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -695,6 +699,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -711,6 +716,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -727,6 +733,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -743,6 +750,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -759,6 +767,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -775,6 +784,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +864,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -920,6 +931,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -936,6 +948,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -952,6 +965,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -968,6 +982,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -984,6 +999,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1063,6 +1079,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1111,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1110,6 +1128,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1126,6 +1145,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1142,6 +1162,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1158,6 +1179,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1237,6 +1259,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1283,6 +1306,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1299,6 +1323,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1315,6 +1340,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1331,6 +1357,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1374,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1454,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1457,6 +1486,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1473,6 +1503,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1489,6 +1520,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1505,6 +1537,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1554,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1600,6 +1634,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1651,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1632,6 +1668,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1648,6 +1685,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1664,6 +1702,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1680,6 +1719,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_DOASDXCOIL_wUserSHRMethod.idf b/testfiles/_DOASDXCOIL_wUserSHRMethod.idf index f12b6d0ff6c..57077ae28ae 100644 --- a/testfiles/_DOASDXCOIL_wUserSHRMethod.idf +++ b/testfiles/_DOASDXCOIL_wUserSHRMethod.idf @@ -616,6 +616,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -632,6 +633,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -648,6 +650,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -664,6 +667,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -680,6 +684,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -696,6 +701,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -712,6 +718,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -728,6 +735,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -744,6 +752,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -760,6 +769,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -839,6 +849,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -905,6 +916,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +933,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +950,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -953,6 +967,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +984,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1048,6 +1064,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1096,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1095,6 +1113,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1111,6 +1130,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1127,6 +1147,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1143,6 +1164,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1222,6 +1244,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1268,6 +1291,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1284,6 +1308,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1300,6 +1325,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1316,6 +1342,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1332,6 +1359,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1439,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1442,6 +1471,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1488,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1505,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1522,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1539,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1585,6 +1619,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1601,6 +1636,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1617,6 +1653,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1633,6 +1670,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1649,6 +1687,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1665,6 +1704,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_DemandVentilationFixedRateAndHighPriority.idf b/testfiles/_DemandVentilationFixedRateAndHighPriority.idf index 7282c5f4228..7bc9a55df7b 100644 --- a/testfiles/_DemandVentilationFixedRateAndHighPriority.idf +++ b/testfiles/_DemandVentilationFixedRateAndHighPriority.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1051,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1083,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1100,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1193,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1217,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1257,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1350,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1382,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1399,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1577,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_DemandVentilationReductionRatioAndHighPriority.idf b/testfiles/_DemandVentilationReductionRatioAndHighPriority.idf index 1a04d5a5ae7..0b07616ca5d 100644 --- a/testfiles/_DemandVentilationReductionRatioAndHighPriority.idf +++ b/testfiles/_DemandVentilationReductionRatioAndHighPriority.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1051,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1083,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1100,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1193,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1217,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1257,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1350,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1382,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1399,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1577,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_DemandVentilationReductionRatioAndLowPriority.idf b/testfiles/_DemandVentilationReductionRatioAndLowPriority.idf index 9591a75b70e..7a6072d601f 100644 --- a/testfiles/_DemandVentilationReductionRatioAndLowPriority.idf +++ b/testfiles/_DemandVentilationReductionRatioAndLowPriority.idf @@ -641,6 +641,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -657,6 +658,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -673,6 +675,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -689,6 +692,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -705,6 +709,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -721,6 +726,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -737,6 +743,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -753,6 +760,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -769,6 +777,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -785,6 +794,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -864,6 +874,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -930,6 +941,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -946,6 +958,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -962,6 +975,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -978,6 +992,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -994,6 +1009,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1051,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1066,6 +1083,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1082,6 +1100,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1098,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1114,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1130,6 +1151,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1171,6 +1193,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1217,6 +1240,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1233,6 +1257,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1249,6 +1274,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1265,6 +1291,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1281,6 +1308,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1322,6 +1350,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1353,6 +1382,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1399,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1416,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1433,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1417,6 +1450,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1458,6 +1492,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1474,6 +1509,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1490,6 +1526,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1506,6 +1543,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1522,6 +1560,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1538,6 +1577,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_DualDuctConstVolDamperMultizoneAverageSetPointManager.idf b/testfiles/_DualDuctConstVolDamperMultizoneAverageSetPointManager.idf index 46923049c15..047b919b8b0 100644 --- a/testfiles/_DualDuctConstVolDamperMultizoneAverageSetPointManager.idf +++ b/testfiles/_DualDuctConstVolDamperMultizoneAverageSetPointManager.idf @@ -432,6 +432,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -448,6 +449,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -464,6 +466,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -480,6 +483,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -496,6 +500,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -512,6 +517,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -528,6 +534,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -544,6 +551,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -560,6 +568,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -576,6 +585,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -592,6 +602,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -608,6 +619,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -624,6 +636,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -640,6 +653,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -656,6 +670,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -672,6 +687,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -688,6 +704,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -704,6 +721,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -720,6 +738,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -736,6 +755,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ElectricREformulatedEIRChiller.idf b/testfiles/_ElectricREformulatedEIRChiller.idf index 97a9fb52f49..90efd2949d4 100644 --- a/testfiles/_ElectricREformulatedEIRChiller.idf +++ b/testfiles/_ElectricREformulatedEIRChiller.idf @@ -654,6 +654,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -685,6 +686,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -701,6 +703,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -717,6 +720,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -733,6 +737,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -749,6 +754,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -765,6 +771,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -781,6 +788,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -797,6 +805,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -813,6 +822,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -829,6 +839,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -845,6 +856,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -861,6 +873,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -877,6 +890,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -893,6 +907,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -909,6 +924,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -925,6 +941,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -941,6 +958,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -957,6 +975,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -973,6 +992,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ExternalInterface-actuator.idf b/testfiles/_ExternalInterface-actuator.idf index a809e8b0d81..d19fea75fb9 100644 --- a/testfiles/_ExternalInterface-actuator.idf +++ b/testfiles/_ExternalInterface-actuator.idf @@ -732,6 +732,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +764,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -795,6 +798,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +815,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +832,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -843,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +883,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +917,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +934,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +951,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -955,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -971,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -987,6 +1002,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1003,6 +1019,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1036,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1053,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1070,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ExternalInterface-functionalmockupunit-to-actuator.idf b/testfiles/_ExternalInterface-functionalmockupunit-to-actuator.idf index dcb021979a3..88306c6fdaf 100644 --- a/testfiles/_ExternalInterface-functionalmockupunit-to-actuator.idf +++ b/testfiles/_ExternalInterface-functionalmockupunit-to-actuator.idf @@ -740,6 +740,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +772,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +789,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +806,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +823,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +840,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +874,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +891,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +908,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +925,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +942,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +959,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +976,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +993,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1010,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1027,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1044,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1061,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1078,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ExternalInterface-functionalmockupunit-to-schedule.idf b/testfiles/_ExternalInterface-functionalmockupunit-to-schedule.idf index b8e73e7db84..a6c94d71f99 100644 --- a/testfiles/_ExternalInterface-functionalmockupunit-to-schedule.idf +++ b/testfiles/_ExternalInterface-functionalmockupunit-to-schedule.idf @@ -411,6 +411,7 @@ Wall, !- Surface Type PARWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE SOUTH, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -427,6 +428,7 @@ Wall, !- Surface Type HWWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -468,6 +470,7 @@ Wall, !- Surface Type PARWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE NORTH, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -484,6 +487,7 @@ Wall, !- Surface Type HWWALL, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -525,6 +529,7 @@ Floor, !- Surface Type HWFLOOR, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE CEILING, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -541,6 +546,7 @@ Roof, !- Surface Type HWCEILING, !- Construction Name ZONE ONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition ZONE SURFACE FLOOR, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -559,7 +565,8 @@ HALLWAY WALL, !- Name INTWALL, !- Construction Name ZONE ONE, !- Zone or ZoneList Name - 54.24; !- Surface Area {m2} + , !- Surface Area {m2} + 54.24; !- Extended Field ! 54.24 = 4 * ( 2.7 * 6 - 2.2 * 1.2 ) ! =========================================================== diff --git a/testfiles/_ExternalInterface-functionalmockupunit-to-variable.idf b/testfiles/_ExternalInterface-functionalmockupunit-to-variable.idf index e61773c8322..49fe371c396 100644 --- a/testfiles/_ExternalInterface-functionalmockupunit-to-variable.idf +++ b/testfiles/_ExternalInterface-functionalmockupunit-to-variable.idf @@ -740,6 +740,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -771,6 +772,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -787,6 +789,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -803,6 +806,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -819,6 +823,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -835,6 +840,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -851,6 +857,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -867,6 +874,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -883,6 +891,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -899,6 +908,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -915,6 +925,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -931,6 +942,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -947,6 +959,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +976,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +993,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1010,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1011,6 +1027,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1044,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1061,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1078,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_ExternalInterface-schedule.idf b/testfiles/_ExternalInterface-schedule.idf index ecbaeda8011..7173c0ddc94 100644 --- a/testfiles/_ExternalInterface-schedule.idf +++ b/testfiles/_ExternalInterface-schedule.idf @@ -454,6 +454,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -470,6 +471,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -486,6 +488,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -502,6 +505,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -518,6 +522,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -534,6 +539,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -550,6 +556,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -566,6 +573,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -582,6 +590,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -598,6 +607,7 @@ Roof, !- Surface Type ROOFR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -614,6 +624,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -630,6 +641,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +658,7 @@ Wall, !- Surface Type WALLR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +675,7 @@ Roof, !- Surface Type ROOFR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -678,6 +692,7 @@ Ceiling, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +709,7 @@ Ceiling, !- Surface Type reverseFLOORR, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +726,7 @@ Floor, !- Surface Type FLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -726,6 +743,7 @@ Floor, !- Surface Type FLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition BNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -742,6 +760,7 @@ Ceiling, !- Surface Type reverseFLOORR, !- Construction Name ZSF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SSFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -758,6 +777,7 @@ Ceiling, !- Surface Type reverseFLOORR, !- Construction Name ZNF1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SNFLOOR-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -774,6 +794,7 @@ Floor, !- Surface Type FLOORR, !- Construction Name ZSF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FSCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -790,6 +811,7 @@ Floor, !- Surface Type FLOORR, !- Construction Name ZNF2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition FNCEING-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -806,6 +828,7 @@ Floor, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +845,7 @@ WALL, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -838,6 +862,7 @@ WALL, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -854,6 +879,7 @@ WALL, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -870,6 +896,7 @@ WALL, !- Surface Type SLABL, !- Construction Name BASE-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,25 +1092,29 @@ ZSF1-MASS, !- Name FURNITURE, !- Construction Name ZSF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF1-MASS, !- Name FURNITURE, !- Construction Name ZNF1, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZSF2-MASS, !- Name FURNITURE, !- Construction Name ZSF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, ZNF2-MASS, !- Name FURNITURE, !- Construction Name ZNF2, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/_ExternalInterface-variable.idf b/testfiles/_ExternalInterface-variable.idf index 454342f342e..d4a2e85ce49 100644 --- a/testfiles/_ExternalInterface-variable.idf +++ b/testfiles/_ExternalInterface-variable.idf @@ -732,6 +732,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -763,6 +764,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -779,6 +781,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -795,6 +798,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -811,6 +815,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -827,6 +832,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -843,6 +849,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -859,6 +866,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -875,6 +883,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -891,6 +900,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -907,6 +917,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -923,6 +934,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -939,6 +951,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -955,6 +968,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -971,6 +985,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -987,6 +1002,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1003,6 +1019,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1019,6 +1036,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1035,6 +1053,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1051,6 +1070,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_FanCoilHybridVentAFN.idf b/testfiles/_FanCoilHybridVentAFN.idf index e55f7935802..e1e43ae01c3 100644 --- a/testfiles/_FanCoilHybridVentAFN.idf +++ b/testfiles/_FanCoilHybridVentAFN.idf @@ -716,6 +716,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +733,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +750,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +767,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +784,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +801,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +818,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -828,6 +835,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +852,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +869,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -876,6 +886,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +903,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +920,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +937,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -940,6 +954,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +971,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +988,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -988,6 +1005,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1004,6 +1022,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1020,6 +1039,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1036,6 +1056,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1073,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1090,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1084,6 +1107,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1124,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1141,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1132,6 +1158,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1148,6 +1175,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1164,6 +1192,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1180,6 +1209,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1196,6 +1226,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1212,6 +1243,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1228,6 +1260,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1244,6 +1277,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_FollowSysNodeTemp.idf b/testfiles/_FollowSysNodeTemp.idf index 0326c632c81..d71249bdf77 100644 --- a/testfiles/_FollowSysNodeTemp.idf +++ b/testfiles/_FollowSysNodeTemp.idf @@ -661,6 +661,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +693,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -708,6 +710,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +727,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +744,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -756,6 +761,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +778,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +795,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +812,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -820,6 +829,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +846,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +863,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -868,6 +880,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +897,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +914,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +931,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -932,6 +948,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +965,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +982,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -980,6 +999,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_FuelCellTest200.idf b/testfiles/_FuelCellTest200.idf index ed8be0275dd..db7cf0c58c8 100644 --- a/testfiles/_FuelCellTest200.idf +++ b/testfiles/_FuelCellTest200.idf @@ -302,6 +302,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_HybridVentilationControlGlobalAN.idf b/testfiles/_HybridVentilationControlGlobalAN.idf index d0639e6a39d..88d32e8b547 100644 --- a/testfiles/_HybridVentilationControlGlobalAN.idf +++ b/testfiles/_HybridVentilationControlGlobalAN.idf @@ -622,6 +622,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -638,6 +639,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -654,6 +656,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -670,6 +673,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -686,6 +690,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -702,6 +707,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -718,6 +724,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +741,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +758,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -766,6 +775,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +792,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +809,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +826,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -830,6 +843,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -846,6 +860,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -862,6 +877,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -878,6 +894,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -894,6 +911,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -910,6 +928,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -926,6 +945,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -942,6 +962,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -958,6 +979,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -974,6 +996,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +1013,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1006,6 +1030,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1022,6 +1047,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1038,6 +1064,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1054,6 +1081,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1070,6 +1098,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1086,6 +1115,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1102,6 +1132,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1118,6 +1149,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1134,6 +1166,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1150,6 +1183,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_HybridVentilationControl_MinTime.idf b/testfiles/_HybridVentilationControl_MinTime.idf index 80c95a7a187..8b6d31bbfe5 100644 --- a/testfiles/_HybridVentilationControl_MinTime.idf +++ b/testfiles/_HybridVentilationControl_MinTime.idf @@ -620,6 +620,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -636,6 +637,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -652,6 +654,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -668,6 +671,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -684,6 +688,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -700,6 +705,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -716,6 +722,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -732,6 +739,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -748,6 +756,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -764,6 +773,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -780,6 +790,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -796,6 +807,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -812,6 +824,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr002, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -828,6 +841,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -844,6 +858,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -860,6 +875,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -876,6 +892,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -892,6 +909,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -908,6 +926,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -924,6 +943,7 @@ CEILING, !- Surface Type CEILING:ZONE, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -940,6 +960,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -956,6 +977,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -972,6 +994,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -988,6 +1011,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1004,6 +1028,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1020,6 +1045,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1036,6 +1062,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1079,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1068,6 +1096,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1084,6 +1113,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1100,6 +1130,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1116,6 +1147,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1132,6 +1164,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1148,6 +1181,7 @@ Floor, !- Surface Type CEILING:ATTIC, !- Construction Name ATTIC ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Ceil001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_MaterialTest.idf b/testfiles/_MaterialTest.idf index 0123d636a94..c7a53cf03f2 100644 --- a/testfiles/_MaterialTest.idf +++ b/testfiles/_MaterialTest.idf @@ -803,6 +803,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -834,6 +835,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -865,6 +867,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -896,6 +899,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +931,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -943,6 +948,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -959,6 +965,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -990,6 +997,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1021,6 +1029,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1052,6 +1061,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1083,6 +1093,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1099,6 +1110,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1115,6 +1127,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1146,6 +1159,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1177,6 +1191,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1208,6 +1223,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1239,6 +1255,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1255,6 +1272,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1271,6 +1289,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1302,6 +1321,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1333,6 +1353,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1364,6 +1385,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1395,6 +1417,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1411,6 +1434,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL2 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn004:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1427,6 +1451,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1458,6 +1483,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1489,6 +1515,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1520,6 +1547,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1551,6 +1579,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1567,6 +1596,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL2 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn005:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1613,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1614,6 +1645,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1645,6 +1677,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1676,6 +1709,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1707,6 +1741,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1723,6 +1758,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL2 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn006:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1739,6 +1775,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1770,6 +1807,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1801,6 +1839,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1832,6 +1871,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1863,6 +1903,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1879,6 +1920,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL3 WINDOW1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn007:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1895,6 +1937,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1926,6 +1969,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1957,6 +2001,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1988,6 +2033,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2019,6 +2065,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2035,6 +2082,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL3 WINDOW2, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn008:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2051,6 +2099,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2082,6 +2131,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2113,6 +2163,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2144,6 +2195,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2175,6 +2227,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2191,6 +2244,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL3 WINDOW3, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn009:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2207,6 +2261,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2238,6 +2293,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2269,6 +2325,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2300,6 +2357,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2331,6 +2389,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn010:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2347,6 +2406,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW4, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn010:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2363,6 +2423,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2394,6 +2455,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2425,6 +2487,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2456,6 +2519,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2487,6 +2551,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn011:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2503,6 +2568,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW5, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn011:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2519,6 +2585,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2550,6 +2617,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2581,6 +2649,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2612,6 +2681,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2643,6 +2713,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn012:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2659,6 +2730,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW6, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn012:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2675,6 +2747,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2706,6 +2779,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2737,6 +2811,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2768,6 +2843,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2799,6 +2875,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn013:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2815,6 +2892,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW7, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn013:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2831,6 +2909,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2862,6 +2941,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2893,6 +2973,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2924,6 +3005,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2955,6 +3037,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn014:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2971,6 +3054,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW8, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn014:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2987,6 +3071,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3018,6 +3103,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3049,6 +3135,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3080,6 +3167,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3111,6 +3199,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn015:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3127,6 +3216,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOW9, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn015:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3143,6 +3233,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3174,6 +3265,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3205,6 +3297,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3236,6 +3329,7 @@ Wall, !- Surface Type EPWALL1, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3267,6 +3361,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn016:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3283,6 +3378,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL1 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn016:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3299,6 +3395,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3330,6 +3427,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3361,6 +3459,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3392,6 +3491,7 @@ Wall, !- Surface Type EPWALL2, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3423,6 +3523,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn017:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3439,6 +3540,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL2 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn017:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3455,6 +3557,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3486,6 +3589,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3517,6 +3621,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3548,6 +3653,7 @@ Wall, !- Surface Type EPWALL3, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -3579,6 +3685,7 @@ Floor, !- Surface Type FLOOR38, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn018:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -3595,6 +3702,7 @@ Roof, !- Surface Type CEILING38, !- Construction Name ZONE WITH WALL3 WINDOWSC,!- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn018:Roof001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_MicroCHPTest301.idf b/testfiles/_MicroCHPTest301.idf index dc03285c1de..003f78a664d 100644 --- a/testfiles/_MicroCHPTest301.idf +++ b/testfiles/_MicroCHPTest301.idf @@ -255,6 +255,7 @@ WALL, !- Surface Type EXTWALL:GARAGE, !- Construction Name GARAGE ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_MultiSpeedACElecFurnace.idf b/testfiles/_MultiSpeedACElecFurnace.idf index 79d5b01657a..68b89a7f9cd 100644 --- a/testfiles/_MultiSpeedACElecFurnace.idf +++ b/testfiles/_MultiSpeedACElecFurnace.idf @@ -645,6 +645,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -676,6 +677,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -692,6 +694,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -708,6 +711,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -724,6 +728,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -740,6 +745,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -756,6 +762,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -772,6 +779,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -788,6 +796,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -804,6 +813,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -820,6 +830,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -836,6 +847,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -852,6 +864,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -868,6 +881,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -884,6 +898,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -900,6 +915,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -916,6 +932,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -932,6 +949,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -948,6 +966,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -964,6 +983,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_PurchAirWindowBlind2.idf b/testfiles/_PurchAirWindowBlind2.idf index 9e830618d18..9129e14f508 100644 --- a/testfiles/_PurchAirWindowBlind2.idf +++ b/testfiles/_PurchAirWindowBlind2.idf @@ -704,6 +704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +736,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +753,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +770,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +787,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +804,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +838,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +855,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +872,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +889,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +906,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +923,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +940,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +957,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +974,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +991,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1008,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1025,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1042,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_PurchAirWindowBlind3.idf b/testfiles/_PurchAirWindowBlind3.idf index 8b66d1aac07..b9a648ef1ef 100644 --- a/testfiles/_PurchAirWindowBlind3.idf +++ b/testfiles/_PurchAirWindowBlind3.idf @@ -704,6 +704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +736,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +753,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +770,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +787,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +804,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +838,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +855,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +872,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +889,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +906,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +923,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +940,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +957,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +974,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +991,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1008,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1025,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1042,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_PurchAirWindowBlind4.idf b/testfiles/_PurchAirWindowBlind4.idf index 1d2cfc175b3..ab8df24584a 100644 --- a/testfiles/_PurchAirWindowBlind4.idf +++ b/testfiles/_PurchAirWindowBlind4.idf @@ -704,6 +704,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -735,6 +736,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -751,6 +753,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -767,6 +770,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -783,6 +787,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -799,6 +804,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -815,6 +821,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -831,6 +838,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -847,6 +855,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -863,6 +872,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -879,6 +889,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -895,6 +906,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -911,6 +923,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -927,6 +940,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -943,6 +957,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +974,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -975,6 +991,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1008,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1025,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1042,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/_SingleZoneTestCTFTwoDD.idf b/testfiles/_SingleZoneTestCTFTwoDD.idf index 43e8bfd85bf..5f5bfc674dd 100644 --- a/testfiles/_SingleZoneTestCTFTwoDD.idf +++ b/testfiles/_SingleZoneTestCTFTwoDD.idf @@ -2338,6 +2338,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:South Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2356,6 +2357,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2374,6 +2376,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:North Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2392,6 +2395,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:West Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2410,6 +2414,7 @@ Roof, !- Surface Type Light Roof/Ceiling, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SouthZone:Roof, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2428,6 +2433,7 @@ Floor, !- Surface Type Light Floor, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_SingleZoneTestCondFDTwoDD.idf b/testfiles/_SingleZoneTestCondFDTwoDD.idf index d5684e9ce32..1ab0d37ec4d 100644 --- a/testfiles/_SingleZoneTestCondFDTwoDD.idf +++ b/testfiles/_SingleZoneTestCondFDTwoDD.idf @@ -2332,6 +2332,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:South Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2350,6 +2351,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:East Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2368,6 +2370,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:North Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2386,6 +2389,7 @@ Wall, !- Surface Type Light Exterior Wall, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:West Wall, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2404,6 +2408,7 @@ Roof, !- Surface Type Light Roof/Ceiling, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition SouthZone:Roof, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2422,6 +2427,7 @@ Floor, !- Surface Type Light Floor, !- Construction Name SouthZone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SouthZone:Floor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/_SmallOffice_Dulles.idf b/testfiles/_SmallOffice_Dulles.idf index e54b20d0627..1f611fc7754 100644 --- a/testfiles/_SmallOffice_Dulles.idf +++ b/testfiles/_SmallOffice_Dulles.idf @@ -1049,6 +1049,7 @@ EastWall_SouthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1064,6 +1065,7 @@ SouthWall_SouthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1079,6 +1081,7 @@ WestWall_SouthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1094,6 +1097,7 @@ EastWall_NorthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1109,6 +1113,7 @@ NorthWall_NorthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1124,6 +1129,7 @@ WestWall_NorthZone_1stFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1139,6 +1145,7 @@ EastWall_SouthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1154,6 +1161,7 @@ SouthWall_SouthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1169,6 +1177,7 @@ WestWall_SouthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1184,6 +1193,7 @@ Roof_SouthZone_2ndFloor, !- Name ROOF-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1199,6 +1209,7 @@ EastWall_NorthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1214,6 +1225,7 @@ NorthWall_NorthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1229,6 +1241,7 @@ WestWall_NorthZone_2ndFloor, !- Name WALL-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1244,6 +1257,7 @@ Roof_NorthZone_2ndFloor, !- Name ROOF-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1259,6 +1273,7 @@ Floor_SouthZone_1stFloor,!- Name FLOOR-SLAB-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1274,6 +1289,7 @@ Floor_NorthZone_1stFloor,!- Name FLOOR-SLAB-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1305,7 @@ Ceiling_SouthZone_1stFloor, !- Name CEILING-FLOOR-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Floor_SouthZone_2ndFloor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1304,6 +1321,7 @@ Ceiling_NorthZone_1stFloor, !- Name CEILING-FLOOR-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Floor_NorthZone_2ndFloor,!- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1319,6 +1337,7 @@ Floor_SouthZone_2ndFloor,!- Name FLOOR-CEILING-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Ceiling_SouthZone_1stFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1334,6 +1353,7 @@ Floor_NorthZone_2ndFloor,!- Name FLOOR-CEILING-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Ceiling_NorthZone_1stFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1349,6 +1369,7 @@ InteriorWall_SouthZone_1stFloor, !- Name INTERIOR-WALL-ASSEMBLY, !- Construction Name SouthZone_1stFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition InteriorWall_NorthZone_1stFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1364,6 +1385,7 @@ InteriorWall_NorthZone_1stFloor, !- Name INTERIOR-WALL-ASSEMBLY, !- Construction Name NorthZone_1stFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition InteriorWall_SouthZone_1stFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1379,6 +1401,7 @@ InteriorWall_SouthZone_2ndFloor, !- Name INTERIOR-WALL-ASSEMBLY, !- Construction Name SouthZone_2ndFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition InteriorWall_NorthZone_2ndFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1417,7 @@ InteriorWall_NorthZone_2ndFloor, !- Name INTERIOR-WALL-ASSEMBLY, !- Construction Name NorthZone_2ndFloor, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition InteriorWall_SouthZone_2ndFloor, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1589,25 +1613,29 @@ InternalMass_SouthZone_1stFloor, !- Name FURNITURE, !- Construction Name SouthZone_1stFloor, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, InternalMass_NorthZone_1stFloor, !- Name FURNITURE, !- Construction Name NorthZone_1stFloor, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, InternalMass_SouthZone_2ndFloor, !- Name FURNITURE, !- Construction Name SouthZone_2ndFloor, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field InternalMass, InternalMass_NorthZone_2ndFloor, !- Name FURNITURE, !- Construction Name NorthZone_2ndFloor, !- Zone or ZoneList Name - 77; !- Surface Area {m2} + , !- Surface Area {m2} + 77; !- Extended Field ScheduleTypeLimits, Any Number; !- Name diff --git a/testfiles/_VAVSingleDuctConstFlowBoiler_otherfuel.idf b/testfiles/_VAVSingleDuctConstFlowBoiler_otherfuel.idf index b96e5c3e0c8..383b4d2a966 100644 --- a/testfiles/_VAVSingleDuctConstFlowBoiler_otherfuel.idf +++ b/testfiles/_VAVSingleDuctConstFlowBoiler_otherfuel.idf @@ -460,6 +460,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -476,6 +477,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -492,6 +494,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -508,6 +511,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -524,6 +528,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -540,6 +545,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -556,6 +562,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -572,6 +579,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -588,6 +596,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -604,6 +613,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -620,6 +630,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -636,6 +647,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -652,6 +664,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -668,6 +681,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -684,6 +698,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -700,6 +715,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -716,6 +732,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -732,6 +749,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -748,6 +766,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -764,6 +783,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/testfiles/gasAbsorptionChillerHeater.idf b/testfiles/gasAbsorptionChillerHeater.idf index 9b487898dfc..a9d1f3aed56 100644 --- a/testfiles/gasAbsorptionChillerHeater.idf +++ b/testfiles/gasAbsorptionChillerHeater.idf @@ -615,6 +615,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -646,6 +647,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -662,6 +664,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -678,6 +681,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -694,6 +698,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -710,6 +715,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -726,6 +732,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -742,6 +749,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -758,6 +766,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -774,6 +783,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -790,6 +800,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -806,6 +817,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -822,6 +834,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -838,6 +851,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -854,6 +868,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -870,6 +885,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -886,6 +902,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -902,6 +919,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -918,6 +936,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -934,6 +953,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure From 44e30484dc1aab1b491b04f1d7cd9c3d1ebc0f74 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 17 Jun 2021 08:50:36 -0500 Subject: [PATCH 19/98] Space and SpaceList inputs - fix --- src/EnergyPlus/HeatBalanceManager.cc | 26 ++++---------------------- src/EnergyPlus/HeatBalanceManager.hh | 2 ++ 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 4740343bcc2..2b197eb098a 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4885,29 +4885,11 @@ namespace HeatBalanceManager { // METHODOLOGY EMPLOYED: // The GetObjectItem routines are employed to retrieve the data. - // REFERENCES: - // na - - // Using/Aliasing - using namespace SurfaceGeometry; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - GetZoneData(state, ErrorsFound); // Read Zone data from input file - SetupZoneGeometry(state, ErrorsFound); + GetSpaceData(state, ErrorsFound); + + SurfaceGeometry::SetupZoneGeometry(state, ErrorsFound); } void GetZoneData(EnergyPlusData &state, bool &ErrorsFound) // If errors found in input @@ -5522,7 +5504,7 @@ namespace HeatBalanceManager { if (extensibles != objectFields.end()) { auto extensiblesArray = extensibles.value(); for (auto extensibleInstance : extensiblesArray) { - std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space"); + std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_name"); int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->Space); if (thisSpaceNum > 0) { thisSpaceList.Spaces.emplace_back(thisSpaceNum); diff --git a/src/EnergyPlus/HeatBalanceManager.hh b/src/EnergyPlus/HeatBalanceManager.hh index 78a0752ddbb..bbffbf3087e 100644 --- a/src/EnergyPlus/HeatBalanceManager.hh +++ b/src/EnergyPlus/HeatBalanceManager.hh @@ -115,6 +115,8 @@ namespace HeatBalanceManager { void GetZoneData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input + void GetSpaceData(EnergyPlusData &state, bool &ErrorsFound); + void GetZoneLocalEnvData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input void ProcessZoneData(EnergyPlusData &state, From 4c98b9432a7cdd24aec730d165752fef611f8d55 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 17 Jun 2021 21:28:00 -0500 Subject: [PATCH 20/98] Space - transition unit tests --- tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc | 48 + .../AirTerminalSingleDuctPIUReheat.unit.cc | 6 + .../unit/AirflowNetworkBalanceManager.unit.cc | 289 + .../unit/Autosizing/BaseClassSizing.unit.cc | 6 + tst/EnergyPlus/unit/BaseboardRadiator.unit.cc | 3 + .../unit/BranchNodeConnections.unit.cc | 26 + tst/EnergyPlus/unit/ChillerAbsorption.unit.cc | 6 + .../unit/ConvectionCoefficients.unit.cc | 15 + tst/EnergyPlus/unit/DElightManager.unit.cc | 6 + tst/EnergyPlus/unit/DataHeatBalance.unit.cc | 6 + tst/EnergyPlus/unit/DataSurfaces.unit.cc | 1 + .../unit/DaylightingManager.unit.cc | 42 + .../unit/DesiccantDehumidifiers.unit.cc | 58 + tst/EnergyPlus/unit/EMSManager.unit.cc | 2 + .../unit/ElectricBaseboardRadiator.unit.cc | 5 + .../unit/FuelCellElectricGenerator.unit.cc | 12 + tst/EnergyPlus/unit/Furnaces.unit.cc | 6 + tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc | 12 + .../unit/HVACUnitaryBypassVAV.unit.cc | 2 + .../unit/HVACVariableRefrigerantFlow.unit.cc | 6 + .../unit/HeatBalanceManager.unit.cc | 10 + .../unit/HeatBalanceMovableInsulation.unit.cc | 1 + .../unit/HeatBalanceSurfaceManager.unit.cc | 30 + tst/EnergyPlus/unit/HeatRecovery.unit.cc | 40 + tst/EnergyPlus/unit/InputProcessor.unit.cc | 17 +- .../unit/LowTempRadiantSystem.unit.cc | 7 + tst/EnergyPlus/unit/MixedAir.unit.cc | 40 + .../unit/OASystemHWPreheatCoil.unit.cc | 12 + .../unit/OutputReportTabular.unit.cc | 24 + tst/EnergyPlus/unit/OutputReports.unit.cc | 1 + .../Resources/UnitaryHybridUnitTest_DOSA.idf | 75720 ++++++++-------- .../unit/RoomAirflowNetwork.unit.cc | 1 + .../unit/SimAirServingZones.unit.cc | 6 + tst/EnergyPlus/unit/SingleDuct.unit.cc | 23 + tst/EnergyPlus/unit/SolarShading.unit.cc | 40 + tst/EnergyPlus/unit/SurfaceGeometry.unit.cc | 95 + tst/EnergyPlus/unit/ThermalChimney.unit.cc | 26 + tst/EnergyPlus/unit/ThermalComfort.unit.cc | 24 + .../unit/TranspiredCollector.unit.cc | 2 + tst/EnergyPlus/unit/UnitHeater.unit.cc | 13 + tst/EnergyPlus/unit/UnitarySystem.unit.cc | 24 + tst/EnergyPlus/unit/VentilatedSlab.unit.cc | 40 + tst/EnergyPlus/unit/WindowAC.unit.cc | 1 + .../unit/WindowEquivalentLayer.unit.cc | 30 + tst/EnergyPlus/unit/WindowManager.unit.cc | 40 + 45 files changed, 38958 insertions(+), 37866 deletions(-) diff --git a/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc b/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc index 33e98fad779..ffdf662d091 100644 --- a/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc +++ b/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc @@ -554,6 +554,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Core_ZN_ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -570,6 +571,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -586,6 +588,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -602,6 +605,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -618,6 +622,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -634,6 +639,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Roof, !- Surface Type", " Attic Non-res Roof, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -649,6 +655,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Roof, !- Surface Type", " Attic Non-res Roof, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -665,6 +672,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Roof, !- Surface Type", " Attic Non-res Roof, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -681,6 +689,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Roof, !- Surface Type", " Attic Non-res Roof, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -696,6 +705,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -712,6 +722,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -728,6 +739,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -744,6 +756,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Attic, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -760,6 +773,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Ceiling, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic_floor_core, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -776,6 +790,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " ext-slab, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -792,6 +807,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -808,6 +824,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -824,6 +841,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -840,6 +858,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -856,6 +875,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Ceiling, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic_floor_perimeter_south, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -872,6 +892,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " ext-slab, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -888,6 +909,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -904,6 +926,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Core_ZN_wall_south, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -920,6 +943,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " Mass Non-res Ext Wall, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -936,6 +960,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -952,6 +977,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Ceiling, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic_floor_perimeter_east, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -968,6 +994,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " ext-slab, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -984,6 +1011,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " Mass Non-res Ext Wall, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1000,6 +1028,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1016,6 +1045,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1032,6 +1062,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Core_ZN_wall_east, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1048,6 +1079,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Ceiling, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic_floor_perimeter_north, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1064,6 +1096,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " ext-slab, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1080,6 +1113,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1096,6 +1130,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " Mass Non-res Ext Wall, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1112,6 +1147,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Core_ZN_wall_north, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1128,6 +1164,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1144,6 +1181,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Ceiling, !- Surface Type", " Attic Non-res Floor, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic_floor_perimeter_west, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1160,6 +1198,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Floor, !- Surface Type", " ext-slab, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1176,6 +1215,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Core_ZN_wall_west, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1192,6 +1232,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1208,6 +1249,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " int-walls, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1224,6 +1266,7 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Wall, !- Surface Type", " Mass Non-res Ext Wall, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1887,30 +1930,35 @@ TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) " Core_ZN Internal Mass, !- Name", " InteriorFurnishings, !- Construction Name", " Core_ZN, !- Zone Name", + " , !- Space Name", " 299.3148; !- Surface Area {m2}", " InternalMass,", " Perimeter_ZN_1 Internal Mass, !- Name", " InteriorFurnishings, !- Construction Name", " Perimeter_ZN_1, !- Zone Name", + " , !- Space Name", " 226.9000; !- Surface Area {m2}", " InternalMass,", " Perimeter_ZN_2 Internal Mass, !- Name", " InteriorFurnishings, !- Construction Name", " Perimeter_ZN_2, !- Zone Name", + " , !- Space Name", " 134.6000; !- Surface Area {m2}", " InternalMass,", " Perimeter_ZN_3 Internal Mass, !- Name", " InteriorFurnishings, !- Construction Name", " Perimeter_ZN_3, !- Zone Name", + " , !- Space Name", " 226.9000; !- Surface Area {m2}", " InternalMass,", " Perimeter_ZN_4 Internal Mass, !- Name", " InteriorFurnishings, !- Construction Name", " Perimeter_ZN_4, !- Zone Name", + " , !- Space Name", " 134.6000; !- Surface Area {m2}", " Schedule:Compact,", diff --git a/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc b/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc index b537c7fde1e..2ca2b39041c 100644 --- a/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc +++ b/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc @@ -768,6 +768,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -792,6 +793,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -816,6 +818,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -840,6 +843,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -864,6 +868,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -888,6 +893,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) " Roof, !- Surface Type", " ExtRoof IEAD ClimateZone 1, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index e9ad26b85ce..170eb17a333 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -603,6 +603,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -619,6 +620,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -635,6 +637,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -651,6 +654,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -667,6 +671,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -683,6 +688,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -699,6 +705,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -715,6 +722,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -731,6 +739,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -747,6 +756,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -763,6 +773,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -779,6 +790,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -795,6 +807,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr002, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -811,6 +824,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -827,6 +841,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -843,6 +858,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -859,6 +875,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -875,6 +892,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -891,6 +909,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -907,6 +926,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -923,6 +943,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -939,6 +960,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -955,6 +977,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -971,6 +994,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -987,6 +1011,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1003,6 +1028,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1019,6 +1045,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1035,6 +1062,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1051,6 +1079,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1067,6 +1096,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1083,6 +1113,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1099,6 +1130,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1115,6 +1147,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1131,6 +1164,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestPressureStat) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3438,6 +3472,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3462,6 +3497,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Eave Walls, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3486,6 +3522,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3510,6 +3547,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Gables, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3537,6 +3575,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3561,6 +3600,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Eave Walls, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3585,6 +3625,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3609,6 +3650,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Wall, !- Surface Type", " Gables, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3636,6 +3678,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Floor, !- Surface Type", " LTFLOOR, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3660,6 +3703,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Ceiling, !- Surface Type", " CeilingConstruction, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3684,6 +3728,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Floor, !- Surface Type", " Reverse:CeilingConstruction, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3708,6 +3753,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Roof, !- Surface Type", " Roof, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3732,6 +3778,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor " Roof, !- Surface Type", " Roof, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4941,6 +4988,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4956,6 +5004,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4971,6 +5020,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4986,6 +5036,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5001,6 +5052,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5016,6 +5068,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5031,6 +5084,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5046,6 +5100,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5061,6 +5116,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5076,6 +5132,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5091,6 +5148,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5106,6 +5164,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5121,6 +5180,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5136,6 +5196,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5151,6 +5212,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5166,6 +5228,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5181,6 +5244,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5196,6 +5260,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5211,6 +5276,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodes) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5960,6 +6026,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5975,6 +6042,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5990,6 +6058,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6005,6 +6074,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6020,6 +6090,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6035,6 +6106,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6050,6 +6122,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6065,6 +6138,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6080,6 +6154,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6095,6 +6170,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6110,6 +6186,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6125,6 +6202,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6140,6 +6218,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6155,6 +6234,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6170,6 +6250,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6185,6 +6266,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6200,6 +6282,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6215,6 +6298,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6230,6 +6314,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithTables) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6679,6 +6764,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6694,6 +6780,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6709,6 +6796,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6724,6 +6812,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6739,6 +6828,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6754,6 +6844,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6769,6 +6860,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6784,6 +6876,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6799,6 +6892,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6814,6 +6908,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6829,6 +6924,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6844,6 +6940,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6859,6 +6956,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6874,6 +6972,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6889,6 +6988,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6904,6 +7004,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6919,6 +7020,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6934,6 +7036,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6949,6 +7052,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithNoInput) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7313,6 +7417,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7328,6 +7433,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7343,6 +7449,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7358,6 +7465,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7373,6 +7481,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7388,6 +7497,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7403,6 +7513,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7418,6 +7529,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7433,6 +7545,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7448,6 +7561,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7463,6 +7577,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7478,6 +7593,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7493,6 +7609,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7508,6 +7625,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7523,6 +7641,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7538,6 +7657,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7553,6 +7673,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7568,6 +7689,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7583,6 +7705,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricTable) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7996,6 +8119,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8011,6 +8135,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8026,6 +8151,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8041,6 +8167,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8056,6 +8183,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8071,6 +8199,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8086,6 +8215,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8101,6 +8231,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8116,6 +8247,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8131,6 +8263,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8146,6 +8279,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8161,6 +8295,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8176,6 +8311,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8191,6 +8327,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8206,6 +8343,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8221,6 +8359,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8236,6 +8375,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8251,6 +8391,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8266,6 +8407,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithSymmetricCurve) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8628,6 +8770,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8643,6 +8786,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8658,6 +8802,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8673,6 +8818,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8688,6 +8834,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8703,6 +8850,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8718,6 +8866,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8733,6 +8882,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8748,6 +8898,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8763,6 +8914,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8778,6 +8930,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8793,6 +8946,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8808,6 +8962,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8823,6 +8978,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8838,6 +8994,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8853,6 +9010,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8868,6 +9026,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8883,6 +9042,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8898,6 +9058,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9360,6 +9521,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Floor, !- Surface Type", " Exterior Floor, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -9375,6 +9537,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9390,6 +9553,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9405,6 +9569,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9420,6 +9585,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Roof, !- Surface Type", " Exterior Roof, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9435,6 +9601,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9450,6 +9617,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSided) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10040,6 +10208,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10056,6 +10225,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10072,6 +10242,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10088,6 +10259,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10104,6 +10276,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10120,6 +10293,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10136,6 +10310,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10152,6 +10327,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10168,6 +10344,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10184,6 +10361,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10200,6 +10378,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10216,6 +10395,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10232,6 +10412,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr002, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10248,6 +10429,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10264,6 +10446,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10280,6 +10463,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10296,6 +10480,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10312,6 +10497,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10328,6 +10514,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10344,6 +10531,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10360,6 +10548,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10376,6 +10565,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10392,6 +10582,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10408,6 +10599,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10424,6 +10616,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10440,6 +10633,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10456,6 +10650,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10472,6 +10667,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10488,6 +10684,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10504,6 +10701,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10520,6 +10718,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10536,6 +10735,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10552,6 +10752,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10568,6 +10769,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -10584,6 +10786,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Wall009, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10600,6 +10803,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Wall010, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10616,6 +10820,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -10632,6 +10837,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_MultiAirLoopTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13473,6 +13679,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Floor, !- Surface Type", " Exterior Floor, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -13488,6 +13695,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13503,6 +13711,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13518,6 +13727,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13533,6 +13743,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Roof, !- Surface Type", " Exterior Roof, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13548,6 +13759,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13563,6 +13775,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_BasicAdvancedSingleSidedAvoidCrashTest) " Wall, !- Surface Type", " Exterior Wall, !- Construction Name", " West_Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14087,6 +14300,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14103,6 +14317,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14119,6 +14334,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14135,6 +14351,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14151,6 +14368,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " INTERIORWall, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Interior, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14167,6 +14385,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " INTERIORWall, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Interior, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14183,6 +14402,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14199,6 +14419,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " CEILING, !- Surface Type", " CEILING:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic:LivingFloor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14215,6 +14436,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " FLOOR, !- Surface Type", " reverseCEILING:LIVING, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14231,6 +14453,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14247,6 +14470,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14263,6 +14487,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14279,6 +14504,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14295,6 +14521,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14310,6 +14537,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14325,6 +14553,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14340,6 +14569,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14356,6 +14586,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14372,6 +14603,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14387,6 +14619,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " EXTWALL:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14403,6 +14636,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " EXTWALL:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14419,6 +14653,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " WALL, !- Surface Type", " Garage:SteelDoor, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -14435,6 +14670,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " FLOOR, !- Surface Type", " CEILING:Garage, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14451,6 +14687,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " CEILING, !- Surface Type", " CEILING:Garage, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic:GarageFloor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -14467,6 +14704,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestFanModel) " FLOOR, !- Surface Type", " FLOOR:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -16206,6 +16444,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16230,6 +16469,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Eave Walls, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16254,6 +16494,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16278,6 +16519,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Gables, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16305,6 +16547,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16329,6 +16572,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Eave Walls, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16353,6 +16597,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Walls, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16377,6 +16622,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Wall, !- Surface Type", " Gables, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16404,6 +16650,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Floor, !- Surface Type", " LTFLOOR, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -16428,6 +16675,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Ceiling, !- Surface Type", " CeilingConstruction, !- Construction Name", " OCCUPIED ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -16452,6 +16700,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Floor, !- Surface Type", " Reverse:CeilingConstruction, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -16476,6 +16725,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Roof, !- Surface Type", " Roof, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -16500,6 +16750,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) " Roof, !- Surface Type", " Roof, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17672,6 +17923,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17688,6 +17940,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17704,6 +17957,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17720,6 +17974,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17736,6 +17991,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17752,6 +18008,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17768,6 +18025,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17784,6 +18042,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17800,6 +18059,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17816,6 +18076,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17832,6 +18093,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17848,6 +18110,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17864,6 +18127,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr002, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17880,6 +18144,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17896,6 +18161,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17912,6 +18178,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -17928,6 +18195,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17944,6 +18212,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17960,6 +18229,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17976,6 +18246,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -17992,6 +18263,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18008,6 +18280,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18024,6 +18297,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18040,6 +18314,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18056,6 +18331,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18072,6 +18348,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18088,6 +18365,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn005:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18104,6 +18382,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18120,6 +18399,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18136,6 +18416,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18152,6 +18433,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18168,6 +18450,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18184,6 +18467,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18200,6 +18484,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -18216,6 +18501,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Wall009, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18232,6 +18518,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Wall010, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18248,6 +18535,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -18264,6 +18552,7 @@ TEST_F(EnergyPlusFixture, DISABLED_AirLoopNumTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/Autosizing/BaseClassSizing.unit.cc b/tst/EnergyPlus/unit/Autosizing/BaseClassSizing.unit.cc index b4defc22103..ff63412224e 100644 --- a/tst/EnergyPlus/unit/Autosizing/BaseClassSizing.unit.cc +++ b/tst/EnergyPlus/unit/Autosizing/BaseClassSizing.unit.cc @@ -1104,6 +1104,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1120,6 +1121,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1136,6 +1138,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1152,6 +1155,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1168,6 +1172,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1184,6 +1189,7 @@ TEST_F(EnergyPlusFixture, BaseSizer_SupplyAirTempLessThanZoneTStatTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/BaseboardRadiator.unit.cc b/tst/EnergyPlus/unit/BaseboardRadiator.unit.cc index 3f39e0452d4..9eeedaa937c 100644 --- a/tst/EnergyPlus/unit/BaseboardRadiator.unit.cc +++ b/tst/EnergyPlus/unit/BaseboardRadiator.unit.cc @@ -178,6 +178,7 @@ TEST_F(EnergyPlusFixture, BaseboardConvWater_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -207,6 +208,7 @@ TEST_F(EnergyPlusFixture, BaseboardConvWater_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -236,6 +238,7 @@ TEST_F(EnergyPlusFixture, BaseboardConvWater_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc b/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc index a5a095c3b55..9d1bfe7bc1a 100644 --- a/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc +++ b/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc @@ -452,6 +452,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -468,6 +469,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Plenum Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -484,6 +486,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -500,6 +503,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -516,6 +520,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -532,6 +537,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -548,6 +554,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -604,6 +611,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -620,6 +628,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -636,6 +645,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -652,6 +662,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -668,6 +679,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -684,6 +696,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1460,6 +1473,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1476,6 +1490,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Plenum Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1492,6 +1507,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1508,6 +1524,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1524,6 +1541,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1540,6 +1558,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1556,6 +1575,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1612,6 +1632,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1628,6 +1649,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1644,6 +1666,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1660,6 +1683,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1676,6 +1700,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1692,6 +1717,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc b/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc index 1097d76d740..a02d9981751 100644 --- a/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc +++ b/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc @@ -438,6 +438,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -469,6 +470,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -485,6 +487,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -501,6 +504,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -517,6 +521,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -533,6 +538,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/ConvectionCoefficients.unit.cc b/tst/EnergyPlus/unit/ConvectionCoefficients.unit.cc index 9cd3b0608a8..bc4049b4fce 100644 --- a/tst/EnergyPlus/unit/ConvectionCoefficients.unit.cc +++ b/tst/EnergyPlus/unit/ConvectionCoefficients.unit.cc @@ -134,6 +134,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " WALL, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -150,6 +151,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " WALL, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -166,6 +168,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " WALL, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -182,6 +185,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " WALL, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -198,6 +202,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " WALL, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -214,6 +219,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " ROOF, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -230,6 +236,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " ROOF, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -246,6 +253,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " ROOF, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -262,6 +270,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " ROOF, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -278,6 +287,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " ROOF, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -294,6 +304,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " FLOOR, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -310,6 +321,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " FLOOR, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -326,6 +338,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " FLOOR, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -342,6 +355,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " FLOOR, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -358,6 +372,7 @@ class ConvectionCoefficientsFixture : public EnergyPlus::EnergyPlusFixture " FLOOR, !- Surface Type", " WALL-1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/DElightManager.unit.cc b/tst/EnergyPlus/unit/DElightManager.unit.cc index a67cfb460e6..e5ba10e2022 100644 --- a/tst/EnergyPlus/unit/DElightManager.unit.cc +++ b/tst/EnergyPlus/unit/DElightManager.unit.cc @@ -137,6 +137,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -153,6 +154,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -170,6 +172,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -186,6 +189,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -202,6 +206,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -218,6 +223,7 @@ TEST_F(EnergyPlusFixture, DElightManagerF_GetInputDElightComplexFenestration_Tes " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", diff --git a/tst/EnergyPlus/unit/DataHeatBalance.unit.cc b/tst/EnergyPlus/unit/DataHeatBalance.unit.cc index 08f9c97b002..62e079f2619 100644 --- a/tst/EnergyPlus/unit/DataHeatBalance.unit.cc +++ b/tst/EnergyPlus/unit/DataHeatBalance.unit.cc @@ -494,6 +494,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -547,6 +548,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -563,6 +565,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -579,6 +582,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -595,6 +599,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -611,6 +616,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/DataSurfaces.unit.cc b/tst/EnergyPlus/unit/DataSurfaces.unit.cc index d6573d671aa..430ede17891 100644 --- a/tst/EnergyPlus/unit/DataSurfaces.unit.cc +++ b/tst/EnergyPlus/unit/DataSurfaces.unit.cc @@ -87,6 +87,7 @@ TEST_F(EnergyPlusFixture, DataSurfaces_SetSurfaceOutBulbTempAtTest) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " T3-RF1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/DaylightingManager.unit.cc b/tst/EnergyPlus/unit/DaylightingManager.unit.cc index b691140bf67..a4e4471b49f 100644 --- a/tst/EnergyPlus/unit/DaylightingManager.unit.cc +++ b/tst/EnergyPlus/unit/DaylightingManager.unit.cc @@ -474,6 +474,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -490,6 +491,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -507,6 +509,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -523,6 +526,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -539,6 +543,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -555,6 +560,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -646,6 +652,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -662,6 +669,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -679,6 +687,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -695,6 +704,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -711,6 +721,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -727,6 +738,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_GetDaylParamInGeoTrans_Test) " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1114,6 +1126,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1130,6 +1143,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1147,6 +1161,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1163,6 +1178,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1179,6 +1195,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -1195,6 +1212,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_DayltgInteriorIllum_Test) " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1735,6 +1753,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1751,6 +1770,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1768,6 +1788,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1784,6 +1805,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1800,6 +1822,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -1816,6 +1839,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " West Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1917,6 +1941,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1933,6 +1958,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1950,6 +1976,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1966,6 +1993,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Wall, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -1982,6 +2010,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Floor, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " NoSun, !- Sun Exposure ", @@ -1998,6 +2027,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_OutputFormats) " Roof, !- Surface Type ", " WALL80, !- Construction Name ", " East Zone, !- Zone Name ", + " , !- Space Name ", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object ", " SunExposed, !- Sun Exposure ", @@ -2335,6 +2365,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2351,6 +2382,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2367,6 +2399,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2383,6 +2416,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2399,6 +2433,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Daylit Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2415,6 +2450,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Roof, !- Surface Type", " CEILING IN ZONE, !- Construction Name", " Daylit Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Daylit Attic Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2442,6 +2478,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2458,6 +2495,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2474,6 +2512,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2490,6 +2529,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2506,6 +2546,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Floor, !- Surface Type", " CEILING IN ATTIC, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Daylit Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2522,6 +2563,7 @@ TEST_F(EnergyPlusFixture, DaylightingManager_TDD_NoDaylightingControls) " Roof, !- Surface Type", " ROOF, !- Construction Name", " Daylit Attic Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc b/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc index d15043e228a..ba13d5bdb9e 100644 --- a/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc +++ b/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc @@ -578,6 +578,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -594,6 +595,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -610,6 +612,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -626,6 +629,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -642,6 +646,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " ROOF, !- Surface Type", " ROOF-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -658,6 +663,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -674,6 +680,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -690,6 +697,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -706,6 +714,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -722,6 +731,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -738,6 +748,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -754,6 +765,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -770,6 +782,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -786,6 +799,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB21, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -802,6 +816,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB41, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -818,6 +833,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB51, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -834,6 +850,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -850,6 +867,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -866,6 +884,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -882,6 +901,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -898,6 +918,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB32, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -914,6 +935,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB52, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -930,6 +952,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -946,6 +969,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -962,6 +986,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -978,6 +1003,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB23, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -994,6 +1020,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB43, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1010,6 +1037,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB53, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1026,6 +1054,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1042,6 +1071,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1058,6 +1088,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1074,6 +1105,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB14, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1090,6 +1122,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB34, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1106,6 +1139,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB54, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1122,6 +1156,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1138,6 +1173,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1154,6 +1190,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB15, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1170,6 +1207,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB25, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1186,6 +1224,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB35, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1202,6 +1241,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB45, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3032,6 +3072,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3048,6 +3089,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3064,6 +3106,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3080,6 +3123,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3096,6 +3140,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3112,6 +3157,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4212,6 +4258,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4228,6 +4275,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4244,6 +4292,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4260,6 +4309,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -4276,6 +4326,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4292,6 +4343,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5638,6 +5690,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5654,6 +5707,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5670,6 +5724,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5686,6 +5741,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -5702,6 +5758,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5718,6 +5775,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/EMSManager.unit.cc b/tst/EnergyPlus/unit/EMSManager.unit.cc index 4976090718a..cbb77108d23 100644 --- a/tst/EnergyPlus/unit/EMSManager.unit.cc +++ b/tst/EnergyPlus/unit/EMSManager.unit.cc @@ -2112,6 +2112,7 @@ TEST_F(EnergyPlusFixture, EMS_ViewFactorToGround) " Wall, !- Surface Type", " ConcConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2128,6 +2129,7 @@ TEST_F(EnergyPlusFixture, EMS_ViewFactorToGround) " Floor, !- Surface Type", " ConcConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/ElectricBaseboardRadiator.unit.cc b/tst/EnergyPlus/unit/ElectricBaseboardRadiator.unit.cc index 2425586c000..a1b14acda8e 100644 --- a/tst/EnergyPlus/unit/ElectricBaseboardRadiator.unit.cc +++ b/tst/EnergyPlus/unit/ElectricBaseboardRadiator.unit.cc @@ -145,6 +145,7 @@ TEST_F(EnergyPlusFixture, RadConvElecBaseboard_Test1) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -174,6 +175,7 @@ TEST_F(EnergyPlusFixture, RadConvElecBaseboard_Test1) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -407,6 +409,7 @@ TEST_F(EnergyPlusFixture, ElectricBaseboardRadConv_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -436,6 +439,7 @@ TEST_F(EnergyPlusFixture, ElectricBaseboardRadConv_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -465,6 +469,7 @@ TEST_F(EnergyPlusFixture, ElectricBaseboardRadConv_SizingTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/FuelCellElectricGenerator.unit.cc b/tst/EnergyPlus/unit/FuelCellElectricGenerator.unit.cc index 4f5c858c620..b6752a1f1d8 100644 --- a/tst/EnergyPlus/unit/FuelCellElectricGenerator.unit.cc +++ b/tst/EnergyPlus/unit/FuelCellElectricGenerator.unit.cc @@ -116,6 +116,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Floor, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -132,6 +133,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -148,6 +150,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -164,6 +167,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -180,6 +184,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -196,6 +201,7 @@ TEST_F(EnergyPlusFixture, FuelCellTest) " Roof, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1053,6 +1059,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Floor, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1069,6 +1076,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1085,6 +1093,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1101,6 +1110,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1117,6 +1127,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Wall, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1133,6 +1144,7 @@ TEST_F(EnergyPlusFixture, DISABLED_FuelCellTest_Zero_Cp_Fix) " Roof, !- Surface Type", " Typical, !- Construction Name", " Thermal Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/Furnaces.unit.cc b/tst/EnergyPlus/unit/Furnaces.unit.cc index fc88738af0d..0a5c2f2ea72 100644 --- a/tst/EnergyPlus/unit/Furnaces.unit.cc +++ b/tst/EnergyPlus/unit/Furnaces.unit.cc @@ -562,6 +562,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -578,6 +579,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -594,6 +596,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -610,6 +613,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -626,6 +630,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -642,6 +647,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc b/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc index fd02f8edc98..ccb50b5504f 100644 --- a/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc +++ b/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc @@ -639,6 +639,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -655,6 +656,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -671,6 +673,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -687,6 +690,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -703,6 +707,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -719,6 +724,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2212,6 +2218,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2228,6 +2235,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2244,6 +2252,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2260,6 +2269,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2276,6 +2286,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2292,6 +2303,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc index 232f861dae4..48edecc15d1 100644 --- a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc +++ b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc @@ -323,6 +323,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -339,6 +340,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc b/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc index bb42e4cf0e8..5bf33203f09 100644 --- a/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc +++ b/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc @@ -8813,6 +8813,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -8837,6 +8838,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8861,6 +8863,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8885,6 +8888,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8909,6 +8913,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Wall, !- Surface Type", " ExtWall Mass ClimateZone 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -8933,6 +8938,7 @@ TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) " Roof, !- Surface Type", " ExtRoof IEAD ClimateZone 1, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc index 3442883758c..3bc45221463 100644 --- a/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc @@ -1065,6 +1065,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1081,6 +1082,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1097,6 +1099,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1113,6 +1116,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1129,6 +1133,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1145,6 +1150,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_TestZonePropertyLocalEnv) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1472,6 +1478,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_EMSConstructionTest) " Wall, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1487,6 +1494,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_EMSConstructionTest) " Floor, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2065,6 +2073,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_EMSConstructionSwitchTest) " Wall, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2080,6 +2089,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_EMSConstructionSwitchTest) " Floor, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HeatBalanceMovableInsulation.unit.cc b/tst/EnergyPlus/unit/HeatBalanceMovableInsulation.unit.cc index ce857488fce..59b83ba623f 100644 --- a/tst/EnergyPlus/unit/HeatBalanceMovableInsulation.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceMovableInsulation.unit.cc @@ -214,6 +214,7 @@ TEST_F(EnergyPlusFixture, SurfaceControlMovableInsulation_InvalidWindowSimpleGla " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc index 209229288d8..6744a988ede 100644 --- a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc @@ -604,6 +604,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -620,6 +621,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -636,6 +638,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -652,6 +655,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -667,6 +671,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -683,6 +688,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceI " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1086,6 +1092,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1102,6 +1109,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1118,6 +1126,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1134,6 +1143,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1149,6 +1159,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1165,6 +1176,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1627,6 +1639,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1643,6 +1656,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1659,6 +1673,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1675,6 +1690,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1691,6 +1707,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1707,6 +1724,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2252,6 +2270,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2268,6 +2287,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2284,6 +2304,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2300,6 +2321,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2315,6 +2337,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2331,6 +2354,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2966,6 +2990,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2982,6 +3007,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2998,6 +3024,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3014,6 +3041,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3030,6 +3058,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3046,6 +3075,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestInitHBInterzoneWindow) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HeatRecovery.unit.cc b/tst/EnergyPlus/unit/HeatRecovery.unit.cc index b3e80ff8289..e4cb86dd121 100644 --- a/tst/EnergyPlus/unit/HeatRecovery.unit.cc +++ b/tst/EnergyPlus/unit/HeatRecovery.unit.cc @@ -1114,6 +1114,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1130,6 +1131,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1146,6 +1148,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1162,6 +1165,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1178,6 +1182,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " ROOF, !- Surface Type", " ROOF-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1194,6 +1199,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1210,6 +1216,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1226,6 +1233,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1242,6 +1250,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1258,6 +1267,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1274,6 +1284,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1290,6 +1301,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1306,6 +1318,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1322,6 +1335,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB21, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1338,6 +1352,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB41, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1354,6 +1369,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB51, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1370,6 +1386,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1386,6 +1403,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1402,6 +1420,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1418,6 +1437,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1434,6 +1454,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB32, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1450,6 +1471,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB52, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1466,6 +1488,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1482,6 +1505,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1498,6 +1522,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1514,6 +1539,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB23, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1530,6 +1556,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB43, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1546,6 +1573,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB53, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1562,6 +1590,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1578,6 +1607,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1594,6 +1624,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1610,6 +1641,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB14, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1626,6 +1658,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB34, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1642,6 +1675,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB54, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1658,6 +1692,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1674,6 +1709,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1690,6 +1726,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB15, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1706,6 +1743,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB25, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1722,6 +1760,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB35, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1738,6 +1777,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB45, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/InputProcessor.unit.cc b/tst/EnergyPlus/unit/InputProcessor.unit.cc index a0b86c1bc98..e818f5f9b0d 100644 --- a/tst/EnergyPlus/unit/InputProcessor.unit.cc +++ b/tst/EnergyPlus/unit/InputProcessor.unit.cc @@ -197,6 +197,7 @@ TEST_F(InputProcessorFixture, decode_encode_1) " Floor,", " FLOOR38,", " SCWINDOW,", + " ,", " Surface,", " Zn009:Flr001,", " NoSun,", @@ -986,6 +987,7 @@ TEST_F(InputProcessorFixture, parse_idf_extensible_blank_required_extensible_fie " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1075,6 +1077,7 @@ TEST_F(InputProcessorFixture, parse_idf_and_validate_extensible) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1140,6 +1143,7 @@ TEST_F(InputProcessorFixture, parse_idf_and_validate_two_extensible_objects) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1156,6 +1160,7 @@ TEST_F(InputProcessorFixture, parse_idf_and_validate_two_extensible_objects) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1252,6 +1257,7 @@ TEST_F(InputProcessorFixture, validate_two_extensible_objects_and_one_non_extens " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1268,6 +1274,7 @@ TEST_F(InputProcessorFixture, validate_two_extensible_objects_and_one_non_extens " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1403,6 +1410,7 @@ TEST_F(InputProcessorFixture, parse_idf_extensibles) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1462,6 +1470,7 @@ TEST_F(InputProcessorFixture, parse_idf_extensibles_two_objects) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1478,6 +1487,7 @@ TEST_F(InputProcessorFixture, parse_idf_extensibles_two_objects) " Floor, !- Surface Type", " FLOOR38, !- Construction Name", " SCWINDOW, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn009:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2148,6 +2158,7 @@ TEST_F(InputProcessorFixture, getObjectItem_json3) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2192,12 +2203,12 @@ TEST_F(InputProcessorFixture, getObjectItem_json3) cNumericFields); EXPECT_TRUE(compare_containers( - std::vector({"ZN001:WALL001", "WALL", "R13WALL", "MAIN ZONE", "OUTDOORS", "", "SUNEXPOSED", "WINDEXPOSED"}), Alphas)); + std::vector({"ZN001:WALL001", "WALL", "R13WALL", "MAIN ZONE", "", "OUTDOORS", "", "SUNEXPOSED", "WINDEXPOSED"}), Alphas)); EXPECT_TRUE(compare_containers( std::vector({false, false, false, false, false, false, false, false, false, false, false, false, false, false}), lNumericBlanks)); - EXPECT_TRUE(compare_containers(std::vector({false, false, false, false, false, true, false, false}), lAlphaBlanks)); + EXPECT_TRUE(compare_containers(std::vector({false, false, false, false, true, false, true, false, false}), lAlphaBlanks)); EXPECT_TRUE(compare_containers(std::vector({0.5, 4, 0, 0, 4.572, 0, 0, 0, 15.24, 0, 0, 15.24, 0, 4.572}), Numbers)); - EXPECT_EQ(8, NumAlphas); + EXPECT_EQ(9, NumAlphas); EXPECT_EQ(14, NumNumbers); EXPECT_EQ(1, IOStatus); } diff --git a/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc b/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc index 4114037901b..230904564dc 100644 --- a/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc +++ b/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc @@ -538,6 +538,7 @@ TEST_F(LowTempRadiantSystemTest, AutosizeLowTempRadiantVariableFlowTest) " Floor, !- Surface Type", " Slab Floor with Radiant, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1336,6 +1337,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " Floor, !- Surface Type", " Slab Floor with Radiant, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1352,6 +1354,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " Wall, !- Surface Type", " Slab Floor with Radiant, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1368,6 +1371,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1384,6 +1388,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1400,6 +1405,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1416,6 +1422,7 @@ TEST_F(LowTempRadiantSystemTest, SimulateCapacityPerFloorAreaError) " CEILING, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/MixedAir.unit.cc b/tst/EnergyPlus/unit/MixedAir.unit.cc index 12749ff673f..c2a9c3ec7b4 100644 --- a/tst/EnergyPlus/unit/MixedAir.unit.cc +++ b/tst/EnergyPlus/unit/MixedAir.unit.cc @@ -2540,6 +2540,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2556,6 +2557,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2572,6 +2574,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2588,6 +2591,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2604,6 +2608,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " ROOF, !- Surface Type", " ROOF-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2620,6 +2625,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2636,6 +2642,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2652,6 +2659,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2668,6 +2676,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2684,6 +2693,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2700,6 +2710,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2716,6 +2727,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2732,6 +2744,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2748,6 +2761,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB21, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2764,6 +2778,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB41, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2780,6 +2795,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB51, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2796,6 +2812,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2812,6 +2829,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2828,6 +2846,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2844,6 +2863,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2860,6 +2880,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB32, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2876,6 +2897,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB52, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2892,6 +2914,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2908,6 +2931,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2924,6 +2948,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2940,6 +2965,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB23, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2956,6 +2982,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB43, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2972,6 +2999,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB53, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2988,6 +3016,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -3004,6 +3033,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3020,6 +3050,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3036,6 +3067,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB14, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3052,6 +3084,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB34, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3068,6 +3101,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB54, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3084,6 +3118,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3100,6 +3135,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3116,6 +3152,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB15, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3132,6 +3169,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB25, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3148,6 +3186,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB35, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3164,6 +3203,7 @@ TEST_F(EnergyPlusFixture, MixedAir_MiscGetsPart2) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB45, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc b/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc index 6fffe9e95c9..a708fabc515 100644 --- a/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc +++ b/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc @@ -694,6 +694,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -710,6 +711,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -726,6 +728,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -742,6 +745,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -758,6 +762,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -774,6 +779,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) " Roof, !- Surface Type", " ROOF19, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1680,6 +1686,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1696,6 +1703,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1712,6 +1720,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1728,6 +1737,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Wall, !- Surface Type", " ext-walls, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1744,6 +1754,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1760,6 +1771,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) " Roof, !- Surface Type", " ROOF19, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 7139a4f7df3..c2cb37a0d6f 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -1140,6 +1140,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1156,6 +1157,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1172,6 +1174,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1188,6 +1191,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1204,6 +1208,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1220,6 +1225,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1276,6 +1282,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1292,6 +1299,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1308,6 +1316,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1324,6 +1333,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1340,6 +1350,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1356,6 +1367,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1821,6 +1833,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1837,6 +1850,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1853,6 +1867,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1869,6 +1884,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1885,6 +1901,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1901,6 +1918,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1957,6 +1975,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1973,6 +1992,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1989,6 +2009,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2005,6 +2026,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2021,6 +2043,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2037,6 +2060,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/OutputReports.unit.cc b/tst/EnergyPlus/unit/OutputReports.unit.cc index 2d7545ee29a..c549cb9947c 100644 --- a/tst/EnergyPlus/unit/OutputReports.unit.cc +++ b/tst/EnergyPlus/unit/OutputReports.unit.cc @@ -87,6 +87,7 @@ TEST_F(EnergyPlusFixture, OutputReports_SurfaceDetailsReport) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/Resources/UnitaryHybridUnitTest_DOSA.idf b/tst/EnergyPlus/unit/Resources/UnitaryHybridUnitTest_DOSA.idf index 68fecc2ef60..a2a539d729f 100644 --- a/tst/EnergyPlus/unit/Resources/UnitaryHybridUnitTest_DOSA.idf +++ b/tst/EnergyPlus/unit/Resources/UnitaryHybridUnitTest_DOSA.idf @@ -28,7 +28,7 @@ ! Floor Area: 232.25 m2 ! Number of Stories: 1 - Version,8.8; + Version,9.6; !- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== @@ -37,7 +37,9 @@ No, !- Do System Sizing Calculation No, !- Do Plant Sizing Calculation Yes, !- Run Simulation for Sizing Periods - no; !- Run Simulation for Weather File Run Periods + no, !- Run Simulation for Weather File Run Periods + , !- Do HVAC Sizing Simulation for Sizing Periods + ; !- Maximum Number of HVAC Sizing Simulation Passes !- =========== ALL OBJECTS IN CLASS: BUILDING =========== @@ -45,7 +47,7 @@ Bldg, !- Name 0.0, !- North Axis {deg} Suburbs, !- Terrain - 0.05, !- Loads Convergence Tolerance Value + 0.05, !- Loads Convergence Tolerance Value {W} 0.05, !- Temperature Convergence Tolerance Value {deltaC} MinimalShadowing, !- Solar Distribution 30, !- Maximum Number of Warmup Days @@ -147,6 +149,7 @@ 1.00; !- Sky Clearness !- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== + RunPeriod, Run Period 1, !- Name 1, !- Begin Month @@ -369,6 +372,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -385,6 +389,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -401,6 +406,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -417,6 +423,7 @@ Wall, !- Surface Type R13WALL, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -433,6 +440,7 @@ Floor, !- Surface Type FLOOR, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -449,6 +457,7 @@ Roof, !- Surface Type ROOF31, !- Construction Name Main Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -521,7 +530,16 @@ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} , !- Cooling Minimum Air Flow {m3/s} , !- Cooling Minimum Air Flow Fraction - DesignDay; !- Heating Design Air Flow Method + DesignDay, !- Heating Design Air Flow Method + , !- 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 + , !- Account for Dedicated Outdoor Air System + , !- Dedicated Outdoor Air System Control Strategy + , !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + ; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} !- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== @@ -574,7 +592,7 @@ ZoneHVAC:EquipmentList, Main Zone Equipment List,!- Name - SequentialLoad, + SequentialLoad, !- Load Distribution Scheme ZoneHVAC:HybridUnitaryHVAC, !- Zone Equipment 1 Object Type MUNTERSEPX5000, !- Zone Equipment 1 Name 1, !- Zone Equipment 1 Cooling Sequence @@ -588,7 +606,7 @@ , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name -ZoneHVAC:HybridUnitaryHVAC, + ZoneHVAC:HybridUnitaryHVAC, MUNTERSEPX5000, !- Name ALWAYS_ON, !- Availability Schedule Name , !- Availability Manager List Name @@ -598,657 +616,656 @@ ZoneHVAC:HybridUnitaryHVAC, MaxSupplyHR, !- Maximum Supply Air Humidity Ratio Schedule Name AUTOMATIC, !- Method to Choose Controlled Inputs and Part Runtime Fraction Main Return Air Node Name, !- Return Air Node Name - Outside Air Inlet Node, !- Outside Air Node Name + Outside Air Inlet Node, !- Outdoor Air Node Name Main Zone Inlet Node, !- Supply Air Node Name Main Relief Node, !- Relief Node Name - 2.51, !- System Maximum Supply AirFlow Rate {m3/s} + 2.51, !- System Maximum Supply Air Flow Rate {m3/s} , !- External Static Pressure at System Maximum Supply Air Flow Rate {Pa} Yes, !- Fan Heat Included in Lookup Tables , !- Fan Heat Gain Location - , !- Fan Heat Gain in Airstream Fraction + , !- Fan Heat In Air Stream Fraction 1, !- Scaling Factor 10, !- Minimum Time Between Mode Change {minutes} - Electricity, !- First fuel type - NaturalGas, !- Second fuel type - DistrictCooling, !- Third fuel type - , !- Objective Function Minimizes + Electricity, !- First Fuel Type + NaturalGas, !- Second Fuel Type + DistrictCooling, !- Third Fuel Type + , !- Objective Function to Minimize SZ DSOA SPACE2-1, !- Design Specification Outdoor Air Object Name - Mode0 Standby, !- Mode0 Name - , !- Mode0 Supply Air Temperature Lookup Table Name - , !- Mode0 Supply Air Humidity Ratio Lookup Table Name - Mode0_Power_lookup, !- Mode0 System Electric Power Lookup Table Name - , !- Mode0 Supply Fan Electric Power Lookup Table Name - , !- Mode0 External Static Pressure Lookup Table Name - , !- Mode0 System Second Fuel Consumption Lookup Table Name - , !- Mode0 System Third Fuel Consumption Lookup Table Name - , !- Mode0 System Water Use Lookup Table Name - 0, !- Mode0 Outside Air Fraction - 0, !- Mode0 Supply Air Mass Flow Rate Ratio - Mode1_IEC, !- Mode1 Name - Mode1_TSA_lookup, !- Mode1 Supply Air Temperature Lookup Table Name - Mode1_wSA_lookup, !- Mode1 Supply Air Humidity Ratio Lookup Table Name - Mode1_Power_lookup, !- Mode1 System Electric Power Lookup Table Name - Mode1_FanPower_lookup, !- Mode1 Supply Fan Electric Power Lookup Table Name - Mode1_ESP_lookup, !- Mode1 External Static Pressure Lookup Table Name - , !- Mode1 System Second Fuel Consumption Lookup Table Name - , !- Mode1 System Third Fuel Consumption Lookup Table Name - Mode1_water_lookup, !- Mode1 System Water Use Lookup Table Name - -20, !- Mode1 Minimum Outside Air Temperature {C} - 100, !- Mode1 Maximum Outside Air Temperature {C} - 0, !- Mode1 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode1 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode1 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode1 Maximum Outside Air Relative Humidity {percent} - -20, !- Mode1 Minimum Return Air Temperature {C} - 100, !- Mode1 Maximum Return Air Temperature {C} - 0, !- Mode1 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode1 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode1 Minimum Return Air Relative Humidity {percent} - 100, !- Mode1 Maximum Return Air Relative Humidity {percent} - 1, !- Mode1 Minimum Outside Air Fraction - 1, !- Mode1 Maximum Outside Air Fraction - 0.715, !- Mode1 Minimum Supply Air Mass Flow Rate Ratio - 0.964, !- Mode1 Maximum Supply Air Mass Flow Rate Ratio - Mode2_IECandDX1, !- Mode2 Name - Mode2_TSA_lookup, !- Mode2 Supply Air Temperature Lookup Table Name - Mode2_wSA_lookup, !- Mode2 Supply Air Humidity Ratio Lookup Table Name - Mode2_Power_lookup, !- Mode2 System Electric Power Lookup Table Name - Mode2_FanPower_lookup, !- Mode2 Supply Fan Electric Power Lookup Table Name - Mode2_ESP_lookup, !- Mode2 External Static Pressure Lookup Table Name - , !- Mode2 System Second Fuel Consumption Lookup Table Name - , !- Mode2 System Third Fuel Consumption Lookup Table Name - Mode2_water_lookup, !- Mode2 System Water Use Lookup Table Name - -20, !- Mode2 Minimum Outside Air Temperature {C} - 100, !- Mode2 Maximum Outside Air Temperature {C} - 0, !- Mode2 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode2 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode2 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode2 Maximum Outside Air Relative Humidity {percent} - -20, !- Mode2 Minimum Return Air Temperature {C} - 100, !- Mode2 Maximum Return Air Temperature {C} - 0, !- Mode2 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode2 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode2 Minimum Return Air Relative Humidity {percent} - 100, !- Mode2 Maximum Return Air Relative Humidity {percent} - 1, !- Mode2 Minimum Outside Air Fraction - 1, !- Mode2 Maximum Outside Air Fraction - 0.7428, !- Mode2 Minimum Supply Air Mass Flow Rate Ratio - 0.8977, !- Mode2 Maximum Supply Air Mass Flow Rate Ratio - Mode3_IECandDX2, !- Mode3 Name - Mode3_TSA_lookup, !- Mode3 Supply Air Temperature Lookup Table Name - Mode3_wSA_lookup, !- Mode3 Supply Air Humidity Ratio Lookup Table Name - Mode3_Power_lookup, !- Mode3 System Electric Power Lookup Table Name - Mode3_FanPower_lookup, !- Mode3 Supply Fan Electric Power Lookup Table Name - Mode3_ESP_lookup, !- Mode3 External Static Pressure Lookup Table Name - , !- Mode3 System Second Fuel Consumption Lookup Table Name - , !- Mode3 System Third Fuel Consumption Lookup Table Name - Mode3_water_lookup, !- Mode3 System Water Use Lookup Table Name - -20, !- Mode3 Minimum Outside Air Temperature {C} - 100, !- Mode3 Maximum Outside Air Temperature {C} - 0, !- Mode3 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode3 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode3 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode3 Maximum Outside Air Relative Humidity {percent} - -20, !- Mode3 Minimum Return Air Temperature {C} - 100, !- Mode3 Maximum Return Air Temperature {C} - 0, !- Mode3 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode3 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode3 Minimum Return Air Relative Humidity {percent} - 100, !- Mode3 Maximum Return Air Relative Humidity {percent} - 1, !- Mode3 Minimum Outside Air Fraction - 1, !- Mode3 Maximum Outside Air Fraction - 0.711, !- Mode3 Minimum Supply Air Mass Flow Rate Ratio - 0.8915, !- Mode3 Maximum Supply Air Mass Flow Rate Ratio - Mode4_Ventilation, !- Mode4 Name - Mode4_TSA_lookup, !- Mode4 Supply Air Temperature Lookup Table Name - Mode4_wSA_lookup, !- Mode4 Supply Air Humidity Ratio Lookup Table Name - Mode4_Power_lookup, !- Mode4 System Electric Power Lookup Table Name - Mode4_FanPower_lookup, !- Mode4 Supply Fan Electric Power Lookup Table Name - Mode4_ESP_lookup, !- Mode4 External Static Pressure Lookup Table Name - , !- Mode4 System Second Fuel Consumption Lookup Table Name - , !- Mode4 System Third Fuel Consumption Lookup Table Name - , !- Mode4 System Water Use Lookup Table Name - -20, !- Mode4 Minimum Outside Air Temperature {C} - 100, !- Mode4 Maximum Outside Air Temperature {C} - 0, !- Mode4 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode4 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode4 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode4 Maximum Outside Air Relative Humidity {percent} - -20, !- Mode4 Minimum Return Air Temperature {C} - 100, !- Mode4 Maximum Return Air Temperature {C} - 0, !- Mode4 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode4 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode4 Minimum Return Air Relative Humidity {percent} - 100, !- Mode4 Maximum Return Air Relative Humidity {percent} - 1, !- Mode4 Minimum Outside Air Fraction - 1, !- Mode4 Maximum Outside Air Fraction - 0.7039, !- Mode4 Minimum Supply Air Mass Flow Rate Ratio - 0.957, !- Mode4 Maximum Supply Air Mass Flow Rate Ratio - Mode5_Heat, !- Mode5 Name - Mode5_TSA_lookup, !- Mode5 Supply Air Temperature Lookup Table Name - Mode5_wSA_lookup, !- Mode5 Supply Air Humidity Ratio Lookup Table Name - Mode5_Power_lookup, !- Mode5 System Electric Power Lookup Table Name - Mode5_FanPower_lookup, !- Mode5 Supply Fan Electric Power Lookup Table Name - Mode5_ESP_lookup, !- Mode5 External Static Pressure Lookup Table Name - Mode5_2ndFuel_lookup, !- Mode5 System Second Fuel Consumption Lookup Table Name - , !- Mode5 System Third Fuel Consumption Lookup Table Name - , !- Mode5 System Water Use Lookup Table Name - -30, !- Mode5 Minimum Outside Air Temperature {C} - 100, !- Mode5 Maximum Outside Air Temperature {C} - 0, !- Mode5 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode5 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode5 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode5 Maximum Outside Air Relative Humidity {percent} - -30, !- Mode5 Minimum Return Air Temperature {C} - 100, !- Mode5 Maximum Return Air Temperature {C} - 0, !- Mode5 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.03, !- Mode5 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - 0, !- Mode5 Minimum Return Air Relative Humidity {percent} - 100, !- Mode5 Maximum Return Air Relative Humidity {percent} - 1, !- Mode5 Minimum Outside Air Fraction - 1, !- Mode5 Maximum Outside Air Fraction - 0.729, !- Mode5 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode5 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode6 Name - , !- Mode6 Supply Air Temperature Lookup Table Name - , !- Mode6 Supply Air Humidity Ratio Lookup Table Name - , !- Mode6 System Electric Power Lookup Table Name - , !- Mode6 Supply Fan Electric Power Lookup Table Name - , !- Mode6 External Static Pressure Lookup Table Name - , !- Mode6 System Second Fuel Consumption Lookup Table Name - , !- Mode6 System Third Fuel Consumption Lookup Table Name - , !- Mode6 System Water Use Lookup Table Name - , !- Mode6 Minimum Outside Air Temperature {C} - , !- Mode6 Maximum Outside Air Temperature {C} - , !- Mode6 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode6 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode6 Minimum Outside Air Relative Humidity {percent} - , !- Mode6 Maximum Outside Air Relative Humidity {percent} - , !- Mode6 Minimum Return Air Temperature {C} - , !- Mode6 Maximum Return Air Temperature {C} - , !- Mode6 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode6 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode6 Minimum Return Air Relative Humidity {percent} - , !- Mode6 Maximum Return Air Relative Humidity {percent} - , !- Mode6 Minimum Outside Air Fraction - , !- Mode6 Maximum Outside Air Fraction - , !- Mode6 Minimum Supply Air Mass Flow Rate Ratio - , !- Mode6 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode7 Name - , !- Mode7 Supply Air Temperature Lookup Table Name - , !- Mode7 Supply Air Humidity Ratio Lookup Table Name - , !- Mode7 System Electric Power Lookup Table Name - , !- Mode7 Supply Fan Electric Power Lookup Table Name - , !- Mode7 External Static Pressure Lookup Table Name - , !- Mode7 System Second Fuel Consumption Lookup Table Name - , !- Mode7 System Third Fuel Consumption Lookup Table Name - , !- Mode7 System Water Use Lookup Table Name - , !- Mode7 Minimum Outside Air Temperature {C} - , !- Mode7 Maximum Outside Air Temperature {C} - , !- Mode7 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode7 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode7 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode7 Maximum Outside Air Relative Humidity {percent} - , !- Mode7 Minimum Return Air Temperature {C} - , !- Mode7 Maximum Return Air Temperature {C} - , !- Mode7 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode7 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode7 Minimum Return Air Relative Humidity {percent} - 100, !- Mode7 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode7 Minimum Outside Air Fraction - 1, !- Mode7 Maximum Outside Air Fraction - 0.1, !- Mode7 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode7 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode8 Name - , !- Mode8 Supply Air Temperature Lookup Table Name - , !- Mode8 Supply Air Humidity Ratio Lookup Table Name - , !- Mode8 System Electric Power Lookup Table Name - , !- Mode8 Supply Fan Electric Power Lookup Table Name - , !- Mode8 External Static Pressure Lookup Table Name - , !- Mode8 System Second Fuel Consumption Lookup Table Name - , !- Mode8 System Third Fuel Consumption Lookup Table Name - , !- Mode8 System Water Use Lookup Table Name - , !- Mode8 Minimum Outside Air Temperature {C} - , !- Mode8 Maximum Outside Air Temperature {C} - , !- Mode8 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode8 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode8 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode8 Maximum Outside Air Relative Humidity {percent} - , !- Mode8 Minimum Return Air Temperature {C} - , !- Mode8 Maximum Return Air Temperature {C} - , !- Mode8 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode8 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode8 Minimum Return Air Relative Humidity {percent} - 100, !- Mode8 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode8 Minimum Outside Air Fraction - 1, !- Mode8 Maximum Outside Air Fraction - 0.1, !- Mode8 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode8 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode9 Name - , !- Mode9 Supply Air Temperature Lookup Table Name - , !- Mode9 Supply Air Humidity Ratio Lookup Table Name - , !- Mode9 System Electric Power Lookup Table Name - , !- Mode9 Supply Fan Electric Power Lookup Table Name - , !- Mode9 External Static Pressure Lookup Table Name - , !- Mode9 System Second Fuel Consumption Lookup Table Name - , !- Mode9 System Third Fuel Consumption Lookup Table Name - , !- Mode9 System Water Use Lookup Table Name - , !- Mode9 Minimum Outside Air Temperature {C} - , !- Mode9 Maximum Outside Air Temperature {C} - , !- Mode9 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode9 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode9 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode9 Maximum Outside Air Relative Humidity {percent} - , !- Mode9 Minimum Return Air Temperature {C} - , !- Mode9 Maximum Return Air Temperature {C} - , !- Mode9 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode9 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode9 Minimum Return Air Relative Humidity {percent} - 100, !- Mode9 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode9 Minimum Outside Air Fraction - 1, !- Mode9 Maximum Outside Air Fraction - 0.1, !- Mode9 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode9 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode10 Name - , !- Mode10 Supply Air Humidity Ratio Lookup Table Name - , !- Mode10 System Electric Power Lookup Table Name - , !- Mode10 Supply Fan Electric Power Lookup Table Name - , !- Mode10 External Static Pressure Lookup Table Name - , !- Mode10 System Second Fuel Consumption Lookup Table Name - , !- Mode10 System Third Fuel Consumption Lookup Table Name - , !- Mode10 System Water Use Lookup Table Name - , !- Mode10 Minimum Outside Air Temperature {C} - , !- Mode10 Maximum Outside Air Temperature {C} - , !- Mode10 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode10 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode10 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode10 Maximum Outside Air Relative Humidity {percent} - , !- Mode10 Minimum Return Air Temperature {C} - , !- Mode10 Maximum Return Air Temperature {C} - , !- Mode10 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode10 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode10 Minimum Return Air Relative Humidity {percent} - 100, !- Mode10 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode10 Minimum Outside Air Fraction - 1, !- Mode10 Maximum Outside Air Fraction - 0.1, !- Mode10 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode10 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode11 Name - , !- Mode11 Supply Air Temperature Lookup Table Name - , !- Mode11 Supply Air Humidity Ratio Lookup Table Name - , !- Mode11 System Electric Power Lookup Table Name - , !- Mode11 Supply Fan Electric Power Lookup Table Name - , !- Mode11 External Static Pressure Lookup Table Name - , !- Mode11 System Second Fuel Consumption Lookup Table Name - , !- Mode11 System Third Fuel Consumption Lookup Table Name - , !- Mode11 System Water Use Lookup Table Name - , !- Mode11 Minimum Outside Air Temperature {C} - , !- Mode11 Maximum Outside Air Temperature {C} - , !- Mode11 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode11 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode11 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode11 Maximum Outside Air Relative Humidity {percent} - , !- Mode11 Minimum Return Air Temperature {C} - , !- Mode11 Maximum Return Air Temperature {C} - , !- Mode11 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode11 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode11 Minimum Return Air Relative Humidity {percent} - 100, !- Mode11 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode11 Minimum Outside Air Fraction - 1, !- Mode11 Maximum Outside Air Fraction - 0.1, !- Mode11 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode11 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode12 Name - , !- Mode12 Supply Air Temperature Lookup Table Name - , !- Mode12 Supply Air Humidity Ratio Lookup Table Name - , !- Mode12 System Electric Power Lookup Table Name - , !- Mode12 Supply Fan Electric Power Lookup Table Name - , !- Mode12 External Static Pressure Lookup Table Name - , !- Mode12 System Second Fuel Consumption Lookup Table Name - , !- Mode12 System Third Fuel Consumption Lookup Table Name - , !- Mode12 System Water Use Lookup Table Name - , !- Mode12 Minimum Outside Air Temperature {C} - , !- Mode12 Maximum Outside Air Temperature {C} - , !- Mode12 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode12 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode12 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode12 Maximum Outside Air Relative Humidity {percent} - , !- Mode12 Minimum Return Air Temperature {C} - , !- Mode12 Maximum Return Air Temperature {C} - , !- Mode12 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode12 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode12 Minimum Return Air Relative Humidity {percent} - 100, !- Mode12 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode12 Minimum Outside Air Fraction - 1, !- Mode12 Maximum Outside Air Fraction - 0.1, !- Mode12 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode12 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode13 Name - , !- Mode13 Supply Air Temperature Lookup Table Name - , !- Mode13 Supply Air Humidity Ratio Lookup Table Name - , !- Mode13 System Electric Power Lookup Table Name - , !- Mode13 Supply Fan Electric Power Lookup Table Name - , !- Mode13 External Static Pressure Lookup Table Name - , !- Mode13 System Second Fuel Consumption Lookup Table Name - , !- Mode13 System Third Fuel Consumption Lookup Table Name - , !- Mode13 System Water Use Lookup Table Name - , !- Mode13 Minimum Outside Air Temperature {C} - , !- Mode13 Maximum Outside Air Temperature {C} - , !- Mode13 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode13 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode13 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode13 Maximum Outside Air Relative Humidity {percent} - , !- Mode13 Minimum Return Air Temperature {C} - , !- Mode13 Maximum Return Air Temperature {C} - , !- Mode13 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode13 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode13 Minimum Return Air Relative Humidity {percent} - 100, !- Mode13 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode13 Minimum Outside Air Fraction - 1, !- Mode13 Maximum Outside Air Fraction - 0.1, !- Mode13 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode13 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode14 Name - , !- Mode14 Supply Air Temperature Lookup Table Name - , !- Mode14 Supply Air Humidity Ratio Lookup Table Name - , !- Mode14 System Electric Power Lookup Table Name - , !- Mode14 Supply Fan Electric Power Lookup Table Name - , !- Mode14 External Static Pressure Lookup Table Name - , !- Mode14 System Second Fuel Consumption Lookup Table Name - , !- Mode14 System Third Fuel Consumption Lookup Table Name - , !- Mode14 System Water Use Lookup Table Name - , !- Mode14 Minimum Outside Air Temperature {C} - , !- Mode14 Maximum Outside Air Temperature {C} - , !- Mode14 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode14 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode14 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode14 Maximum Outside Air Relative Humidity {percent} - , !- Mode14 Minimum Return Air Temperature {C} - , !- Mode14 Maximum Return Air Temperature {C} - , !- Mode14 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode14 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode14 Minimum Return Air Relative Humidity {percent} - 100, !- Mode14 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode14 Minimum Outside Air Fraction - 1, !- Mode14 Maximum Outside Air Fraction - 0.1, !- Mode14 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode14 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode15 Name - , !- Mode15 Supply Air Temperature Lookup Table Name - , !- Mode15 Supply Air Humidity Ratio Lookup Table Name - , !- Mode15 System Electric Power Lookup Table Name - , !- Mode15 Supply Fan Electric Power Lookup Table Name - , !- Mode15 External Static Pressure Lookup Table Name - , !- Mode15 System Second Fuel Consumption Lookup Table Name - , !- Mode15 System Third Fuel Consumption Lookup Table Name - , !- Mode15 System Water Use Lookup Table Name - , !- Mode15 Minimum Outside Air Temperature {C} - , !- Mode15 Maximum Outside Air Temperature {C} - , !- Mode15 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode15 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode15 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode15 Maximum Outside Air Relative Humidity {percent} - , !- Mode15 Minimum Return Air Temperature {C} - , !- Mode15 Maximum Return Air Temperature {C} - , !- Mode15 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode15 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode15 Minimum Return Air Relative Humidity {percent} - 100, !- Mode15 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode15 Minimum Outside Air Fraction - 1, !- Mode15 Maximum Outside Air Fraction - 0.1, !- Mode15 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode15 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode16 Name - , !- Mode16 Supply Air Temperature Lookup Table Name - , !- Mode16 Supply Air Humidity Ratio Lookup Table Name - , !- Mode16 System Electric Power Lookup Table Name - , !- Mode16 Supply Fan Electric Power Lookup Table Name - , !- Mode16 External Static Pressure Lookup Table Name - , !- Mode16 System Second Fuel Consumption Lookup Table Name - , !- Mode16 System Third Fuel Consumption Lookup Table Name - , !- Mode16 System Water Use Lookup Table Name - , !- Mode16 Minimum Outside Air Temperature {C} - , !- Mode16 Maximum Outside Air Temperature {C} - , !- Mode16 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode16 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode16 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode16 Maximum Outside Air Relative Humidity {percent} - , !- Mode16 Minimum Return Air Temperature {C} - , !- Mode16 Maximum Return Air Temperature {C} - , !- Mode16 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode16 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode16 Minimum Return Air Relative Humidity {percent} - 100, !- Mode16 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode16 Minimum Outside Air Fraction - 1, !- Mode16 Maximum Outside Air Fraction - 0.1, !- Mode16 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode16 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode17 Name - , !- Mode17 Supply Air Temperature Lookup Table Name - , !- Mode17 Supply Air Humidity Ratio Lookup Table Name - , !- Mode17 System Electric Power Lookup Table Name - , !- Mode17 Supply Fan Electric Power Lookup Table Name - , !- Mode17 External Static Pressure Lookup Table Name - , !- Mode17 System Second Fuel Consumption Lookup Table Name - , !- Mode17 System Third Fuel Consumption Lookup Table Name - , !- Mode17 System Water Use Lookup Table Name - , !- Mode17 Minimum Outside Air Temperature {C} - , !- Mode17 Maximum Outside Air Temperature {C} - , !- Mode17 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode17 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode17 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode17 Maximum Outside Air Relative Humidity {percent} - , !- Mode17 Minimum Return Air Temperature {C} - , !- Mode17 Maximum Return Air Temperature {C} - , !- Mode17 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode17 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode17 Minimum Return Air Relative Humidity {percent} - 100, !- Mode17 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode17 Minimum Outside Air Fraction - 1, !- Mode17 Maximum Outside Air Fraction - 0.1, !- Mode17 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode17 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode18 Name - , !- Mode18 Supply Air Temperature Lookup Table Name - , !- Mode18 Supply Air Humidity Ratio Lookup Table Name - , !- Mode18 System Electric Power Lookup Table Name - , !- Mode18 Supply Fan Electric Power Lookup Table Name - , !- Mode18 External Static Pressure Lookup Table Name - , !- Mode18 System Second Fuel Consumption Lookup Table Name - , !- Mode18 System Third Fuel Consumption Lookup Table Name - , !- Mode18 System Water Use Lookup Table Name - , !- Mode18 Minimum Outside Air Temperature {C} - , !- Mode18 Maximum Outside Air Temperature {C} - , !- Mode18 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode18 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode18 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode18 Maximum Outside Air Relative Humidity {percent} - , !- Mode18 Minimum Return Air Temperature {C} - , !- Mode18 Maximum Return Air Temperature {C} - , !- Mode18 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode18 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode18 Minimum Return Air Relative Humidity {percent} - 100, !- Mode18 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode18 Minimum Outside Air Fraction - 1, !- Mode18 Maximum Outside Air Fraction - 0.1, !- Mode18 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode18 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode19 Name - , !- Mode19 Supply Air Temperature Lookup Table Name - , !- Mode19 Supply Air Humidity Ratio Lookup Table Name - , !- Mode19 System Electric Power Lookup Table Name - , !- Mode19 Supply Fan Electric Power Lookup Table Name - , !- Mode19 External Static Pressure Lookup Table Name - , !- Mode19 System Second Fuel Consumption Lookup Table Name - , !- Mode19 System Third Fuel Consumption Lookup Table Name - , !- Mode19 System Water Use Lookup Table Name - , !- Mode19 Minimum Outside Air Temperature {C} - , !- Mode19 Maximum Outside Air Temperature {C} - , !- Mode19 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode19 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode19 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode19 Maximum Outside Air Relative Humidity {percent} - , !- Mode19 Minimum Return Air Temperature {C} - , !- Mode19 Maximum Return Air Temperature {C} - , !- Mode19 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode19 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode19 Minimum Return Air Relative Humidity {percent} - 100, !- Mode19 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode19 Minimum Outside Air Fraction - 1, !- Mode19 Maximum Outside Air Fraction - 0.1, !- Mode19 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode19 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode20 Name - , !- Mode20 Supply Air Temperature Lookup Table Name - , !- Mode20 Supply Air Humidity Ratio Lookup Table Name - , !- Mode20 System Electric Power Lookup Table Name - , !- Mode20 Supply Fan Electric Power Lookup Table Name - , !- Mode20 External Static Pressure Lookup Table Name - , !- Mode20 System Second Fuel Consumption Lookup Table Name - , !- Mode20 System Third Fuel Consumption Lookup Table Name - , !- Mode20 System Water Use Lookup Table Name - , !- Mode20 Minimum Outside Air Temperature {C} - , !- Mode20 Maximum Outside Air Temperature {C} - , !- Mode20 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode20 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode20 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode20 Maximum Outside Air Relative Humidity {percent} - , !- Mode20 Minimum Return Air Temperature {C} - , !- Mode20 Maximum Return Air Temperature {C} - , !- Mode20 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode20 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode20 Minimum Return Air Relative Humidity {percent} - 100, !- Mode20 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode20 Minimum Outside Air Fraction - 1, !- Mode20 Maximum Outside Air Fraction - 0.1, !- Mode20 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode20 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode21 Name - , !- Mode21 Supply Air Temperature Lookup Table Name - , !- Mode21 Supply Air Humidity Ratio Lookup Table Name - , !- Mode21 System Electric Power Lookup Table Name - , !- Mode21 Supply Fan Electric Power Lookup Table Name - , !- Mode21 External Static Pressure Lookup Table Name - , !- Mode21 System Second Fuel Consumption Lookup Table Name - , !- Mode21 System Third Fuel Consumption Lookup Table Name - , !- Mode21 System Water Use Lookup Table Name - , !- Mode21 Minimum Outside Air Temperature {C} - , !- Mode21 Maximum Outside Air Temperature {C} - , !- Mode21 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode21 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode21 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode21 Maximum Outside Air Relative Humidity {percent} - , !- Mode21 Minimum Return Air Temperature {C} - , !- Mode21 Maximum Return Air Temperature {C} - , !- Mode21 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode21 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode21 Minimum Return Air Relative Humidity {percent} - 100, !- Mode21 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode21 Minimum Outside Air Fraction - 1, !- Mode21 Maximum Outside Air Fraction - 0.1, !- Mode21 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode21 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode22 Name - , !- Mode22 Supply Air Temperature Lookup Table Name - , !- Mode22 Supply Air Humidity Ratio Lookup Table Name - , !- Mode22 System Electric Power Lookup Table Name - , !- Mode22 Supply Fan Electric Power Lookup Table Name - , !- Mode22 External Static Pressure Lookup Table Name - , !- Mode22 System Second Fuel Consumption Lookup Table Name - , !- Mode22 System Third Fuel Consumption Lookup Table Name - , !- Mode22 System Water Use Lookup Table Name - , !- Mode22 Minimum Outside Air Temperature {C} - , !- Mode22 Maximum Outside Air Temperature {C} - , !- Mode22 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode22 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode22 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode22 Maximum Outside Air Relative Humidity {percent} - , !- Mode22 Minimum Return Air Temperature {C} - , !- Mode22 Maximum Return Air Temperature {C} - , !- Mode22 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode22 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode22 Minimum Return Air Relative Humidity {percent} - 100, !- Mode22 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode22 Minimum Outside Air Fraction - 1, !- Mode22 Maximum Outside Air Fraction - 0.1, !- Mode22 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode22 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode23 Name - , !- Mode23 Supply Air Temperature Lookup Table Name - , !- Mode23 Supply Air Humidity Ratio Lookup Table Name - , !- Mode23 System Electric Power Lookup Table Name - , !- Mode23 Supply Fan Electric Power Lookup Table Name - , !- Mode23 External Static Pressure Lookup Table Name - , !- Mode23 System Second Fuel Consumption Lookup Table Name - , !- Mode23 System Third Fuel Consumption Lookup Table Name - , !- Mode23 System Water Use Lookup Table Name - , !- Mode23 Minimum Outside Air Temperature {C} - , !- Mode23 Maximum Outside Air Temperature {C} - , !- Mode23 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode23 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode23 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode23 Maximum Outside Air Relative Humidity {percent} - , !- Mode23 Minimum Return Air Temperature {C} - , !- Mode23 Maximum Return Air Temperature {C} - , !- Mode23 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode23 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode23 Minimum Return Air Relative Humidity {percent} - 100, !- Mode23 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode23 Minimum Outside Air Fraction - 1, !- Mode23 Maximum Outside Air Fraction - 0.1, !- Mode23 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode23 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode24 Name - , !- Mode24 Supply Air Temperature Lookup Table Name - , !- Mode24 Supply Air Humidity Ratio Lookup Table Name - , !- Mode24 System Electric Power Lookup Table Name - , !- Mode24 Supply Fan Electric Power Lookup Table Name - , !- Mode24 External Static Pressure Lookup Table Name - , !- Mode24 System Second Fuel Consumption Lookup Table Name - , !- Mode24 System Third Fuel Consumption Lookup Table Name - , !- Mode24 System Water Use Lookup Table Name - , !- Mode24 Minimum Outside Air Temperature {C} - , !- Mode24 Maximum Outside Air Temperature {C} - , !- Mode24 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode24 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode24 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode24 Maximum Outside Air Relative Humidity {percent} - , !- Mode24 Minimum Return Air Temperature {C} - , !- Mode24 Maximum Return Air Temperature {C} - , !- Mode24 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode24 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode24 Minimum Return Air Relative Humidity {percent} - 100, !- Mode24 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode24 Minimum Outside Air Fraction - 1, !- Mode24 Maximum Outside Air Fraction - 0.1, !- Mode24 Minimum Supply Air Mass Flow Rate Ratio - 1, !- Mode24 Maximum Supply Air Mass Flow Rate Ratio - , !- Mode25 Name - , !- Mode25 Supply Air Temperature Lookup Table Name - , !- Mode25 Supply Air Humidity Ratio Lookup Table Name - , !- Mode25 System Electric Power Lookup Table Name - , !- Mode25 Supply Fan Electric Power Lookup Table Name - , !- Mode25 External Static Pressure Lookup Table Name - , !- Mode25 System Second Fuel Consumption Lookup Table Name - , !- Mode25 System Third Fuel Consumption Lookup Table Name - , !- Mode25 System Water Use Lookup Table Name - , !- Mode25 Minimum Outside Air Temperature {C} - , !- Mode25 Maximum Outside Air Temperature {C} - , !- Mode25 Minimum Outside Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode25 Maximum Outside Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode25 Minimum Outside Air Relative Humidity {percent} - 100, !- Mode25 Maximum Outside Air Relative Humidity {percent} - , !- Mode25 Minimum Return Air Temperature {C} - , !- Mode25 Maximum Return Air Temperature {C} - , !- Mode25 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} - 0.1, !- Mode25 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} - , !- Mode25 Minimum Return Air Relative Humidity {percent} - 100, !- Mode25 Maximum Return Air Relative Humidity {percent} - 0.1, !- Mode25 Minimum Outside Air Fraction - 1, !- Mode25 Maximum Outside Air Fraction - 0.1, !- Mode25 Minimum Supply Air Mass Flow Rate Ratio - 1; !- Mode25 Maximum Supply Air Mass Flow Rate Ratio - + Mode0 Standby, !- Mode 0 Name + , !- Mode 0 Supply Air Temperature Lookup Table Name + , !- Mode 0 Supply Air Humidity Ratio Lookup Table Name + Mode0_Power_lookup, !- Mode 0 System Electric Power Lookup Table Name + , !- Mode 0 Supply Fan Electric Power Lookup Table Name + , !- Mode 0 External Static Pressure Lookup Table Name + , !- Mode 0 System Second Fuel Consumption Lookup Table Name + , !- Mode 0 System Third Fuel Consumption Lookup Table Name + , !- Mode 0 System Water Use Lookup Table Name + 0, !- Mode 0 Outdoor Air Fraction + 0, !- Mode 0 Supply Air Mass Flow Rate Ratio + Mode1_IEC, !- Mode 1 Name + Mode1_TSA_lookup, !- Mode 1 Supply Air Temperature Lookup Table Name + Mode1_wSA_lookup, !- Mode 1 Supply Air Humidity Ratio Lookup Table Name + Mode1_Power_lookup, !- Mode 1 System Electric Power Lookup Table Name + Mode1_FanPower_lookup, !- Mode 1 Supply Fan Electric Power Lookup Table Name + Mode1_ESP_lookup, !- Mode 1 External Static Pressure Lookup Table Name + , !- Mode 1 System Second Fuel Consumption Lookup Table Name + , !- Mode 1 System Third Fuel Consumption Lookup Table Name + Mode1_water_lookup, !- Mode 1 System Water Use Lookup Table Name + -20, !- Mode 1 Minimum Outdoor Air Temperature {C} + 100, !- Mode 1 Maximum Outdoor Air Temperature {C} + 0, !- Mode 1 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 1 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 1 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 1 Maximum Outdoor Air Relative Humidity {percent} + -20, !- Mode 1 Minimum Return Air Temperature {C} + 100, !- Mode 1 Maximum Return Air Temperature {C} + 0, !- Mode 1 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 1 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 1 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 1 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 1 Minimum Outdoor Air Fraction + 1, !- Mode 1 Maximum Outdoor Air Fraction + 0.715, !- Mode 1 Minimum Supply Air Mass Flow Rate Ratio + 0.964, !- Mode 1 Maximum Supply Air Mass Flow Rate Ratio + Mode2_IECandDX1, !- Mode 2 Name + Mode2_TSA_lookup, !- Mode 2 Supply Air Temperature Lookup Table Name + Mode2_wSA_lookup, !- Mode 2 Supply Air Humidity Ratio Lookup Table Name + Mode2_Power_lookup, !- Mode 2 System Electric Power Lookup Table Name + Mode2_FanPower_lookup, !- Mode 2 Supply Fan Electric Power Lookup Table Name + Mode2_ESP_lookup, !- Mode 2 External Static Pressure Lookup Table Name + , !- Mode 2 System Second Fuel Consumption Lookup Table Name + , !- Mode 2 System Third Fuel Consumption Lookup Table Name + Mode2_water_lookup, !- Mode 2 System Water Use Lookup Table Name + -20, !- Mode 2 Minimum Outdoor Air Temperature {C} + 100, !- Mode 2 Maximum Outdoor Air Temperature {C} + 0, !- Mode 2 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 2 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 2 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 2 Maximum Outdoor Air Relative Humidity {percent} + -20, !- Mode 2 Minimum Return Air Temperature {C} + 100, !- Mode 2 Maximum Return Air Temperature {C} + 0, !- Mode 2 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 2 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 2 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 2 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 2 Minimum Outdoor Air Fraction + 1, !- Mode 2 Maximum Outdoor Air Fraction + 0.7428, !- Mode 2 Minimum Supply Air Mass Flow Rate Ratio + 0.8977, !- Mode 2 Maximum Supply Air Mass Flow Rate Ratio + Mode3_IECandDX2, !- Mode 3 Name + Mode3_TSA_lookup, !- Mode 3 Supply Air Temperature Lookup Table Name + Mode3_wSA_lookup, !- Mode 3 Supply Air Humidity Ratio Lookup Table Name + Mode3_Power_lookup, !- Mode 3 System Electric Power Lookup Table Name + Mode3_FanPower_lookup, !- Mode 3 Supply Fan Electric Power Lookup Table Name + Mode3_ESP_lookup, !- Mode 3 External Static Pressure Lookup Table Name + , !- Mode 3 System Second Fuel Consumption Lookup Table Name + , !- Mode 3 System Third Fuel Consumption Lookup Table Name + Mode3_water_lookup, !- Mode 3 System Water Use Lookup Table Name + -20, !- Mode 3 Minimum Outdoor Air Temperature {C} + 100, !- Mode 3 Maximum Outdoor Air Temperature {C} + 0, !- Mode 3 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 3 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 3 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 3 Maximum Outdoor Air Relative Humidity {percent} + -20, !- Mode 3 Minimum Return Air Temperature {C} + 100, !- Mode 3 Maximum Return Air Temperature {C} + 0, !- Mode 3 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 3 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 3 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 3 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 3 Minimum Outdoor Air Fraction + 1, !- Mode 3 Maximum Outdoor Air Fraction + 0.711, !- Mode 3 Minimum Supply Air Mass Flow Rate Ratio + 0.8915, !- Mode 3 Maximum Supply Air Mass Flow Rate Ratio + Mode4_Ventilation, !- Mode 4 Name + Mode4_TSA_lookup, !- Mode 4 Supply Air Temperature Lookup Table Name + Mode4_wSA_lookup, !- Mode 4 Supply Air Humidity Ratio Lookup Table Name + Mode4_Power_lookup, !- Mode 4 System Electric Power Lookup Table Name + Mode4_FanPower_lookup, !- Mode 4 Supply Fan Electric Power Lookup Table Name + Mode4_ESP_lookup, !- Mode 4 External Static Pressure Lookup Table Name + , !- Mode 4 System Second Fuel Consumption Lookup Table Name + , !- Mode 4 System Third Fuel Consumption Lookup Table Name + , !- Mode 4 System Water Use Lookup Table Name + -20, !- Mode 4 Minimum Outdoor Air Temperature {C} + 100, !- Mode 4 Maximum Outdoor Air Temperature {C} + 0, !- Mode 4 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 4 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 4 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 4 Maximum Outdoor Air Relative Humidity {percent} + -20, !- Mode 4 Minimum Return Air Temperature {C} + 100, !- Mode 4 Maximum Return Air Temperature {C} + 0, !- Mode 4 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 4 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 4 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 4 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 4 Minimum Outdoor Air Fraction + 1, !- Mode 4 Maximum Outdoor Air Fraction + 0.7039, !- Mode 4 Minimum Supply Air Mass Flow Rate Ratio + 0.957, !- Mode 4 Maximum Supply Air Mass Flow Rate Ratio + Mode5_Heat, !- Mode 5 Name + Mode5_TSA_lookup, !- Mode 5 Supply Air Temperature Lookup Table Name + Mode5_wSA_lookup, !- Mode 5 Supply Air Humidity Ratio Lookup Table Name + Mode5_Power_lookup, !- Mode 5 System Electric Power Lookup Table Name + Mode5_FanPower_lookup, !- Mode 5 Supply Fan Electric Power Lookup Table Name + Mode5_ESP_lookup, !- Mode 5 External Static Pressure Lookup Table Name + Mode5_2ndFuel_lookup, !- Mode 5 System Second Fuel Consumption Lookup Table Name + , !- Mode 5 System Third Fuel Consumption Lookup Table Name + , !- Mode 5 System Water Use Lookup Table Name + -30, !- Mode 5 Minimum Outdoor Air Temperature {C} + 100, !- Mode 5 Maximum Outdoor Air Temperature {C} + 0, !- Mode 5 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 5 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 5 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 5 Maximum Outdoor Air Relative Humidity {percent} + -30, !- Mode 5 Minimum Return Air Temperature {C} + 100, !- Mode 5 Maximum Return Air Temperature {C} + 0, !- Mode 5 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.03, !- Mode 5 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 0, !- Mode 5 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 5 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 5 Minimum Outdoor Air Fraction + 1, !- Mode 5 Maximum Outdoor Air Fraction + 0.729, !- Mode 5 Minimum Supply Air Mass Flow Rate Ratio + 1, !- Mode 5 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 6 Name + , !- Mode 6 Supply Air Temperature Lookup Table Name + , !- Mode 6 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 6 System Electric Power Lookup Table Name + , !- Mode 6 Supply Fan Electric Power Lookup Table Name + , !- Mode 6 External Static Pressure Lookup Table Name + , !- Mode 6 System Second Fuel Consumption Lookup Table Name + , !- Mode 6 System Third Fuel Consumption Lookup Table Name + , !- Mode 6 System Water Use Lookup Table Name + , !- Mode 6 Minimum Outdoor Air Temperature {C} + , !- Mode 6 Maximum Outdoor Air Temperature {C} + , !- Mode 6 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 6 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 6 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 6 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 6 Minimum Return Air Temperature {C} + , !- Mode 6 Maximum Return Air Temperature {C} + , !- Mode 6 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 6 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 6 Minimum Return Air Relative Humidity {percent} + , !- Mode 6 Maximum Return Air Relative Humidity {percent} + , !- Mode 6 Minimum Outdoor Air Fraction + , !- Mode 6 Maximum Outdoor Air Fraction + , !- Mode 6 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 6 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 7 Name + , !- Mode 7 Supply Air Temperature Lookup Table Name + , !- Mode 7 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 7 System Electric Power Lookup Table Name + , !- Mode 7 Supply Fan Electric Power Lookup Table Name + , !- Mode 7 External Static Pressure Lookup Table Name + , !- Mode 7 System Second Fuel Consumption Lookup Table Name + , !- Mode 7 System Third Fuel Consumption Lookup Table Name + , !- Mode 7 System Water Use Lookup Table Name + , !- Mode 7 Minimum Outdoor Air Temperature {C} + , !- Mode 7 Maximum Outdoor Air Temperature {C} + , !- Mode 7 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 7 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 7 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 7 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 7 Minimum Return Air Temperature {C} + , !- Mode 7 Maximum Return Air Temperature {C} + , !- Mode 7 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 7 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 7 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 7 Maximum Return Air Relative Humidity {percent} + 0.1, !- Mode 7 Minimum Outdoor Air Fraction + 1, !- Mode 7 Maximum Outdoor Air Fraction + 0.1, !- Mode 7 Minimum Supply Air Mass Flow Rate Ratio + 1, !- Mode 7 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 8 Name + , !- Mode 8 Supply Air Temperature Lookup Table Name + , !- Mode 8 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 8 System Electric Power Lookup Table Name + , !- Mode 8 Supply Fan Electric Power Lookup Table Name + , !- Mode 8 External Static Pressure Lookup Table Name + , !- Mode 8 System Second Fuel Consumption Lookup Table Name + , !- Mode 8 System Third Fuel Consumption Lookup Table Name + , !- Mode 8 System Water Use Lookup Table Name + , !- Mode 8 Minimum Outdoor Air Temperature {C} + , !- Mode 8 Maximum Outdoor Air Temperature {C} + , !- Mode 8 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 8 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 8 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 8 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 8 Minimum Return Air Temperature {C} + , !- Mode 8 Maximum Return Air Temperature {C} + , !- Mode 8 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 8 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 8 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 8 Maximum Return Air Relative Humidity {percent} + 0.1, !- Mode 8 Minimum Outdoor Air Fraction + 1, !- Mode 8 Maximum Outdoor Air Fraction + 0.1, !- Mode 8 Minimum Supply Air Mass Flow Rate Ratio + 1, !- Mode 8 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 9 Name + , !- Mode 9 Supply Air Temperature Lookup Table Name + , !- Mode 9 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 9 System Electric Power Lookup Table Name + , !- Mode 9 Supply Fan Electric Power Lookup Table Name + , !- Mode 9 External Static Pressure Lookup Table Name + , !- Mode 9 System Second Fuel Consumption Lookup Table Name + , !- Mode 9 System Third Fuel Consumption Lookup Table Name + , !- Mode 9 System Water Use Lookup Table Name + , !- Mode 9 Minimum Outdoor Air Temperature {C} + , !- Mode 9 Maximum Outdoor Air Temperature {C} + , !- Mode 9 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 9 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 9 Minimum Outdoor Air Relative Humidity {percent} + 100, !- Mode 9 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 9 Minimum Return Air Temperature {C} + , !- Mode 9 Maximum Return Air Temperature {C} + , !- Mode 9 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + 0.1, !- Mode 9 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 9 Minimum Return Air Relative Humidity {percent} + 100, !- Mode 9 Maximum Return Air Relative Humidity {percent} + 0.1, !- Mode 9 Minimum Outdoor Air Fraction + 1, !- Mode 9 Maximum Outdoor Air Fraction + 0.1, !- Mode 9 Minimum Supply Air Mass Flow Rate Ratio + 1, !- Mode 9 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 10 Name + , !- Mode 10 Supply Air Temperature Lookup Table Name + , !- Mode 10 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 10 System Electric Power Lookup Table Name + , !- Mode 10 Supply Fan Electric Power Lookup Table Name + , !- Mode 10 External Static Pressure Lookup Table Name + , !- Mode 10 System Second Fuel Consumption Lookup Table Name + , !- Mode 10 System Third Fuel Consumption Lookup Table Name + , !- Mode 10 System Water Use Lookup Table Name + , !- Mode 10 Minimum Outdoor Air Temperature {C} + , !- Mode 10 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 10 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 10 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 10 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 10 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 10 Minimum Return Air Temperature {C} + , !- Mode 10 Maximum Return Air Temperature {C} + 0.1, !- Mode 10 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 10 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 10 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 10 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 10 Minimum Outdoor Air Fraction + 0.1, !- Mode 10 Maximum Outdoor Air Fraction + 1, !- Mode 10 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 10 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 11 Name + , !- Mode 11 Supply Air Temperature Lookup Table Name + , !- Mode 11 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 11 System Electric Power Lookup Table Name + , !- Mode 11 Supply Fan Electric Power Lookup Table Name + , !- Mode 11 External Static Pressure Lookup Table Name + , !- Mode 11 System Second Fuel Consumption Lookup Table Name + , !- Mode 11 System Third Fuel Consumption Lookup Table Name + , !- Mode 11 System Water Use Lookup Table Name + , !- Mode 11 Minimum Outdoor Air Temperature {C} + , !- Mode 11 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 11 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 11 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 11 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 11 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 11 Minimum Return Air Temperature {C} + , !- Mode 11 Maximum Return Air Temperature {C} + 0.1, !- Mode 11 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 11 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 11 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 11 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 11 Minimum Outdoor Air Fraction + 0.1, !- Mode 11 Maximum Outdoor Air Fraction + 1, !- Mode 11 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 11 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 12 Name + , !- Mode 12 Supply Air Temperature Lookup Table Name + , !- Mode 12 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 12 System Electric Power Lookup Table Name + , !- Mode 12 Supply Fan Electric Power Lookup Table Name + , !- Mode 12 External Static Pressure Lookup Table Name + , !- Mode 12 System Second Fuel Consumption Lookup Table Name + , !- Mode 12 System Third Fuel Consumption Lookup Table Name + , !- Mode 12 System Water Use Lookup Table Name + , !- Mode 12 Minimum Outdoor Air Temperature {C} + , !- Mode 12 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 12 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 12 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 12 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 12 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 12 Minimum Return Air Temperature {C} + , !- Mode 12 Maximum Return Air Temperature {C} + 0.1, !- Mode 12 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 12 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 12 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 12 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 12 Minimum Outdoor Air Fraction + 0.1, !- Mode 12 Maximum Outdoor Air Fraction + 1, !- Mode 12 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 12 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 13 Name + , !- Mode 13 Supply Air Temperature Lookup Table Name + , !- Mode 13 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 13 System Electric Power Lookup Table Name + , !- Mode 13 Supply Fan Electric Power Lookup Table Name + , !- Mode 13 External Static Pressure Lookup Table Name + , !- Mode 13 System Second Fuel Consumption Lookup Table Name + , !- Mode 13 System Third Fuel Consumption Lookup Table Name + , !- Mode 13 System Water Use Lookup Table Name + , !- Mode 13 Minimum Outdoor Air Temperature {C} + , !- Mode 13 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 13 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 13 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 13 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 13 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 13 Minimum Return Air Temperature {C} + , !- Mode 13 Maximum Return Air Temperature {C} + 0.1, !- Mode 13 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 13 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 13 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 13 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 13 Minimum Outdoor Air Fraction + 0.1, !- Mode 13 Maximum Outdoor Air Fraction + 1, !- Mode 13 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 13 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 14 Name + , !- Mode 14 Supply Air Temperature Lookup Table Name + , !- Mode 14 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 14 System Electric Power Lookup Table Name + , !- Mode 14 Supply Fan Electric Power Lookup Table Name + , !- Mode 14 External Static Pressure Lookup Table Name + , !- Mode 14 System Second Fuel Consumption Lookup Table Name + , !- Mode 14 System Third Fuel Consumption Lookup Table Name + , !- Mode 14 System Water Use Lookup Table Name + , !- Mode 14 Minimum Outdoor Air Temperature {C} + , !- Mode 14 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 14 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 14 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 14 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 14 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 14 Minimum Return Air Temperature {C} + , !- Mode 14 Maximum Return Air Temperature {C} + 0.1, !- Mode 14 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 14 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 14 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 14 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 14 Minimum Outdoor Air Fraction + 0.1, !- Mode 14 Maximum Outdoor Air Fraction + 1, !- Mode 14 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 14 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 15 Name + , !- Mode 15 Supply Air Temperature Lookup Table Name + , !- Mode 15 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 15 System Electric Power Lookup Table Name + , !- Mode 15 Supply Fan Electric Power Lookup Table Name + , !- Mode 15 External Static Pressure Lookup Table Name + , !- Mode 15 System Second Fuel Consumption Lookup Table Name + , !- Mode 15 System Third Fuel Consumption Lookup Table Name + , !- Mode 15 System Water Use Lookup Table Name + , !- Mode 15 Minimum Outdoor Air Temperature {C} + , !- Mode 15 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 15 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 15 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 15 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 15 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 15 Minimum Return Air Temperature {C} + , !- Mode 15 Maximum Return Air Temperature {C} + 0.1, !- Mode 15 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 15 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 15 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 15 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 15 Minimum Outdoor Air Fraction + 0.1, !- Mode 15 Maximum Outdoor Air Fraction + 1, !- Mode 15 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 15 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 16 Name + , !- Mode 16 Supply Air Temperature Lookup Table Name + , !- Mode 16 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 16 System Electric Power Lookup Table Name + , !- Mode 16 Supply Fan Electric Power Lookup Table Name + , !- Mode 16 External Static Pressure Lookup Table Name + , !- Mode 16 System Second Fuel Consumption Lookup Table Name + , !- Mode 16 System Third Fuel Consumption Lookup Table Name + , !- Mode 16 System Water Use Lookup Table Name + , !- Mode 16 Minimum Outdoor Air Temperature {C} + , !- Mode 16 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 16 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 16 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 16 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 16 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 16 Minimum Return Air Temperature {C} + , !- Mode 16 Maximum Return Air Temperature {C} + 0.1, !- Mode 16 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 16 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 16 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 16 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 16 Minimum Outdoor Air Fraction + 0.1, !- Mode 16 Maximum Outdoor Air Fraction + 1, !- Mode 16 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 16 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 17 Name + , !- Mode 17 Supply Air Temperature Lookup Table Name + , !- Mode 17 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 17 System Electric Power Lookup Table Name + , !- Mode 17 Supply Fan Electric Power Lookup Table Name + , !- Mode 17 External Static Pressure Lookup Table Name + , !- Mode 17 System Second Fuel Consumption Lookup Table Name + , !- Mode 17 System Third Fuel Consumption Lookup Table Name + , !- Mode 17 System Water Use Lookup Table Name + , !- Mode 17 Minimum Outdoor Air Temperature {C} + , !- Mode 17 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 17 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 17 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 17 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 17 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 17 Minimum Return Air Temperature {C} + , !- Mode 17 Maximum Return Air Temperature {C} + 0.1, !- Mode 17 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 17 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 17 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 17 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 17 Minimum Outdoor Air Fraction + 0.1, !- Mode 17 Maximum Outdoor Air Fraction + 1, !- Mode 17 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 17 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 18 Name + , !- Mode 18 Supply Air Temperature Lookup Table Name + , !- Mode 18 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 18 System Electric Power Lookup Table Name + , !- Mode 18 Supply Fan Electric Power Lookup Table Name + , !- Mode 18 External Static Pressure Lookup Table Name + , !- Mode 18 System Second Fuel Consumption Lookup Table Name + , !- Mode 18 System Third Fuel Consumption Lookup Table Name + , !- Mode 18 System Water Use Lookup Table Name + , !- Mode 18 Minimum Outdoor Air Temperature {C} + , !- Mode 18 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 18 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 18 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 18 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 18 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 18 Minimum Return Air Temperature {C} + , !- Mode 18 Maximum Return Air Temperature {C} + 0.1, !- Mode 18 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 18 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 18 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 18 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 18 Minimum Outdoor Air Fraction + 0.1, !- Mode 18 Maximum Outdoor Air Fraction + 1, !- Mode 18 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 18 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 19 Name + , !- Mode 19 Supply Air Temperature Lookup Table Name + , !- Mode 19 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 19 System Electric Power Lookup Table Name + , !- Mode 19 Supply Fan Electric Power Lookup Table Name + , !- Mode 19 External Static Pressure Lookup Table Name + , !- Mode 19 System Second Fuel Consumption Lookup Table Name + , !- Mode 19 System Third Fuel Consumption Lookup Table Name + , !- Mode 19 System Water Use Lookup Table Name + , !- Mode 19 Minimum Outdoor Air Temperature {C} + , !- Mode 19 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 19 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 19 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 19 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 19 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 19 Minimum Return Air Temperature {C} + , !- Mode 19 Maximum Return Air Temperature {C} + 0.1, !- Mode 19 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 19 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 19 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 19 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 19 Minimum Outdoor Air Fraction + 0.1, !- Mode 19 Maximum Outdoor Air Fraction + 1, !- Mode 19 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 19 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 20 Name + , !- Mode 20 Supply Air Temperature Lookup Table Name + , !- Mode 20 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 20 System Electric Power Lookup Table Name + , !- Mode 20 Supply Fan Electric Power Lookup Table Name + , !- Mode 20 External Static Pressure Lookup Table Name + , !- Mode 20 System Second Fuel Consumption Lookup Table Name + , !- Mode 20 System Third Fuel Consumption Lookup Table Name + , !- Mode 20 System Water Use Lookup Table Name + , !- Mode 20 Minimum Outdoor Air Temperature {C} + , !- Mode 20 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 20 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 20 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 20 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 20 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 20 Minimum Return Air Temperature {C} + , !- Mode 20 Maximum Return Air Temperature {C} + 0.1, !- Mode 20 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 20 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 20 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 20 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 20 Minimum Outdoor Air Fraction + 0.1, !- Mode 20 Maximum Outdoor Air Fraction + 1, !- Mode 20 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 20 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 21 Name + , !- Mode 21 Supply Air Temperature Lookup Table Name + , !- Mode 21 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 21 System Electric Power Lookup Table Name + , !- Mode 21 Supply Fan Electric Power Lookup Table Name + , !- Mode 21 External Static Pressure Lookup Table Name + , !- Mode 21 System Second Fuel Consumption Lookup Table Name + , !- Mode 21 System Third Fuel Consumption Lookup Table Name + , !- Mode 21 System Water Use Lookup Table Name + , !- Mode 21 Minimum Outdoor Air Temperature {C} + , !- Mode 21 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 21 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 21 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 21 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 21 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 21 Minimum Return Air Temperature {C} + , !- Mode 21 Maximum Return Air Temperature {C} + 0.1, !- Mode 21 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 21 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 21 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 21 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 21 Minimum Outdoor Air Fraction + 0.1, !- Mode 21 Maximum Outdoor Air Fraction + 1, !- Mode 21 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 21 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 22 Name + , !- Mode 22 Supply Air Temperature Lookup Table Name + , !- Mode 22 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 22 System Electric Power Lookup Table Name + , !- Mode 22 Supply Fan Electric Power Lookup Table Name + , !- Mode 22 External Static Pressure Lookup Table Name + , !- Mode 22 System Second Fuel Consumption Lookup Table Name + , !- Mode 22 System Third Fuel Consumption Lookup Table Name + , !- Mode 22 System Water Use Lookup Table Name + , !- Mode 22 Minimum Outdoor Air Temperature {C} + , !- Mode 22 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 22 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 22 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 22 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 22 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 22 Minimum Return Air Temperature {C} + , !- Mode 22 Maximum Return Air Temperature {C} + 0.1, !- Mode 22 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 22 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 22 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 22 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 22 Minimum Outdoor Air Fraction + 0.1, !- Mode 22 Maximum Outdoor Air Fraction + 1, !- Mode 22 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 22 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 23 Name + , !- Mode 23 Supply Air Temperature Lookup Table Name + , !- Mode 23 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 23 System Electric Power Lookup Table Name + , !- Mode 23 Supply Fan Electric Power Lookup Table Name + , !- Mode 23 External Static Pressure Lookup Table Name + , !- Mode 23 System Second Fuel Consumption Lookup Table Name + , !- Mode 23 System Third Fuel Consumption Lookup Table Name + , !- Mode 23 System Water Use Lookup Table Name + , !- Mode 23 Minimum Outdoor Air Temperature {C} + , !- Mode 23 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 23 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 23 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 23 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 23 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 23 Minimum Return Air Temperature {C} + , !- Mode 23 Maximum Return Air Temperature {C} + 0.1, !- Mode 23 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 23 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 23 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 23 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 23 Minimum Outdoor Air Fraction + 0.1, !- Mode 23 Maximum Outdoor Air Fraction + 1, !- Mode 23 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 23 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 24 Name + , !- Mode 24 Supply Air Temperature Lookup Table Name + , !- Mode 24 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 24 System Electric Power Lookup Table Name + , !- Mode 24 Supply Fan Electric Power Lookup Table Name + , !- Mode 24 External Static Pressure Lookup Table Name + , !- Mode 24 System Second Fuel Consumption Lookup Table Name + , !- Mode 24 System Third Fuel Consumption Lookup Table Name + , !- Mode 24 System Water Use Lookup Table Name + , !- Mode 24 Minimum Outdoor Air Temperature {C} + , !- Mode 24 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 24 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 24 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 24 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 24 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 24 Minimum Return Air Temperature {C} + , !- Mode 24 Maximum Return Air Temperature {C} + 0.1, !- Mode 24 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 24 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 24 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 24 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 24 Minimum Outdoor Air Fraction + 0.1, !- Mode 24 Maximum Outdoor Air Fraction + 1, !- Mode 24 Minimum Supply Air Mass Flow Rate Ratio + , !- Mode 24 Maximum Supply Air Mass Flow Rate Ratio + , !- Mode 25 Name + , !- Mode 25 Supply Air Temperature Lookup Table Name + , !- Mode 25 Supply Air Humidity Ratio Lookup Table Name + , !- Mode 25 System Electric Power Lookup Table Name + , !- Mode 25 Supply Fan Electric Power Lookup Table Name + , !- Mode 25 External Static Pressure Lookup Table Name + , !- Mode 25 System Second Fuel Consumption Lookup Table Name + , !- Mode 25 System Third Fuel Consumption Lookup Table Name + , !- Mode 25 System Water Use Lookup Table Name + , !- Mode 25 Minimum Outdoor Air Temperature {C} + , !- Mode 25 Maximum Outdoor Air Temperature {C} + 0.1, !- Mode 25 Minimum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 25 Maximum Outdoor Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 25 Minimum Outdoor Air Relative Humidity {percent} + , !- Mode 25 Maximum Outdoor Air Relative Humidity {percent} + , !- Mode 25 Minimum Return Air Temperature {C} + , !- Mode 25 Maximum Return Air Temperature {C} + 0.1, !- Mode 25 Minimum Return Air Humidity Ratio {kgWater/kgDryAir} + , !- Mode 25 Maximum Return Air Humidity Ratio {kgWater/kgDryAir} + 100, !- Mode 25 Minimum Return Air Relative Humidity {percent} + 0.1, !- Mode 25 Maximum Return Air Relative Humidity {percent} + 1, !- Mode 25 Minimum Outdoor Air Fraction + 0.1, !- Mode 25 Maximum Outdoor Air Fraction + 1; !- Mode 25 Minimum Supply Air Mass Flow Rate Ratio !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS =========== @@ -1300,7 +1317,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.000, !- Value 1 0.000, !- Value 2 - 100.000; !- Extended Field + 100.000; !- Table:IndependentVariable, Mode0_Woa, !- Name @@ -1315,7 +1332,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode0_Tra, !- Name @@ -1330,7 +1347,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.000, !- Value 1 0.000, !- Value 2 - 100.000; !- Extended Field + 100.000; !- Table:IndependentVariable, Mode0_Wra, !- Name @@ -1345,7 +1362,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode0_Ma, !- Name @@ -1360,7 +1377,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.000, !- Value 1 0.000, !- Value 2 - 100.000; !- Extended Field + 100.000; !- Table:IndependentVariable, Mode0_OAF, !- Name @@ -1375,16 +1392,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00, !- Value 1 0.00, !- Value 2 - 100.00; !- Extended Field + 100.00; !- Table:IndependentVariableList, Mode0_IndependentVariableList, !- Name Mode0_Toa, !- Independent Variable 1 Name Mode0_Woa, !- Independent Variable 2 Name - Mode0_Tra, !- Extended Field - Mode0_Wra, !- Extended Field - Mode0_Ma, !- Extended Field - Mode0_OAF; !- Extended Field + Mode0_Tra, !- + Mode0_Wra, !- + Mode0_Ma, !- + Mode0_OAF; !- Table:Lookup, Mode0_Power_lookup, !- Name @@ -1399,734 +1416,733 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 244, !- Output Value 1 244, !- Output Value 2 - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244, !- Extended Field - 244; !- Extended Field - + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244, !- + 244; !- Table:IndependentVariable, Mode1_Toa, !- Name @@ -2141,7 +2157,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 18.330, !- Value 1 25.275, !- Value 2 - 32.220; !- Extended Field + 32.220; !- Table:IndependentVariable, Mode1_Woa, !- Name @@ -2156,9 +2172,9 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00520, !- Value 1 0.00597, !- Value 2 - 0.00885, !- Extended Field - 0.00919, !- Extended Field - 0.01250; !- Extended Field + 0.00885, !- + 0.00919, !- + 0.01250; !- Table:IndependentVariable, Mode1_Tra, !- Name @@ -2173,7 +2189,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.000, !- Value 1 0.000, !- Value 2 - 100.000; !- Extended Field + 100.000; !- Table:IndependentVariable, Mode1_Wra, !- Name @@ -2188,7 +2204,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode1_Ma, !- Name @@ -2203,7 +2219,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 2.158, !- Value 1 2.534, !- Value 2 - 2.910; !- Extended Field + 2.910; !- Table:IndependentVariable, Mode1_OAF, !- Name @@ -2218,16 +2234,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00, !- Value 1 0.00, !- Value 2 - 100.00; !- Extended Field + 100.00; !- Table:IndependentVariableList, Mode1_IndependentVariableList, !- Name Mode1_Toa, !- Independent Variable 1 Name Mode1_Woa, !- Independent Variable 2 Name - Mode1_Tra, !- Extended Field - Mode1_Wra, !- Extended Field - Mode1_Ma, !- Extended Field - Mode1_OAF; !- Extended Field + Mode1_Tra, !- + Mode1_Wra, !- + Mode1_Ma, !- + Mode1_OAF; !- Table:Lookup, Mode1_ESP_lookup, !- Name @@ -2242,1219 +2258,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 153.95350, !- Output Value 1 153.95350, !- Output Value 2 - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 152.39558, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 215.39133, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 278.38708, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 153.95350, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 212.27550, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500; !- Extended Field + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 152.39558, !- + 152.39558, !- + 152.39558, !- + 215.39133, !- + 215.39133, !- + 215.39133, !- + 278.38708, !- + 278.38708, !- + 278.38708, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 153.95350, !- + 153.95350, !- + 153.95350, !- + 212.27550, !- + 212.27550, !- + 212.27550, !- + 279.94500, !- + 279.94500, !- + 279.94500; !- Table:Lookup, Mode1_TSA_lookup, !- Name @@ -3469,1220 +3485,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 15.88148, !- Output Value 1 15.88148, !- Output Value 2 - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.88148, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.71243, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 15.54338, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.17561, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 16.00656, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 15.83751, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.27622, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 17.10717, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 16.93812, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.40604, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.23699, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 17.06794, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.67096, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.50192, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 18.33287, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.48147, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.31242, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.14338, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.77588, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.60684, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 19.43779, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.87621, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.70716, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 20.53812, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 21.00620, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.83716, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 20.66811, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.27095, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 22.10191, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 21.93286, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 23.08199, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.91294, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 22.74390, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.37642, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.20737, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 23.03833, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.47621, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.30716, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.13811, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.60632, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.43727, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 24.26823, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.87095, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.70190, !- Extended Field - 25.53285, !- Extended Field - 25.53285, !- Extended Field - 25.53285; !- Extended Field - + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 15.88148, !- + 15.88148, !- + 15.88148, !- + 15.71243, !- + 15.71243, !- + 15.71243, !- + 15.54338, !- + 15.54338, !- + 15.54338, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 16.17561, !- + 16.17561, !- + 16.17561, !- + 16.00656, !- + 16.00656, !- + 16.00656, !- + 15.83751, !- + 15.83751, !- + 15.83751, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.27622, !- + 17.27622, !- + 17.27622, !- + 17.10717, !- + 17.10717, !- + 17.10717, !- + 16.93812, !- + 16.93812, !- + 16.93812, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 17.40604, !- + 17.40604, !- + 17.40604, !- + 17.23699, !- + 17.23699, !- + 17.23699, !- + 17.06794, !- + 17.06794, !- + 17.06794, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 18.67096, !- + 18.67096, !- + 18.67096, !- + 18.50192, !- + 18.50192, !- + 18.50192, !- + 18.33287, !- + 18.33287, !- + 18.33287, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.48147, !- + 19.48147, !- + 19.48147, !- + 19.31242, !- + 19.31242, !- + 19.31242, !- + 19.14338, !- + 19.14338, !- + 19.14338, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 19.77588, !- + 19.77588, !- + 19.77588, !- + 19.60684, !- + 19.60684, !- + 19.60684, !- + 19.43779, !- + 19.43779, !- + 19.43779, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 20.87621, !- + 20.87621, !- + 20.87621, !- + 20.70716, !- + 20.70716, !- + 20.70716, !- + 20.53812, !- + 20.53812, !- + 20.53812, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 21.00620, !- + 21.00620, !- + 21.00620, !- + 20.83716, !- + 20.83716, !- + 20.83716, !- + 20.66811, !- + 20.66811, !- + 20.66811, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 22.27095, !- + 22.27095, !- + 22.27095, !- + 22.10191, !- + 22.10191, !- + 22.10191, !- + 21.93286, !- + 21.93286, !- + 21.93286, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.08199, !- + 23.08199, !- + 23.08199, !- + 22.91294, !- + 22.91294, !- + 22.91294, !- + 22.74390, !- + 22.74390, !- + 22.74390, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 23.37642, !- + 23.37642, !- + 23.37642, !- + 23.20737, !- + 23.20737, !- + 23.20737, !- + 23.03833, !- + 23.03833, !- + 23.03833, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.47621, !- + 24.47621, !- + 24.47621, !- + 24.30716, !- + 24.30716, !- + 24.30716, !- + 24.13811, !- + 24.13811, !- + 24.13811, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 24.60632, !- + 24.60632, !- + 24.60632, !- + 24.43727, !- + 24.43727, !- + 24.43727, !- + 24.26823, !- + 24.26823, !- + 24.26823, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285, !- + 25.87095, !- + 25.87095, !- + 25.87095, !- + 25.70190, !- + 25.70190, !- + 25.70190, !- + 25.53285, !- + 25.53285, !- + 25.53285; !- Table:Lookup, Mode1_wSA_lookup, !- Name @@ -4697,1220 +4712,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00526, !- Output Value 1 0.00526, !- Output Value 2 - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00526, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00523, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00520, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00603, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00599, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00888, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00885, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00922, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00919, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01250, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01247, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00519, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00513, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00596, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00589, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00881, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00878, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00911, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.00908, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01243, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01239, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.01236, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00512, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00509, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00506, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00588, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00585, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00582, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00867, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00907, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01235, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229; !- Extended Field - + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00526, !- + 0.00526, !- + 0.00526, !- + 0.00523, !- + 0.00523, !- + 0.00523, !- + 0.00520, !- + 0.00520, !- + 0.00520, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00603, !- + 0.00603, !- + 0.00603, !- + 0.00599, !- + 0.00599, !- + 0.00599, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00888, !- + 0.00888, !- + 0.00888, !- + 0.00885, !- + 0.00885, !- + 0.00885, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00922, !- + 0.00922, !- + 0.00922, !- + 0.00919, !- + 0.00919, !- + 0.00919, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01250, !- + 0.01250, !- + 0.01250, !- + 0.01247, !- + 0.01247, !- + 0.01247, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00519, !- + 0.00519, !- + 0.00519, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00513, !- + 0.00513, !- + 0.00513, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00596, !- + 0.00596, !- + 0.00596, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00589, !- + 0.00589, !- + 0.00589, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00881, !- + 0.00881, !- + 0.00881, !- + 0.00878, !- + 0.00878, !- + 0.00878, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00911, !- + 0.00911, !- + 0.00911, !- + 0.00908, !- + 0.00908, !- + 0.00908, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.01243, !- + 0.01243, !- + 0.01243, !- + 0.01239, !- + 0.01239, !- + 0.01239, !- + 0.01236, !- + 0.01236, !- + 0.01236, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00512, !- + 0.00512, !- + 0.00512, !- + 0.00509, !- + 0.00509, !- + 0.00509, !- + 0.00506, !- + 0.00506, !- + 0.00506, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00588, !- + 0.00588, !- + 0.00588, !- + 0.00585, !- + 0.00585, !- + 0.00585, !- + 0.00582, !- + 0.00582, !- + 0.00582, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00867, !- + 0.00867, !- + 0.00867, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00907, !- + 0.00907, !- + 0.00907, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01235, !- + 0.01235, !- + 0.01235, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01229, !- + 0.01229, !- + 0.01229; !- Table:Lookup, Mode1_Power_lookup, !- Name @@ -5925,1219 +5939,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 4690.20, !- Output Value 1 4690.20, !- Output Value 2 - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4690.20, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4664.95, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4639.70, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4692.86, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4667.61, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4642.36, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4702.79, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4677.53, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4652.28, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4703.96, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4678.70, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4653.46, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4715.37, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4690.12, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4664.87, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4607.88, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4582.63, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4557.38, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4610.54, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4585.29, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4560.03, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4620.46, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4595.21, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4569.96, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4621.63, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4596.38, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4571.13, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4633.04, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4607.79, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4582.54, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4525.56, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4500.31, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4475.06, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4528.22, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4502.97, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4477.72, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4538.14, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4512.89, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4487.64, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4539.31, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4514.06, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4488.81, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4550.72, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4525.47, !- Extended Field - 4500.22, !- Extended Field - 4500.22, !- Extended Field - 4500.22; !- Extended Field + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4690.20, !- + 4690.20, !- + 4690.20, !- + 4664.95, !- + 4664.95, !- + 4664.95, !- + 4639.70, !- + 4639.70, !- + 4639.70, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4692.86, !- + 4692.86, !- + 4692.86, !- + 4667.61, !- + 4667.61, !- + 4667.61, !- + 4642.36, !- + 4642.36, !- + 4642.36, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4702.79, !- + 4702.79, !- + 4702.79, !- + 4677.53, !- + 4677.53, !- + 4677.53, !- + 4652.28, !- + 4652.28, !- + 4652.28, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4703.96, !- + 4703.96, !- + 4703.96, !- + 4678.70, !- + 4678.70, !- + 4678.70, !- + 4653.46, !- + 4653.46, !- + 4653.46, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4715.37, !- + 4715.37, !- + 4715.37, !- + 4690.12, !- + 4690.12, !- + 4690.12, !- + 4664.87, !- + 4664.87, !- + 4664.87, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4607.88, !- + 4607.88, !- + 4607.88, !- + 4582.63, !- + 4582.63, !- + 4582.63, !- + 4557.38, !- + 4557.38, !- + 4557.38, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4610.54, !- + 4610.54, !- + 4610.54, !- + 4585.29, !- + 4585.29, !- + 4585.29, !- + 4560.03, !- + 4560.03, !- + 4560.03, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4620.46, !- + 4620.46, !- + 4620.46, !- + 4595.21, !- + 4595.21, !- + 4595.21, !- + 4569.96, !- + 4569.96, !- + 4569.96, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4621.63, !- + 4621.63, !- + 4621.63, !- + 4596.38, !- + 4596.38, !- + 4596.38, !- + 4571.13, !- + 4571.13, !- + 4571.13, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4633.04, !- + 4633.04, !- + 4633.04, !- + 4607.79, !- + 4607.79, !- + 4607.79, !- + 4582.54, !- + 4582.54, !- + 4582.54, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4525.56, !- + 4525.56, !- + 4525.56, !- + 4500.31, !- + 4500.31, !- + 4500.31, !- + 4475.06, !- + 4475.06, !- + 4475.06, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4528.22, !- + 4528.22, !- + 4528.22, !- + 4502.97, !- + 4502.97, !- + 4502.97, !- + 4477.72, !- + 4477.72, !- + 4477.72, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4538.14, !- + 4538.14, !- + 4538.14, !- + 4512.89, !- + 4512.89, !- + 4512.89, !- + 4487.64, !- + 4487.64, !- + 4487.64, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4539.31, !- + 4539.31, !- + 4539.31, !- + 4514.06, !- + 4514.06, !- + 4514.06, !- + 4488.81, !- + 4488.81, !- + 4488.81, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22, !- + 4550.72, !- + 4550.72, !- + 4550.72, !- + 4525.47, !- + 4525.47, !- + 4525.47, !- + 4500.22, !- + 4500.22, !- + 4500.22; !- Table:Lookup, Mode1_FanPower_lookup, !- Name @@ -7152,1220 +7166,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3250.00, !- Output Value 1 3250.00, !- Output Value 2 - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00; !- Extended Field - + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00; !- Table:Lookup, Mode1_water_lookup, !- Name @@ -8380,1220 +8393,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 20.90173, !- Output Value 1 20.90173, !- Output Value 2 - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 20.90173, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 47.16504, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836, !- Extended Field - 73.42836; !- Extended Field - + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 20.90173, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 47.16504, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836, !- + 73.42836; !- Table:IndependentVariable, Mode2_Toa, !- Name @@ -9608,7 +9620,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 23.33300, !- Value 1 26.94450, !- Value 2 - 30.55600; !- Extended Field + 30.55600; !- Table:IndependentVariable, Mode2_Woa, !- Name @@ -9623,9 +9635,9 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00787, !- Value 1 0.00818, !- Value 2 - 0.00893, !- Extended Field - 0.00922, !- Extended Field - 0.01057; !- Extended Field + 0.00893, !- + 0.00922, !- + 0.01057; !- Table:IndependentVariable, Mode2_Tra, !- Name @@ -9640,7 +9652,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode2_Wra, !- Name @@ -9655,7 +9667,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode2_Ma, !- Name @@ -9670,7 +9682,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 2.24150, !- Value 1 2.47525, !- Value 2 - 2.70900; !- Extended Field + 2.70900; !- Table:IndependentVariable, Mode2_OAF, !- Name @@ -9685,16 +9697,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariableList, Mode2_IndependentVariableList, !- Name Mode2_Toa, !- Independent Variable 1 Name Mode2_Woa, !- Independent Variable 2 Name - Mode2_Tra, !- Extended Field - Mode2_Wra, !- Extended Field - Mode2_Ma, !- Extended Field - Mode2_OAF; !- Extended Field + Mode2_Tra, !- + Mode2_Wra, !- + Mode2_Ma, !- + Mode2_OAF; !- Table:Lookup, Mode2_ESP_lookup, !- Name @@ -9709,1220 +9721,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 191.66030, !- Output Value 1 191.66030, !- Output Value 2 - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 190.96555, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 235.10790, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 279.25025, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 191.66030, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 233.71840, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500; !- Extended Field - + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 190.96555, !- + 190.96555, !- + 190.96555, !- + 235.10790, !- + 235.10790, !- + 235.10790, !- + 279.25025, !- + 279.25025, !- + 279.25025, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 191.66030, !- + 191.66030, !- + 191.66030, !- + 233.71840, !- + 233.71840, !- + 233.71840, !- + 279.94500, !- + 279.94500, !- + 279.94500; !- Table:Lookup, Mode2_TSA_lookup, !- Name @@ -10937,1220 +10948,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 9.87769, !- Output Value 1 9.87769, !- Output Value 2 - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 9.87769, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 11.06818, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 12.25867, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 10.09170, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 11.28219, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 12.47268, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 10.60999, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 11.80049, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 12.99098, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 10.81006, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 12.00055, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 13.19104, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 11.74255, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 12.93304, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 14.12353, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 11.71017, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 12.90066, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 14.09115, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 11.92479, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 13.11528, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 14.30577, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 12.44247, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 13.63296, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 14.82345, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 12.64223, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 13.83272, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 15.02321, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 13.57429, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 14.76478, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 15.95527, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 13.54405, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 14.73454, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 15.92503, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 13.75865, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 14.94914, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 16.13963, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 14.27520, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 15.46569, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 16.65618, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 14.47471, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 15.66520, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 16.85569, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 15.40677, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 16.59726, !- Extended Field - 17.78775, !- Extended Field - 17.78775, !- Extended Field - 17.78775; !- Extended Field - + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 9.87769, !- + 9.87769, !- + 9.87769, !- + 11.06818, !- + 11.06818, !- + 11.06818, !- + 12.25867, !- + 12.25867, !- + 12.25867, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.09170, !- + 10.09170, !- + 10.09170, !- + 11.28219, !- + 11.28219, !- + 11.28219, !- + 12.47268, !- + 12.47268, !- + 12.47268, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.60999, !- + 10.60999, !- + 10.60999, !- + 11.80049, !- + 11.80049, !- + 11.80049, !- + 12.99098, !- + 12.99098, !- + 12.99098, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 10.81006, !- + 10.81006, !- + 10.81006, !- + 12.00055, !- + 12.00055, !- + 12.00055, !- + 13.19104, !- + 13.19104, !- + 13.19104, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.74255, !- + 11.74255, !- + 11.74255, !- + 12.93304, !- + 12.93304, !- + 12.93304, !- + 14.12353, !- + 14.12353, !- + 14.12353, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.71017, !- + 11.71017, !- + 11.71017, !- + 12.90066, !- + 12.90066, !- + 12.90066, !- + 14.09115, !- + 14.09115, !- + 14.09115, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 11.92479, !- + 11.92479, !- + 11.92479, !- + 13.11528, !- + 13.11528, !- + 13.11528, !- + 14.30577, !- + 14.30577, !- + 14.30577, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.44247, !- + 12.44247, !- + 12.44247, !- + 13.63296, !- + 13.63296, !- + 13.63296, !- + 14.82345, !- + 14.82345, !- + 14.82345, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 12.64223, !- + 12.64223, !- + 12.64223, !- + 13.83272, !- + 13.83272, !- + 13.83272, !- + 15.02321, !- + 15.02321, !- + 15.02321, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.57429, !- + 13.57429, !- + 13.57429, !- + 14.76478, !- + 14.76478, !- + 14.76478, !- + 15.95527, !- + 15.95527, !- + 15.95527, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.54405, !- + 13.54405, !- + 13.54405, !- + 14.73454, !- + 14.73454, !- + 14.73454, !- + 15.92503, !- + 15.92503, !- + 15.92503, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 13.75865, !- + 13.75865, !- + 13.75865, !- + 14.94914, !- + 14.94914, !- + 14.94914, !- + 16.13963, !- + 16.13963, !- + 16.13963, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.27520, !- + 14.27520, !- + 14.27520, !- + 15.46569, !- + 15.46569, !- + 15.46569, !- + 16.65618, !- + 16.65618, !- + 16.65618, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 14.47471, !- + 14.47471, !- + 14.47471, !- + 15.66520, !- + 15.66520, !- + 15.66520, !- + 16.85569, !- + 16.85569, !- + 16.85569, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775, !- + 15.40677, !- + 15.40677, !- + 15.40677, !- + 16.59726, !- + 16.59726, !- + 16.59726, !- + 17.78775, !- + 17.78775, !- + 17.78775; !- Table:Lookup, Mode2_wSA_lookup, !- Name @@ -12165,1219 +12175,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00622, !- Output Value 1 0.00622, !- Output Value 2 - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00622, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00661, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00700, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00652, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00691, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00730, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00802, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00752, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00791, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00882, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00921, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00960, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00655, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00694, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00733, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00685, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00724, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00763, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00835, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00785, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00863, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00915, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00954, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00993, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00688, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00728, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00718, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00757, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00797, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00790, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00868, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00818, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00896, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00948, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.00987, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026; !- Extended Field + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00622, !- + 0.00622, !- + 0.00622, !- + 0.00661, !- + 0.00661, !- + 0.00661, !- + 0.00700, !- + 0.00700, !- + 0.00700, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00652, !- + 0.00652, !- + 0.00652, !- + 0.00691, !- + 0.00691, !- + 0.00691, !- + 0.00730, !- + 0.00730, !- + 0.00730, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00802, !- + 0.00802, !- + 0.00802, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00752, !- + 0.00752, !- + 0.00752, !- + 0.00791, !- + 0.00791, !- + 0.00791, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00882, !- + 0.00882, !- + 0.00882, !- + 0.00921, !- + 0.00921, !- + 0.00921, !- + 0.00960, !- + 0.00960, !- + 0.00960, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00655, !- + 0.00655, !- + 0.00655, !- + 0.00694, !- + 0.00694, !- + 0.00694, !- + 0.00733, !- + 0.00733, !- + 0.00733, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00685, !- + 0.00685, !- + 0.00685, !- + 0.00724, !- + 0.00724, !- + 0.00724, !- + 0.00763, !- + 0.00763, !- + 0.00763, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00835, !- + 0.00835, !- + 0.00835, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00785, !- + 0.00785, !- + 0.00785, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00863, !- + 0.00863, !- + 0.00863, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00915, !- + 0.00915, !- + 0.00915, !- + 0.00954, !- + 0.00954, !- + 0.00954, !- + 0.00993, !- + 0.00993, !- + 0.00993, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00688, !- + 0.00688, !- + 0.00688, !- + 0.00728, !- + 0.00728, !- + 0.00728, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00718, !- + 0.00718, !- + 0.00718, !- + 0.00757, !- + 0.00757, !- + 0.00757, !- + 0.00797, !- + 0.00797, !- + 0.00797, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00790, !- + 0.00790, !- + 0.00790, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00868, !- + 0.00868, !- + 0.00868, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00818, !- + 0.00818, !- + 0.00818, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00896, !- + 0.00896, !- + 0.00896, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.00948, !- + 0.00948, !- + 0.00948, !- + 0.00987, !- + 0.00987, !- + 0.00987, !- + 0.01026, !- + 0.01026, !- + 0.01026; !- Table:Lookup, Mode2_Power_lookup, !- Name @@ -13392,1220 +13402,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 12158.43, !- Output Value 1 12158.43, !- Output Value 2 - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 12158.43, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 10757.74, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 9357.05, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 12090.26, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 10689.57, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 9288.89, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 11925.17, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 10524.48, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 9123.79, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 11861.44, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 10460.75, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 9060.06, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 11564.41, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 10163.73, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 8763.04, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 11677.57, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 10276.88, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 8876.19, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 11609.21, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 10208.52, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 8807.83, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 11444.31, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 10043.62, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 8642.93, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 11380.68, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 9979.99, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 8579.30, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 11083.79, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 9683.10, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 8282.41, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 11196.27, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 9795.58, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 8394.89, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 11127.91, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 9727.22, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 8326.53, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 10963.37, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 9562.69, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 8162.00, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 10899.82, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 9499.14, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 8098.45, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 10602.93, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 9202.24, !- Extended Field - 7801.56, !- Extended Field - 7801.56, !- Extended Field - 7801.56; !- Extended Field - + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12158.43, !- + 12158.43, !- + 12158.43, !- + 10757.74, !- + 10757.74, !- + 10757.74, !- + 9357.05, !- + 9357.05, !- + 9357.05, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 12090.26, !- + 12090.26, !- + 12090.26, !- + 10689.57, !- + 10689.57, !- + 10689.57, !- + 9288.89, !- + 9288.89, !- + 9288.89, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11925.17, !- + 11925.17, !- + 11925.17, !- + 10524.48, !- + 10524.48, !- + 10524.48, !- + 9123.79, !- + 9123.79, !- + 9123.79, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11861.44, !- + 11861.44, !- + 11861.44, !- + 10460.75, !- + 10460.75, !- + 10460.75, !- + 9060.06, !- + 9060.06, !- + 9060.06, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11564.41, !- + 11564.41, !- + 11564.41, !- + 10163.73, !- + 10163.73, !- + 10163.73, !- + 8763.04, !- + 8763.04, !- + 8763.04, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11677.57, !- + 11677.57, !- + 11677.57, !- + 10276.88, !- + 10276.88, !- + 10276.88, !- + 8876.19, !- + 8876.19, !- + 8876.19, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11609.21, !- + 11609.21, !- + 11609.21, !- + 10208.52, !- + 10208.52, !- + 10208.52, !- + 8807.83, !- + 8807.83, !- + 8807.83, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11444.31, !- + 11444.31, !- + 11444.31, !- + 10043.62, !- + 10043.62, !- + 10043.62, !- + 8642.93, !- + 8642.93, !- + 8642.93, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11380.68, !- + 11380.68, !- + 11380.68, !- + 9979.99, !- + 9979.99, !- + 9979.99, !- + 8579.30, !- + 8579.30, !- + 8579.30, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11083.79, !- + 11083.79, !- + 11083.79, !- + 9683.10, !- + 9683.10, !- + 9683.10, !- + 8282.41, !- + 8282.41, !- + 8282.41, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11196.27, !- + 11196.27, !- + 11196.27, !- + 9795.58, !- + 9795.58, !- + 9795.58, !- + 8394.89, !- + 8394.89, !- + 8394.89, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 11127.91, !- + 11127.91, !- + 11127.91, !- + 9727.22, !- + 9727.22, !- + 9727.22, !- + 8326.53, !- + 8326.53, !- + 8326.53, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10963.37, !- + 10963.37, !- + 10963.37, !- + 9562.69, !- + 9562.69, !- + 9562.69, !- + 8162.00, !- + 8162.00, !- + 8162.00, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10899.82, !- + 10899.82, !- + 10899.82, !- + 9499.14, !- + 9499.14, !- + 9499.14, !- + 8098.45, !- + 8098.45, !- + 8098.45, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56, !- + 10602.93, !- + 10602.93, !- + 10602.93, !- + 9202.24, !- + 9202.24, !- + 9202.24, !- + 7801.56, !- + 7801.56, !- + 7801.56; !- Table:Lookup, Mode2_FanPower_lookup, !- Name @@ -14620,1220 +14629,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3250.00, !- Output Value 1 3250.00, !- Output Value 2 - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00; !- Extended Field - + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00; !- Table:Lookup, Mode2_water_lookup, !- Name @@ -15848,1220 +15856,1219 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 39.82115, !- Output Value 1 39.82115, !- Output Value 2 - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 39.82115, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 53.47845, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575, !- Extended Field - 67.13575; !- Extended Field - + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 39.82115, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 53.47845, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575, !- + 67.13575; !- Table:IndependentVariable, Mode3_Toa, !- Name @@ -17076,7 +17083,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 26.10000, !- Value 1 30.50000, !- Value 2 - 34.90000; !- Extended Field + 34.90000; !- Table:IndependentVariable, Mode3_Woa, !- Name @@ -17091,8 +17098,8 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00619, !- Value 1 0.00921, !- Value 2 - 0.01038, !- Extended Field - 0.01222; !- Extended Field + 0.01038, !- + 0.01222; !- Table:IndependentVariable, Mode3_Tra, !- Name @@ -17107,7 +17114,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode3_Wra, !- Name @@ -17122,7 +17129,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode3_Ma, !- Name @@ -17137,7 +17144,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 2.14570, !- Value 1 2.41788, !- Value 2 - 2.69005; !- Extended Field + 2.69005; !- Table:IndependentVariable, Mode3_OAF, !- Name @@ -17152,16 +17159,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariableList, Mode3_IndependentVariableList, !- Name Mode3_Toa, !- Independent Variable 1 Name Mode3_Woa, !- Independent Variable 2 Name - Mode3_Tra, !- Extended Field - Mode3_Wra, !- Extended Field - Mode3_Ma, !- Extended Field - Mode3_OAF; !- Extended Field + Mode3_Tra, !- + Mode3_Wra, !- + Mode3_Ma, !- + Mode3_OAF; !- Table:Lookup, Mode3_ESP_lookup, !- Name @@ -17176,977 +17183,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 178.11070, !- Output Value 1 178.11070, !- Output Value 2 - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 177.15543, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 228.07258, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 278.98973, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 178.11070, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 226.16203, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500; !- Extended Field - + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 177.15543, !- + 177.15543, !- + 177.15543, !- + 228.07258, !- + 228.07258, !- + 228.07258, !- + 278.98973, !- + 278.98973, !- + 278.98973, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 178.11070, !- + 178.11070, !- + 178.11070, !- + 226.16203, !- + 226.16203, !- + 226.16203, !- + 279.94500, !- + 279.94500, !- + 279.94500; !- Table:Lookup, Mode3_TSA_lookup, !- Name @@ -18161,976 +18167,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 9.70676, !- Output Value 1 9.70676, !- Output Value 2 - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.70676, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.57990, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 9.45304, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.40253, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.27567, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 12.14881, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.45641, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.32955, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 13.20269, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 15.09793, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.97108, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 14.84422, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.94353, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.81667, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 10.68981, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.63930, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.51244, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 13.38558, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.68884, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.56199, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 14.43513, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.33507, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.20821, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 16.08135, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.18029, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 12.05344, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 11.92658, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.87606, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.74921, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 14.62235, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.92505, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.79819, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 15.67133, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.57183, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.44498, !- Extended Field - 17.31812, !- Extended Field - 17.31812, !- Extended Field - 17.31812; !- Extended Field + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 9.70676, !- + 9.70676, !- + 9.70676, !- + 9.57990, !- + 9.57990, !- + 9.57990, !- + 9.45304, !- + 9.45304, !- + 9.45304, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 12.40253, !- + 12.40253, !- + 12.40253, !- + 12.27567, !- + 12.27567, !- + 12.27567, !- + 12.14881, !- + 12.14881, !- + 12.14881, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 13.45641, !- + 13.45641, !- + 13.45641, !- + 13.32955, !- + 13.32955, !- + 13.32955, !- + 13.20269, !- + 13.20269, !- + 13.20269, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 15.09793, !- + 15.09793, !- + 15.09793, !- + 14.97108, !- + 14.97108, !- + 14.97108, !- + 14.84422, !- + 14.84422, !- + 14.84422, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 10.94353, !- + 10.94353, !- + 10.94353, !- + 10.81667, !- + 10.81667, !- + 10.81667, !- + 10.68981, !- + 10.68981, !- + 10.68981, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 13.63930, !- + 13.63930, !- + 13.63930, !- + 13.51244, !- + 13.51244, !- + 13.51244, !- + 13.38558, !- + 13.38558, !- + 13.38558, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 14.68884, !- + 14.68884, !- + 14.68884, !- + 14.56199, !- + 14.56199, !- + 14.56199, !- + 14.43513, !- + 14.43513, !- + 14.43513, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 16.33507, !- + 16.33507, !- + 16.33507, !- + 16.20821, !- + 16.20821, !- + 16.20821, !- + 16.08135, !- + 16.08135, !- + 16.08135, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 12.18029, !- + 12.18029, !- + 12.18029, !- + 12.05344, !- + 12.05344, !- + 12.05344, !- + 11.92658, !- + 11.92658, !- + 11.92658, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 14.87606, !- + 14.87606, !- + 14.87606, !- + 14.74921, !- + 14.74921, !- + 14.74921, !- + 14.62235, !- + 14.62235, !- + 14.62235, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 15.92505, !- + 15.92505, !- + 15.92505, !- + 15.79819, !- + 15.79819, !- + 15.79819, !- + 15.67133, !- + 15.67133, !- + 15.67133, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812, !- + 17.57183, !- + 17.57183, !- + 17.57183, !- + 17.44498, !- + 17.44498, !- + 17.44498, !- + 17.31812, !- + 17.31812, !- + 17.31812; !- Table:Lookup, Mode3_wSA_lookup, !- Name @@ -19145,976 +19151,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00568, !- Output Value 1 0.00568, !- Output Value 2 - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00568, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00566, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00565, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00771, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00769, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00767, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00850, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00848, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00973, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00972, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00970, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00595, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00594, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00592, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00798, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00796, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00795, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00877, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00875, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.00874, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00999, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00997, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00623, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00621, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00619, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00825, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00824, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00822, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00904, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00903, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01028, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01026, !- Extended Field - 0.01025, !- Extended Field - 0.01025, !- Extended Field - 0.01025; !- Extended Field + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00568, !- + 0.00568, !- + 0.00568, !- + 0.00566, !- + 0.00566, !- + 0.00566, !- + 0.00565, !- + 0.00565, !- + 0.00565, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00771, !- + 0.00771, !- + 0.00771, !- + 0.00769, !- + 0.00769, !- + 0.00769, !- + 0.00767, !- + 0.00767, !- + 0.00767, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00850, !- + 0.00850, !- + 0.00850, !- + 0.00848, !- + 0.00848, !- + 0.00848, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00973, !- + 0.00973, !- + 0.00973, !- + 0.00972, !- + 0.00972, !- + 0.00972, !- + 0.00970, !- + 0.00970, !- + 0.00970, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00595, !- + 0.00595, !- + 0.00595, !- + 0.00594, !- + 0.00594, !- + 0.00594, !- + 0.00592, !- + 0.00592, !- + 0.00592, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00798, !- + 0.00798, !- + 0.00798, !- + 0.00796, !- + 0.00796, !- + 0.00796, !- + 0.00795, !- + 0.00795, !- + 0.00795, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.00877, !- + 0.00877, !- + 0.00877, !- + 0.00875, !- + 0.00875, !- + 0.00875, !- + 0.00874, !- + 0.00874, !- + 0.00874, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.00999, !- + 0.00999, !- + 0.00999, !- + 0.00997, !- + 0.00997, !- + 0.00997, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00623, !- + 0.00623, !- + 0.00623, !- + 0.00621, !- + 0.00621, !- + 0.00621, !- + 0.00619, !- + 0.00619, !- + 0.00619, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00825, !- + 0.00825, !- + 0.00825, !- + 0.00824, !- + 0.00824, !- + 0.00824, !- + 0.00822, !- + 0.00822, !- + 0.00822, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00904, !- + 0.00904, !- + 0.00904, !- + 0.00903, !- + 0.00903, !- + 0.00903, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025, !- + 0.01028, !- + 0.01028, !- + 0.01028, !- + 0.01026, !- + 0.01026, !- + 0.01026, !- + 0.01025, !- + 0.01025, !- + 0.01025; !- Table:Lookup, Mode3_Power_lookup, !- Name @@ -20129,977 +20135,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 10960.99, !- Output Value 1 10960.99, !- Output Value 2 - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10960.99, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10918.82, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 10876.65, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11320.44, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11278.27, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11236.10, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11460.96, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11418.79, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11376.62, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11679.84, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11637.67, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11595.50, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11297.76, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11255.59, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11213.42, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11657.21, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11615.04, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11572.87, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11797.15, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11754.98, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 11712.81, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 12016.66, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11974.49, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11932.32, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11634.52, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11592.35, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11550.18, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11993.97, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11951.80, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 11909.63, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12133.84, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12091.67, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12049.50, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12353.42, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12311.25, !- Extended Field - 12269.08, !- Extended Field - 12269.08, !- Extended Field - 12269.08; !- Extended Field - + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 10960.99, !- + 10960.99, !- + 10960.99, !- + 10918.82, !- + 10918.82, !- + 10918.82, !- + 10876.65, !- + 10876.65, !- + 10876.65, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11320.44, !- + 11320.44, !- + 11320.44, !- + 11278.27, !- + 11278.27, !- + 11278.27, !- + 11236.10, !- + 11236.10, !- + 11236.10, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11460.96, !- + 11460.96, !- + 11460.96, !- + 11418.79, !- + 11418.79, !- + 11418.79, !- + 11376.62, !- + 11376.62, !- + 11376.62, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11679.84, !- + 11679.84, !- + 11679.84, !- + 11637.67, !- + 11637.67, !- + 11637.67, !- + 11595.50, !- + 11595.50, !- + 11595.50, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11297.76, !- + 11297.76, !- + 11297.76, !- + 11255.59, !- + 11255.59, !- + 11255.59, !- + 11213.42, !- + 11213.42, !- + 11213.42, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11657.21, !- + 11657.21, !- + 11657.21, !- + 11615.04, !- + 11615.04, !- + 11615.04, !- + 11572.87, !- + 11572.87, !- + 11572.87, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 11797.15, !- + 11797.15, !- + 11797.15, !- + 11754.98, !- + 11754.98, !- + 11754.98, !- + 11712.81, !- + 11712.81, !- + 11712.81, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 12016.66, !- + 12016.66, !- + 12016.66, !- + 11974.49, !- + 11974.49, !- + 11974.49, !- + 11932.32, !- + 11932.32, !- + 11932.32, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11634.52, !- + 11634.52, !- + 11634.52, !- + 11592.35, !- + 11592.35, !- + 11592.35, !- + 11550.18, !- + 11550.18, !- + 11550.18, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 11993.97, !- + 11993.97, !- + 11993.97, !- + 11951.80, !- + 11951.80, !- + 11951.80, !- + 11909.63, !- + 11909.63, !- + 11909.63, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12133.84, !- + 12133.84, !- + 12133.84, !- + 12091.67, !- + 12091.67, !- + 12091.67, !- + 12049.50, !- + 12049.50, !- + 12049.50, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08, !- + 12353.42, !- + 12353.42, !- + 12353.42, !- + 12311.25, !- + 12311.25, !- + 12311.25, !- + 12269.08, !- + 12269.08, !- + 12269.08; !- Table:Lookup, Mode3_FanPower_lookup, !- Name @@ -21114,977 +21119,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3250.00, !- Output Value 1 3250.00, !- Output Value 2 - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00; !- Extended Field - + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00; !- Table:Lookup, Mode3_water_lookup, !- Name @@ -22099,977 +22103,976 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 50.28488, !- Output Value 1 50.28488, !- Output Value 2 - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 50.28488, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 66.92398, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308, !- Extended Field - 83.56308; !- Extended Field - + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 50.28488, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 66.92398, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308, !- + 83.56308; !- Table:IndependentVariable, Mode4_Toa, !- Name @@ -23084,7 +23087,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 14.08800, !- Value 1 18.87900, !- Value 2 - 23.67000; !- Extended Field + 23.67000; !- Table:IndependentVariable, Mode4_Woa, !- Name @@ -23099,10 +23102,10 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00482, !- Value 1 0.00516, !- Value 2 - 0.00857, !- Extended Field - 0.00901, !- Extended Field - 0.01229, !- Extended Field - 0.01232; !- Extended Field + 0.00857, !- + 0.00901, !- + 0.01229, !- + 0.01232; !- Table:IndependentVariable, Mode4_Tra, !- Name @@ -23117,7 +23120,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode4_Wra, !- Name @@ -23132,7 +23135,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode4_Ma, !- Name @@ -23147,7 +23150,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 2.12400, !- Value 1 2.50590, !- Value 2 - 2.88780; !- Extended Field + 2.88780; !- Table:IndependentVariable, Mode4_OAF, !- Name @@ -23162,16 +23165,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariableList, Mode4_IndependentVariableList, !- Name Mode4_Toa, !- Independent Variable 1 Name Mode4_Woa, !- Independent Variable 2 Name - Mode4_Tra, !- Extended Field - Mode4_Wra, !- Extended Field - Mode4_Ma, !- Extended Field - Mode4_OAF; !- Extended Field + Mode4_Tra, !- + Mode4_Wra, !- + Mode4_Ma, !- + Mode4_OAF; !- Table:Lookup, Mode4_ESP_lookup, !- Name @@ -23186,1463 +23189,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 151.44241, !- Output Value 1 151.44241, !- Output Value 2 - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 149.81042, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 214.06172, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 278.31301, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 151.44241, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 210.79775, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500; !- Extended Field - + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 149.81042, !- + 149.81042, !- + 149.81042, !- + 214.06172, !- + 214.06172, !- + 214.06172, !- + 278.31301, !- + 278.31301, !- + 278.31301, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 151.44241, !- + 151.44241, !- + 151.44241, !- + 210.79775, !- + 210.79775, !- + 210.79775, !- + 279.94500, !- + 279.94500, !- + 279.94500; !- Table:Lookup, Mode4_TSA_lookup, !- Name @@ -24657,1463 +24659,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 15.49920, !- Output Value 1 15.49920, !- Output Value 2 - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.49920, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.52686, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.55452, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.50075, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.52841, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.55607, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.51630, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.54396, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.57162, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.51832, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.54598, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.57364, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.53327, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.56093, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.58859, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.53341, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.56107, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 15.58873, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.64523, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.67289, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.70055, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.64679, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.67445, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.70211, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.66233, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.68999, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.71765, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.66434, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.69200, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.71966, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.67929, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.70695, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.73461, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.67943, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.70709, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 19.73476, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.79127, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.81893, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.84659, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.79283, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.82049, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.84815, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.80836, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.83602, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.86369, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.81037, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.83803, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.86569, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.82533, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.85299, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.88065, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.82547, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.85313, !- Extended Field - 23.88079, !- Extended Field - 23.88079, !- Extended Field - 23.88079; !- Extended Field - + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.49920, !- + 15.49920, !- + 15.49920, !- + 15.52686, !- + 15.52686, !- + 15.52686, !- + 15.55452, !- + 15.55452, !- + 15.55452, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.50075, !- + 15.50075, !- + 15.50075, !- + 15.52841, !- + 15.52841, !- + 15.52841, !- + 15.55607, !- + 15.55607, !- + 15.55607, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51630, !- + 15.51630, !- + 15.51630, !- + 15.54396, !- + 15.54396, !- + 15.54396, !- + 15.57162, !- + 15.57162, !- + 15.57162, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.51832, !- + 15.51832, !- + 15.51832, !- + 15.54598, !- + 15.54598, !- + 15.54598, !- + 15.57364, !- + 15.57364, !- + 15.57364, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53327, !- + 15.53327, !- + 15.53327, !- + 15.56093, !- + 15.56093, !- + 15.56093, !- + 15.58859, !- + 15.58859, !- + 15.58859, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 15.53341, !- + 15.53341, !- + 15.53341, !- + 15.56107, !- + 15.56107, !- + 15.56107, !- + 15.58873, !- + 15.58873, !- + 15.58873, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64523, !- + 19.64523, !- + 19.64523, !- + 19.67289, !- + 19.67289, !- + 19.67289, !- + 19.70055, !- + 19.70055, !- + 19.70055, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.64679, !- + 19.64679, !- + 19.64679, !- + 19.67445, !- + 19.67445, !- + 19.67445, !- + 19.70211, !- + 19.70211, !- + 19.70211, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66233, !- + 19.66233, !- + 19.66233, !- + 19.68999, !- + 19.68999, !- + 19.68999, !- + 19.71765, !- + 19.71765, !- + 19.71765, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.66434, !- + 19.66434, !- + 19.66434, !- + 19.69200, !- + 19.69200, !- + 19.69200, !- + 19.71966, !- + 19.71966, !- + 19.71966, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67929, !- + 19.67929, !- + 19.67929, !- + 19.70695, !- + 19.70695, !- + 19.70695, !- + 19.73461, !- + 19.73461, !- + 19.73461, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 19.67943, !- + 19.67943, !- + 19.67943, !- + 19.70709, !- + 19.70709, !- + 19.70709, !- + 19.73476, !- + 19.73476, !- + 19.73476, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79127, !- + 23.79127, !- + 23.79127, !- + 23.81893, !- + 23.81893, !- + 23.81893, !- + 23.84659, !- + 23.84659, !- + 23.84659, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.79283, !- + 23.79283, !- + 23.79283, !- + 23.82049, !- + 23.82049, !- + 23.82049, !- + 23.84815, !- + 23.84815, !- + 23.84815, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.80836, !- + 23.80836, !- + 23.80836, !- + 23.83602, !- + 23.83602, !- + 23.83602, !- + 23.86369, !- + 23.86369, !- + 23.86369, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.81037, !- + 23.81037, !- + 23.81037, !- + 23.83803, !- + 23.83803, !- + 23.83803, !- + 23.86569, !- + 23.86569, !- + 23.86569, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82533, !- + 23.82533, !- + 23.82533, !- + 23.85299, !- + 23.85299, !- + 23.85299, !- + 23.88065, !- + 23.88065, !- + 23.88065, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079, !- + 23.82547, !- + 23.82547, !- + 23.82547, !- + 23.85313, !- + 23.85313, !- + 23.85313, !- + 23.88079, !- + 23.88079, !- + 23.88079; !- Table:Lookup, Mode4_wSA_lookup, !- Name @@ -26128,1463 +26129,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00482, !- Output Value 1 0.00482, !- Output Value 2 - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00482, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00516, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00857, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.00901, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232, !- Extended Field - 0.01232; !- Extended Field - + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00482, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00516, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00857, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.00901, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232, !- + 0.01232; !- Table:Lookup, Mode4_Power_lookup, !- Name @@ -27599,1463 +27599,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3337.55, !- Output Value 1 3337.55, !- Output Value 2 - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3337.55, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3296.64, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3255.73, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3337.98, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3297.07, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3256.16, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3342.35, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3301.44, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3260.54, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3342.92, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3302.01, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3261.10, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3347.12, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3306.21, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3265.30, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3347.16, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3306.25, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3265.34, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3312.54, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3271.63, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3230.72, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3312.98, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3272.07, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3231.16, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3317.35, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3276.44, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3235.53, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3317.91, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3277.00, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3236.10, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3322.12, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3281.21, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3240.30, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3322.16, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3281.25, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3240.34, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3287.54, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3246.63, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3205.72, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3287.98, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3247.07, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3206.16, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3292.35, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3251.44, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3210.53, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3292.91, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3252.00, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3211.09, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3297.11, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3256.20, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3215.29, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3297.15, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3256.24, !- Extended Field - 3215.33, !- Extended Field - 3215.33, !- Extended Field - 3215.33; !- Extended Field - + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.55, !- + 3337.55, !- + 3337.55, !- + 3296.64, !- + 3296.64, !- + 3296.64, !- + 3255.73, !- + 3255.73, !- + 3255.73, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3337.98, !- + 3337.98, !- + 3337.98, !- + 3297.07, !- + 3297.07, !- + 3297.07, !- + 3256.16, !- + 3256.16, !- + 3256.16, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.35, !- + 3342.35, !- + 3342.35, !- + 3301.44, !- + 3301.44, !- + 3301.44, !- + 3260.54, !- + 3260.54, !- + 3260.54, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3342.92, !- + 3342.92, !- + 3342.92, !- + 3302.01, !- + 3302.01, !- + 3302.01, !- + 3261.10, !- + 3261.10, !- + 3261.10, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.12, !- + 3347.12, !- + 3347.12, !- + 3306.21, !- + 3306.21, !- + 3306.21, !- + 3265.30, !- + 3265.30, !- + 3265.30, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3347.16, !- + 3347.16, !- + 3347.16, !- + 3306.25, !- + 3306.25, !- + 3306.25, !- + 3265.34, !- + 3265.34, !- + 3265.34, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.54, !- + 3312.54, !- + 3312.54, !- + 3271.63, !- + 3271.63, !- + 3271.63, !- + 3230.72, !- + 3230.72, !- + 3230.72, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3312.98, !- + 3312.98, !- + 3312.98, !- + 3272.07, !- + 3272.07, !- + 3272.07, !- + 3231.16, !- + 3231.16, !- + 3231.16, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.35, !- + 3317.35, !- + 3317.35, !- + 3276.44, !- + 3276.44, !- + 3276.44, !- + 3235.53, !- + 3235.53, !- + 3235.53, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3317.91, !- + 3317.91, !- + 3317.91, !- + 3277.00, !- + 3277.00, !- + 3277.00, !- + 3236.10, !- + 3236.10, !- + 3236.10, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.12, !- + 3322.12, !- + 3322.12, !- + 3281.21, !- + 3281.21, !- + 3281.21, !- + 3240.30, !- + 3240.30, !- + 3240.30, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3322.16, !- + 3322.16, !- + 3322.16, !- + 3281.25, !- + 3281.25, !- + 3281.25, !- + 3240.34, !- + 3240.34, !- + 3240.34, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.54, !- + 3287.54, !- + 3287.54, !- + 3246.63, !- + 3246.63, !- + 3246.63, !- + 3205.72, !- + 3205.72, !- + 3205.72, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3287.98, !- + 3287.98, !- + 3287.98, !- + 3247.07, !- + 3247.07, !- + 3247.07, !- + 3206.16, !- + 3206.16, !- + 3206.16, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.35, !- + 3292.35, !- + 3292.35, !- + 3251.44, !- + 3251.44, !- + 3251.44, !- + 3210.53, !- + 3210.53, !- + 3210.53, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3292.91, !- + 3292.91, !- + 3292.91, !- + 3252.00, !- + 3252.00, !- + 3252.00, !- + 3211.09, !- + 3211.09, !- + 3211.09, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.11, !- + 3297.11, !- + 3297.11, !- + 3256.20, !- + 3256.20, !- + 3256.20, !- + 3215.29, !- + 3215.29, !- + 3215.29, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33, !- + 3297.15, !- + 3297.15, !- + 3297.15, !- + 3256.24, !- + 3256.24, !- + 3256.24, !- + 3215.33, !- + 3215.33, !- + 3215.33; !- Table:Lookup, Mode4_FanPower_lookup, !- Name @@ -29070,1463 +29069,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3250.00, !- Output Value 1 3250.00, !- Output Value 2 - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00; !- Extended Field - + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00; !- Table:IndependentVariable, Mode5_Toa, !- Name @@ -30541,7 +30539,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 12.11110, !- Value 1 17.33055, !- Value 2 - 22.55000; !- Extended Field + 22.55000; !- Table:IndependentVariable, Mode5_Woa, !- Name @@ -30556,10 +30554,10 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00757, !- Value 1 0.00835, !- Value 2 - 0.00851, !- Extended Field - 0.00978, !- Extended Field - 0.01176, !- Extended Field - 0.01200; !- Extended Field + 0.00851, !- + 0.00978, !- + 0.01176, !- + 0.01200; !- Table:IndependentVariable, Mode5_Tra, !- Name @@ -30574,7 +30572,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode5_Wra, !- Name @@ -30589,7 +30587,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariable, Mode5_Ma, !- Name @@ -30604,7 +30602,7 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 2.19992, !- Value 1 2.60876, !- Value 2 - 3.01760; !- Extended Field + 3.01760; !- Table:IndependentVariable, Mode5_OAF, !- Name @@ -30619,16 +30617,16 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number -100.00000, !- Value 1 0.00000, !- Value 2 - 100.00000; !- Extended Field + 100.00000; !- Table:IndependentVariableList, Mode5_IndependentVariableList, !- Name Mode5_Toa, !- Independent Variable 1 Name Mode5_Woa, !- Independent Variable 2 Name - Mode5_Tra, !- Extended Field - Mode5_Wra, !- Extended Field - Mode5_Ma, !- Extended Field - Mode5_OAF; !- Extended Field + Mode5_Tra, !- + Mode5_Wra, !- + Mode5_Ma, !- + Mode5_OAF; !- Table:Lookup, Mode5_ESP_lookup, !- Name @@ -30643,1463 +30641,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 148.78678, !- Output Value 1 148.78678, !- Output Value 2 - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 147.07388, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 212.65299, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 278.23210, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 148.78678, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 209.22719, !- Extended Field - 279.94500, !- Extended Field - 279.94500, !- Extended Field - 279.94500; !- Extended Field - + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 147.07388, !- + 147.07388, !- + 147.07388, !- + 212.65299, !- + 212.65299, !- + 212.65299, !- + 278.23210, !- + 278.23210, !- + 278.23210, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500, !- + 148.78678, !- + 148.78678, !- + 148.78678, !- + 209.22719, !- + 209.22719, !- + 209.22719, !- + 279.94500, !- + 279.94500, !- + 279.94500; !- Table:Lookup, Mode5_TSA_lookup, !- Name @@ -32114,1463 +32111,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 32.25793, !- Output Value 1 32.25793, !- Output Value 2 - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 32.25793, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 31.60828, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 30.95864, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 32.36574, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.71610, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 31.06645, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 32.38748, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.73783, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 31.08818, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 32.56202, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.91237, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 31.26272, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.83413, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 32.18448, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 31.53484, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.86712, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 32.21747, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 31.56782, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.91155, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 36.26190, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 35.61225, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 37.01915, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 36.36950, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 35.71985, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 37.04114, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 36.39149, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 35.74184, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 37.21610, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 36.56645, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 35.91680, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 37.48747, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.83782, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 36.18817, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 37.52078, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.87113, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 36.22148, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 41.56561, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.91596, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 40.26632, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.67281, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 41.02316, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 40.37351, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.69475, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 41.04510, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 40.39545, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.86971, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 41.22006, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 40.57042, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 42.14145, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 41.49180, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 40.84216, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 42.17426, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 41.52461, !- Extended Field - 40.87497, !- Extended Field - 40.87497, !- Extended Field - 40.87497; !- Extended Field - + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.25793, !- + 32.25793, !- + 32.25793, !- + 31.60828, !- + 31.60828, !- + 31.60828, !- + 30.95864, !- + 30.95864, !- + 30.95864, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.36574, !- + 32.36574, !- + 32.36574, !- + 31.71610, !- + 31.71610, !- + 31.71610, !- + 31.06645, !- + 31.06645, !- + 31.06645, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.38748, !- + 32.38748, !- + 32.38748, !- + 31.73783, !- + 31.73783, !- + 31.73783, !- + 31.08818, !- + 31.08818, !- + 31.08818, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.56202, !- + 32.56202, !- + 32.56202, !- + 31.91237, !- + 31.91237, !- + 31.91237, !- + 31.26272, !- + 31.26272, !- + 31.26272, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.83413, !- + 32.83413, !- + 32.83413, !- + 32.18448, !- + 32.18448, !- + 32.18448, !- + 31.53484, !- + 31.53484, !- + 31.53484, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 32.86712, !- + 32.86712, !- + 32.86712, !- + 32.21747, !- + 32.21747, !- + 32.21747, !- + 31.56782, !- + 31.56782, !- + 31.56782, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 36.91155, !- + 36.91155, !- + 36.91155, !- + 36.26190, !- + 36.26190, !- + 36.26190, !- + 35.61225, !- + 35.61225, !- + 35.61225, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.01915, !- + 37.01915, !- + 37.01915, !- + 36.36950, !- + 36.36950, !- + 36.36950, !- + 35.71985, !- + 35.71985, !- + 35.71985, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.04114, !- + 37.04114, !- + 37.04114, !- + 36.39149, !- + 36.39149, !- + 36.39149, !- + 35.74184, !- + 35.74184, !- + 35.74184, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.21610, !- + 37.21610, !- + 37.21610, !- + 36.56645, !- + 36.56645, !- + 36.56645, !- + 35.91680, !- + 35.91680, !- + 35.91680, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.48747, !- + 37.48747, !- + 37.48747, !- + 36.83782, !- + 36.83782, !- + 36.83782, !- + 36.18817, !- + 36.18817, !- + 36.18817, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 37.52078, !- + 37.52078, !- + 37.52078, !- + 36.87113, !- + 36.87113, !- + 36.87113, !- + 36.22148, !- + 36.22148, !- + 36.22148, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.56561, !- + 41.56561, !- + 41.56561, !- + 40.91596, !- + 40.91596, !- + 40.91596, !- + 40.26632, !- + 40.26632, !- + 40.26632, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.67281, !- + 41.67281, !- + 41.67281, !- + 41.02316, !- + 41.02316, !- + 41.02316, !- + 40.37351, !- + 40.37351, !- + 40.37351, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.69475, !- + 41.69475, !- + 41.69475, !- + 41.04510, !- + 41.04510, !- + 41.04510, !- + 40.39545, !- + 40.39545, !- + 40.39545, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 41.86971, !- + 41.86971, !- + 41.86971, !- + 41.22006, !- + 41.22006, !- + 41.22006, !- + 40.57042, !- + 40.57042, !- + 40.57042, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.14145, !- + 42.14145, !- + 42.14145, !- + 41.49180, !- + 41.49180, !- + 41.49180, !- + 40.84216, !- + 40.84216, !- + 40.84216, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497, !- + 42.17426, !- + 42.17426, !- + 42.17426, !- + 41.52461, !- + 41.52461, !- + 41.52461, !- + 40.87497, !- + 40.87497, !- + 40.87497; !- Table:Lookup, Mode5_wSA_lookup, !- Name @@ -33585,1463 +33581,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 0.00775, !- Output Value 1 0.00775, !- Output Value 2 - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00775, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00774, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00855, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00854, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00871, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.00870, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01001, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01000, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01229, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.01228, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00762, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00761, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00843, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00842, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00859, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00858, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00989, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.00988, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01192, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01191, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01217, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.01216, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00750, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00749, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00830, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00829, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00847, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00846, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00977, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.00976, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01180, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01179, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01204, !- Extended Field - 0.01203, !- Extended Field - 0.01203, !- Extended Field - 0.01203; !- Extended Field - + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00775, !- + 0.00775, !- + 0.00775, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00774, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00855, !- + 0.00854, !- + 0.00854, !- + 0.00854, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00871, !- + 0.00870, !- + 0.00870, !- + 0.00870, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01001, !- + 0.01000, !- + 0.01000, !- + 0.01000, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01229, !- + 0.01229, !- + 0.01229, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.01228, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00762, !- + 0.00761, !- + 0.00761, !- + 0.00761, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00843, !- + 0.00843, !- + 0.00843, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00842, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00859, !- + 0.00858, !- + 0.00858, !- + 0.00858, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00989, !- + 0.00988, !- + 0.00988, !- + 0.00988, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01192, !- + 0.01192, !- + 0.01192, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01191, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01217, !- + 0.01217, !- + 0.01217, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.01216, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00750, !- + 0.00749, !- + 0.00749, !- + 0.00749, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00830, !- + 0.00829, !- + 0.00829, !- + 0.00829, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00847, !- + 0.00847, !- + 0.00847, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00846, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00977, !- + 0.00976, !- + 0.00976, !- + 0.00976, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01180, !- + 0.01180, !- + 0.01180, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01179, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01204, !- + 0.01203, !- + 0.01203, !- + 0.01203; !- Table:Lookup, Mode5_Power_lookup, !- Name @@ -35056,1463 +35051,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3497.62, !- Output Value 1 3497.62, !- Output Value 2 - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3497.62, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3466.13, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3434.63, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3503.17, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3471.67, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3440.18, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3504.28, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3472.79, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3441.29, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3513.26, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3481.76, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3450.27, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3527.25, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3495.75, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3464.26, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3528.94, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3497.45, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3465.95, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3446.55, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3415.06, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3383.56, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3452.08, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3420.59, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3389.10, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3453.22, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3421.72, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3390.23, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3462.21, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3430.72, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3399.22, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3476.16, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3444.67, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3413.17, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3477.87, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3446.38, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3414.89, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3395.51, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3364.01, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3332.52, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3401.02, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3369.52, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3338.03, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3402.14, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3370.65, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3339.16, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3411.14, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3379.65, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3348.15, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3425.11, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3393.62, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3362.12, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3426.80, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3395.30, !- Extended Field - 3363.81, !- Extended Field - 3363.81, !- Extended Field - 3363.81; !- Extended Field - + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3497.62, !- + 3497.62, !- + 3497.62, !- + 3466.13, !- + 3466.13, !- + 3466.13, !- + 3434.63, !- + 3434.63, !- + 3434.63, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3503.17, !- + 3503.17, !- + 3503.17, !- + 3471.67, !- + 3471.67, !- + 3471.67, !- + 3440.18, !- + 3440.18, !- + 3440.18, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3504.28, !- + 3504.28, !- + 3504.28, !- + 3472.79, !- + 3472.79, !- + 3472.79, !- + 3441.29, !- + 3441.29, !- + 3441.29, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3513.26, !- + 3513.26, !- + 3513.26, !- + 3481.76, !- + 3481.76, !- + 3481.76, !- + 3450.27, !- + 3450.27, !- + 3450.27, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3527.25, !- + 3527.25, !- + 3527.25, !- + 3495.75, !- + 3495.75, !- + 3495.75, !- + 3464.26, !- + 3464.26, !- + 3464.26, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3528.94, !- + 3528.94, !- + 3528.94, !- + 3497.45, !- + 3497.45, !- + 3497.45, !- + 3465.95, !- + 3465.95, !- + 3465.95, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3446.55, !- + 3446.55, !- + 3446.55, !- + 3415.06, !- + 3415.06, !- + 3415.06, !- + 3383.56, !- + 3383.56, !- + 3383.56, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3452.08, !- + 3452.08, !- + 3452.08, !- + 3420.59, !- + 3420.59, !- + 3420.59, !- + 3389.10, !- + 3389.10, !- + 3389.10, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3453.22, !- + 3453.22, !- + 3453.22, !- + 3421.72, !- + 3421.72, !- + 3421.72, !- + 3390.23, !- + 3390.23, !- + 3390.23, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3462.21, !- + 3462.21, !- + 3462.21, !- + 3430.72, !- + 3430.72, !- + 3430.72, !- + 3399.22, !- + 3399.22, !- + 3399.22, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3476.16, !- + 3476.16, !- + 3476.16, !- + 3444.67, !- + 3444.67, !- + 3444.67, !- + 3413.17, !- + 3413.17, !- + 3413.17, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3477.87, !- + 3477.87, !- + 3477.87, !- + 3446.38, !- + 3446.38, !- + 3446.38, !- + 3414.89, !- + 3414.89, !- + 3414.89, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3395.51, !- + 3395.51, !- + 3395.51, !- + 3364.01, !- + 3364.01, !- + 3364.01, !- + 3332.52, !- + 3332.52, !- + 3332.52, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3401.02, !- + 3401.02, !- + 3401.02, !- + 3369.52, !- + 3369.52, !- + 3369.52, !- + 3338.03, !- + 3338.03, !- + 3338.03, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3402.14, !- + 3402.14, !- + 3402.14, !- + 3370.65, !- + 3370.65, !- + 3370.65, !- + 3339.16, !- + 3339.16, !- + 3339.16, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3411.14, !- + 3411.14, !- + 3411.14, !- + 3379.65, !- + 3379.65, !- + 3379.65, !- + 3348.15, !- + 3348.15, !- + 3348.15, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3425.11, !- + 3425.11, !- + 3425.11, !- + 3393.62, !- + 3393.62, !- + 3393.62, !- + 3362.12, !- + 3362.12, !- + 3362.12, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81, !- + 3426.80, !- + 3426.80, !- + 3426.80, !- + 3395.30, !- + 3395.30, !- + 3395.30, !- + 3363.81, !- + 3363.81, !- + 3363.81; !- Table:Lookup, Mode5_FanPower_lookup, !- Name @@ -36527,1463 +36521,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 3250.00, !- Output Value 1 3250.00, !- Output Value 2 - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00, !- Extended Field - 3250.00; !- Extended Field - + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00, !- + 3250.00; !- Table:Lookup, Mode5_2ndFuel_lookup, !- Name @@ -37998,1462 +37991,1462 @@ ZoneHVAC:HybridUnitaryHVAC, , !- External File Starting Row Number 52.40363, !- Output Value 1 52.40363, !- Output Value 2 - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 52.40363, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 60.13861, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 67.24552, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 52.68406, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 60.47115, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 67.63018, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 52.84527, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 60.32884, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 67.81240, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 53.29926, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 60.86720, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 68.43513, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 54.00706, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 61.70653, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 69.40601, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 54.09285, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 61.80827, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 69.52369, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 50.93185, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 58.39331, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 65.22670, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 51.31641, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 58.51585, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 65.71529, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 51.37360, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 58.58367, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 65.79374, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 51.72401, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 59.33269, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 66.31329, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 52.42988, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 60.16973, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 67.28152, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 52.62118, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 60.06310, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 67.50502, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 49.56591, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 56.44003, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 63.31416, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 49.84474, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 56.77068, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 63.69662, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 49.79713, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 57.04771, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 63.67022, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 50.25223, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 57.58738, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 64.29447, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 51.06372, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 58.21620, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 65.36868, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 51.04439, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 58.52676, !- Extended Field - 65.38107, !- Extended Field - 65.38107, !- Extended Field - 65.38107; !- Extended Field + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.40363, !- + 52.40363, !- + 52.40363, !- + 60.13861, !- + 60.13861, !- + 60.13861, !- + 67.24552, !- + 67.24552, !- + 67.24552, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.68406, !- + 52.68406, !- + 52.68406, !- + 60.47115, !- + 60.47115, !- + 60.47115, !- + 67.63018, !- + 67.63018, !- + 67.63018, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 52.84527, !- + 52.84527, !- + 52.84527, !- + 60.32884, !- + 60.32884, !- + 60.32884, !- + 67.81240, !- + 67.81240, !- + 67.81240, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 53.29926, !- + 53.29926, !- + 53.29926, !- + 60.86720, !- + 60.86720, !- + 60.86720, !- + 68.43513, !- + 68.43513, !- + 68.43513, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.00706, !- + 54.00706, !- + 54.00706, !- + 61.70653, !- + 61.70653, !- + 61.70653, !- + 69.40601, !- + 69.40601, !- + 69.40601, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 54.09285, !- + 54.09285, !- + 54.09285, !- + 61.80827, !- + 61.80827, !- + 61.80827, !- + 69.52369, !- + 69.52369, !- + 69.52369, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 50.93185, !- + 50.93185, !- + 50.93185, !- + 58.39331, !- + 58.39331, !- + 58.39331, !- + 65.22670, !- + 65.22670, !- + 65.22670, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.31641, !- + 51.31641, !- + 51.31641, !- + 58.51585, !- + 58.51585, !- + 58.51585, !- + 65.71529, !- + 65.71529, !- + 65.71529, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.37360, !- + 51.37360, !- + 51.37360, !- + 58.58367, !- + 58.58367, !- + 58.58367, !- + 65.79374, !- + 65.79374, !- + 65.79374, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 51.72401, !- + 51.72401, !- + 51.72401, !- + 59.33269, !- + 59.33269, !- + 59.33269, !- + 66.31329, !- + 66.31329, !- + 66.31329, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.42988, !- + 52.42988, !- + 52.42988, !- + 60.16973, !- + 60.16973, !- + 60.16973, !- + 67.28152, !- + 67.28152, !- + 67.28152, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 52.62118, !- + 52.62118, !- + 52.62118, !- + 60.06310, !- + 60.06310, !- + 60.06310, !- + 67.50502, !- + 67.50502, !- + 67.50502, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.56591, !- + 49.56591, !- + 49.56591, !- + 56.44003, !- + 56.44003, !- + 56.44003, !- + 63.31416, !- + 63.31416, !- + 63.31416, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.84474, !- + 49.84474, !- + 49.84474, !- + 56.77068, !- + 56.77068, !- + 56.77068, !- + 63.69662, !- + 63.69662, !- + 63.69662, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 49.79713, !- + 49.79713, !- + 49.79713, !- + 57.04771, !- + 57.04771, !- + 57.04771, !- + 63.67022, !- + 63.67022, !- + 63.67022, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 50.25223, !- + 50.25223, !- + 50.25223, !- + 57.58738, !- + 57.58738, !- + 57.58738, !- + 64.29447, !- + 64.29447, !- + 64.29447, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.06372, !- + 51.06372, !- + 51.06372, !- + 58.21620, !- + 58.21620, !- + 58.21620, !- + 65.36868, !- + 65.36868, !- + 65.36868, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107, !- + 51.04439, !- + 51.04439, !- + 51.04439, !- + 58.52676, !- + 58.52676, !- + 58.52676, !- + 65.38107, !- + 65.38107, !- + 65.38107; !- !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== @@ -39653,3 +39646,4 @@ ZoneHVAC:HybridUnitaryHVAC, Output:SQLite, SimpleAndTabular; !- Option Type + diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index d49a3efeba8..832a462a95f 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -380,6 +380,7 @@ TEST_F(EnergyPlusFixture, RoomAirInternalGains_InternalHeatGains_Check) " Wall, !- Surface Type", " PARTITION, !- Construction Name", " living_unit1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/SimAirServingZones.unit.cc b/tst/EnergyPlus/unit/SimAirServingZones.unit.cc index df9da2c50ce..334d8411ba8 100644 --- a/tst/EnergyPlus/unit/SimAirServingZones.unit.cc +++ b/tst/EnergyPlus/unit/SimAirServingZones.unit.cc @@ -1725,6 +1725,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Floor, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1741,6 +1742,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Wall, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1757,6 +1759,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Wall, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1773,6 +1776,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Wall, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1789,6 +1793,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Wall, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1805,6 +1810,7 @@ TEST_F(EnergyPlusFixture, AirLoop_ReturnFan_MinFlow) " Roof, !- Surface Type", " Concrete_and_carpet_Construction, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/SingleDuct.unit.cc b/tst/EnergyPlus/unit/SingleDuct.unit.cc index 5c845d61980..3e359611e51 100644 --- a/tst/EnergyPlus/unit/SingleDuct.unit.cc +++ b/tst/EnergyPlus/unit/SingleDuct.unit.cc @@ -977,6 +977,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -993,6 +994,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1026,6 +1028,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1042,6 +1045,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1058,6 +1062,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1114,6 +1119,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1130,6 +1136,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1146,6 +1153,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1162,6 +1170,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1178,6 +1187,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1194,6 +1204,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2180,6 +2191,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2196,6 +2208,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2212,6 +2225,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2228,6 +2242,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2244,6 +2259,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2260,6 +2276,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2320,6 +2337,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2336,6 +2354,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2352,6 +2371,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2368,6 +2388,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2384,6 +2405,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2400,6 +2422,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space2, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/SolarShading.unit.cc b/tst/EnergyPlus/unit/SolarShading.unit.cc index fcd145a8995..9d1c818a5ea 100644 --- a/tst/EnergyPlus/unit/SolarShading.unit.cc +++ b/tst/EnergyPlus/unit/SolarShading.unit.cc @@ -472,6 +472,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Wall, !- Surface Type", " EXTWALLdemo, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -487,6 +488,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -502,6 +504,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -517,6 +520,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -532,6 +536,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -547,6 +552,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_FigureSolarBeamAtTimestep) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -855,6 +861,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Wall, !- Surface Type", " EXTWALLdemo, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -870,6 +877,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -885,6 +893,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -900,6 +909,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -915,6 +925,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -943,6 +954,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_ExternalShadingIO) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1269,6 +1281,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Wall, !- Surface Type", " EXTWALLdemo, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1284,6 +1297,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1299,6 +1313,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1314,6 +1329,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1329,6 +1345,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1351,6 +1368,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_DisableGroupSelfShading) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1646,6 +1664,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Wall, !- Surface Type", " EXTWALLdemo, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1661,6 +1680,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1676,6 +1696,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1691,6 +1712,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Wall, !- Surface Type", " EXTWALL09, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1706,6 +1728,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1721,6 +1744,7 @@ TEST_F(EnergyPlusFixture, SolarShadingTest_PolygonClippingDirect) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1991,6 +2015,7 @@ BuildingSurface:Detailed, Floor, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2007,6 +2032,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2025,6 +2051,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2043,6 +2070,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2059,6 +2087,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2075,6 +2104,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2091,6 +2121,7 @@ BuildingSurface:Detailed, Roof, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2107,6 +2138,7 @@ BuildingSurface:Detailed, Roof, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2303,6 +2335,7 @@ BuildingSurface:Detailed, Floor, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2319,6 +2352,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2337,6 +2371,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2355,6 +2390,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2371,6 +2407,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2387,6 +2424,7 @@ BuildingSurface:Detailed, Wall, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2403,6 +2441,7 @@ BuildingSurface:Detailed, Roof, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2419,6 +2458,7 @@ BuildingSurface:Detailed, Roof, !- Surface Type Exterior Wall, !- Construction Name Zone A, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure diff --git a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc index 99dbb5f4556..73ebf8a9ee4 100644 --- a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc +++ b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc @@ -233,6 +233,7 @@ TEST_F(EnergyPlusFixture, DataSurfaces_SurfaceShape) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -248,6 +249,7 @@ TEST_F(EnergyPlusFixture, DataSurfaces_SurfaceShape) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -272,6 +274,7 @@ TEST_F(EnergyPlusFixture, DataSurfaces_SurfaceShape) " Wall, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -368,6 +371,7 @@ TEST_F(EnergyPlusFixture, DataSurfaces_SurfaceShape) " Floor, !- Surface Type", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name", " Zone1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -634,6 +638,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_MakeMirrorSurface) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -840,6 +845,7 @@ TEST_F(EnergyPlusFixture, MakeEquivalentRectangle) " Wall, !- Surface Type ", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name ", " ZoneExample, !- Zone Name ", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure ", @@ -856,6 +862,7 @@ TEST_F(EnergyPlusFixture, MakeEquivalentRectangle) " Floor, !- Surface Type ", " ExtSlabCarpet 4in ClimateZone 1-8, !- Construction Name ", " ZoneExample, !- Zone Name ", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition ", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure ", @@ -2954,6 +2961,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_VertexNumberMismatchTest) " Floor, !- Surface Type", " Typical, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " 006W27_Restrooms - RoofCeiling : a, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2971,6 +2979,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_VertexNumberMismatchTest) " Ceiling, !- Surface Type", " Typical, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " 016W88_WaterMeter - Floor : a, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3738,6 +3747,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_HeatTransferAlgorithmTest) " Ceiling, !- Surface Type", " Project semi-exposed ceiling, !- Construction Name", " DATATELCOM, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1_Floor_4_0_10000, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3762,6 +3772,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_HeatTransferAlgorithmTest) " Floor, !- Surface Type", " Project semi-exposed ceiling_Rev, !- Construction Name", " ZONE1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " DATATELCOM_Ceiling_1_0_0, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3786,6 +3797,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_HeatTransferAlgorithmTest) " Floor, !- Surface Type", " Project semi-exposed ceiling_Rev, !- Construction Name", " ZONE1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3810,6 +3822,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_HeatTransferAlgorithmTest) " Floor, !- Surface Type", " Project semi-exposed ceiling_Rev, !- Construction Name", " ZONE1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3970,6 +3983,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_SurfaceReferencesNonExistingSurface) " Wall, !- Surface Type", " Typical, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface B, !- Outside Boundary Condition Object", // Surface B doesn't exist! " NoSun, !- Sun Exposure", @@ -4291,6 +4305,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_InternalMassSurfacesCount) " GFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_GF, !- Zone or ZoneList Name", + " , !- Space Name", " 88.249272671219; !- Surface Area {m2}", " ZoneList,", @@ -4308,6 +4323,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_InternalMassSurfacesCount) " MFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_MF, !- Zone or ZoneList Name", + " , !- Space Name", " 176.498545342438; !- Surface Area {m2}", " ZoneList,", @@ -4325,6 +4341,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_InternalMassSurfacesCount) " TFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_TF, !- Zone or ZoneList Name", + " , !- Space Name", " 88.249272671219; !- Surface Area {m2}", " ZoneList,", @@ -4629,6 +4646,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_CreateInternalMassSurfaces) " GFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_GF, !- Zone or ZoneList Name", + " , !- Space Name", " 88.249272671219; !- Surface Area {m2}", " ZoneList,", @@ -4646,6 +4664,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_CreateInternalMassSurfaces) " MFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_MF, !- Zone or ZoneList Name", + " , !- Space Name", " 176.498545342438; !- Surface Area {m2}", " ZoneList,", @@ -4663,6 +4682,7 @@ TEST_F(EnergyPlusFixture, SurfaceGeometry_CreateInternalMassSurfaces) " TFloorZonesIntMass, !- Name", " InteriorFurnishings, !- Construction Name", " IntMassZoneList_TF, !- Zone or ZoneList Name", + " , !- Space Name", " 88.249272671219; !- Surface Area {m2}", " ZoneList,", @@ -5052,6 +5072,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5068,6 +5089,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5084,6 +5106,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5100,6 +5123,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5187,6 +5211,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5203,6 +5228,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5219,6 +5245,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5235,6 +5262,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5251,6 +5279,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5267,6 +5296,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5283,6 +5313,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5368,6 +5399,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5384,6 +5416,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5400,6 +5433,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5416,6 +5450,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5432,6 +5467,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5448,6 +5484,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5464,6 +5501,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5589,6 +5627,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5605,6 +5644,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5621,6 +5661,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5637,6 +5678,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5653,6 +5695,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone4-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5669,6 +5712,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5685,6 +5729,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone5-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5701,6 +5746,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 5, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone4-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5717,6 +5763,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone5-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5733,6 +5780,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 5, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5749,6 +5797,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5765,6 +5814,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5781,6 +5831,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5797,6 +5848,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 4, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5813,6 +5865,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 5, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6182,6 +6235,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6198,6 +6252,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6214,6 +6269,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6230,6 +6286,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " Wall, !- Surface Type", " EXTWALL:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6246,6 +6303,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " INTERIORWall, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Interior, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6262,6 +6320,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " INTERIORWall, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Interior, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6278,6 +6337,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " FLOOR, !- Surface Type", " FLOOR:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6294,6 +6354,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " CEILING, !- Surface Type", " CEILING:LIVING, !- Construction Name", " LIVING ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic:LivingFloor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6310,6 +6371,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " FLOOR, !- Surface Type", " reverseCEILING:LIVING, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Living:Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6326,6 +6388,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6342,6 +6405,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6358,6 +6422,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6374,6 +6439,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6390,6 +6456,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6405,6 +6472,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6420,6 +6488,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6435,6 +6504,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6451,6 +6521,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " ROOF, !- Surface Type", " ROOF, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6467,6 +6538,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " GABLE, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6482,6 +6554,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " EXTWALL:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6498,6 +6571,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " EXTWALL:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6513,6 +6587,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " EVChargingStation, !- Name", " Garage:SteelDoor, !- Construction Name", " GARAGE ZONE, !- Zone or ZoneList Name", + " , !- Space Name", " 88.249272671219; !- Surface Area {m2}", " BuildingSurface:Detailed,", @@ -6520,6 +6595,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " WALL, !- Surface Type", " Garage:SteelDoor, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -6536,6 +6612,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " FLOOR, !- Surface Type", " CEILING:Garage, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Ceiling, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6552,6 +6629,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " CEILING, !- Surface Type", " CEILING:Garage, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Attic:GarageFloor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -6568,6 +6646,7 @@ TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) " FLOOR, !- Surface Type", " FLOOR:GARAGE, !- Construction Name", " GARAGE ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Garage:Floor, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7080,6 +7159,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7096,6 +7176,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7112,6 +7193,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) "Wall, !-Surface Type", "R13WALL, !-Construction Name", "ZONE ONE, !-Zone Name", + ", !- Space Name", "Outdoors, !-Outside Boundary Condition", ", !-Outside Boundary Condition Object", "SunExposed, !-Sun Exposure", @@ -7130,6 +7212,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7146,6 +7229,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7164,6 +7248,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7180,6 +7265,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) "Roof, !- Surface Type", "R13WALL, !- Construction Name", "ZONE ONE, !- Zone Name", + " , !- Space Name", "Outdoors, !- Outside Boundary Condition", ", !- Outside Boundary Condition Object", "SunExposed, !- Sun Exposure", @@ -7196,6 +7282,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height) "Roof, !- Surface Type", "R13WALL, !- Construction Name", "ZONE ONE, !- Zone Name", + " , !- Space Name", "Outdoors, !- Outside Boundary Condition", ", !- Outside Boundary Condition Object", "SunExposed, !- Sun Exposure", @@ -7356,6 +7443,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7372,6 +7460,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7388,6 +7477,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) "Wall, !-Surface Type", "R13WALL, !-Construction Name", "ZONE ONE, !-Zone Name", + ", !- Space Name", "Outdoors, !-Outside Boundary Condition", ", !-Outside Boundary Condition Object", "SunExposed, !-Sun Exposure", @@ -7406,6 +7496,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7422,6 +7513,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7440,6 +7532,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7456,6 +7549,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) "Roof, !- Surface Type", "R13WALL, !- Construction Name", "ZONE ONE, !- Zone Name", + " , !- Space Name", "Outdoors, !- Outside Boundary Condition", ", !- Outside Boundary Condition Object", "SunExposed, !- Sun Exposure", @@ -7472,6 +7566,7 @@ TEST_F(EnergyPlusFixture, Use_Gross_Roof_Area_for_Averge_Height_with_Window) "Roof, !- Surface Type", "R13WALL, !- Construction Name", "ZONE ONE, !- Zone Name", + " , !- Space Name", "Outdoors, !- Outside Boundary Condition", ", !- Outside Boundary Condition Object", "SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/ThermalChimney.unit.cc b/tst/EnergyPlus/unit/ThermalChimney.unit.cc index 99d47cc69d0..c9f4ba4b81d 100644 --- a/tst/EnergyPlus/unit/ThermalChimney.unit.cc +++ b/tst/EnergyPlus/unit/ThermalChimney.unit.cc @@ -522,6 +522,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -538,6 +539,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -554,6 +556,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -570,6 +573,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney IN, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -586,6 +590,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -602,6 +607,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE 1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -618,6 +624,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -634,6 +641,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -650,6 +658,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -666,6 +675,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney OUT, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -682,6 +692,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney OUT, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -698,6 +709,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -714,6 +726,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE 2, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -730,6 +743,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -746,6 +760,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -762,6 +777,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -778,6 +794,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney IN, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -794,6 +811,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -810,6 +828,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE 3, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -826,6 +845,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -842,6 +862,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -858,6 +879,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " EXTERIOR, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -874,6 +896,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney OUT, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -890,6 +913,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Wall, !- Surface Type", " ThermalChimney OUT, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -906,6 +930,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Floor, !- Surface Type", " SLAB FLOOR, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -922,6 +947,7 @@ TEST_F(EnergyPlusFixture, ThermalChimney_EMSAirflow_Test) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE 4, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/ThermalComfort.unit.cc b/tst/EnergyPlus/unit/ThermalComfort.unit.cc index f018675394d..f192b9f6c98 100644 --- a/tst/EnergyPlus/unit/ThermalComfort.unit.cc +++ b/tst/EnergyPlus/unit/ThermalComfort.unit.cc @@ -507,6 +507,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -523,6 +524,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -539,6 +541,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -555,6 +558,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -571,6 +575,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -587,6 +592,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -603,6 +609,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -619,6 +626,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -635,6 +643,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -651,6 +660,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -667,6 +677,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -683,6 +694,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1367,6 +1379,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1383,6 +1396,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1399,6 +1413,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1415,6 +1430,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1431,6 +1447,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1447,6 +1464,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Space, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1463,6 +1481,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1479,6 +1498,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1495,6 +1515,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1511,6 +1532,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1527,6 +1549,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1543,6 +1566,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger_Correct_TimeSt " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " Spacex10, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/TranspiredCollector.unit.cc b/tst/EnergyPlus/unit/TranspiredCollector.unit.cc index fd978ed4d74..815696d2b3d 100644 --- a/tst/EnergyPlus/unit/TranspiredCollector.unit.cc +++ b/tst/EnergyPlus/unit/TranspiredCollector.unit.cc @@ -125,6 +125,7 @@ TEST_F(EnergyPlusFixture, TranspiredCollectors_InitTranspiredCollectorTest) " wall, !- Surface Type", " Ext-Wall, !- Construction Name", " ZN1_S_Space_1, !- Zone Name", + " , !- Space Name", " OtherSideConditionsModel,!- Outside Boundary Condition", " UTSC OSCM 1, !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -141,6 +142,7 @@ TEST_F(EnergyPlusFixture, TranspiredCollectors_InitTranspiredCollectorTest) " wall, !- Surface Type", " Ext-Wall, !- Construction Name", " ZN1_S_Space_1, !- Zone Name", + " , !- Space Name", " OtherSideConditionsModel,!- Outside Boundary Condition", " UTSC OSCM 1, !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/UnitHeater.unit.cc b/tst/EnergyPlus/unit/UnitHeater.unit.cc index bf4cba52da5..aa383192d66 100644 --- a/tst/EnergyPlus/unit/UnitHeater.unit.cc +++ b/tst/EnergyPlus/unit/UnitHeater.unit.cc @@ -622,6 +622,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -638,6 +639,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -654,6 +656,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -670,6 +673,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -686,6 +690,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -702,6 +707,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -718,6 +724,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1516,6 +1523,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1532,6 +1540,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1548,6 +1557,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1564,6 +1574,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1580,6 +1591,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1596,6 +1608,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " Main Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/UnitarySystem.unit.cc b/tst/EnergyPlus/unit/UnitarySystem.unit.cc index 36204f5b2a6..f52f3fa2117 100644 --- a/tst/EnergyPlus/unit/UnitarySystem.unit.cc +++ b/tst/EnergyPlus/unit/UnitarySystem.unit.cc @@ -7537,6 +7537,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7553,6 +7554,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7569,6 +7571,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7585,6 +7588,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -7601,6 +7605,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -7617,6 +7622,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilSizing) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9314,6 +9320,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9330,6 +9337,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9346,6 +9354,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9362,6 +9371,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -9378,6 +9388,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -9394,6 +9405,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXHeatingCoilOnly) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -11295,6 +11307,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -11311,6 +11324,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -11327,6 +11341,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -11343,6 +11358,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Wall, !- Surface Type", " R13WALL, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -11359,6 +11375,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Floor, !- Surface Type", " FLOOR, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -11375,6 +11392,7 @@ TEST_F(EnergyPlusFixture, UnitarySystemModel_MultispeedDXCoilHeatRecoveryHandlin " Roof, !- Surface Type", " ROOF31, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13385,6 +13403,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13401,6 +13420,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13417,6 +13437,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13433,6 +13454,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -13449,6 +13471,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -13465,6 +13488,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/VentilatedSlab.unit.cc b/tst/EnergyPlus/unit/VentilatedSlab.unit.cc index e0042cb1038..b55e11b88cb 100644 --- a/tst/EnergyPlus/unit/VentilatedSlab.unit.cc +++ b/tst/EnergyPlus/unit/VentilatedSlab.unit.cc @@ -873,6 +873,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -889,6 +890,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -905,6 +907,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -921,6 +924,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -937,6 +941,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " ROOF, !- Surface Type", " ROOF-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -953,6 +958,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " reverseceiling with Radiant, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -969,6 +975,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " reverseCeiling with Radiant, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -985,6 +992,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " reverseCeiling with Radiant, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1001,6 +1009,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " reverseCeiling with Radiant, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1017,6 +1026,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " reverseceiling with Radiant, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1033,6 +1043,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1049,6 +1060,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " CEILING, !- Surface Type", " ceiling with Radiant, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1065,6 +1077,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " FLOOR-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1081,6 +1094,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB21, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1097,6 +1111,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB41, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1113,6 +1128,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB51, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1129,6 +1145,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1145,6 +1162,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " CEILING, !- Surface Type", " Ceiling with Radiant, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1161,6 +1179,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " Floor with radiant, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1177,6 +1196,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1193,6 +1213,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB32, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1209,6 +1230,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB52, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1225,6 +1247,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1241,6 +1264,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " CEILING, !- Surface Type", " Ceiling with Radiant, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1257,6 +1281,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " FLOOR-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1273,6 +1298,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB23, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1289,6 +1315,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB43, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1305,6 +1332,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB53, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1321,6 +1349,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1337,6 +1366,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " CEILING, !- Surface Type", " Ceiling with Radiant, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1353,6 +1383,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " FLOOR-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1369,6 +1400,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB14, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1385,6 +1417,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB34, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1401,6 +1434,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB54, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1417,6 +1451,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " CEILING, !- Surface Type", " ceiling with Radiant, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1433,6 +1468,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " FLOOR, !- Surface Type", " FLOOR-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1449,6 +1485,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB15, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1465,6 +1502,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB25, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1481,6 +1519,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB35, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1497,6 +1536,7 @@ TEST_F(EnergyPlusFixture, VentilatedSlab_InitVentilatedSlabTest) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB45, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/WindowAC.unit.cc b/tst/EnergyPlus/unit/WindowAC.unit.cc index 1c1c5713e73..8b0f6921f66 100644 --- a/tst/EnergyPlus/unit/WindowAC.unit.cc +++ b/tst/EnergyPlus/unit/WindowAC.unit.cc @@ -374,6 +374,7 @@ TEST_F(EnergyPlusFixture, WindowAC_VStest1) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc b/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc index 1129e055681..da03314055e 100644 --- a/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc +++ b/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc @@ -338,6 +338,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -369,6 +370,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -385,6 +387,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -401,6 +404,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -417,6 +421,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -433,6 +438,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -693,6 +699,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -724,6 +731,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -740,6 +748,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -756,6 +765,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -772,6 +782,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -788,6 +799,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1078,6 +1090,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1094,6 +1107,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1110,6 +1124,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1126,6 +1141,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1142,6 +1158,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1158,6 +1175,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapOutdoorVentedTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1402,6 +1420,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1418,6 +1437,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1434,6 +1454,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1450,6 +1471,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1466,6 +1488,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1482,6 +1505,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_AirGapIndoorVentedTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1726,6 +1750,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1742,6 +1767,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1758,6 +1784,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1774,6 +1801,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Wall, !- Surface Type", " R13WALL, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1790,6 +1818,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Floor, !- Surface Type", " FLOOR, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1806,6 +1835,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBEffectiveEmissivityTest) " Roof, !- Surface Type", " ROOF31, !- Construction Name", " ZONE ONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/WindowManager.unit.cc b/tst/EnergyPlus/unit/WindowManager.unit.cc index 8d21320cfb7..7c7e9c95f02 100644 --- a/tst/EnergyPlus/unit/WindowManager.unit.cc +++ b/tst/EnergyPlus/unit/WindowManager.unit.cc @@ -151,6 +151,7 @@ TEST_F(EnergyPlusFixture, WindowFrameTest) " Wall, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -166,6 +167,7 @@ TEST_F(EnergyPlusFixture, WindowFrameTest) " Floor, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -426,6 +428,7 @@ TEST_F(EnergyPlusFixture, WindowManager_RefAirTempTest) " Wall, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -441,6 +444,7 @@ TEST_F(EnergyPlusFixture, WindowManager_RefAirTempTest) " Floor, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1845,6 +1849,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1861,6 +1866,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1877,6 +1883,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1893,6 +1900,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1909,6 +1917,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1925,6 +1934,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -1941,6 +1951,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1957,6 +1968,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1973,6 +1985,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1989,6 +2002,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall004, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2005,6 +2019,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2021,6 +2036,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2037,6 +2053,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " EAST ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr002, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2053,6 +2070,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2069,6 +2087,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2085,6 +2104,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2101,6 +2121,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Wall003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2117,6 +2138,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Wall005, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2133,6 +2155,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Flr001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2149,6 +2172,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " CEILING, !- Surface Type", " CEILING:ZONE, !- Construction Name", " NORTH ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn004:Flr003, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2165,6 +2189,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2181,6 +2206,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2197,6 +2223,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2213,6 +2240,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2229,6 +2257,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2245,6 +2274,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2261,6 +2291,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2277,6 +2308,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Wall, !- Surface Type", " EXTWALL80, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2293,6 +2325,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2309,6 +2342,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2325,6 +2359,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Roof, !- Surface Type", " ROOF34, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2341,6 +2376,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn001:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2357,6 +2393,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn002:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2373,6 +2410,7 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " Floor, !- Surface Type", " CEILING:ATTIC, !- Construction Name", " ATTIC ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Zn003:Ceil001, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2652,6 +2690,7 @@ TEST_F(EnergyPlusFixture, WindowManager_SrdLWRTest) " Wall, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2667,6 +2706,7 @@ TEST_F(EnergyPlusFixture, WindowManager_SrdLWRTest) " Floor, !- Surface Type", " WallConstruction, !- Construction Name", " Zone, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", From 0dec20a568ba2c37f0885056d10cf23ada35f441 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 18 Jun 2021 07:39:26 -0500 Subject: [PATCH 21/98] Space - fix transition errors --- .../CreateNewIDFUsingRulesV9_6_0.f90 | 8 +++++++ testfiles/4ZoneWithShading_Simple_2.idf | 22 +++++++++-------- testfiles/HVAC3ZoneGeometry.imf | 24 ++++++++++++++++++- 3 files changed, 43 insertions(+), 11 deletions(-) diff --git a/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 b/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 index c5602e5d9db..7d7d1b4d7bd 100644 --- a/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 +++ b/src/Transition/CreateNewIDFUsingRulesV9_6_0.f90 @@ -395,6 +395,14 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile CurArgs = CurArgs + 1 ! If your original object starts with C, insert the rules here + CASE('CEILING:ADIABATIC') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff=.false. + OutArgs(1:3)=InArgs(1:3) + OutArgs(4) = '' + OutArgs(5:CurArgs+1)=InArgs(4:CurArgs) + CurArgs = CurArgs + 1 + CASE('CEILING:INTERZONE') CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) nodiff=.false. diff --git a/testfiles/4ZoneWithShading_Simple_2.idf b/testfiles/4ZoneWithShading_Simple_2.idf index 6db4e1179c8..deb411d05b1 100644 --- a/testfiles/4ZoneWithShading_Simple_2.idf +++ b/testfiles/4ZoneWithShading_Simple_2.idf @@ -638,13 +638,14 @@ Zn001:Roof001, !- Name CEILING34, !- Construction Name ZONE 1, !- Zone Name - 180, !- Space Name - 0, !- Azimuth Angle {deg} + , !- Space Name + 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} - 10, !- Starting Y Coordinate {m} - 20, !- Starting Z Coordinate {m} - 20; !- Length {m} + 0, !- Starting Y Coordinate {m} + 10, !- Starting Z Coordinate {m} + 20, !- Length {m} + 20; !- Width {m} Wall:Exterior, Zn002:Wall001, !- Name @@ -746,13 +747,14 @@ Zn002:Roof001, !- Name CEILING34, !- Construction Name ZONE 2, !- Zone Name - 180, !- Space Name - 0, !- Azimuth Angle {deg} + , !- Space Name + 180, !- Azimuth Angle {deg} 0, !- Tilt Angle {deg} 0, !- Starting X Coordinate {m} - 10, !- Starting Y Coordinate {m} - 20, !- Starting Z Coordinate {m} - 20; !- Length {m} + 0, !- Starting Y Coordinate {m} + 10, !- Starting Z Coordinate {m} + 20, !- Length {m} + 20; !- Width {m} Wall:Exterior, Zn003:Wall001, !- Name diff --git a/testfiles/HVAC3ZoneGeometry.imf b/testfiles/HVAC3ZoneGeometry.imf index 7cefcd576f9..d6343ebcd61 100644 --- a/testfiles/HVAC3ZoneGeometry.imf +++ b/testfiles/HVAC3ZoneGeometry.imf @@ -1,9 +1,11 @@ ! Version, ! 8.9; !- Version Identifier - ! Version, ! 9.0; !- Version Identifier +! Version, +! 9.6; !- Version Identifier + GlobalGeometryRules, UpperLeftCorner, !- Starting Vertex Position CounterClockWise, !- Vertex Entry Direction @@ -14,6 +16,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -45,6 +48,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -61,6 +65,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -77,6 +82,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -93,6 +99,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name West Zone, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -109,6 +116,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name West Zone, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -125,6 +133,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -141,6 +150,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -157,6 +167,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -173,6 +184,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall004, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -189,6 +201,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -205,6 +218,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -221,6 +235,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name EAST ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -237,6 +252,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -253,6 +269,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -269,6 +286,7 @@ Wall, !- Surface Type EXTWALL80, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -285,6 +303,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn001:Wall003, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -301,6 +320,7 @@ Wall, !- Surface Type PARTITION06, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn002:Wall005, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -317,6 +337,7 @@ Floor, !- Surface Type FLOOR SLAB 8 IN, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition Zn003:Flr001, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -333,6 +354,7 @@ Roof, !- Surface Type ROOF34, !- Construction Name NORTH ZONE, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure From 1777cb77ae5496f8fa6301bd4ae602797ab3edcc Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 18 Jun 2021 07:39:59 -0500 Subject: [PATCH 22/98] Space - expandobjects for GHT --- src/ExpandObjects/epfilter.f90 | 96 ++++++++++++++++++---------------- 1 file changed, 52 insertions(+), 44 deletions(-) diff --git a/src/ExpandObjects/epfilter.f90 b/src/ExpandObjects/epfilter.f90 index 88314932c1e..4c16401f611 100644 --- a/src/ExpandObjects/epfilter.f90 +++ b/src/ExpandObjects/epfilter.f90 @@ -1434,58 +1434,62 @@ PROGRAM epfilter INTEGER,PARAMETER :: buildSurfTypeOff = 2 INTEGER,PARAMETER :: buildSurfConstructionOff = 3 INTEGER,PARAMETER :: buildSurfZoneOff = 4 -INTEGER,PARAMETER :: buildSurfOutBndCondOff = 5 -INTEGER,PARAMETER :: buildSurfOutBndCondNameOff = 6 -INTEGER,PARAMETER :: buildSurfSunExpOff = 7 -INTEGER,PARAMETER :: buildSurfWindExpOff = 8 !last required field -INTEGER,PARAMETER :: buildSurfViewGroundOff = 9 -INTEGER,PARAMETER :: buildSurfNumVertOff = 10 -INTEGER,PARAMETER :: buildSurfX1Off = 11 -INTEGER,PARAMETER :: buildSurfY1Off = 12 -INTEGER,PARAMETER :: buildSurfZ1Off = 13 -INTEGER,PARAMETER :: buildSurfLastZVertexOff = 370 !up to 120 vertices +INTEGER,PARAMETER :: buildSurfSpaceOff = 5 +INTEGER,PARAMETER :: buildSurfOutBndCondOff = 6 +INTEGER,PARAMETER :: buildSurfOutBndCondNameOff = 7 +INTEGER,PARAMETER :: buildSurfSunExpOff = 8 +INTEGER,PARAMETER :: buildSurfWindExpOff = 9 !last required field +INTEGER,PARAMETER :: buildSurfViewGroundOff = 10 +INTEGER,PARAMETER :: buildSurfNumVertOff = 11 +INTEGER,PARAMETER :: buildSurfX1Off = 12 +INTEGER,PARAMETER :: buildSurfY1Off = 13 +INTEGER,PARAMETER :: buildSurfZ1Off = 14 +INTEGER,PARAMETER :: buildSurfLastZVertexOff = 371 !up to 120 vertices INTEGER,PARAMETER :: wallDetlNameOff = 1 INTEGER,PARAMETER :: wallDetlConstructionOff = 2 INTEGER,PARAMETER :: wallDetlZoneOff = 3 -INTEGER,PARAMETER :: wallDetlOutBndCondOff = 4 -INTEGER,PARAMETER :: wallDetlOutBndCondNameOff = 5 -INTEGER,PARAMETER :: wallDetlSunExpOff = 6 -INTEGER,PARAMETER :: wallDetlWindExpOff = 7 !last required field -INTEGER,PARAMETER :: wallDetlViewGroundOff = 8 -INTEGER,PARAMETER :: wallDetlNumVertOff = 9 -INTEGER,PARAMETER :: wallDetlX1Off = 10 -INTEGER,PARAMETER :: wallDetlY1Off = 11 -INTEGER,PARAMETER :: wallDetlZ1Off = 12 -INTEGER,PARAMETER :: wallDetlLastZVertexOff = 39 !up to 10 vertices +INTEGER,PARAMETER :: wallDetlSpaceOff = 4 +INTEGER,PARAMETER :: wallDetlOutBndCondOff = 5 +INTEGER,PARAMETER :: wallDetlOutBndCondNameOff = 6 +INTEGER,PARAMETER :: wallDetlSunExpOff = 7 +INTEGER,PARAMETER :: wallDetlWindExpOff = 8 !last required field +INTEGER,PARAMETER :: wallDetlViewGroundOff = 9 +INTEGER,PARAMETER :: wallDetlNumVertOff = 10 +INTEGER,PARAMETER :: wallDetlX1Off = 11 +INTEGER,PARAMETER :: wallDetlY1Off = 12 +INTEGER,PARAMETER :: wallDetlZ1Off = 13 +INTEGER,PARAMETER :: wallDetlLastZVertexOff = 40 !up to 10 vertices INTEGER,PARAMETER :: rfClDetlNameOff = 1 INTEGER,PARAMETER :: rfClDetlConstructionOff = 2 INTEGER,PARAMETER :: rfClDetlZoneOff = 3 -INTEGER,PARAMETER :: rfClDetlOutBndCondOff = 4 -INTEGER,PARAMETER :: rfClDetlOutBndCondNameOff = 5 -INTEGER,PARAMETER :: rfClDetlSunExpOff = 6 -INTEGER,PARAMETER :: rfClDetlWindExpOff = 7 !last required field -INTEGER,PARAMETER :: rfClDetlViewGroundOff = 8 -INTEGER,PARAMETER :: rfClDetlNumVertOff = 9 -INTEGER,PARAMETER :: rfClDetlX1Off = 10 -INTEGER,PARAMETER :: rfClDetlY1Off = 11 -INTEGER,PARAMETER :: rfClDetlZ1Off = 12 -INTEGER,PARAMETER :: rfClDetlLastZVertexOff = 39 !up to 10 vertices +INTEGER,PARAMETER :: rfClDetlSpaceOff = 4 +INTEGER,PARAMETER :: rfClDetlOutBndCondOff = 5 +INTEGER,PARAMETER :: rfClDetlOutBndCondNameOff = 6 +INTEGER,PARAMETER :: rfClDetlSunExpOff = 7 +INTEGER,PARAMETER :: rfClDetlWindExpOff = 8 !last required field +INTEGER,PARAMETER :: rfClDetlViewGroundOff = 9 +INTEGER,PARAMETER :: rfClDetlNumVertOff = 10 +INTEGER,PARAMETER :: rfClDetlX1Off = 11 +INTEGER,PARAMETER :: rfClDetlY1Off = 12 +INTEGER,PARAMETER :: rfClDetlZ1Off = 13 +INTEGER,PARAMETER :: rfClDetlLastZVertexOff = 40 !up to 10 vertices INTEGER,PARAMETER :: flrDetlNameOff = 1 INTEGER,PARAMETER :: flrDetlConstructionOff = 2 INTEGER,PARAMETER :: flrDetlZoneOff = 3 -INTEGER,PARAMETER :: flrDetlOutBndCondOff = 4 -INTEGER,PARAMETER :: flrDetlOutBndCondNameOff = 5 -INTEGER,PARAMETER :: flrDetlSunExpOff = 6 -INTEGER,PARAMETER :: flrDetlWindExpOff = 7 !last required field -INTEGER,PARAMETER :: flrDetlViewGroundOff = 8 -INTEGER,PARAMETER :: flrDetlNumVertOff = 9 -INTEGER,PARAMETER :: flrDetlX1Off = 10 -INTEGER,PARAMETER :: flrDetlY1Off = 11 -INTEGER,PARAMETER :: flrDetlZ1Off = 12 -INTEGER,PARAMETER :: flrDetlLastZVertexOff = 39 !up to 10 vertices +INTEGER,PARAMETER :: flrDetlSpaceOff = 4 +INTEGER,PARAMETER :: flrDetlOutBndCondOff = 5 +INTEGER,PARAMETER :: flrDetlOutBndCondNameOff = 6 +INTEGER,PARAMETER :: flrDetlSunExpOff = 7 +INTEGER,PARAMETER :: flrDetlWindExpOff = 8 !last required field +INTEGER,PARAMETER :: flrDetlViewGroundOff = 9 +INTEGER,PARAMETER :: flrDetlNumVertOff = 10 +INTEGER,PARAMETER :: flrDetlX1Off = 11 +INTEGER,PARAMETER :: flrDetlY1Off = 12 +INTEGER,PARAMETER :: flrDetlZ1Off = 13 +INTEGER,PARAMETER :: flrDetlLastZVertexOff = 40 !up to 10 vertices INTEGER,PARAMETER :: gndTempSurfJanOff = 1 INTEGER,PARAMETER :: gndTempSurfFebOff = 2 @@ -2311,10 +2315,10 @@ SUBROUTINE SetUpObjectsToProcess(doGatherSurfaces) ! Ground Heat Transfer CALL AddObjToProcess('GroundHeatTransfer:Control',.TRUE., ghtCtrlNameOff, ghtCtrlSlabOff, 3) IF (doGatherSurfaces) THEN !only gather these surfaces if groundheattransfer has been found. - CALL AddObjToProcess('BuildingSurface:Detailed',.TRUE., buildSurfWindExpOff, buildSurfLastZVertexOff, 370) - CALL AddObjToProcess('Wall:Detailed',.TRUE., wallDetlWindExpOff, wallDetlLastZVertexOff, 39) - CALL AddObjToProcess('RoofCeiling:Detailed',.TRUE., rfClDetlWindExpOff, rfClDetlLastZVertexOff, 39) - CALL AddObjToProcess('Floor:Detailed',.TRUE., flrDetlWindExpOff, flrDetlLastZVertexOff, 39) + CALL AddObjToProcess('BuildingSurface:Detailed',.TRUE., buildSurfWindExpOff, buildSurfLastZVertexOff, 371) + CALL AddObjToProcess('Wall:Detailed',.TRUE., wallDetlWindExpOff, wallDetlLastZVertexOff, 40) + CALL AddObjToProcess('RoofCeiling:Detailed',.TRUE., rfClDetlWindExpOff, rfClDetlLastZVertexOff, 40) + CALL AddObjToProcess('Floor:Detailed',.TRUE., flrDetlWindExpOff, flrDetlLastZVertexOff, 40) END IF CALL AddObjToProcess('Site:GroundTemperature:BuildingSurface',.TRUE.,gndTempSurfJanOff, gndTempSurfDecOff, 12) ! Items to echo to basement or slab input files @@ -33102,6 +33106,7 @@ SUBROUTINE CreateDetailedBuildingSurface CALL AddToObjFld('Surface Type', base + buildSurfTypeOff,'') CALL AddToObjFld('Construction Name', base + buildSurfConstructionOff,'') CALL AddToObjFld('Zone Name', base + buildSurfZoneOff,'') + CALL AddToObjFld('Space Name', base + buildSurfSpaceOff,'') outBndCond = FldVal(base + buildSurfOutBndCondOff) IF (SameString(outBndCond,'GroundSlabPreprocessorAverage')) THEN CALL AddToObjStr('Outside Boundary Condition', 'OtherSideCoefficients') @@ -33164,6 +33169,7 @@ SUBROUTINE CreateDetailedBuildingSurface CALL AddToObjFld('Name', base + wallDetlNameOff,'') CALL AddToObjFld('Construction Name', base + wallDetlConstructionOff,'') CALL AddToObjFld('Zone Name', base + wallDetlZoneOff,'') + CALL AddToObjFld('Space Name', base + wallDetlSpaceOff,'') outBndCond = FldVal(base + wallDetlOutBndCondOff) IF (SameString(outBndCond,'GroundSlabPreprocessorAverage')) THEN CALL AddToObjStr('Outside Boundary Condition', 'OtherSideCoefficients') @@ -33226,6 +33232,7 @@ SUBROUTINE CreateDetailedBuildingSurface CALL AddToObjFld('Name', base + rfClDetlNameOff,'') CALL AddToObjFld('Construction Name', base + rfClDetlConstructionOff,'') CALL AddToObjFld('Zone Name', base + rfClDetlZoneOff,'') + CALL AddToObjFld('Space Name', base + rfClDetlSpaceOff,'') outBndCond = FldVal(base + rfClDetlOutBndCondOff) IF (SameString(outBndCond,'GroundSlabPreprocessorAverage')) THEN CALL AddToObjStr('Outside Boundary Condition', 'OtherSideCoefficients') @@ -33288,6 +33295,7 @@ SUBROUTINE CreateDetailedBuildingSurface CALL AddToObjFld('Name', base + flrDetlNameOff,'') CALL AddToObjFld('Construction Name', base + flrDetlConstructionOff,'') CALL AddToObjFld('Zone Name', base + flrDetlZoneOff,'') + CALL AddToObjFld('Space Name', base + flrDetlSpaceOff,'') outBndCond = FldVal(base + flrDetlOutBndCondOff) IF (SameString(outBndCond,'GroundSlabPreprocessorAverage')) THEN CALL AddToObjStr('Outside Boundary Condition', 'OtherSideCoefficients') From 2185eaa319a546f9e4b9a095b052e15e3451206b Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 18 Jun 2021 17:08:14 -0500 Subject: [PATCH 23/98] Space - CreateMissingSpaces --- src/EnergyPlus/DataGlobals.hh | 2 ++ src/EnergyPlus/DataHeatBalance.hh | 15 +++++--- src/EnergyPlus/HeatBalanceManager.cc | 8 ++++- src/EnergyPlus/SurfaceGeometry.cc | 54 +++++++++++++++++++++++++++- src/EnergyPlus/SurfaceGeometry.hh | 2 ++ 5 files changed, 74 insertions(+), 7 deletions(-) diff --git a/src/EnergyPlus/DataGlobals.hh b/src/EnergyPlus/DataGlobals.hh index abf8f1abf62..1e3cd342426 100644 --- a/src/EnergyPlus/DataGlobals.hh +++ b/src/EnergyPlus/DataGlobals.hh @@ -104,6 +104,7 @@ struct DataGlobal : BaseGlobalStruct int NumOfDayInEnvrn = 0; // Number of days in the simulation for a particular environment int NumOfTimeStepInHour = 0; // Number of time steps in each hour of the simulation int NumOfZones = 0; // Total number of Zones for simulation + int NumOfSpaces = 0; // Total number of Spaces for simulation int TimeStep = 0; // Counter for time steps (fractional hours) Real64 TimeStepZone = 0.0; // Zone time step in fractional hours bool WarmupFlag = false; // True during the warmup portion of a simulation @@ -208,6 +209,7 @@ struct DataGlobal : BaseGlobalStruct this->NumOfDayInEnvrn = 0; this->NumOfTimeStepInHour = 0; this->NumOfZones = 0; + this->NumOfSpaces = 0; this->TimeStep = 0; this->TimeStepZone = 0.0; this->WarmupFlag = false; diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index ea307023b51..8e0aed89998 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -335,10 +335,10 @@ namespace DataHeatBalance { struct SpaceData { - std::string Name = ""; // Space name - int ZoneNum = 0; // Pointer to Zone wich contains this space - std::string SpaceType = ""; // Space type tag - EPVector Tags; // Optional tags for reporting + std::string Name = ""; // Space name + int ZoneNum = 0; // Pointer to Zone wich contains this space + std::string SpaceType = "General"; // Space type tag + EPVector Tags; // Optional tags for reporting }; struct SpaceListData @@ -490,6 +490,11 @@ namespace DataHeatBalance { Real64 delta_T; // Indoor and outdoor temperature Real64 delta_HumRat; // Indoor and outdoor humidity ratio delta + // Spaces + bool AnySurfacesWithoutSpace; // True if any surfaces in a zone do not have a space assigned in input + bool AnySurfacesWithSpace; // True if any surfaces in a zone have a space assigned in input + EPVector Spaces; // Pointers to spaces in this zone + // Default Constructor ZoneData() : Multiplier(1), ListMultiplier(1), ListGroup(0), RelNorth(0.0), OriginX(0.0), OriginY(0.0), OriginZ(0.0), @@ -519,7 +524,7 @@ namespace DataHeatBalance { ZonePeopleActivityLevel(0.0), ZonePeopleSensibleHeatFraction(0.0), ZonePeopleRadiantHeatFraction(0.0), ZoneVolCapMultpSens(1.0), ZoneVolCapMultpMoist(1.0), ZoneVolCapMultpCO2(1.0), ZoneVolCapMultpGenContam(1.0), ZoneVolCapMultpSensHM(1.0), ZoneVolCapMultpSensHMSum(0.0), ZoneVolCapMultpSensHMCountSum(0.0), ZoneVolCapMultpSensHMAverage(1.0), MCPIHM(0.0), - InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0) + InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0), AnySurfacesWithoutSpace(false), AnySurfacesWithSpace(false) { } diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 2b197eb098a..6e1aec7c1c7 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5446,7 +5446,8 @@ namespace HeatBalanceManager { auto &instancesValue = instances.value(); int numSpaces = instancesValue.size(); int spaceNum = 0; - state.dataHeatBal->Space.allocate(numSpaces); + // Allow for one additional Space per zone if some surfaces do not have a Space assigned in input + state.dataHeatBal->Space.allocate(numSpaces + state.dataGlobal->NumOfZones); for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { ++spaceNum; auto const &objectFields = instance.value(); @@ -5457,6 +5458,7 @@ namespace HeatBalanceManager { int zoneNum = UtilityRoutines::FindItemInList(zoneName, state.dataHeatBal->Zone); if (zoneNum > 0) { thisSpace.ZoneNum = zoneNum; + state.dataHeatBal->Zone(zoneNum).Spaces.emplace_back(spaceNum); } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); ShowContinueError(state, "Zone Name =" + zoneName + "not found."); @@ -5472,6 +5474,10 @@ namespace HeatBalanceManager { } } } + state.dataGlobal->NumOfSpaces = spaceNum; + } else { + // If no Spaces are defined, the allow for one Space per zone + state.dataHeatBal->Space.allocate(state.dataGlobal->NumOfZones); } cCurrentModuleObject = "SpaceList"; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 5a003fab9e2..b54319247ea 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -1554,6 +1554,8 @@ namespace SurfaceGeometry { } // ...end of the Surface DO loop for finding BaseSurf //********************************************************************************** + CreateMissingSpaces(state, ErrorsFound); + // The surfaces need to be hierarchical by zone. Input is allowed to be in any order. In // this section the surfaces are reordered into: // All shadowing surfaces (if mirrored, Mir- surface follows immediately after original) @@ -2744,6 +2746,48 @@ namespace SurfaceGeometry { } } + void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound) + { + // Scan surfaces to see if Space was assigned in input + for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { + auto &thisSurf = state.dataSurface->Surface(surfNum); + if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces + if (thisSurf.Space > 0) { + state.dataHeatBal->Zone(thisSurf.Zone).AnySurfacesWithSpace = true; + } else { + state.dataHeatBal->Zone(thisSurf.Zone).AnySurfacesWithoutSpace = true; + } + } + + // Create any missing Spaces + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + auto &thisZone = state.dataHeatBal->Zone(zoneNum); + if (thisZone.AnySurfacesWithoutSpace) { + // If any surfaces in the zone are not assigned to a space, create a new space + ++state.dataGlobal->NumOfSpaces; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; + // Add to zone's list of spaces + thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + if (thisZone.AnySurfacesWithSpace) { + // If some surfaces in the zone are assigned to a space, the new space if the remainder of the zone + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-Remainder"; + } else { + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-All"; + } + } + } + + // Assign Spaces to surfaces without one + for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { + auto &thisSurf = state.dataSurface->Surface(surfNum); + if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces + if (thisSurf.Space == 0) { + int lastSpace = state.dataHeatBal->Zone(thisSurf.Zone).Spaces.size(); + thisSurf.Space = state.dataHeatBal->Zone(thisSurf.Zone).Spaces(lastSpace); + } + } + } + void checkSubSurfAzTiltNorm(EnergyPlusData &state, SurfaceData &baseSurface, // Base surface data (in) SurfaceData &subSurface, // Subsurface data (in) @@ -3696,11 +3740,19 @@ namespace SurfaceGeometry { if (spaceNum != 0) { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; + if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Zone != state.dataHeatBal->Space(spaceNum).ZoneNum) { + ShowSevereError(state, + cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(ArgPointer) + "=\"" + + state.dataIPShortCut->cAlphaArgs(ArgPointer) + "\" is not in the same zone as the surface."); + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class = SurfaceClass::INVALID; + ErrorsFound = true; + } } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(ArgPointer) + "=\"" + - state.dataIPShortCut->cAlphaArgs(ArgPointer) + "\"."); + state.dataIPShortCut->cAlphaArgs(ArgPointer) + "\" not found."); state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Class = SurfaceClass::INVALID; ErrorsFound = true; } diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index f63143d0060..b3dbb0d0f78 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -88,6 +88,8 @@ namespace SurfaceGeometry { void GetSurfaceData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input + void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound); + void checkSubSurfAzTiltNorm(EnergyPlusData &state, SurfaceData &baseSurface, // Base surface data (in) SurfaceData &subSurface, // Subsurface data (in) From 5f4055ea3d5069b436b0469172374cc460861de1 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 23 Jun 2021 11:18:25 -0500 Subject: [PATCH 24/98] Space - Move enclosures from zones to spaces part 1 --- src/EnergyPlus/DataHeatBalance.hh | 27 ++-- src/EnergyPlus/DataViewFactorInformation.hh | 16 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 154 +++++++++---------- src/EnergyPlus/HeatBalanceManager.cc | 6 +- src/EnergyPlus/SolarShading.cc | 30 ++-- src/EnergyPlus/SurfaceGeometry.cc | 161 ++++++++++---------- src/EnergyPlus/SurfaceGeometry.hh | 2 +- 7 files changed, 196 insertions(+), 200 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 8e0aed89998..813c6d13c25 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -339,6 +339,15 @@ namespace DataHeatBalance { int ZoneNum = 0; // Pointer to Zone wich contains this space std::string SpaceType = "General"; // Space type tag EPVector Tags; // Optional tags for reporting + EPVector Surfaces; // Pointers to surfaces in this space + bool EnforcedReciprocity; // if zone required forced reciprocity -- + // less out of bounds temperature errors allowed + int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to + int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to + Real64 FloorArea = 0.0; // Floor area used for this space + Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone + Real64 TotalSurfArea = 0.0; // Total surface area for Zone + Real64 OriginZ = 0.0; // Z origin [m] }; struct SpaceListData @@ -421,8 +430,6 @@ namespace DataHeatBalance { std::vector ZoneHTNonWindowSurfaceList; // List of non-window HT surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneHTWindowSurfaceList; // List of window surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneExtSolarSurfaceList; // List of exterior solar surfaces in a zone - int RadiantEnclosureNum; // Radiant exchange enclosure this zone belongs to (related to air boundaries) - int SolarEnclosureNum; // Solar distribution enclosure this zone belongs to (related to air boundaries) Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp @@ -454,12 +461,10 @@ namespace DataHeatBalance { bool HasLtsRetAirGain; // TRUE means that zone lights return air heat > 0.0 calculated from plenum temperature bool HasAirFlowWindowReturn; // TRUE means that zone has return air flow from windows // from refrigeration cases for this zone - Real64 InternalHeatGains; // internal loads (W) - Real64 NominalInfilVent; // internal infiltration/ventilation - Real64 NominalMixing; // internal mixing/cross mixing - bool TempOutOfBoundsReported; // if any temp out of bounds errors, first will show zone details. - bool EnforcedReciprocity; // if zone required forced reciprocity -- - // less out of bounds temperature errors allowed + Real64 InternalHeatGains; // internal loads (W) + Real64 NominalInfilVent; // internal infiltration/ventilation + Real64 NominalMixing; // internal mixing/cross mixing + bool TempOutOfBoundsReported; // if any temp out of bounds errors, first will show zone details. int ZoneMinCO2SchedIndex; // Index for the schedule the schedule which determines minimum CO2 concentration int ZoneMaxCO2SchedIndex; // Index for the schedule the schedule which determines maximum CO2 concentration int ZoneContamControllerSchedIndex; // Index for this schedule @@ -508,7 +513,7 @@ namespace DataHeatBalance { OpaqOrIntMassSurfaceLast(-1), WindowSurfaceFirst(0), WindowSurfaceLast(-1), OpaqOrWinSurfaceFirst(0), OpaqOrWinSurfaceLast(-1), TDDDomeFirst(0), TDDDomeLast(-1), InsideConvectionAlgo(ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), - MaximumZ(0.0), RadiantEnclosureNum(0), SolarEnclosureNum(0), + MaximumZ(0.0), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), @@ -516,8 +521,8 @@ namespace DataHeatBalance { LinkedOutAirNode(0.0), isPartOfTotalArea(true), isNominalOccupied(false), isNominalControlled(false), TotOccupants(0.0), AirHBimBalanceErrIndex(0), NoHeatToReturnAir(false), RefrigCaseRA(false), HasAdjustedReturnTempByITE(false), AdjustedReturnTempByITE(0.0), HasLtsRetAirGain(false), HasAirFlowWindowReturn(false), InternalHeatGains(0.0), NominalInfilVent(0.0), - NominalMixing(0.0), TempOutOfBoundsReported(false), EnforcedReciprocity(false), ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), - ZoneContamControllerSchedIndex(0), FlagCustomizedZoneCap(false), + NominalMixing(0.0), TempOutOfBoundsReported(false), ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), ZoneContamControllerSchedIndex(0), + FlagCustomizedZoneCap(false), // Hybrid Modeling ZoneMeasuredTemperature(0.0), ZoneMeasuredHumidityRatio(0.0), ZoneMeasuredCO2Concentration(0.0), ZoneMeasuredSupplyAirTemperature(0.0), ZoneMeasuredSupplyAirFlowRate(0.0), ZoneMeasuredSupplyAirHumidityRatio(0.0), ZoneMeasuredSupplyAirCO2Concentration(0.0), diff --git a/src/EnergyPlus/DataViewFactorInformation.hh b/src/EnergyPlus/DataViewFactorInformation.hh index 22010e0e509..30d71c08057 100644 --- a/src/EnergyPlus/DataViewFactorInformation.hh +++ b/src/EnergyPlus/DataViewFactorInformation.hh @@ -61,12 +61,12 @@ namespace EnergyPlus { namespace DataViewFactorInformation { - struct ZoneViewFactorInformation + struct EnclosureViewFactorInformation { // Members std::string Name; // Enclosure name - std::vector ZoneNames; // Zone names which are part of this enclosure - std::vector ZoneNums; // Zones which are part of this enclosure + std::vector SpaceNames; // Space names which are part of this enclosure + std::vector SpaceNums; // Spaces which are part of this enclosure int NumOfSurfaces; // Number of surfaces in the enclosure Array2D F; // View Factors Array2D ScriptF; // Hottel's Script F //Tuned Transposed @@ -85,7 +85,7 @@ namespace DataViewFactorInformation { int TotalEnclosureDaylRefPoints; // Total number of daylighting reference points in enclosure // Default Constructor - ZoneViewFactorInformation() : NumOfSurfaces(0), FloorArea(0.0), ExtWindowArea(0.0), TotalSurfArea(0.0), TotalEnclosureDaylRefPoints(0) + EnclosureViewFactorInformation() : NumOfSurfaces(0), FloorArea(0.0), ExtWindowArea(0.0), TotalSurfArea(0.0), TotalEnclosureDaylRefPoints(0) { } }; @@ -97,15 +97,15 @@ struct ViewFactorInfoData : BaseGlobalStruct int NumOfRadiantEnclosures = 0; // Number of radiant enclosures int NumOfSolarEnclosures = 0; // Number of solar enclosures - Array1D ZoneRadiantInfo; - Array1D ZoneSolarInfo; + Array1D EnclRadInfo; + Array1D EnclSolInfo; void clear_state() override { NumOfRadiantEnclosures = 0; NumOfSolarEnclosures = 0; - ZoneRadiantInfo.clear(); - ZoneSolarInfo.clear(); + EnclRadInfo.clear(); + EnclSolInfo.clear(); } }; diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 74b9f027d4e..615fe8413d8 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -191,7 +191,7 @@ namespace HeatBalanceIntRadExchange { int endEnclosure = state.dataViewFactor->NumOfRadiantEnclosures; if (PartialResimulate) { startEnclosure = endEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).RadiantEnclosureNum; - auto const &enclosure(state.dataViewFactor->ZoneRadiantInfo(startEnclosure)); + auto const &enclosure(state.dataViewFactor->EnclRadInfo(startEnclosure)); for (int i : enclosure.SurfacePtr) { NetLWRadToSurf(i) = 0.0; state.dataSurface->SurfWinIRfromParentZone(i) = 0.0; @@ -204,7 +204,7 @@ namespace HeatBalanceIntRadExchange { for (int enclosureNum = startEnclosure; enclosureNum <= endEnclosure; ++enclosureNum) { - auto &zone_info(state.dataViewFactor->ZoneRadiantInfo(enclosureNum)); + auto &zone_info(state.dataViewFactor->EnclRadInfo(enclosureNum)); auto &zone_ScriptF(zone_info.ScriptF); // Tuned Transposed auto &zone_SurfacePtr(zone_info.SurfacePtr); int const n_zone_Surfaces(zone_info.NumOfSurfaces); @@ -493,7 +493,7 @@ namespace HeatBalanceIntRadExchange { state.dataHeatBalIntRadExchg->MaxNumOfRadEnclosureSurfs = 0; for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneRadiantInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); if (enclosureNum == 1) { if (state.dataGlobal->DisplayAdvancedReportVariables) { print(state.files.eio, @@ -503,10 +503,8 @@ namespace HeatBalanceIntRadExchange { } } int numEnclosureSurfaces = 0; - for (int zoneNum : thisEnclosure.ZoneNums) { - for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; - surfNum <= surfNum_end; - ++surfNum) { + for (int spaceNum : thisEnclosure.SpaceNums) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { ++numEnclosureSurfaces; } } @@ -528,20 +526,16 @@ namespace HeatBalanceIntRadExchange { // Initialize the surface pointer array int enclosureSurfNum = 0; - for (int const zoneNum : thisEnclosure.ZoneNums) { + for (int const spaceNum : thisEnclosure.SpaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; - for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; - surfNum <= surfNum_end; - ++surfNum) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; } // 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) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { - if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[allSurfNum - 1]) { + if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[surfNum - 1]) { thisEnclosure.SurfaceReportNums.push_back(enclSNum); break; } @@ -618,7 +612,7 @@ namespace HeatBalanceIntRadExchange { thisEnclosure.Area, thisEnclosure.F, thisEnclosure.Name, - thisEnclosure.ZoneNums, + thisEnclosure.SpaceNums, CheckValue1, CheckValue2, FinalCheckValue, @@ -805,7 +799,7 @@ namespace HeatBalanceIntRadExchange { if (NumZonesWithUserFbyS > 0) AlignInputViewFactors(state, cCurrentModuleObject, ErrorsFound); for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); if (enclosureNum == 1) { if (state.dataGlobal->DisplayAdvancedReportVariables) print(state.files.eio, @@ -815,10 +809,8 @@ namespace HeatBalanceIntRadExchange { "Convergence"); } int numEnclosureSurfaces = 0; - for (int zoneNum : thisEnclosure.ZoneNums) { - for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; - surfNum <= surfNum_end; - ++surfNum) { + for (int spaceNum : thisEnclosure.SpaceNums) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { // Include only heat transfer surfaces ++numEnclosureSurfaces; } @@ -836,11 +828,9 @@ namespace HeatBalanceIntRadExchange { // Initialize the surface pointer array int enclosureSurfNum = 0; - for (int const zoneNum : thisEnclosure.ZoneNums) { + for (int const spaceNum : thisEnclosure.SpaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; - for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; - surfNum <= surfNum_end; - ++surfNum) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { // Do not include non-heat transfer surfaces ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; @@ -849,11 +839,9 @@ namespace HeatBalanceIntRadExchange { state.dataSurface->Surface(surfNum).SolarEnclIndex = enclosureNum; } // 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) { + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { - if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[allSurfNum - 1]) { + if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[surfNum - 1]) { thisEnclosure.SurfaceReportNums.push_back(enclSNum); break; } @@ -920,7 +908,7 @@ namespace HeatBalanceIntRadExchange { thisEnclosure.Area, thisEnclosure.F, thisEnclosure.Name, - thisEnclosure.ZoneNums, + thisEnclosure.SpaceNums, CheckValue1, CheckValue2, FinalCheckValue, @@ -1138,15 +1126,15 @@ namespace HeatBalanceIntRadExchange { auto &instancesValue = instances.value(); for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { auto const &fields = instance.value(); - std::string const thisZoneOrZoneListName = fields.at("zone_or_zonelist_name"); + std::string const thisSpaceOrSpaceListName = fields.at("space_or_spacelist_name"); // do not mark object as used here - let GetInputViewFactorsbyName do that - // Look for matching solar enclosure name + // Look for matching radiant enclosure name bool enclMatchFound = false; for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneRadiantInfo(enclosureNum)); - if (UtilityRoutines::SameString(thisZoneOrZoneListName, thisEnclosure.Name)) { - // View factor zone name matches enclosure name + auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); + if (UtilityRoutines::SameString(thisSpaceOrSpaceListName, thisEnclosure.Name)) { + // View factor space name matches enclosure name enclMatchFound = true; break; } @@ -1154,92 +1142,90 @@ namespace HeatBalanceIntRadExchange { if (enclMatchFound) continue; // We're done with this instance // Look for matching solar enclosure name for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); - if (UtilityRoutines::SameString(thisZoneOrZoneListName, thisEnclosure.Name)) { - // View factor zone name matches enclosure name + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); + if (UtilityRoutines::SameString(thisSpaceOrSpaceListName, thisEnclosure.Name)) { + // View factor space name matches enclosure name enclMatchFound = true; break; } } if (enclMatchFound) continue; // We're done with this instance - // Find matching ZoneList name - int zoneListNum = UtilityRoutines::FindItemInList( - UtilityRoutines::MakeUPPERCase(thisZoneOrZoneListName), state.dataHeatBal->ZoneList, state.dataHeatBal->NumOfZoneLists); - if (zoneListNum > 0) { - // Look for radiant enclosure with same list of zones - auto &thisZoneList(state.dataHeatBal->ZoneList(zoneListNum)); + // Find matching SpaceList name + int spaceListNum = UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase(thisSpaceOrSpaceListName), state.dataHeatBal->SpaceList); + if (spaceListNum > 0) { + // Look for radiant enclosure with same list of spaces + auto &thisSpaceList(state.dataHeatBal->SpaceList(spaceListNum)); for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneRadiantInfo(enclosureNum)); - bool anyZoneNotFound = false; - // If the number of enclosure zones is not the same as the number of zonelist zone, go to the next enclosure - int zlistNumZones = thisEnclosure.ZoneNums.size(); - if (thisZoneList.NumOfZones != zlistNumZones) continue; - for (int zListZoneNum : thisZoneList.Zone) { - // Search for matching zones - bool thisZoneFound = false; - for (int enclZoneNum : thisEnclosure.ZoneNums) { - if (enclZoneNum == zListZoneNum) { - thisZoneFound = true; + auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); + bool anySpaceNotFound = false; + // If the number of enclosure spaces is not the same as the number of spacelist space, go to the next enclosure + if (thisSpaceList.Spaces.size() != thisEnclosure.SpaceNums.size()) continue; + for (int sListSpaceNum : thisSpaceList.Spaces) { + // Search for matching spaces + bool thisSpaceFound = false; + for (int enclSpaceNum : thisEnclosure.SpaceNums) { + if (enclSpaceNum == sListSpaceNum) { + thisSpaceFound = true; break; } } - if (!thisZoneFound) { - anyZoneNotFound = true; + if (!thisSpaceFound) { + anySpaceNotFound = true; break; } } - if (anyZoneNotFound) { + if (anySpaceNotFound) { continue; // On to the next enclosure } else { enclMatchFound = true; - // If matching ZoneList found, set the enclosure name to match - thisEnclosure.Name = thisZoneOrZoneListName; + // If matching SpaceList found, set the enclosure name to match + thisEnclosure.Name = thisSpaceOrSpaceListName; break; // We're done with radiant enclosures } } if (!enclMatchFound) { // Look for solar enclosure with same list of zones for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); - bool anyZoneNotFound = false; - // If the number of enclosure zones is not the same as the number of zonelist zone, go to the next enclosure - int zlistNumZones = thisEnclosure.ZoneNums.size(); - if (thisZoneList.NumOfZones != zlistNumZones) continue; - for (int zListZoneNum : thisZoneList.Zone) { - // Search for matching zones - bool thisZoneFound = false; - for (int enclZoneNum : thisEnclosure.ZoneNums) { - if (enclZoneNum == zListZoneNum) { - thisZoneFound = true; + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); + bool anySpaceNotFound = false; + // If the number of enclosure spaces is not the same as the number of spacelist space, go to the next enclosure + if (thisSpaceList.Spaces.size() != thisEnclosure.SpaceNums.size()) continue; + for (int sListSpaceNum : thisSpaceList.Spaces) { + // Search for matching spaces + bool thisSpaceFound = false; + for (int enclSpaceNum : thisEnclosure.SpaceNums) { + if (enclSpaceNum == sListSpaceNum) { + thisSpaceFound = true; break; } } - if (!thisZoneFound) { - anyZoneNotFound = true; + if (!thisSpaceFound) { + anySpaceNotFound = true; break; } } - if (anyZoneNotFound) { + if (anySpaceNotFound) { continue; // On to the next enclosure } else { enclMatchFound = true; - // If matching ZoneList found, set the enclosure name to match - thisEnclosure.Name = thisZoneOrZoneListName; + // If matching SpaceList found, set the enclosure name to match + thisEnclosure.Name = thisSpaceOrSpaceListName; break; // We're done with radiant enclosures } } } } if (!enclMatchFound) { - if (zoneListNum > 0) { + if (spaceListNum > 0) { ShowSevereError(state, - "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisZoneOrZoneListName + + "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisSpaceOrSpaceListName + "\" found a matching ZoneList, but did not find a matching radiant or solar enclosure with the same zones."); ErrorsFound = true; } else { ShowSevereError(state, - "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisZoneOrZoneListName + + "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisSpaceOrSpaceListName + "\" did not find a matching radiant or solar enclosure name."); ErrorsFound = true; } @@ -1469,7 +1455,7 @@ namespace HeatBalanceIntRadExchange { const Array1D &A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) std::string &enclName, // Name of Enclosure being fixed - std::vector const zoneNums, // Zones which are part of this enclosure + std::vector const spaceNums, // Zones which are part of this enclosure Real64 &OriginalCheckValue, // check of SUM(F) - N Real64 &FixedCheckValue, // check after fixed of SUM(F) - N Real64 &FinalCheckValue, // the one to go with @@ -1622,8 +1608,8 @@ namespace HeatBalanceIntRadExchange { } FinalCheckValue = FixedCheckValue = std::abs(RowSum - N); F = FixedF; - for (int zoneNum : zoneNums) { - state.dataHeatBal->Zone(zoneNum).EnforcedReciprocity = true; + for (int spaceNum : spaceNums) { + state.dataHeatBal->Space(spaceNum).EnforcedReciprocity = true; } return; // Do not iterate, stop with reciprocity satisfied. @@ -2033,8 +2019,8 @@ namespace HeatBalanceIntRadExchange { ErrorsFound = true; // LCOV_EXCL_LINE } else if (surfRadEnclNum != radSysEnclNum) { ShowSevereError(state, routineName + "Surface = " + SurfaceName + " is not in the same zone or enclosure as the radiant equipment."); - ShowContinueError(state, "Surface zone or enclosure = " + state.dataViewFactor->ZoneRadiantInfo(surfRadEnclNum).Name); - ShowContinueError(state, "Radiant equipment zone or enclosure = " + state.dataViewFactor->ZoneRadiantInfo(radSysEnclNum).Name); + ShowContinueError(state, "Surface zone or enclosure = " + state.dataViewFactor->EnclRadInfo(surfRadEnclNum).Name); + ShowContinueError(state, "Radiant equipment zone or enclosure = " + state.dataViewFactor->EnclRadInfo(radSysEnclNum).Name); ShowContinueError(state, "Occurs for " + cCurrentModuleObject + " = " + RadSysName); ErrorsFound = true; } diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 6e1aec7c1c7..26bb85505cc 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4942,9 +4942,9 @@ namespace HeatBalanceManager { state.dataGlobal->NumOfZones = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); state.dataHeatBal->Zone.allocate(state.dataGlobal->NumOfZones); - state.dataViewFactor->ZoneRadiantInfo.allocate(state.dataGlobal->NumOfZones); - state.dataViewFactor->ZoneSolarInfo.allocate(state.dataGlobal->NumOfZones); - state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfZones); + state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->NumOfSpaces); + state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->NumOfSpaces); + state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfSpaces); ZoneLoop = 0; diff --git a/src/EnergyPlus/SolarShading.cc b/src/EnergyPlus/SolarShading.cc index 7588121ab09..031931cfff2 100644 --- a/src/EnergyPlus/SolarShading.cc +++ b/src/EnergyPlus/SolarShading.cc @@ -955,7 +955,7 @@ void AllocateModuleArrays(EnergyPlusData &state) DisplayString(state, "Initializing Zone and Enclosure Report Variables"); for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - auto &thisEnclosureName = state.dataViewFactor->ZoneSolarInfo(enclosureNum).Name; + auto &thisEnclosureName = state.dataViewFactor->EnclSolInfo(enclosureNum).Name; SetupOutputVariable(state, "Zone Windows Total Transmitted Solar Radiation Rate", OutputProcessor::Unit::W, @@ -3134,7 +3134,7 @@ void ComputeIntSolarAbsorpFactors(EnergyPlusData &state) state.dataSolarShading->ISABSF = 0.0; for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); AreaSum = 0.0; TestFractSum = 0.0; @@ -6324,7 +6324,7 @@ void CalcInteriorSolarDistribution(EnergyPlusData &state) Real64 BABSZone = 0.0; // Loop over exterior surfaces in this zone - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); // delete values from previous timestep if (state.dataHeatBal->AnyBSDF) state.dataSurface->SurfWinACFOverlap = 0.0; @@ -8552,7 +8552,7 @@ void CalcInteriorSolarDistributionWCESimple(EnergyPlusData &state) state.dataHeatBal->ZoneDifSolFrExtWinsRep(enclosureNum) = 0; state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy(enclosureNum) = 0; state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy(enclosureNum) = 0; - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); for (int const SurfNum : thisEnclosure.SurfacePtr) { if (state.dataSurface->Surface(SurfNum).Class != SurfaceClass::Window) continue; @@ -10058,7 +10058,7 @@ void CheckGlazingShadingStatusChange(EnergyPlusData &state) } if (!state.dataGlobal->AndShadingControlInModel) return; for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - for (int const SurfNum : state.dataViewFactor->ZoneRadiantInfo(enclosureNum).SurfacePtr) { + for (int const SurfNum : state.dataViewFactor->EnclRadInfo(enclosureNum).SurfacePtr) { bool surfShadingStatusChange = state.dataSurface->SurfWinExtIntShadePrevTS(SurfNum) != state.dataSurface->SurfWinShadingFlag(SurfNum) || state.dataSurface->Surface(SurfNum).activeShadedConstruction != state.dataSurface->Surface(SurfNum).activeShadedConstructionPrev || @@ -11623,7 +11623,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) // Loop over all zones doing initial distribution of diffuse solar to interior heat transfer surfaces for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); // Init Zone accumulators for debugging // ZoneDifSolarTrans = 0.0; // ZoneDifSolarDistAbsorbedTotl = 0.0; @@ -11668,12 +11668,12 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) // View factor from current (sending) window DifTransSurfNum to current (receiving) surface HeatTransSurfNum int const HTenclosureSurfNum = - state.dataSurface->Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for ZoneSolarInfo.SurfacePtr and F arrays - int const enclosureNum = state.dataSurface->Surface(HeatTransSurfNum).SolarEnclIndex; // index for ZoneSolarInfo + state.dataSurface->Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for EnclSolInfo.SurfacePtr and F arrays + int const enclosureNum = state.dataSurface->Surface(HeatTransSurfNum).SolarEnclIndex; // index for EnclSolInfo int const DTenclSurfNum = - state.dataSurface->Surface(DifTransSurfNum).SolarEnclSurfIndex; // Window surface index for ZoneSolarInfo.SurfacePtr and F arrays + state.dataSurface->Surface(DifTransSurfNum).SolarEnclSurfIndex; // Window surface index for EnclSolInfo.SurfacePtr and F arrays - ViewFactor = state.dataViewFactor->ZoneSolarInfo(enclosureNum).F(HTenclosureSurfNum, DTenclSurfNum); + ViewFactor = state.dataViewFactor->EnclSolInfo(enclosureNum).F(HTenclosureSurfNum, DTenclSurfNum); // debug ViewFactorTotal // ViewFactorTotal += ViewFactor; // debug @@ -12148,7 +12148,7 @@ void CalcInteriorWinTransDifSolInitialDistribution( ViewFactorTotal = 0.0; WinDifSolarTrans = IntWinDifSolarTransW; - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(IntWinEnclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(IntWinEnclosureNum)); // Loop over all heat transfer surfaces in the current zone that might receive diffuse solar Real64 InitialZoneDifSolReflW_zone(0.0); for (int const HeatTransSurfNum : thisEnclosure.SurfacePtr) { @@ -12159,12 +12159,12 @@ void CalcInteriorWinTransDifSolInitialDistribution( // View factor from current (sending) window IntWinSurfNum to current (receiving) surface HeatTransSurfNum int HTenclosureSurfNum = - state.dataSurface->Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for ZoneSolarInfo.SurfacePtr and F arrays - int enclosureNum = state.dataSurface->Surface(HeatTransSurfNum).SolarEnclIndex; // index for ZoneSolarInfo + state.dataSurface->Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for EnclSolInfo.SurfacePtr and F arrays + int enclosureNum = state.dataSurface->Surface(HeatTransSurfNum).SolarEnclIndex; // index for EnclSolInfo int IntWinEnclSurfNum = - state.dataSurface->Surface(IntWinSurfNum).SolarEnclSurfIndex; // Window surface index for ZoneSolarInfo.SurfacePtr and F arrays + state.dataSurface->Surface(IntWinSurfNum).SolarEnclSurfIndex; // Window surface index for EnclSolInfo.SurfacePtr and F arrays - ViewFactor = state.dataViewFactor->ZoneSolarInfo(enclosureNum).F(HTenclosureSurfNum, IntWinEnclSurfNum); + ViewFactor = state.dataViewFactor->EnclSolInfo(enclosureNum).F(HTenclosureSurfNum, IntWinEnclSurfNum); // debug ViewFactorTotal ViewFactorTotal += ViewFactor; // debug diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index b54319247ea..68effa10dce 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -829,7 +829,7 @@ namespace SurfaceGeometry { } // ZoneNum // Set up solar distribution enclosures allowing for any air boundaries - SetupEnclosuresAndAirBoundaries(state, state.dataViewFactor->ZoneSolarInfo, SurfaceGeometry::enclosureType::SolarEnclosures, ErrorsFound); + SetupEnclosuresAndAirBoundaries(state, state.dataViewFactor->EnclSolInfo, SurfaceGeometry::enclosureType::SolarEnclosures, ErrorsFound); // Do the Stratosphere check SetZoneOutBulbTempAt(state); @@ -2716,7 +2716,7 @@ namespace SurfaceGeometry { GetSurfaceHeatTransferAlgorithmOverrides(state, ErrorsFound); // Set up enclosures, process Air Boundaries if any - SetupEnclosuresAndAirBoundaries(state, state.dataViewFactor->ZoneRadiantInfo, SurfaceGeometry::enclosureType::RadiantEnclosures, ErrorsFound); + SetupEnclosuresAndAirBoundaries(state, state.dataViewFactor->EnclRadInfo, SurfaceGeometry::enclosureType::RadiantEnclosures, ErrorsFound); GetSurfaceSrdSurfsData(state, ErrorsFound); @@ -2772,7 +2772,7 @@ namespace SurfaceGeometry { // If some surfaces in the zone are assigned to a space, the new space if the remainder of the zone state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-Remainder"; } else { - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-All"; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name; } } } @@ -2784,6 +2784,8 @@ namespace SurfaceGeometry { if (thisSurf.Space == 0) { int lastSpace = state.dataHeatBal->Zone(thisSurf.Zone).Spaces.size(); thisSurf.Space = state.dataHeatBal->Zone(thisSurf.Zone).Spaces(lastSpace); + // Add to Space's list of surfaces + state.dataHeatBal->Space(lastSpace).Surfaces.emplace_back(surfNum); } } } @@ -3740,6 +3742,7 @@ namespace SurfaceGeometry { if (spaceNum != 0) { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; + state.dataHeatBal->Space(spaceNum).Surfaces.emplace_back(SurfNum); if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Zone != state.dataHeatBal->Space(spaceNum).ZoneNum) { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + @@ -4341,6 +4344,7 @@ namespace SurfaceGeometry { if (spaceNum != 0) { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; + state.dataHeatBal->Space(spaceNum).Surfaces.emplace_back(SurfNum); } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + @@ -14537,12 +14541,12 @@ namespace SurfaceGeometry { } void SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, - Array1D &Enclosures, // Radiant or Solar Enclosures + Array1D &Enclosures, // Radiant or Solar Enclosures SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar bool &ErrorsFound) // Set to true if errors found { std::string RoutineName = "SetupEnclosuresAndAirBoundaries"; - bool anyGroupedZones = false; + bool anyGroupedSpaces = false; bool radiantSetup = false; bool solarSetup = false; std::string RadiantOrSolar = ""; @@ -14590,85 +14594,86 @@ namespace SurfaceGeometry { constr.IsUsedCTF = false; surf.HeatTransSurf = false; surf.HeatTransferAlgorithm = DataSurfaces::iHeatTransferModel::AirBoundaryNoHT; - thisSideEnclosureNum = state.dataHeatBal->Zone(surf.Zone).RadiantEnclosureNum; - otherSideEnclosureNum = state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).RadiantEnclosureNum; + thisSideEnclosureNum = state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum; + otherSideEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum; } else { // Solar enclosure setup - thisSideEnclosureNum = state.dataHeatBal->Zone(surf.Zone).SolarEnclosureNum; - otherSideEnclosureNum = state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).SolarEnclosureNum; + thisSideEnclosureNum = state.dataHeatBal->Space(surf.Space).SolarEnclosureNum; + otherSideEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum; } - anyGroupedZones = true; + anyGroupedSpaces = true; if ((thisSideEnclosureNum == 0) && (otherSideEnclosureNum == 0)) { // Neither zone is assigned to an enclosure, so increment the counter and assign to both ++enclosureNum; auto &thisEnclosure(Enclosures(enclosureNum)); thisSideEnclosureNum = enclosureNum; thisEnclosure.Name = format("{} Enclosure {}", RadiantOrSolar, enclosureNum); - thisEnclosure.ZoneNames.push_back(surf.ZoneName); - thisEnclosure.ZoneNums.push_back(surf.Zone); - thisEnclosure.FloorArea += state.dataHeatBal->Zone(surf.Zone).FloorArea; + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(surf.Space).Name); + thisEnclosure.SpaceNums.push_back(surf.Space); + thisEnclosure.FloorArea += state.dataHeatBal->Space(surf.Space).FloorArea; otherSideEnclosureNum = enclosureNum; - thisEnclosure.ZoneNames.push_back(state.dataSurface->Surface(surf.ExtBoundCond).ZoneName); - thisEnclosure.ZoneNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Zone); + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).Name); + thisEnclosure.SpaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Space); thisEnclosure.FloorArea += state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).FloorArea; if (radiantSetup) { - state.dataHeatBal->Zone(surf.Zone).RadiantEnclosureNum = thisSideEnclosureNum; - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).RadiantEnclosureNum = + state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum = otherSideEnclosureNum; } else { - thisEnclosure.ExtWindowArea += state.dataHeatBal->Zone(surf.Zone).ExtWindowArea; - thisEnclosure.TotalSurfArea += state.dataHeatBal->Zone(surf.Zone).TotalSurfArea; + thisEnclosure.ExtWindowArea += state.dataHeatBal->Space(surf.Space).ExtWindowArea; + thisEnclosure.TotalSurfArea += state.dataHeatBal->Space(surf.Space).TotalSurfArea; thisEnclosure.ExtWindowArea += - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).ExtWindowArea; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).ExtWindowArea; thisEnclosure.TotalSurfArea += - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).TotalSurfArea; - state.dataHeatBal->Zone(surf.Zone).SolarEnclosureNum = thisSideEnclosureNum; - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).SolarEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).TotalSurfArea; + state.dataHeatBal->Space(surf.Space).SolarEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = + otherSideEnclosureNum; } } else if (thisSideEnclosureNum == 0) { // Other side is assigned, so use that one for both thisSideEnclosureNum = otherSideEnclosureNum; auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); - thisEnclosure.ZoneNames.push_back(surf.ZoneName); - thisEnclosure.ZoneNums.push_back(surf.Zone); - thisEnclosure.FloorArea += state.dataHeatBal->Zone(surf.Zone).FloorArea; + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(surf.Space).Name); + thisEnclosure.SpaceNums.push_back(surf.Space); + thisEnclosure.FloorArea += state.dataHeatBal->Space(surf.Space).FloorArea; if (radiantSetup) { - state.dataHeatBal->Zone(surf.Zone).RadiantEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum = thisSideEnclosureNum; } else { - thisEnclosure.ExtWindowArea += state.dataHeatBal->Zone(surf.Zone).ExtWindowArea; - thisEnclosure.TotalSurfArea += state.dataHeatBal->Zone(surf.Zone).TotalSurfArea; - state.dataHeatBal->Zone(surf.Zone).SolarEnclosureNum = thisSideEnclosureNum; + thisEnclosure.ExtWindowArea += state.dataHeatBal->Space(surf.Space).ExtWindowArea; + thisEnclosure.TotalSurfArea += state.dataHeatBal->Space(surf.Space).TotalSurfArea; + state.dataHeatBal->Space(surf.Space).SolarEnclosureNum = thisSideEnclosureNum; } } else if (otherSideEnclosureNum == 0) { // This side is assigned, so use that one for both otherSideEnclosureNum = thisSideEnclosureNum; auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); - thisEnclosure.ZoneNames.push_back(state.dataSurface->Surface(surf.ExtBoundCond).ZoneName); - thisEnclosure.ZoneNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Zone); - thisEnclosure.FloorArea += state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).FloorArea; + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).Name); + thisEnclosure.SpaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Space); + thisEnclosure.FloorArea += state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).FloorArea; if (radiantSetup) { - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).RadiantEnclosureNum = + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum = otherSideEnclosureNum; } else { thisEnclosure.ExtWindowArea += - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).ExtWindowArea; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).ExtWindowArea; thisEnclosure.TotalSurfArea += - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).TotalSurfArea; - state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).SolarEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).TotalSurfArea; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = otherSideEnclosureNum; } } else if (thisSideEnclosureNum != otherSideEnclosureNum) { // If both sides are already assigned to an enclosure, then merge the two enclosures auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); auto &otherEnclosure(Enclosures(otherSideEnclosureNum)); - for (const auto &zName : thisEnclosure.ZoneNames) { - otherEnclosure.ZoneNames.push_back(zName); + for (const auto &zName : thisEnclosure.SpaceNames) { + otherEnclosure.SpaceNames.push_back(zName); } - for (const auto &zNum : thisEnclosure.ZoneNums) { - otherEnclosure.ZoneNums.push_back(zNum); + for (const auto &zNum : thisEnclosure.SpaceNums) { + otherEnclosure.SpaceNums.push_back(zNum); if (radiantSetup) { - state.dataHeatBal->Zone(zNum).RadiantEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->Space(zNum).RadiantEnclosureNum = otherSideEnclosureNum; } else { - state.dataHeatBal->Zone(zNum).SolarEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->Space(zNum).SolarEnclosureNum = otherSideEnclosureNum; } } otherEnclosure.FloorArea += thisEnclosure.FloorArea; @@ -14679,18 +14684,18 @@ namespace SurfaceGeometry { std::string saveName = Enclosures(enclNum).Name; Enclosures(enclNum) = Enclosures(enclNum + 1); Enclosures(enclNum).Name = saveName; - for (auto zNum : thisEnclosure.ZoneNums) { + for (auto zNum : thisEnclosure.SpaceNums) { if (radiantSetup) { - state.dataHeatBal->Zone(zNum).RadiantEnclosureNum = enclNum; + state.dataHeatBal->Space(zNum).RadiantEnclosureNum = enclNum; } else { - state.dataHeatBal->Zone(zNum).SolarEnclosureNum = enclNum; + state.dataHeatBal->Space(zNum).SolarEnclosureNum = enclNum; } } } // Clear the last rad enclosure and reduce the total number of enclosures by 1 Enclosures(enclosureNum).Name.clear(); - Enclosures(enclosureNum).ZoneNames.clear(); - Enclosures(enclosureNum).ZoneNums.clear(); + Enclosures(enclosureNum).SpaceNames.clear(); + Enclosures(enclosureNum).SpaceNums.clear(); Enclosures(enclosureNum).FloorArea = 0; Enclosures(enclosureNum).ExtWindowArea = 0; Enclosures(enclosureNum).TotalSurfArea = 0; @@ -14700,9 +14705,9 @@ namespace SurfaceGeometry { ErrorsFound = true; ShowSevereError(state, RoutineName + ": Surface=" + surf.Name + " uses Construction:AirBoundary with illegal option:"); if (radiantSetup) { - ShowContinueError(state, "Radiant Exchange Method must be either GroupedZones or IRTSurface."); + ShowContinueError(state, "Radiant Exchange Method must be either GroupedSpaces or IRTSurface."); } else { - ShowContinueError(state, "Solar and Daylighting Method must be either GroupedZones or InteriorWindow"); + ShowContinueError(state, "Solar and Daylighting Method must be either GroupedSpaces or InteriorWindow"); } } if (solarSetup && constr.TypeIsAirBoundaryMixing) { @@ -14738,29 +14743,29 @@ namespace SurfaceGeometry { ShowContinueError(state, "For explicit details on each use, use Output:Diagnostics,DisplayExtraWarnings;"); } } - if (anyGroupedZones) { - // All grouped zones have been assigned to an enclosure, now assign remaining zones - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - int zoneEnclosureNum = 0; + if (anyGroupedSpaces) { + // All grouped spaces have been assigned to an enclosure, now assign remaining spaces + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + int spaceEnclosureNum = 0; if (radiantSetup) { - zoneEnclosureNum = state.dataHeatBal->Zone(zoneNum).RadiantEnclosureNum; + spaceEnclosureNum = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; } else { - zoneEnclosureNum = state.dataHeatBal->Zone(zoneNum).SolarEnclosureNum; + spaceEnclosureNum = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; } - if (zoneEnclosureNum == 0) { + if (spaceEnclosureNum == 0) { ++enclosureNum; if (radiantSetup) { - state.dataHeatBal->Zone(zoneNum).RadiantEnclosureNum = enclosureNum; + state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum = enclosureNum; } else { - state.dataHeatBal->Zone(zoneNum).SolarEnclosureNum = enclosureNum; + state.dataHeatBal->Space(spaceNum).SolarEnclosureNum = enclosureNum; } auto &thisEnclosure(Enclosures(enclosureNum)); - thisEnclosure.Name = state.dataHeatBal->Zone(zoneNum).Name; - thisEnclosure.ZoneNames.push_back(state.dataHeatBal->Zone(zoneNum).Name); - thisEnclosure.ZoneNums.push_back(zoneNum); - thisEnclosure.FloorArea = state.dataHeatBal->Zone(zoneNum).FloorArea; - thisEnclosure.ExtWindowArea = state.dataHeatBal->Zone(zoneNum).ExtWindowArea; - thisEnclosure.TotalSurfArea = state.dataHeatBal->Zone(zoneNum).TotalSurfArea; + thisEnclosure.Name = state.dataHeatBal->Space(spaceNum).Name; + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(spaceNum).Name); + thisEnclosure.SpaceNums.push_back(spaceNum); + thisEnclosure.FloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; + thisEnclosure.ExtWindowArea = state.dataHeatBal->Space(spaceNum).ExtWindowArea; + thisEnclosure.TotalSurfArea = state.dataHeatBal->Space(spaceNum).TotalSurfArea; } } if (radiantSetup) { @@ -14769,25 +14774,25 @@ namespace SurfaceGeometry { state.dataViewFactor->NumOfSolarEnclosures = enclosureNum; } } else { - // There are no grouped radiant air boundaries, assign each zone to it's own radiant enclosure - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - auto &thisEnclosure(Enclosures(zoneNum)); - thisEnclosure.Name = state.dataHeatBal->Zone(zoneNum).Name; - thisEnclosure.ZoneNames.push_back(state.dataHeatBal->Zone(zoneNum).Name); - thisEnclosure.ZoneNums.push_back(zoneNum); - thisEnclosure.FloorArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + // There are no grouped radiant air boundaries, assign each space to it's own radiant enclosure + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + auto &thisEnclosure(Enclosures(spaceNum)); + thisEnclosure.Name = state.dataHeatBal->Space(spaceNum).Name; + thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(spaceNum).Name); + thisEnclosure.SpaceNums.push_back(spaceNum); + thisEnclosure.FloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; if (radiantSetup) { - state.dataHeatBal->Zone(zoneNum).RadiantEnclosureNum = zoneNum; + state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum = spaceNum; } else { - state.dataHeatBal->Zone(zoneNum).SolarEnclosureNum = zoneNum; - thisEnclosure.ExtWindowArea = state.dataHeatBal->Zone(zoneNum).ExtWindowArea; - thisEnclosure.TotalSurfArea = state.dataHeatBal->Zone(zoneNum).TotalSurfArea; + state.dataHeatBal->Space(spaceNum).SolarEnclosureNum = spaceNum; + thisEnclosure.ExtWindowArea = state.dataHeatBal->Space(spaceNum).ExtWindowArea; + thisEnclosure.TotalSurfArea = state.dataHeatBal->Space(spaceNum).TotalSurfArea; } } if (radiantSetup) { - state.dataViewFactor->NumOfRadiantEnclosures = state.dataGlobal->NumOfZones; + state.dataViewFactor->NumOfRadiantEnclosures = state.dataGlobal->NumOfSpaces; } else { - state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->NumOfZones; + state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->NumOfSpaces; } } } diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index b3dbb0d0f78..f64edb29233 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -382,7 +382,7 @@ namespace SurfaceGeometry { void SetupShadeSurfacesForSolarCalcs(EnergyPlusData &state); void SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, - Array1D &Enclosures, // Radiant or Solar Enclosures + Array1D &Enclosures, // Radiant or Solar Enclosures SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar bool &ErrorsFound); // Set to true if errors found From 6eb480455cc985db15c20dc47f9b1ba36e7c51e2 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 25 Jun 2021 16:18:24 -0500 Subject: [PATCH 25/98] Space - Internal gains --- src/EnergyPlus/DataRoomAirModel.hh | 7 +- .../HeatBalanceInternalHeatGains.cc | 111 ++-- .../HeatBalanceInternalHeatGains.hh | 16 + src/EnergyPlus/InternalHeatGains.cc | 601 ++++++++---------- src/EnergyPlus/InternalHeatGains.hh | 19 +- src/EnergyPlus/RoomAirModelAirflowNetwork.cc | 9 +- src/EnergyPlus/RoomAirModelManager.cc | 54 +- 7 files changed, 398 insertions(+), 419 deletions(-) diff --git a/src/EnergyPlus/DataRoomAirModel.hh b/src/EnergyPlus/DataRoomAirModel.hh index 21f305ef7a2..e18d39b0fa9 100644 --- a/src/EnergyPlus/DataRoomAirModel.hh +++ b/src/EnergyPlus/DataRoomAirModel.hh @@ -534,9 +534,10 @@ namespace DataRoomAirModel { Array1D SurfMask; // Sized to num of surfs in Zone, true if surface is associated with this node std::string NodeIntGainsListName; // name of node's internal gains list bool HasIntGainsAssigned; // True if this node has internal gain assigned - int NumIntGains; // Number of internal gain objects - Array1D IntGainsDeviceIndices; // sized to NumIntGains, index pointers to internal gains struct - Array1D IntGainsFractions; // sized to NumIntGains, gain fractions to this node + int NumIntGains; // Number of mathching internal gain objects for all spaces in the zone + Array1D IntGainsDeviceSpaces; // index pointers to space struct + Array1D IntGainsDeviceIndices; // index pointers to internal gains struct + Array1D IntGainsFractions; // gain fractions to this node Array1D IntGain; // Internal gain struct std::string NodeHVACListName; // name of node's HVAC list bool HasHVACAssigned; // True if HVAC systems are assigned to this node diff --git a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc index 2b2a303c3e0..6d48696fe0c 100644 --- a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc +++ b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc @@ -70,13 +70,46 @@ void SetupZoneInternalGain(EnergyPlusData &state, Real64 *GenericContamGainRate, int RetNodeNum // for return air heat gains ) +{ + // Distribute zone internal gain across all spaces in the zone weighted by floor area + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + Real64 gainFrac = state.dataHeatBal->Space(spaceNum).FloorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; + SetupSpaceInternalGain(state, + spaceNum, + gainFrac, + cComponentObject, + cComponentName, + IntGainComp_TypeOfNum, + ConvectionGainRate, + ReturnAirConvectionGainRate, + ThermalRadiationGainRate, + LatentGainRate, + ReturnAirLatentGainRate, + CarbonDioxideGainRate, + GenericContamGainRate, + RetNodeNum); + } +} +void SetupSpaceInternalGain(EnergyPlusData &state, + int const SpaceNum, + Real64 SpaceGainFraction, // Fraction of gain value assigned to this space + std::string const &cComponentObject, // object class name for device contributing internal gain + std::string const &cComponentName, // user unique name for device + int const IntGainComp_TypeOfNum, + Real64 *ConvectionGainRate, // pointer target for remote convection gain value to be accessed + Real64 *ReturnAirConvectionGainRate, + Real64 *ThermalRadiationGainRate, // pointer target for remote IR radiation gain value to be accessed + Real64 *LatentGainRate, + Real64 *ReturnAirLatentGainRate, + Real64 *CarbonDioxideGainRate, + Real64 *GenericContamGainRate, + int RetNodeNum // for return air heat gains +) { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN November 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // provide a general interface for setting up devices with internal gains @@ -86,13 +119,10 @@ void SetupZoneInternalGain(EnergyPlusData &state, // devices are internal gains like people, lights, electric equipment // and HVAC components with skin loss models like thermal tanks, and power conditioning. - // Using/Aliasing using namespace DataHeatBalance; - // SUBROUTINE PARAMETER DEFINITIONS: int const DeviceAllocInc(100); - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int IntGainsNum; bool FoundIntGainsType; bool FoundDuplicate; @@ -115,11 +145,12 @@ void SetupZoneInternalGain(EnergyPlusData &state, return; } - for (IntGainsNum = 1; IntGainsNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++IntGainsNum) { - if ((state.dataHeatBal->ZoneIntGain(ZoneNum).Device(IntGainsNum).CompObjectType == UpperCaseObjectType) && - (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(IntGainsNum).CompTypeOfNum == IntGainComp_TypeOfNum)) { + auto &thisIntGain = state.dataHeatBal->SpaceIntGainDevices(SpaceNum); + for (IntGainsNum = 1; IntGainsNum <= thisIntGain.NumberOfDevices; ++IntGainsNum) { + if ((thisIntGain.Device(IntGainsNum).CompObjectType == UpperCaseObjectType) && + (thisIntGain.Device(IntGainsNum).CompTypeOfNum == IntGainComp_TypeOfNum)) { FoundIntGainsType = true; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(IntGainsNum).CompObjectName == UpperCaseObjectName) { + if (thisIntGain.Device(IntGainsNum).CompObjectName == UpperCaseObjectName) { FoundDuplicate = true; break; } @@ -134,70 +165,58 @@ void SetupZoneInternalGain(EnergyPlusData &state, return; } - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device.allocate(DeviceAllocInc); - state.dataHeatBal->ZoneIntGain(ZoneNum).MaxNumberOfDevices = DeviceAllocInc; + if (thisIntGain.NumberOfDevices == 0) { + thisIntGain.Device.allocate(DeviceAllocInc); + thisIntGain.MaxNumberOfDevices = DeviceAllocInc; } else { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices + 1 > state.dataHeatBal->ZoneIntGain(ZoneNum).MaxNumberOfDevices) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device.redimension(state.dataHeatBal->ZoneIntGain(ZoneNum).MaxNumberOfDevices += DeviceAllocInc); + if (thisIntGain.NumberOfDevices + 1 > thisIntGain.MaxNumberOfDevices) { + thisIntGain.Device.redimension(thisIntGain.MaxNumberOfDevices += DeviceAllocInc); } } - ++state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; + ++thisIntGain.NumberOfDevices; - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).CompObjectType = UpperCaseObjectType; - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).CompObjectName = UpperCaseObjectName; - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).CompTypeOfNum = IntGainComp_TypeOfNum; + thisIntGain.Device(thisIntGain.NumberOfDevices).CompObjectType = UpperCaseObjectType; + thisIntGain.Device(thisIntGain.NumberOfDevices).CompObjectName = UpperCaseObjectName; + thisIntGain.Device(thisIntGain.NumberOfDevices).CompTypeOfNum = IntGainComp_TypeOfNum; + thisIntGain.Device(thisIntGain.NumberOfDevices).SpaceGainFrac = SpaceGainFraction; // note pointer assignments in code below! if (ConvectionGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrConvectGainRate = - ConvectionGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrConvectGainRate = ConvectionGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrConvectGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrConvectGainRate = &state.dataHeatBal->zeroPointerVal; } if (ReturnAirConvectionGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrReturnAirConvGainRate = - ReturnAirConvectionGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirConvGainRate = ReturnAirConvectionGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrReturnAirConvGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirConvGainRate = &state.dataHeatBal->zeroPointerVal; } if (ThermalRadiationGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrRadiantGainRate = - ThermalRadiationGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrRadiantGainRate = ThermalRadiationGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrRadiantGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrRadiantGainRate = &state.dataHeatBal->zeroPointerVal; } if (LatentGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrLatentGainRate = LatentGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrLatentGainRate = LatentGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrLatentGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrLatentGainRate = &state.dataHeatBal->zeroPointerVal; } if (ReturnAirLatentGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrReturnAirLatentGainRate = - ReturnAirLatentGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirLatentGainRate = ReturnAirLatentGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrReturnAirLatentGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirLatentGainRate = &state.dataHeatBal->zeroPointerVal; } if (CarbonDioxideGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrCarbonDioxideGainRate = - CarbonDioxideGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrCarbonDioxideGainRate = CarbonDioxideGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrCarbonDioxideGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrCarbonDioxideGainRate = &state.dataHeatBal->zeroPointerVal; } if (GenericContamGainRate) { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrGenericContamGainRate = - GenericContamGainRate; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrGenericContamGainRate = GenericContamGainRate; } else { - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).PtrGenericContamGainRate = - &state.dataHeatBal->zeroPointerVal; + thisIntGain.Device(thisIntGain.NumberOfDevices).PtrGenericContamGainRate = &state.dataHeatBal->zeroPointerVal; } - state.dataHeatBal->ZoneIntGain(ZoneNum).Device(state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices).ReturnAirNodeNum = RetNodeNum; + thisIntGain.Device(thisIntGain.NumberOfDevices).ReturnAirNodeNum = RetNodeNum; } } // namespace EnergyPlus diff --git a/src/EnergyPlus/HeatBalanceInternalHeatGains.hh b/src/EnergyPlus/HeatBalanceInternalHeatGains.hh index b2522c672ab..615cc9c40bc 100644 --- a/src/EnergyPlus/HeatBalanceInternalHeatGains.hh +++ b/src/EnergyPlus/HeatBalanceInternalHeatGains.hh @@ -69,6 +69,22 @@ void SetupZoneInternalGain(EnergyPlusData &state, int RetNodeNum = 0 // for return air heat gains ); +void SetupSpaceInternalGain(EnergyPlusData &state, + int SpaceNum, + Real64 SpaceGainFraction, // Fraction of gain value assigned to this space + std::string const &cComponentObject, // object class name for device contributing internal gain + std::string const &cComponentName, // user unique name for device + int IntGainComp_TypeOfNum, + Real64 *ConvectionGainRate = nullptr, // pointer target for remote convection gain value to be accessed + Real64 *ReturnAirConvectionGainRate = nullptr, + Real64 *ThermalRadiationGainRate = nullptr, // pointer target for remote IR radiation gain value to be accessed + Real64 *LatentGainRate = nullptr, + Real64 *ReturnAirLatentGainRate = nullptr, + Real64 *CarbonDioxideGainRate = nullptr, + Real64 *GenericContamGainRate = nullptr, + int RetNodeNum = 0 // for return air heat gains +); + struct HeatBalInternalHeatGainsData : BaseGlobalStruct { diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index c164818f617..85deb33995f 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -266,6 +266,8 @@ namespace InternalHeatGains { auto &ErrorsFound(state.dataInternalHeatGains->ErrorsFound); state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); state.dataHeatBal->ZnRpt.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); @@ -6144,6 +6146,43 @@ namespace InternalHeatGains { e.QSELost = 0.0; } + for (auto &e : state.dataHeatBal->SpaceIntGain) { + e.NOFOCC = 0.0; + e.QOCTOT = 0.0; + e.QOCSEN = 0.0; + e.QOCLAT = 0.0; + e.QOCRAD = 0.0; + e.QOCCON = 0.0; + e.QLTSW = 0.0; + e.QLTCRA = 0.0; + e.QLTRAD = 0.0; + e.QLTCON = 0.0; + e.QLTTOT = 0.0; + + e.QEELAT = 0.0; + e.QEERAD = 0.0; + e.QEECON = 0.0; + e.QEELost = 0.0; + e.QGELAT = 0.0; + e.QGERAD = 0.0; + e.QGECON = 0.0; + e.QGELost = 0.0; + e.QBBRAD = 0.0; + e.QBBCON = 0.0; + e.QOELAT = 0.0; + e.QOERAD = 0.0; + e.QOECON = 0.0; + e.QOELost = 0.0; + e.QHWLAT = 0.0; + e.QHWRAD = 0.0; + e.QHWCON = 0.0; + e.QHWLost = 0.0; + e.QSELAT = 0.0; + e.QSERAD = 0.0; + e.QSECON = 0.0; + e.QSELost = 0.0; + } + state.dataHeatBal->ZoneIntEEuse = zeroZoneCatEUse; // Set all member arrays to zeros for (auto &e : state.dataHeatBal->ZnRpt) { @@ -6458,21 +6497,21 @@ namespace InternalHeatGains { for (int NZ = 1; NZ <= state.dataGlobal->NumOfZones; ++NZ) { - SumAllInternalLatentGains(state, NZ, state.dataHeatBalFanSys->ZoneLatentGain(NZ)); + InternalHeatGains::SumAllInternalLatentGains(state, NZ, state.dataHeatBalFanSys->ZoneLatentGain(NZ)); // Added for hybrid model if (state.dataHybridModel->FlagHybridModel_PC) { - SumAllInternalLatentGainsExceptPeople(state, NZ, state.dataHeatBalFanSys->ZoneLatentGainExceptPeople(NZ)); + InternalHeatGains::SumAllInternalLatentGainsExceptPeople(state, NZ, state.dataHeatBalFanSys->ZoneLatentGainExceptPeople(NZ)); } } - // QL is per radiant enclosure (one or more zones if grouped by air boundaries) + // QL is per radiant enclosure (one or more spaces if grouped by air boundaries) for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneRadiantInfo(enclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); state.dataHeatBal->EnclRadQThermalRad(enclosureNum) = 0.0; - for (int const zoneNum : thisEnclosure.ZoneNums) { - Real64 zoneQL; - SumAllInternalRadiationGains(state, zoneNum, zoneQL); - state.dataHeatBal->EnclRadQThermalRad(enclosureNum) += zoneQL; + for (int const spaceNum : thisEnclosure.SpaceNums) { + Real64 spaceQL; + InternalHeatGains::SumAllSpaceInternalRadiationGains(state, spaceNum, spaceQL); + state.dataHeatBal->EnclRadQThermalRad(enclosureNum) += spaceQL; } } @@ -6487,7 +6526,7 @@ namespace InternalHeatGains { int const lastSurf = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; if (firstSurf <= 0) continue; for (int SurfNum = firstSurf; SurfNum <= lastSurf; ++SurfNum) { - int const radEnclosureNum = state.dataHeatBal->Zone(zoneNum).RadiantEnclosureNum; + int const radEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(SurfNum).Space).RadiantEnclosureNum; if (!state.dataGlobal->doLoadComponentPulseNow) { state.dataHeatBal->SurfQRadThermInAbs(SurfNum) = state.dataHeatBal->EnclRadQThermalRad(radEnclosureNum) * state.dataHeatBal->EnclRadThermAbsMult(radEnclosureNum) * @@ -6497,7 +6536,7 @@ namespace InternalHeatGains { // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the delayed loads state.dataInternalHeatGains->adjQL = - state.dataInternalHeatGains->curQL + state.dataViewFactor->ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; + state.dataInternalHeatGains->curQL + state.dataViewFactor->EnclRadInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance // EnclRadThermAbsMult is a multiplier for each zone // QRadThermInAbs is the thermal radiation absorbed on inside surfaces @@ -7364,19 +7403,8 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 - // MODIFIED na - // RE-ENGINEERED na - - // Using/Aliasing - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int Loop; - int NZ; - bool DoRadiationUpdate; - bool ReSumLatentGains; - - DoRadiationUpdate = true; - ReSumLatentGains = false; + bool DoRadiationUpdate = true; + bool ReSumLatentGains = false; if (present(SuppressRadiationUpdate)) { if (SuppressRadiationUpdate) DoRadiationUpdate = false; @@ -7387,34 +7415,36 @@ namespace InternalHeatGains { } // store pointer values to hold generic internal gain values constant for entire timestep - for (NZ = 1; NZ <= state.dataGlobal->NumOfZones; ++NZ) { - for (Loop = 1; Loop <= state.dataHeatBal->ZoneIntGain(NZ).NumberOfDevices; ++Loop) { - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).ConvectGainRate = *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrConvectGainRate; - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).ReturnAirConvGainRate = - *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrReturnAirConvGainRate; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + auto &thisIntGain = state.dataHeatBal->SpaceIntGainDevices(spaceNum); + for (int Loop = 1; Loop <= thisIntGain.NumberOfDevices; ++Loop) { + thisIntGain.Device(Loop).ConvectGainRate = *thisIntGain.Device(Loop).PtrConvectGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.Device(Loop).ReturnAirConvGainRate = + *thisIntGain.Device(Loop).PtrReturnAirConvGainRate * thisIntGain.Device(Loop).SpaceGainFrac; if (DoRadiationUpdate) - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).RadiantGainRate = - *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrRadiantGainRate; - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).LatentGainRate = *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrLatentGainRate; - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).ReturnAirLatentGainRate = - *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrReturnAirLatentGainRate; - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).CarbonDioxideGainRate = - *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrCarbonDioxideGainRate; - state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).GenericContamGainRate = - *state.dataHeatBal->ZoneIntGain(NZ).Device(Loop).PtrGenericContamGainRate; + thisIntGain.Device(Loop).RadiantGainRate = *thisIntGain.Device(Loop).PtrRadiantGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.Device(Loop).LatentGainRate = *thisIntGain.Device(Loop).PtrLatentGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.Device(Loop).ReturnAirLatentGainRate = + *thisIntGain.Device(Loop).PtrReturnAirLatentGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.Device(Loop).CarbonDioxideGainRate = + *thisIntGain.Device(Loop).PtrCarbonDioxideGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.Device(Loop).GenericContamGainRate = + *thisIntGain.Device(Loop).PtrGenericContamGainRate * thisIntGain.Device(Loop).SpaceGainFrac; } - if (ReSumLatentGains) { - SumAllInternalLatentGains(state, NZ, state.dataHeatBalFanSys->ZoneLatentGain(NZ)); + } + if (ReSumLatentGains) { + for (int NZ = 1; NZ <= state.dataGlobal->NumOfZones; ++NZ) { + InternalHeatGains::SumAllInternalLatentGains(state, NZ, state.dataHeatBalFanSys->ZoneLatentGain(NZ)); // Added for the hybrid model if (state.dataHybridModel->FlagHybridModel_PC) { - SumAllInternalLatentGainsExceptPeople(state, NZ, state.dataHeatBalFanSys->ZoneLatentGainExceptPeople(NZ)); + InternalHeatGains::SumAllInternalLatentGainsExceptPeople(state, NZ, state.dataHeatBalFanSys->ZoneLatentGainExceptPeople(NZ)); } } } if (state.dataContaminantBalance->Contaminant.GenericContamSimulation && allocated(state.dataContaminantBalance->ZoneGCGain)) { - for (NZ = 1; NZ <= state.dataGlobal->NumOfZones; ++NZ) { - SumAllInternalGenericContamGains(state, NZ, state.dataContaminantBalance->ZoneGCGain(NZ)); + for (int NZ = 1; NZ <= state.dataGlobal->NumOfZones; ++NZ) { + InternalHeatGains::SumAllInternalGenericContamGains(state, NZ, state.dataContaminantBalance->ZoneGCGain(NZ)); state.dataHeatBal->ZnRpt(NZ).GCRate = state.dataContaminantBalance->ZoneGCGain(NZ); } } @@ -7428,24 +7458,20 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumConvGainRate; - int DeviceNum; + Real64 tmpSumConvGainRate = 0.0; - tmpSumConvGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumConvGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - tmpSumConvGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ConvectGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + } } SumConvGainRate = tmpSumConvGainRate; @@ -7454,19 +7480,18 @@ namespace InternalHeatGains { // For HybridModel void SumAllInternalConvectionGainsExceptPeople(EnergyPlusData &state, int const ZoneNum, Real64 &SumConvGainRateExceptPeople) { - Real64 tmpSumConvGainRateExceptPeople; - int DeviceNum; + Real64 tmpSumConvGainRateExceptPeople = 0.0; std::string str_people = "PEOPLE"; - tmpSumConvGainRateExceptPeople = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumConvGainRateExceptPeople = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompObjectType != str_people) { - tmpSumConvGainRateExceptPeople += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ConvectGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompObjectType != str_people) { + tmpSumConvGainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + } } } @@ -7482,31 +7507,24 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011cl - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfTypes; - Real64 tmpSumConvGainRate; - int DeviceNum; - int TypeNum; - - NumberOfTypes = size(GainTypeARR); - tmpSumConvGainRate = 0.0; + int NumberOfTypes = size(GainTypeARR); + Real64 tmpSumConvGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumConvGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - for (TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumConvGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ConvectGainRate; + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + } } } } @@ -7528,20 +7546,18 @@ namespace InternalHeatGains { // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - Real64 tmpSumRetAirGainRate; - int DeviceNum; - - tmpSumRetAirGainRate = 0.0; + Real64 tmpSumRetAirGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumReturnAirGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum - if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirNodeNum)) { - tmpSumRetAirGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirConvGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum + if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirNodeNum)) { + tmpSumRetAirGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirConvGainRate; + } } } @@ -7557,31 +7573,24 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfTypes; - Real64 tmpSumRetAirConvGainRate; - int DeviceNum; - int TypeNum; - - NumberOfTypes = size(GainTypeARR); - tmpSumRetAirConvGainRate = 0.0; + int NumberOfTypes = size(GainTypeARR); + Real64 tmpSumRetAirConvGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumReturnAirGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - for (TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRetAirConvGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirConvGainRate; + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRetAirConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirConvGainRate; + } } } } @@ -7589,33 +7598,27 @@ namespace InternalHeatGains { SumReturnAirGainRate = tmpSumRetAirConvGainRate; } - void SumAllInternalRadiationGains(EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for - Real64 &SumRadGainRate) + void SumAllSpaceInternalRadiationGains(EnergyPlusData &state, + int const SpaceNum, // space index pointer for which space to sum gains for + Real64 &SumRadGainRate) { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumRadGainRate; - int DeviceNum; - - tmpSumRadGainRate = 0.0; + Real64 tmpSumRadGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { + if (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices == 0) { SumRadGainRate = 0.0; return; } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - tmpSumRadGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).RadiantGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices; ++DeviceNum) { + tmpSumRadGainRate += state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).RadiantGainRate; } SumRadGainRate = tmpSumRadGainRate; @@ -7630,31 +7633,23 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfTypes; - Real64 tmpSumRadiationGainRate; - int DeviceNum; - int TypeNum; - - NumberOfTypes = size(GainTypeARR); - tmpSumRadiationGainRate = 0.0; + int NumberOfTypes = size(GainTypeARR); + Real64 tmpSumRadiationGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumRadiationGainRate = 0.0; - return; - } - - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - for (TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRadiationGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).RadiantGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRadiationGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).RadiantGainRate; + } } } } @@ -7670,28 +7665,23 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumLatentGainRate; - int DeviceNum; + Real64 tmpSumLatentGainRate = 0.0; - tmpSumLatentGainRate = 0.0; + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumLatentGainRate = 0.0; - return; - } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - tmpSumLatentGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).LatentGainRate; + SumLatentGainRate = tmpSumLatentGainRate; } - - SumLatentGainRate = tmpSumLatentGainRate; } // Added for hybrid model -- calculate the latent gain from all sources except for people @@ -7699,15 +7689,21 @@ namespace InternalHeatGains { int const ZoneNum, // zone index pointer for which zone to sum gains for Real64 &SumLatentGainRateExceptPeople) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumLatentGainRateExceptPeople = 0.0; - return; - } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { - SumLatentGainRateExceptPeople += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).LatentGainRate; + Real64 tmpSumLatentGainRateExceptPeople = 0.0; + + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } + + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { + tmpSumLatentGainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + } } } + + SumLatentGainRateExceptPeople = tmpSumLatentGainRateExceptPeople; } void SumInternalLatentGainsByTypes(EnergyPlusData &state, @@ -7719,31 +7715,24 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfTypes; - Real64 tmpSumLatentGainRate; - int DeviceNum; - int TypeNum; - - NumberOfTypes = size(GainTypeARR); - tmpSumLatentGainRate = 0.0; + int NumberOfTypes = size(GainTypeARR); + Real64 tmpSumLatentGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumLatentGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - for (TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).LatentGainRate; + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + } } } } @@ -7761,27 +7750,22 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Nov. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumLatentGainRate; - int DeviceNum; - - tmpSumLatentGainRate = 0.0; + Real64 tmpSumLatentGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumRetAirLatentGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum - if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirNodeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirLatentGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum + if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirNodeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirLatentGainRate; + } } } @@ -7796,25 +7780,20 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumCO2GainRate; - int DeviceNum; + Real64 tmpSumCO2GainRate = 0.0; - tmpSumCO2GainRate = 0.0; - - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumCO2GainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - tmpSumCO2GainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CarbonDioxideGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + tmpSumCO2GainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + } } SumCO2GainRate = tmpSumCO2GainRate; @@ -7825,16 +7804,21 @@ namespace InternalHeatGains { int const ZoneNum, // zone index pointer for which zone to sum gains for Real64 &SumCO2GainRateExceptPeople) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumCO2GainRateExceptPeople = 0.0; - return; - } + Real64 tmpSumCO2GainRateExceptPeople = 0.0; - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { - SumCO2GainRateExceptPeople += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CarbonDioxideGainRate; + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } + + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { + tmpSumCO2GainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + } } } + + SumCO2GainRateExceptPeople = tmpSumCO2GainRateExceptPeople; } void SumInternalCO2GainsByTypes(EnergyPlusData &state, @@ -7846,31 +7830,24 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gain types - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfTypes; - Real64 tmpSumCO2GainRate; - int DeviceNum; - int TypeNum; - - NumberOfTypes = size(GainTypeARR); - tmpSumCO2GainRate = 0.0; + int NumberOfTypes = size(GainTypeARR); + Real64 tmpSumCO2GainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumCO2GainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - for (TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumCO2GainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CarbonDioxideGainRate; + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumCO2GainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + } } } } @@ -7886,25 +7863,20 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR L. Gu // DATE WRITTEN Feb. 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing all the internal gain types based on the existing subrotine SumAllInternalCO2Gains - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 tmpSumGCGainRate; - int DeviceNum; - - tmpSumGCGainRate = 0.0; + Real64 tmpSumGCGainRate = 0.0; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumGCGainRate = 0.0; - return; - } + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + continue; + } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - tmpSumGCGainRate += state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).GenericContamGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + tmpSumGCGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).GenericContamGainRate; + } } SumGCGainRate = tmpSumGCGainRate; @@ -8041,31 +8013,29 @@ namespace InternalHeatGains { } int GetInternalGainDeviceIndex(EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for - int const IntGainTypeOfNum, // zone internal gain type number + int const SpaceNum, // space index pointer for which space to sum gains for + int const IntGainTypeOfNum, // space internal gain type number std::string_view const &IntGainName) // Internal gain name { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN June 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // utility to retrieve index pointer to a specific internal gain // the subroutine returns the index of matched internal gain device or -1 if no match found. - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int DeviceNum; int DeviceIndex; - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { + if (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices == 0) { DeviceIndex = -1; return DeviceIndex; } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices; ++DeviceNum) { - if ((UtilityRoutines::SameString(state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompObjectName, IntGainName.data())) && - (state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).CompTypeOfNum == IntGainTypeOfNum)) { + for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices; ++DeviceNum) { + if ((UtilityRoutines::SameString(state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).CompObjectName, + IntGainName.data())) && + (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).CompTypeOfNum == IntGainTypeOfNum)) { DeviceIndex = DeviceNum; break; } else { @@ -8077,7 +8047,8 @@ namespace InternalHeatGains { void SumInternalConvectionGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumConvGainRate) @@ -8086,45 +8057,29 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN June 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfIndices; - int NumberOfFractions; - Real64 tmpSumConvGainRate; - int loop; - int DeviceNum; - Real64 DeviceFraction; + assert(NumGains <= isize(DeviceSpaceARR)); + assert(NumGains <= isize(DeviceIndexARR)); + assert(NumGains <= isize(FractionARR)); - NumberOfIndices = isize(DeviceIndexARR); - NumberOfFractions = isize(FractionARR); - tmpSumConvGainRate = 0.0; + Real64 tmpSumConvGainRate = 0.0; - // remove this next safety check after testing code - if (NumberOfIndices != NumberOfFractions) { // throw error - ShowSevereError(state, "SumInternalConvectionGainsByIndices: bad arguments, sizes do not match"); - } - - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumConvGainRate = 0.0; - return; - } - - for (loop = 1; loop <= NumberOfIndices; ++loop) { - DeviceNum = DeviceIndexARR(loop); - DeviceFraction = FractionARR(loop); - tmpSumConvGainRate = tmpSumConvGainRate + state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ConvectGainRate * DeviceFraction; + for (int loop = 1; loop <= NumGains; ++loop) { + int spaceNum = DeviceSpaceARR(loop); + int deviceNum = DeviceIndexARR(loop); + Real64 deviceFraction = FractionARR(loop); + tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).ConvectGainRate * deviceFraction; } SumConvGainRate = tmpSumConvGainRate; } void SumInternalLatentGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumLatentGainRate) @@ -8133,45 +8088,30 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN June 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfIndices; - int NumberOfFractions; - Real64 tmpSumLatentGainRate; - int loop; - int DeviceNum; - Real64 DeviceFraction; - - NumberOfIndices = isize(DeviceIndexARR); - NumberOfFractions = isize(FractionARR); - tmpSumLatentGainRate = 0.0; + assert(NumGains <= isize(DeviceSpaceARR)); + assert(NumGains <= isize(DeviceIndexARR)); + assert(NumGains <= isize(FractionARR)); - // remove this next safety check after testing code - if (NumberOfIndices != NumberOfFractions) { // throw error - ShowSevereError(state, "SumInternalLatentGainsByIndices: bad arguments, sizes do not match"); - } - - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumLatentGainRate = 0.0; - return; - } + Real64 tmpSumLatentGainRate = 0.0; - for (loop = 1; loop <= NumberOfIndices; ++loop) { - DeviceNum = DeviceIndexARR(loop); - DeviceFraction = FractionARR(loop); - tmpSumLatentGainRate = tmpSumLatentGainRate + state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).LatentGainRate * DeviceFraction; + for (int loop = 1; loop <= NumGains; ++loop) { + int spaceNum = DeviceSpaceARR(loop); + int deviceNum = DeviceIndexARR(loop); + Real64 deviceFraction = FractionARR(loop); + tmpSumLatentGainRate = + tmpSumLatentGainRate + state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).LatentGainRate * deviceFraction; } SumLatentGainRate = tmpSumLatentGainRate; } void SumReturnAirConvectionGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumReturnAirGainRate) @@ -8180,39 +8120,22 @@ namespace InternalHeatGains { // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN June 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumberOfIndices; - int NumberOfFractions; - Real64 tmpSumReturnAirGainRate; - int loop; - int DeviceNum; - Real64 DeviceFraction; - - NumberOfIndices = isize(DeviceIndexARR); - NumberOfFractions = isize(FractionARR); - tmpSumReturnAirGainRate = 0.0; - - // remove this next safety check after testing code - if (NumberOfIndices != NumberOfFractions) { // throw error - ShowSevereError(state, "SumReturnAirConvectionGainsByIndice: bad arguments, sizes do not match"); - } + assert(NumGains <= isize(DeviceSpaceARR)); + assert(NumGains <= isize(DeviceIndexARR)); + assert(NumGains <= isize(FractionARR)); - if (state.dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices == 0) { - SumReturnAirGainRate = 0.0; - return; - } + Real64 tmpSumReturnAirGainRate = 0.0; - for (loop = 1; loop <= NumberOfIndices; ++loop) { - DeviceNum = DeviceIndexARR(loop); - DeviceFraction = FractionARR(loop); + for (int loop = 1; loop <= NumGains; ++loop) { + int spaceNum = DeviceSpaceARR(loop); + int deviceNum = DeviceIndexARR(loop); + Real64 deviceFraction = FractionARR(loop); tmpSumReturnAirGainRate = - tmpSumReturnAirGainRate + state.dataHeatBal->ZoneIntGain(ZoneNum).Device(DeviceNum).ReturnAirConvGainRate * DeviceFraction; + tmpSumReturnAirGainRate + state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).ReturnAirConvGainRate * deviceFraction; } SumReturnAirGainRate = tmpSumReturnAirGainRate; } diff --git a/src/EnergyPlus/InternalHeatGains.hh b/src/EnergyPlus/InternalHeatGains.hh index 1c7dc4c26f3..aed87776fcb 100644 --- a/src/EnergyPlus/InternalHeatGains.hh +++ b/src/EnergyPlus/InternalHeatGains.hh @@ -100,27 +100,30 @@ namespace InternalHeatGains { Real64 &SumConvGainRate); int GetInternalGainDeviceIndex(EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for - int const IntGainTypeOfNum, // zone internal gain type number + int const SpaceNum, // space index pointer for which space to sum gains for + int const IntGainTypeOfNum, // space internal gain type number std::string_view const &IntGainName); // Internal gain name void SumInternalConvectionGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumConvGainRate); void SumInternalLatentGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumLatentGainRate); void SumReturnAirConvectionGainsByIndices( EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for + int const NumGains, // number of device gains to sum + const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation const Array1D &FractionARR, // array of fractional multipliers to apply to devices Real64 &SumReturnAirGainRate); @@ -136,9 +139,9 @@ namespace InternalHeatGains { const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types Real64 &SumReturnAirGainRate); - void SumAllInternalRadiationGains(EnergyPlusData &state, - int const ZoneNum, // zone index pointer for which zone to sum gains for - Real64 &SumRadGainRate); + void SumAllSpaceInternalRadiationGains(EnergyPlusData &state, + int const SpaceNum, // space index pointer for which space to sum gains for + Real64 &SumRadGainRate); void SumInternalRadiationGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for diff --git a/src/EnergyPlus/RoomAirModelAirflowNetwork.cc b/src/EnergyPlus/RoomAirModelAirflowNetwork.cc index 01b3d747e0a..465e28d3aca 100644 --- a/src/EnergyPlus/RoomAirModelAirflowNetwork.cc +++ b/src/EnergyPlus/RoomAirModelAirflowNetwork.cc @@ -883,13 +883,15 @@ namespace RoomAirModelAirflowNetwork { // Sum all convective internal gains: SumIntGain SumInternalConvectionGainsByIndices(state, - ZoneNum, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).SumIntSensibleGain); SumInternalLatentGainsByIndices(state, - ZoneNum, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).SumIntLatentGain); @@ -897,7 +899,8 @@ namespace RoomAirModelAirflowNetwork { if (state.dataHeatBal->Zone(ZoneNum).NoHeatToReturnAir) { // ******************************************* SumReturnAirConvectionGainsByIndices(state, - ZoneNum, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, SumIntGain); diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 1310fe292dd..0ad02403446 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1381,7 +1381,6 @@ namespace RoomAirModelManager { int TotNumOfRAFNNodeSurfLists; int TotNumOfRAFNNodeGainsLists; int TotNumOfRAFNNodeHVACLists; - int IntGainIndex; int RAFNNodeNum; bool foundList; int NumSurfsThisNode; @@ -1390,7 +1389,6 @@ namespace RoomAirModelManager { int SurfFirst; int ListSurfNum; int SurfNum; - int numGains; int gainsLoop; int TypeNum; int numEquip; @@ -1663,7 +1661,9 @@ namespace RoomAirModelManager { } if (RAFNNodeNum > 0) { // found it foundList = true; - numGains = (NumAlphas + NumNumbers - 1) / 3; + int numInputGains = (NumAlphas + NumNumbers - 1) / 3; + int numSpacesInZone = int(state.dataHeatBal->Zone(ZoneNum).Spaces.size()); + int maxNumGains = numInputGains * numSpacesInZone; if (allocated(state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain)) { ShowSevereError(state, "GetRoomAirflowNetworkData: Invalid " + state.dataIPShortCut->cAlphaFieldNames(1) + " = " + @@ -1672,12 +1672,13 @@ namespace RoomAirModelManager { ShowContinueError(state, "Duplicate " + cCurrentModuleObject + " name."); ErrorsFound = true; } else { - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain.allocate(numGains); - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices.allocate(numGains); - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsFractions.allocate(numGains); + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain.allocate(maxNumGains); + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices.allocate(maxNumGains); + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceSpaces.allocate(maxNumGains); + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsFractions.allocate(maxNumGains); state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).HasIntGainsAssigned = true; - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).NumIntGains = numGains; - for (gainsLoop = 1; gainsLoop <= numGains; ++gainsLoop) { + int numGainsFound = 0; + for (gainsLoop = 1; gainsLoop <= numInputGains; ++gainsLoop) { TypeNum = UtilityRoutines::FindItemInList( state.dataIPShortCut->cAlphaArgs(gainsLoop * 2), ZoneIntGainDeviceTypes, NumZoneIntGainDeviceTypes); if (TypeNum > 0) { @@ -1689,19 +1690,34 @@ namespace RoomAirModelManager { ShowContinueError(state, "Entered in " + cCurrentModuleObject + " = " + state.dataIPShortCut->cAlphaArgs(1)); ShowContinueError(state, "incorrect type of internal gain"); ErrorsFound = true; + continue; } - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).Name = + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(numGains).Name = state.dataIPShortCut->cAlphaArgs(gainsLoop * 2 + 1); - // verify type and name and get pointer to device in internal gains structure array - IntGainIndex = GetInternalGainDeviceIndex( - state, - ZoneNum, - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).TypeOfNum, - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).Name); - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices(gainsLoop) = - IntGainIndex; - if (IntGainIndex < 0) { + bool gainFound = false; + // check all spaces in this zone for matching gains + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + // verify type and name and get pointer to device in internal gains structure array + int intGainIndex = GetInternalGainDeviceIndex( + state, + spaceNum, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).TypeOfNum, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).Name); + if (intGainIndex >= 0) { + gainFound = true; + ++numGainsFound; + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceSpaces(numGainsFound) = + spaceNum; + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices(numGainsFound) = + intGainIndex; + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsFractions(numGainsFound) = + state.dataIPShortCut->rNumericArgs(gainsLoop); + } + } + if (gainFound) { + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).NumIntGains = numGainsFound; + } else { ShowSevereError(state, "GetRoomAirflowNetworkData: Invalid " + state.dataIPShortCut->cAlphaFieldNames(gainsLoop * 2 + 1) + " = " + state.dataIPShortCut->cAlphaArgs(gainsLoop * 2 + 1)); @@ -1709,8 +1725,6 @@ namespace RoomAirModelManager { ShowContinueError(state, "Internal gain did not match correctly"); ErrorsFound = true; } - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsFractions(gainsLoop) = - state.dataIPShortCut->rNumericArgs(gainsLoop); } } } From 0bb0cc37f5d82cbb1ab112214e8f3d34cc6e9929 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 25 Jun 2021 16:58:15 -0500 Subject: [PATCH 26/98] Space - Add floor area input and calc --- src/EnergyPlus/DataHeatBalance.hh | 44 ++++++++++++++-------- src/EnergyPlus/DataSurfaces.hh | 5 ++- src/EnergyPlus/HeatBalanceManager.cc | 1 + src/EnergyPlus/SurfaceGeometry.cc | 56 +++++++++++++++++++++++++--- 4 files changed, 82 insertions(+), 24 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 3f00728a1c8..5b381f410f7 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -337,6 +337,9 @@ namespace DataHeatBalance { { std::string Name = ""; // Space name int ZoneNum = 0; // Pointer to Zone wich contains this space + Real64 UserEnteredFloorArea = 0.0; // User input floor area for this space + Real64 CalcFloorArea = 0.0; // Calculated floor area used for this space + bool HasFloor; // Has "Floor" surface std::string SpaceType = "General"; // Space type tag EPVector Tags; // Optional tags for reporting EPVector Surfaces; // Pointers to surfaces in this space @@ -344,10 +347,10 @@ namespace DataHeatBalance { // less out of bounds temperature errors allowed int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to - Real64 FloorArea = 0.0; // Floor area used for this space - Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone - Real64 TotalSurfArea = 0.0; // Total surface area for Zone - Real64 OriginZ = 0.0; // Z origin [m] + Real64 FloorArea = 0.0; // Floor area used for this space + Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone + Real64 TotalSurfArea = 0.0; // Total surface area for Zone + Real64 OriginZ = 0.0; // Z origin [m] }; struct SpaceListData @@ -1138,6 +1141,7 @@ namespace DataHeatBalance { std::string CompObjectType; // device object class name std::string CompObjectName; // device user unique name int CompTypeOfNum; // type of internal gain device identifier + Real64 SpaceGainFrac; // Fraction of gain value assigned to this Space (because gain rate might be for an entire zone) Real64 *PtrConvectGainRate; // POINTER to value of convection heat gain rate for device, watts Real64 ConvectGainRate; // current timestep value of convection heat gain rate for device, watts Real64 *PtrReturnAirConvGainRate; // POINTER to value of return air convection heat gain rate for device, W @@ -1156,18 +1160,18 @@ namespace DataHeatBalance { // Default Constructor GenericComponentZoneIntGainStruct() - : CompTypeOfNum(0), PtrConvectGainRate(nullptr), ConvectGainRate(0.0), PtrReturnAirConvGainRate(nullptr), ReturnAirConvGainRate(0.0), - PtrRadiantGainRate(nullptr), RadiantGainRate(0.0), PtrLatentGainRate(nullptr), LatentGainRate(0.0), PtrReturnAirLatentGainRate(nullptr), - ReturnAirLatentGainRate(0.0), PtrCarbonDioxideGainRate(nullptr), CarbonDioxideGainRate(0.0), PtrGenericContamGainRate(nullptr), - GenericContamGainRate(0.0), ReturnAirNodeNum(0) + : CompTypeOfNum(0), SpaceGainFrac(1.0), PtrConvectGainRate(nullptr), ConvectGainRate(0.0), PtrReturnAirConvGainRate(nullptr), + ReturnAirConvGainRate(0.0), PtrRadiantGainRate(nullptr), RadiantGainRate(0.0), PtrLatentGainRate(nullptr), LatentGainRate(0.0), + PtrReturnAirLatentGainRate(nullptr), ReturnAirLatentGainRate(0.0), PtrCarbonDioxideGainRate(nullptr), CarbonDioxideGainRate(0.0), + PtrGenericContamGainRate(nullptr), GenericContamGainRate(0.0), ReturnAirNodeNum(0) { } }; - struct ZoneSimData // Calculated data by Zone during each time step/hour + struct SpaceZoneSimData // Calculated data by Space or Zone during each time step/hour { // Members - Real64 NOFOCC; // Number of Occupants, zone total + Real64 NOFOCC; // Number of Occupants, space total Real64 QOCTOT; // Total Energy from Occupants Real64 QOCSEN; // Sensible Energy from Occupants Real64 QOCCON; // ENERGY CONVECTED FROM OCCUPANTS (WH) @@ -1200,20 +1204,24 @@ namespace DataHeatBalance { Real64 QSELAT; // LATENT ENERGY FROM Steam Equipment Real64 QBBCON; // ENERGY CONVECTED FROM BASEBOARD HEATING Real64 QBBRAD; // ENERGY RADIATED FROM BASEBOARD HEATING - int NumberOfDevices; - int MaxNumberOfDevices; - Array1D Device; // Default Constructor - ZoneSimData() + SpaceZoneSimData() : NOFOCC(0.0), QOCTOT(0.0), QOCSEN(0.0), QOCCON(0.0), QOCRAD(0.0), QOCLAT(0.0), QLTTOT(0.0), QLTCON(0.0), QLTRAD(0.0), QLTCRA(0.0), QLTSW(0.0), QEECON(0.0), QEERAD(0.0), QEELost(0.0), QEELAT(0.0), QGECON(0.0), QGERAD(0.0), QGELost(0.0), QGELAT(0.0), QOECON(0.0), QOERAD(0.0), QOELost(0.0), QOELAT(0.0), QHWCON(0.0), QHWRAD(0.0), QHWLost(0.0), QHWLAT(0.0), QSECON(0.0), QSERAD(0.0), QSELost(0.0), - QSELAT(0.0), QBBCON(0.0), QBBRAD(0.0), NumberOfDevices(0), MaxNumberOfDevices(0) + QSELAT(0.0), QBBCON(0.0), QBBRAD(0.0) { } }; + struct SpaceIntGainDeviceData + { + int NumberOfDevices = 0; + int MaxNumberOfDevices = 0; + Array1D Device; + }; + struct WindowBlindProperties { // Members @@ -2213,7 +2221,9 @@ struct HeatBalanceData : BaseGlobalStruct std::vector AirBoundaryMixingVol; // Air boundary simple mixing volume flow rate [m3/s] EPVector ZonePreDefRep; DataHeatBalance::ZonePreDefRepType BuildingPreDefRep; - EPVector ZoneIntGain; + EPVector ZoneIntGain; + EPVector SpaceIntGain; + EPVector SpaceIntGainDevices; EPVector SupportPillar; EPVector DeflectionState; EPVector SpectralData; @@ -2484,6 +2494,8 @@ struct HeatBalanceData : BaseGlobalStruct this->ZonePreDefRep.deallocate(); this->BuildingPreDefRep = DataHeatBalance::ZonePreDefRepType(); this->ZoneIntGain.deallocate(); + this->SpaceIntGain.deallocate(); + this->SpaceIntGainDevices.deallocate(); this->SupportPillar.deallocate(); this->DeflectionState.deallocate(); this->SpectralData.deallocate(); diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 9f83c79882d..142897260c9 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -654,9 +654,10 @@ namespace DataSurfaces { int FrameDivider; // Pointer to frame and divider information (windows only) Real64 Multiplier; // Multiplies glazed area, frame area and divider area (windows only) - // Air boundaries + // Air boundaries and spaces + int RadEnclIndex; // Pointer to raidant enclosure this surface belongs to int SolarEnclIndex; // Pointer to solar enclosure this surface belongs to - int SolarEnclSurfIndex; // Pointer to solar enclosure surface data, ZoneSolarInfo(n).SurfacePtr(RadEnclSurfIndex) points to this surface + int SolarEnclSurfIndex; // Pointer to solar enclosure surface data, EnclSolInfo(n).SurfacePtr(SolarEnclSurfIndex) points to this surface bool IsAirBoundarySurf; // True if surface is an air boundary surface (Construction:AirBoundary) // Default Constructor SurfaceData() diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 6bd9991bff1..542b4842b5d 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5455,6 +5455,7 @@ namespace HeatBalanceManager { thisSpace.Name = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); std::string zoneName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_name"); + thisSpace.UserEnteredFloorArea = ip->getRealFieldValue(objectFields, objectSchemaProps, "floor_area"); int zoneNum = UtilityRoutines::FindItemInList(zoneName, state.dataHeatBal->Zone); if (zoneNum > 0) { thisSpace.ZoneNum = zoneNum; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 871be7b62cb..c3f6b729c05 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2359,7 +2359,7 @@ namespace SurfaceGeometry { } } - // Set up Floor Areas for Zones + // Set up Floor Areas for Zones and Spaces if (!SurfError) { for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { for (int SurfNum = state.dataHeatBal->Zone(ZoneNum).HTSurfaceFirst; SurfNum <= state.dataHeatBal->Zone(ZoneNum).HTSurfaceLast; @@ -2367,6 +2367,8 @@ namespace SurfaceGeometry { if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Floor) { state.dataHeatBal->Zone(ZoneNum).FloorArea += state.dataSurface->Surface(SurfNum).Area; state.dataHeatBal->Zone(ZoneNum).HasFloor = true; + int spaceNum = state.dataSurface->Surface(SurfNum).Space; + state.dataHeatBal->Space(spaceNum).FloorArea += state.dataSurface->Surface(SurfNum).Area; } if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Roof) { state.dataHeatBal->Zone(ZoneNum).CeilingArea += state.dataSurface->Surface(SurfNum).Area; @@ -2411,6 +2413,46 @@ namespace SurfaceGeometry { state.dataHeatBal->Zone(ZoneNum).FloorArea = state.dataHeatBal->Zone(ZoneNum).CalcFloorArea; // redundant, already done. } } + + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + state.dataHeatBal->Space(spaceNum).CalcFloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; + if (state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea != DataGlobalConstants::AutoCalculate) { + // Check entered vs calculated + if (state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea > 0.0) { // User entered Space floor area, + // produce message if not near calculated + if (state.dataHeatBal->Space(spaceNum).CalcFloorArea > 0.0) { + diffp = + std::abs(state.dataHeatBal->Space(spaceNum).CalcFloorArea - state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea) / + state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea; + if (diffp > 0.05) { + ++ErrCount; + if (ErrCount == 1 && !state.dataGlobal->DisplayExtraWarnings) { + ShowWarningError(state, RoutineName + "Entered Space Floor Areas differ from calculated Space Floor Area(s)."); + ShowContinueError(state, + "...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual Spaces."); + } + if (state.dataGlobal->DisplayExtraWarnings) { + // Warn user of using specified Space Floor Area + ShowWarningError(state, + RoutineName + "Entered Floor Area entered for Space=\"" + + state.dataHeatBal->Space(spaceNum).Name + + "\" significantly different from calculated Floor Area"); + ShowContinueError( + state, + format("Entered Space Floor Area value={:.2R}, Calculated Space Floor Area value={:.2R}, entered " + "Floor Area will be used in calculations.", + state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea, + state.dataHeatBal->Space(spaceNum).CalcFloorArea)); + } + } + } + state.dataHeatBal->Space(spaceNum).FloorArea = state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea; + state.dataHeatBal->Space(spaceNum).HasFloor = true; + } + } else { + state.dataHeatBal->Space(spaceNum).FloorArea = state.dataHeatBal->Space(spaceNum).CalcFloorArea; // redundant, already done. + } + } } for (int SurfNum = 1; SurfNum <= MovedSurfs; ++SurfNum) { // TotSurfaces @@ -14540,10 +14582,11 @@ namespace SurfaceGeometry { } } - void SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, - Array1D &Enclosures, // Radiant or Solar Enclosures - SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar - bool &ErrorsFound) // Set to true if errors found + void + SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, + Array1D &Enclosures, // Radiant or Solar Enclosures + SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar + bool &ErrorsFound) // Set to true if errors found { std::string RoutineName = "SetupEnclosuresAndAirBoundaries"; bool anyGroupedSpaces = false; @@ -14659,7 +14702,8 @@ namespace SurfaceGeometry { state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).ExtWindowArea; thisEnclosure.TotalSurfArea += state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).TotalSurfArea; - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = + otherSideEnclosureNum; } } else if (thisSideEnclosureNum != otherSideEnclosureNum) { // If both sides are already assigned to an enclosure, then merge the two enclosures From 015ee1732ca93e1aefeb7056c38945a672044923 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sat, 26 Jun 2021 14:36:13 -0500 Subject: [PATCH 27/98] Space - People --- idd/Energy+.idd.in | 23 +- src/EnergyPlus/DataHeatBalance.hh | 36 +- src/EnergyPlus/InternalHeatGains.cc | 601 +++++++++++++++++++++++----- 3 files changed, 538 insertions(+), 122 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 97e59fc3842..e5d150fb1a4 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -9250,6 +9250,14 @@ Space, \required-field \type object-list \object-list ZoneNames + N1 , \field Floor Area + \note If this field is 0.0, negative or autocalculate, then the floor area of the space + \note is automatically calculated and used in subsequent calculations. + \note If this field is positive, then the number entered here will be used. + \units m2 + \type real + \autocalculatable + \default autocalculate A3, \field Space Type \note Space type is used to tag spaces by activity type, such as office, classroom, storage, etc. \type alpha @@ -20999,17 +21007,18 @@ RoomAirSettings:AirflowNetwork, People, \memo Sets internal gains and contaminant rates for occupants in the zone. - \memo If you use a ZoneList in the Zone or ZoneList name field then this definition applies - \memo to all the zones in the ZoneList. + \memo If you use a ZoneList of SpaceList in the Zone or ZoneList or Space or SpaceList name field + \memo then this definition applies to all the zones or spaces in the list. \min-fields 10 A1 , \field Name \required-field \type alpha \reference PeopleNames - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Number of People Schedule Name \required-field \type object-list @@ -21019,8 +21028,8 @@ People, \note The entered calculation method is used to create the maximum number of people \note for this set of attributes (i.e. sensible fraction, schedule, etc) \note Choices: People -- simply enter number of occupants. - \note People per Zone Floor Area -- enter the number to apply. Value * Floor Area = Number of people - \note Zone Floor Area per Person -- enter the number to apply. Floor Area / Value = Number of people + \note People per Floor Area -- enter the number to apply. Value * Floor Area = Number of people + \note Floor Area per Person -- enter the number to apply. Floor Area / Value = Number of people \type choice \key People \key People/Area @@ -21029,11 +21038,11 @@ People, N1 , \field Number of People \type real \minimum 0 - N2 , \field People per Zone Floor Area + N2 , \field People per Floor Area \type real \minimum 0 \units person/m2 - N3 , \field Zone Floor Area per Person + N3 , \field Floor Area per Person \type real \minimum 0 \units m2/person diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 5b381f410f7..3e62542ef78 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -356,6 +356,7 @@ namespace DataHeatBalance { struct SpaceListData { std::string Name = ""; // Space List name + int NumOfSpaces = 0; // Number of spaces in the list std::string::size_type MaxSpaceNameLength = 0u; // Max Name length of Spaces in the list EPVector Spaces; // Pointers to Spaces in the list }; @@ -573,27 +574,28 @@ namespace DataHeatBalance { struct GlobalInternalGainMiscObject { // Members - std::string Name; - int ZoneOrZoneListPtr; - int NumOfZones; - int StartPtr; - bool ZoneListActive; - - // Default Constructor - GlobalInternalGainMiscObject() : ZoneOrZoneListPtr(0), NumOfZones(0), StartPtr(0), ZoneListActive(false) - { - } + std::string Name = ""; + int ZoneOrZoneListPtr = 0; + int NumOfZones = 0; + int StartPtr = 0; + bool ZoneListActive = false; + int SpaceOrSpaceListPtr = 0; + int NumOfSpaces = 0; + int SpaceStartPtr = 0; + bool SpaceListActive = false; }; struct PeopleData { // Members - std::string Name; // PEOPLE object name - int ZonePtr; // Pointer to the zone number for this people statement - Real64 NumberOfPeople; // Maximum number of people for this statement - int NumberOfPeoplePtr; // Pointer to schedule for number of people - bool EMSPeopleOn; // EMS actuating number of people if .TRUE. - Real64 EMSNumberOfPeople; // Value EMS is directing to use for override + std::string Name; // PEOPLE object name + int ZonePtr; // Pointer to the zone number for this people statement + EPVector SpacePtrs; // Pointers to space numbers for this people statement + EPVector SpaceFracs; // Fraction of total gains applied to each space + Real64 NumberOfPeople; // Maximum number of people for this statement + int NumberOfPeoplePtr; // Pointer to schedule for number of people + bool EMSPeopleOn; // EMS actuating number of people if .TRUE. + Real64 EMSNumberOfPeople; // Value EMS is directing to use for override // Note that the schedule and maximum number was kept for people since it seemed likely that // users would want to assign the same schedule to multiple people statements. int ActivityLevelPtr; // Pointer to schedule for activity level @@ -2272,6 +2274,7 @@ struct HeatBalanceData : BaseGlobalStruct EPVector InfiltrationObjects; EPVector VentilationObjects; EPVector ZnRpt; + EPVector SpaceRpt; EPVector MassConservation; DataHeatBalance::ZoneAirMassFlowConservation ZoneAirMassFlow; EPVector ZoneLocalEnvironment; @@ -2544,6 +2547,7 @@ struct HeatBalanceData : BaseGlobalStruct this->InfiltrationObjects.deallocate(); this->VentilationObjects.deallocate(); this->ZnRpt.deallocate(); + this->SpaceRpt.deallocate(); this->MassConservation.deallocate(); this->ZoneAirMassFlow = DataHeatBalance::ZoneAirMassFlowConservation(); this->ZoneLocalEnvironment.deallocate(); diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 85deb33995f..51f3c6f55d7 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -219,14 +219,12 @@ namespace InternalHeatGains { Array1D_string AlphaName; Array1D IHGNumbers; int IOStat; - int Loop; int NumAlpha; int NumNumber; int MaxAlpha; int MaxNumber; int OptionNum(0); // Autodesk:Init Initialization added to elim poss use uninitialized int lastOption; - Array1D_bool RepVarSet; // Variables for reporting nominal internal gains Real64 LightTot; // Total Lights for calculating lights per square meter Real64 ElecTot; // Total Electric Load for calculating electric per square meter @@ -245,9 +243,6 @@ namespace InternalHeatGains { Real64 maxOccupLoad; std::string CurrentModuleObject; bool errFlag; - int Item; - int ZLItem; - int Item1; // Formats static constexpr auto Format_720(" Zone Internal Gains Nominal, {},{:.2R},{:.1R},"); @@ -269,52 +264,62 @@ namespace InternalHeatGains { state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); state.dataHeatBal->ZnRpt.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->SpaceRpt.allocate(state.dataGlobal->NumOfSpaces); state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); - RepVarSet.dimension(state.dataGlobal->NumOfZones, true); + EPVector RepVarSet; + EPVector SpaceRepVarSet; + RepVarSet.allocate(state.dataGlobal->NumOfZones); + SpaceRepVarSet.allocate(state.dataGlobal->NumOfSpaces); + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } // Determine argument length of objects gotten by this routine MaxAlpha = -100; MaxNumber = -100; CurrentModuleObject = "People"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "Lights"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "ElectricEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "GasEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "HotWaterEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "SteamEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "OtherEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, Loop, NumAlpha, NumNumber); + state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); MaxAlpha = max(MaxAlpha, NumAlpha); MaxNumber = max(MaxNumber, NumNumber); @@ -323,8 +328,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; AlphaName = ""; - // CurrentModuleObject='Zone' - for (Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { + for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { // Overall Zone Variables SetupOutputVariable(state, "Zone Total Internal Radiant Heating Energy", @@ -398,6 +402,80 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(Loop).Name); } + for (int Loop = 1; Loop <= state.dataGlobal->NumOfSpaces; ++Loop) { + // Overall Space Variables + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, + "Space", + "Sum", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, + "Space", + "Average", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, + "Space", + "Sum", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, + "Space", + "Average", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, + "Space", + "Sum", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, + "Space", + "Average", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, + "Space", + "Sum", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, + "Space", + "Average", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, + "Space", + "Sum", + state.dataHeatBal->Space(Loop).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, + "Space", + "Average", + state.dataHeatBal->Space(Loop).Name); + } + // PEOPLE: Includes both information related to the heat balance and thermal comfort // First, allocate and initialize the People derived type CurrentModuleObject = "People"; @@ -406,7 +484,7 @@ namespace InternalHeatGains { state.dataHeatBal->TotPeople = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -423,29 +501,46 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { + int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + if (zoneNum > 0) { state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; ++state.dataHeatBal->TotPeople; state.dataHeatBal->PeopleObjects(Item).NumOfZones = 1; state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; - state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { + state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; + continue; + } + int spaceNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Space); + if (spaceNum > 0) { + state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; + ++state.dataHeatBal->TotPeople; + state.dataHeatBal->PeopleObjects(Item).NumOfZones = 1; + state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; + state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - state.dataHeatBal->TotPeople += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->PeopleObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; + continue; + } + int zoneListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); + if (zoneListNum > 0) { + state.dataHeatBal->TotPeople += state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; + state.dataHeatBal->PeopleObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; state.dataHeatBal->PeopleObjects(Item).ZoneListActive = true; - state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; + state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneListNum; + continue; + } + int spaceListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->SpaceList); + if (spaceListNum > 0) { + state.dataHeatBal->TotPeople += state.dataHeatBal->SpaceList(spaceListNum).NumOfSpaces; + state.dataHeatBal->PeopleObjects(Item).NumOfSpaces = state.dataHeatBal->SpaceList(spaceListNum).NumOfSpaces; + state.dataHeatBal->PeopleObjects(Item).SpaceListActive = true; + state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr = spaceListNum; + continue; } + ShowSevereError(state, + CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + + AlphaName(2) + "\" not found."); + ErrorsFound = true; + errFlag = true; } if (errFlag) { @@ -457,8 +552,8 @@ namespace InternalHeatGains { state.dataHeatBal->People.allocate(state.dataHeatBal->TotPeople); if (state.dataHeatBal->TotPeople > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -475,7 +570,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->PeopleObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->PeopleObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { state.dataHeatBal->People(Loop).Name = AlphaName(1); @@ -1296,6 +1391,91 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); } + // Space total report variables + for (int spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { + + if (SpaceRepVarSet(spaceNum)) { + SpaceRepVarSet(spaceNum) = false; + SetupOutputVariable(state, + "Space People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, + "Space", + "Sum", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, + "Space", + "Sum", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, + "Space", + "Sum", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, + "Space", + "Sum", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, + "Space", + "Sum", + state.dataHeatBal->Space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, + "Space", + "Average", + state.dataHeatBal->Space(spaceNum).Name); + } + } + if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "People", @@ -1330,7 +1510,7 @@ namespace InternalHeatGains { } // TotPeople > 0 // transfer the nominal number of people in a zone to the tabular reporting - for (Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { + for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { if (state.dataHeatBal->Zone(Loop).TotOccupants > 0.0) { if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0 && state.dataHeatBal->Zone(Loop).FloorArea / state.dataHeatBal->Zone(Loop).TotOccupants < 0.1) { @@ -1389,14 +1569,19 @@ namespace InternalHeatGains { } } - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "Lights"; state.dataHeatBal->NumLightsStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->LightsObjects.allocate(state.dataHeatBal->NumLightsStatements); state.dataHeatBal->TotLights = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -1413,8 +1598,8 @@ namespace InternalHeatGains { state.dataHeatBal->LightsObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -1447,8 +1632,8 @@ namespace InternalHeatGains { state.dataHeatBal->Lights.allocate(state.dataHeatBal->TotLights); if (state.dataHeatBal->TotLights > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -1465,7 +1650,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->LightsObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->LightsObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->LightsObjects(Item).ZoneListActive) { state.dataHeatBal->Lights(Loop).Name = AlphaName(1); @@ -1955,14 +2140,19 @@ namespace InternalHeatGains { PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtArea, "Interior Lighting Total", state.dataInternalHeatGains->sumArea); PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtPower, "Interior Lighting Total", state.dataInternalHeatGains->sumPower); - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "ElectricEquipment"; state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneElectricObjects.allocate(state.dataHeatBal->NumZoneElectricStatements); state.dataHeatBal->TotElecEquip = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -1979,8 +2169,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneElectricObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -2013,8 +2203,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneElectric.allocate(state.dataHeatBal->TotElecEquip); if (state.dataHeatBal->TotElecEquip > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -2031,7 +2221,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->ZoneElectricObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->ZoneElectricObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->ZoneElectricObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneElectric(Loop).Name = AlphaName(1); @@ -2414,14 +2604,19 @@ namespace InternalHeatGains { } // Item - Number of ZoneElectric objects } // Check on number of ZoneElectric - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "GasEquipment"; state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneGasObjects.allocate(state.dataHeatBal->NumZoneGasStatements); state.dataHeatBal->TotGasEquip = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -2438,8 +2633,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneGasObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -2472,8 +2667,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneGas.allocate(state.dataHeatBal->TotGasEquip); if (state.dataHeatBal->TotGasEquip > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -2490,7 +2685,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->ZoneGasObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->ZoneGasObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->ZoneGasObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneGas(Loop).Name = AlphaName(1); @@ -2908,14 +3103,19 @@ namespace InternalHeatGains { } // Item - number of gas statements } // check for number of gas statements - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "HotWaterEquipment"; state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->HotWaterEqObjects.allocate(state.dataHeatBal->NumHotWaterEqStatements); state.dataHeatBal->TotHWEquip = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -2932,8 +3132,8 @@ namespace InternalHeatGains { state.dataHeatBal->HotWaterEqObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -2966,8 +3166,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneHWEq.allocate(state.dataHeatBal->TotHWEquip); if (state.dataHeatBal->TotHWEquip > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -2984,7 +3184,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->HotWaterEqObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->HotWaterEqObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->HotWaterEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneHWEq(Loop).Name = AlphaName(1); @@ -3367,14 +3567,19 @@ namespace InternalHeatGains { } // Item - number of hot water statements } - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "SteamEquipment"; state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->SteamEqObjects.allocate(state.dataHeatBal->NumSteamEqStatements); state.dataHeatBal->TotStmEquip = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -3391,8 +3596,8 @@ namespace InternalHeatGains { state.dataHeatBal->SteamEqObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -3425,8 +3630,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneSteamEq.allocate(state.dataHeatBal->TotStmEquip); if (state.dataHeatBal->TotStmEquip > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -3443,7 +3648,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->SteamEqObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->SteamEqObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->SteamEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneSteamEq(Loop).Name = AlphaName(1); @@ -3826,14 +4031,19 @@ namespace InternalHeatGains { } // Item - number of hot water statements } - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "OtherEquipment"; state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->OtherEqObjects.allocate(state.dataHeatBal->NumOtherEqStatements); state.dataHeatBal->TotOthEquip = 0; errFlag = false; - for (Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { + for (int Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, Item, @@ -3850,8 +4060,8 @@ namespace InternalHeatGains { state.dataHeatBal->OtherEqObjects(Item).Name = AlphaName(1); - Item1 = UtilityRoutines::FindItemInList(AlphaName(3), state.dataHeatBal->Zone); - ZLItem = 0; + int Item1 = UtilityRoutines::FindItemInList(AlphaName(3), state.dataHeatBal->Zone); + int ZLItem = 0; if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) ZLItem = UtilityRoutines::FindItemInList(AlphaName(3), state.dataHeatBal->ZoneList); if (Item1 > 0) { @@ -3884,8 +4094,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneOtherEq.allocate(state.dataHeatBal->TotOthEquip); if (state.dataHeatBal->TotOthEquip > 0) { - Loop = 0; - for (Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { + int Loop = 0; + for (int Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -3902,7 +4112,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (Item1 = 1; Item1 <= state.dataHeatBal->OtherEqObjects(Item).NumOfZones; ++Item1) { + for (int Item1 = 1; Item1 <= state.dataHeatBal->OtherEqObjects(Item).NumOfZones; ++Item1) { ++Loop; if (!state.dataHeatBal->OtherEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneOtherEq(Loop).Name = AlphaName(1); @@ -4311,7 +4521,12 @@ namespace InternalHeatGains { } // Item - number of other equipment statements } - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); errFlag = false; @@ -4320,8 +4535,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq.allocate(state.dataHeatBal->NumZoneITEqStatements); if (state.dataHeatBal->NumZoneITEqStatements > 0) { - Loop = 0; - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { AlphaName = BlankString; IHGNumbers = 0.0; @@ -5184,7 +5398,7 @@ namespace InternalHeatGains { &state.dataHeatBal->ZoneITEq(Loop).ConGainRateToZone); } // Item - Number of ZoneITEq objects - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).HasAdjustedReturnTempByITE && (!state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps)) { ShowSevereError(state, @@ -5196,12 +5410,17 @@ namespace InternalHeatGains { } } // Check on number of ZoneITEq - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); - for (Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { AlphaName = ""; IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, @@ -5439,12 +5658,17 @@ namespace InternalHeatGains { &state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate); } - RepVarSet = true; + for (auto repVar : RepVarSet) { + repVar = true; + } + for (auto repVar : SpaceRepVarSet) { + repVar = true; + } CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneCO2Gen.allocate(state.dataHeatBal->TotCO2Gen); - for (Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { AlphaName = ""; IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, @@ -5558,7 +5782,7 @@ namespace InternalHeatGains { "Heat\n"); print(state.files.eio, Format_721); - for (Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { + for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { LightTot = 0.0; ElecTot = 0.0; GasTot = 0.0; @@ -5626,7 +5850,7 @@ namespace InternalHeatGains { print(state.files.eio, "0.0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,{}\n", BBHeatInd); } } - for (Loop = 1; Loop <= state.dataHeatBal->TotPeople; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotPeople; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5751,7 +5975,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.0R}\n", state.dataHeatBal->People(Loop).NomMaxNumberPeople); } } - for (Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5790,7 +6014,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R},", state.dataHeatBal->Lights(Loop).NomMinDesignLevel); print(state.files.eio, "{:.3R}\n", state.dataHeatBal->Lights(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->TotElecEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotElecEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5827,7 +6051,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R},", state.dataHeatBal->ZoneElectric(Loop).NomMinDesignLevel); print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneElectric(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5866,7 +6090,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneGas(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5905,7 +6129,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneHWEq(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5944,7 +6168,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneSteamEq(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5982,7 +6206,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneOtherEq(Loop).NomMaxDesignLevel); } - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -6023,7 +6247,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.10R}\n", state.dataHeatBal->ZoneITEq(Loop).DesignAirVolFlowRate); } - for (Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -6272,6 +6496,17 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; + + for (int index = 1; index <= state.dataGlobal->NumOfSpaces; ++index) { + int spaceNum = state.dataHeatBal->People(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->People(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { @@ -7267,6 +7502,174 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(ZoneLoop).TotTotalHeatGain = state.dataHeatBal->ZnRpt(ZoneLoop).TotTotalHeatGainRate * state.dataGlobal->TimeStepZoneSec; } + + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + // People + state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc = state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT; + state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT; + + // General Lights + state.dataHeatBal->SpaceRpt(spaceNum).LtsRetAirGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).LtsRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).LtsConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).LtsRetAirGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA; + state.dataHeatBal->SpaceRpt(spaceNum).LtsRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD; + state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT; + state.dataHeatBal->SpaceRpt(spaceNum).LtsConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON; + state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; + state.dataHeatBal->SpaceRpt(spaceNum).LtsElecConsump = state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGain; + + // Electric Equipment + state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).ElecLost = state.dataHeatBal->SpaceIntGain(spaceNum).QEELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).ElecConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEECON; + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD; + state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT; + state.dataHeatBal->SpaceRpt(spaceNum).ElecLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEELost; + state.dataHeatBal->SpaceRpt(spaceNum).ElecConsump = + state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain + state.dataHeatBal->SpaceRpt(spaceNum).ElecLost; + state.dataHeatBal->SpaceRpt(spaceNum).ElecTotGain = state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain + + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain; + state.dataHeatBal->SpaceRpt(spaceNum).ElecTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).ElecConGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGainRate; + + // Gas Equipment + state.dataHeatBal->SpaceRpt(spaceNum).GasConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).GasLost = state.dataHeatBal->SpaceIntGain(spaceNum).QGELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).GasConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGECON; + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD; + state.dataHeatBal->SpaceRpt(spaceNum).GasLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT; + state.dataHeatBal->SpaceRpt(spaceNum).GasLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGELost; + state.dataHeatBal->SpaceRpt(spaceNum).GasConsump = + state.dataHeatBal->SpaceRpt(spaceNum).GasConGain + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain + state.dataHeatBal->SpaceRpt(spaceNum).GasLost; + state.dataHeatBal->SpaceRpt(spaceNum).GasTotGain = state.dataHeatBal->SpaceRpt(spaceNum).GasConGain + + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain; + state.dataHeatBal->SpaceRpt(spaceNum).GasTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).GasConGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).GasLatGainRate; + + // Hot Water Equipment + state.dataHeatBal->SpaceRpt(spaceNum).HWConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).HWLost = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).HWConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON; + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD; + state.dataHeatBal->SpaceRpt(spaceNum).HWLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT; + state.dataHeatBal->SpaceRpt(spaceNum).HWLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost; + state.dataHeatBal->SpaceRpt(spaceNum).HWConsump = + state.dataHeatBal->SpaceRpt(spaceNum).HWConGain + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain + state.dataHeatBal->SpaceRpt(spaceNum).HWLost; + state.dataHeatBal->SpaceRpt(spaceNum).HWTotGain = state.dataHeatBal->SpaceRpt(spaceNum).HWConGain + + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain; + state.dataHeatBal->SpaceRpt(spaceNum).HWTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).HWConGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).HWLatGainRate; + + // Steam Equipment + state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).SteamLost = state.dataHeatBal->SpaceIntGain(spaceNum).QSELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).SteamConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSECON; + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD; + state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT; + state.dataHeatBal->SpaceRpt(spaceNum).SteamLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSELost; + state.dataHeatBal->SpaceRpt(spaceNum).SteamConsump = + state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain + state.dataHeatBal->SpaceRpt(spaceNum).SteamLost; + state.dataHeatBal->SpaceRpt(spaceNum).SteamTotGain = state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain + + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain; + state.dataHeatBal->SpaceRpt(spaceNum).SteamTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).SteamConGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGainRate; + + // Other Equipment + state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).OtherLost = state.dataHeatBal->SpaceIntGain(spaceNum).QOELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).OtherConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOECON; + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD; + state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT; + state.dataHeatBal->SpaceRpt(spaceNum).OtherLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOELost; + state.dataHeatBal->SpaceRpt(spaceNum).OtherConsump = + state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain + state.dataHeatBal->SpaceRpt(spaceNum).OtherLost; + state.dataHeatBal->SpaceRpt(spaceNum).OtherTotGain = state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain + + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain + + state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain; + state.dataHeatBal->SpaceRpt(spaceNum).OtherTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).OtherConGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGainRate; + + // Baseboard Heat + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGain = + state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGain = + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGain + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGain; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGainRate = + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGainRate + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGainRate; + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatElecCons = state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGain; + + // Overall Space Variables + + // these overalls include component gains from devices like water heater, water use, and generators + // working vars QFCConv QGenConv QFCRad QGenRad WaterUseLatentGain WaterThermalTankGain WaterUseSensibleGain + + state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGain = state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGain; + state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGainRate = state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGainRate; + + SumInternalRadiationGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate); + state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGain = + state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate * state.dataGlobal->TimeStepZoneSec; + + SumInternalConvectionGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate); + state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGain = + state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate * state.dataGlobal->TimeStepZoneSec; + + SumInternalLatentGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate); + state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGain = + state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate * state.dataGlobal->TimeStepZoneSec; + + state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGainRate = + state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate + state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate + + state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate + state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGainRate; + state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGain = + state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGainRate * state.dataGlobal->TimeStepZoneSec; + } } Real64 GetDesignLightingLevelForZone(EnergyPlusData &state, int const WhichZone) // name of zone From 7097f64537ea906b30ac89eb4ccb8e43f93fab2d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 14 Jul 2021 15:26:24 -0500 Subject: [PATCH 28/98] Space - Radiant enclosures and some solar enclosures --- src/EnergyPlus/DataHeatBalance.hh | 4 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 61 +++++++++++---------- src/EnergyPlus/HeatBalanceSurfaceManager.cc | 50 +++++++---------- src/EnergyPlus/OutputReportTabular.cc | 3 +- src/EnergyPlus/SurfaceGeometry.cc | 17 ++++++ 5 files changed, 73 insertions(+), 62 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 3e62542ef78..d71a229ac68 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -434,6 +434,8 @@ namespace DataHeatBalance { std::vector ZoneHTNonWindowSurfaceList; // List of non-window HT surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneHTWindowSurfaceList; // List of window surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneExtSolarSurfaceList; // List of exterior solar surfaces in a zone + int ZoneRadEnclosureFirst; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange + int ZoneRadEnclosureLast; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp @@ -517,7 +519,7 @@ namespace DataHeatBalance { OpaqOrIntMassSurfaceLast(-1), WindowSurfaceFirst(0), WindowSurfaceLast(-1), OpaqOrWinSurfaceFirst(0), OpaqOrWinSurfaceLast(-1), TDDDomeFirst(0), TDDDomeLast(-1), InsideConvectionAlgo(ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), - MaximumZ(0.0), + MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 7b839a0e8a3..2c5b46a3a02 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -190,11 +190,15 @@ namespace HeatBalanceIntRadExchange { int startEnclosure = 1; int endEnclosure = state.dataViewFactor->NumOfRadiantEnclosures; if (PartialResimulate) { - startEnclosure = endEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).RadiantEnclosureNum; - auto const &enclosure(state.dataViewFactor->EnclRadInfo(startEnclosure)); - for (int i : enclosure.SurfacePtr) { - NetLWRadToSurf(i) = 0.0; - state.dataSurface->SurfWinIRfromParentZone(i) = 0.0; + // ToDo: For now, use min and max enclosure numbers associated with this zone, this could include unrelated enclosures + startEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).ZoneRadEnclosureFirst; + endEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).ZoneRadEnclosureLast; + for (int enclosureNum = startEnclosure; enclosureNum <= endEnclosure; ++enclosureNum) { + auto const &enclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); + for (int i : enclosure.SurfacePtr) { + NetLWRadToSurf(i) = 0.0; + state.dataSurface->SurfWinIRfromParentZone(i) = 0.0; + } } } else { NetLWRadToSurf = 0.0; @@ -839,6 +843,7 @@ namespace HeatBalanceIntRadExchange { // Store pointers back to here state.dataSurface->Surface(surfNum).SolarEnclSurfIndex = enclosureSurfNum; state.dataSurface->Surface(surfNum).SolarEnclIndex = enclosureNum; + state.dataSurface->Surface(surfNum).RadEnclIndex = enclosureNum; // Radiant and Solar enclosures are parallel for now } // Store SurfaceReportNums to maintain original reporting order for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { @@ -1155,8 +1160,8 @@ namespace HeatBalanceIntRadExchange { } if (enclMatchFound) continue; // We're done with this instance // Find matching SpaceList name - int spaceListNum = UtilityRoutines::FindItemInList( - UtilityRoutines::MakeUPPERCase(thisSpaceOrSpaceListName), state.dataHeatBal->SpaceList); + int spaceListNum = + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase(thisSpaceOrSpaceListName), state.dataHeatBal->SpaceList); if (spaceListNum > 0) { // Look for radiant enclosure with same list of spaces auto &thisSpaceList(state.dataHeatBal->SpaceList(spaceListNum)); @@ -1455,17 +1460,17 @@ namespace HeatBalanceIntRadExchange { } void FixViewFactors(EnergyPlusData &state, - int const N, // NUMBER OF SURFACES - const Array1D &A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG - Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) - std::string &enclName, // Name of Enclosure being fixed + int const N, // NUMBER OF SURFACES + const Array1D &A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG + Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) + std::string &enclName, // Name of Enclosure being fixed std::vector const spaceNums, // Zones which are part of this enclosure - Real64 &OriginalCheckValue, // check of SUM(F) - N - Real64 &FixedCheckValue, // check after fixed of SUM(F) - N - Real64 &FinalCheckValue, // the one to go with - int &NumIterations, // number of iterations to fixed - Real64 &RowSum, // RowSum of Fixed - bool const anyIntMassInZone // are there any internal mass surfaces in the zone + Real64 &OriginalCheckValue, // check of SUM(F) - N + Real64 &FixedCheckValue, // check after fixed of SUM(F) - N + Real64 &FinalCheckValue, // the one to go with + int &NumIterations, // number of iterations to fixed + Real64 &RowSum, // RowSum of Fixed + bool const anyIntMassInZone // are there any internal mass surfaces in the zone ) { @@ -2058,24 +2063,22 @@ namespace HeatBalanceIntRadExchange { return surfNum; } - // Check if the surface and equipment are in the same zone or radiant enclosure - int const surfRadEnclNum = state.dataHeatBal->Zone(state.dataSurface->Surface(surfNum).Zone).RadiantEnclosureNum; - int const radSysEnclNum = state.dataHeatBal->Zone(RadSysZoneNum).RadiantEnclosureNum; - if (radSysEnclNum == 0) { + // Check if the surface and equipment are in the same zone + int const surfZoneNum = state.dataSurface->Surface(surfNum).Zone; + if (RadSysZoneNum == 0) { // This should never happen - but it does in some simple unit tests that are designed to throw errors - ShowSevereError(state, - routineName + "Somehow the radiant system enclosure number is zero for" + cCurrentModuleObject + " = " + RadSysName); + ShowSevereError(state, routineName + "Somehow the radiant system zone number is zero for" + cCurrentModuleObject + " = " + RadSysName); ErrorsFound = true; - } else if (surfRadEnclNum == 0) { + } else if (surfZoneNum == 0) { // This should never happen ShowSevereError(state, - routineName + "Somehow the surface enclosure number is zero for" + cCurrentModuleObject + " = " + RadSysName + + routineName + "Somehow the surface zone number is zero for" + cCurrentModuleObject + " = " + RadSysName + " and Surface = " + SurfaceName); // LCOV_EXCL_LINE ErrorsFound = true; // LCOV_EXCL_LINE - } else if (surfRadEnclNum != radSysEnclNum) { - ShowSevereError(state, routineName + "Surface = " + SurfaceName + " is not in the same zone or enclosure as the radiant equipment."); - ShowContinueError(state, "Surface zone or enclosure = " + state.dataViewFactor->EnclRadInfo(surfRadEnclNum).Name); - ShowContinueError(state, "Radiant equipment zone or enclosure = " + state.dataViewFactor->EnclRadInfo(radSysEnclNum).Name); + } else if (surfZoneNum != RadSysZoneNum) { + ShowSevereError(state, routineName + "Surface = " + SurfaceName + " is not in the same zone as the radiant equipment."); + ShowContinueError(state, "Surface zone or enclosure = " + state.dataHeatBal->Zone(surfZoneNum).Name); + ShowContinueError(state, "Radiant equipment zone or enclosure = " + state.dataHeatBal->Zone(RadSysZoneNum).Name); ShowContinueError(state, "Occurs for " + cCurrentModuleObject + " = " + RadSysName); ErrorsFound = true; } diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index af52878fcb3..b6a92143a00 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -3523,33 +3523,21 @@ void InitIntSolarDistribution(EnergyPlusData &state) // REFERENCES: // (I)BLAST legacy routine QSUN - // Using/Aliasing using DaylightingDevices::DistributeTDDAbsorbedSolar; using General::InterpSw; using namespace DataWindowEquivalentLayer; - // Locals - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: auto &Surface(state.dataSurface->Surface); // COMPUTE TOTAL SHORT-WAVE RADIATION ORIGINATING IN ZONE. // Note: If sun is not up, QS is only internal gains for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { - Real64 sumZoneQLTSW = 0.0; - for (int zoneNum : state.dataViewFactor->ZoneSolarInfo(enclosureNum).ZoneNums) { - sumZoneQLTSW += state.dataHeatBal->ZoneIntGain(zoneNum).QLTSW; + Real64 sumSpaceQLTSW = 0.0; + for (int spaceNum : state.dataViewFactor->EnclSolInfo(enclosureNum).SpaceNums) { + sumSpaceQLTSW += state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; } - state.dataHeatBal->EnclSolQSWRad(enclosureNum) = state.dataHeatBal->EnclSolQD(enclosureNum) + sumZoneQLTSW; - state.dataHeatBal->EnclSolQSWRadLights(enclosureNum) = sumZoneQLTSW; + state.dataHeatBal->EnclSolQSWRad(enclosureNum) = state.dataHeatBal->EnclSolQD(enclosureNum) + sumSpaceQLTSW; + state.dataHeatBal->EnclSolQSWRadLights(enclosureNum) = sumSpaceQLTSW; } if (state.dataHeatBalSurf->InterZoneWindow) { // DO INTERZONE DISTRIBUTION. @@ -3561,13 +3549,13 @@ void InitIntSolarDistribution(EnergyPlusData &state) for (int OtherenclosureNum = 1; OtherenclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++OtherenclosureNum) { if ((OtherenclosureNum != enclosureNum) && (state.dataHeatBalSurf->EnclSolRecDifShortFromZ(OtherenclosureNum))) { - Real64 sumZoneQLTSW = 0.0; - for (int zoneNum : state.dataViewFactor->ZoneSolarInfo(OtherenclosureNum).ZoneNums) { - sumZoneQLTSW += state.dataHeatBal->ZoneIntGain(zoneNum).QLTSW; + Real64 sumSpaceQLTSW = 0.0; + for (int spaceNum : state.dataViewFactor->EnclSolInfo(OtherenclosureNum).SpaceNums) { + sumSpaceQLTSW += state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; } state.dataHeatBal->EnclSolQSWRad(enclosureNum) += state.dataHeatBalSurf->ZoneFractDifShortZtoZ(enclosureNum, OtherenclosureNum) * - (state.dataHeatBal->EnclSolQD(OtherenclosureNum) + sumZoneQLTSW); + (state.dataHeatBal->EnclSolQD(OtherenclosureNum) + sumSpaceQLTSW); state.dataHeatBal->ZoneDifSolFrIntWinsRep(enclosureNum) += state.dataHeatBalSurf->ZoneFractDifShortZtoZ(enclosureNum, OtherenclosureNum) * state.dataHeatBal->EnclSolQD(OtherenclosureNum); @@ -3588,7 +3576,7 @@ void InitIntSolarDistribution(EnergyPlusData &state) if (Surface(SurfNum).Class == SurfaceClass::Shading) continue; int const enclosureNum = Surface(SurfNum).SolarEnclIndex; state.dataHeatBal->SurfIntBmIncInsSurfIntensRep(SurfNum) = - state.dataHeatBal->ZoneBmSolFrIntWinsRep(enclosureNum) / state.dataViewFactor->ZoneSolarInfo(enclosureNum).TotalSurfArea; + state.dataHeatBal->ZoneBmSolFrIntWinsRep(enclosureNum) / state.dataViewFactor->EnclSolInfo(enclosureNum).TotalSurfArea; state.dataHeatBal->SurfIntBmIncInsSurfAmountRep(SurfNum) = state.dataHeatBal->SurfIntBmIncInsSurfIntensRep(SurfNum) * (Surface(SurfNum).Area + state.dataSurface->SurfWinDividerArea(SurfNum)); state.dataHeatBal->SurfIntBmIncInsSurfAmountRepEnergy(SurfNum) = @@ -3618,9 +3606,9 @@ void InitIntSolarDistribution(EnergyPlusData &state) for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { int const firstSurfOpaque = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceFirst; int const lastSurfOpaque = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceLast; - int const radEnclosureNum = state.dataHeatBal->Zone(zoneNum).RadiantEnclosureNum; - int const solEnclosureNum = state.dataHeatBal->Zone(zoneNum).SolarEnclosureNum; for (int SurfNum = firstSurfOpaque; SurfNum <= lastSurfOpaque; ++SurfNum) { + int const radEnclosureNum = Surface(SurfNum).RadEnclIndex; + int const solEnclosureNum = Surface(SurfNum).SolarEnclIndex; int const ConstrNum = Surface(SurfNum).Construction; Real64 AbsIntSurf = state.dataHeatBalSurf->SurfAbsSolarInt(SurfNum); @@ -3666,6 +3654,8 @@ void InitIntSolarDistribution(EnergyPlusData &state) int const firstSurfWin = state.dataHeatBal->Zone(zoneNum).WindowSurfaceFirst; int const lastSurfWin = state.dataHeatBal->Zone(zoneNum).WindowSurfaceLast; for (int SurfNum = firstSurfWin; SurfNum <= lastSurfWin; ++SurfNum) { // Window + int const radEnclosureNum = Surface(SurfNum).RadEnclIndex; + int const solEnclosureNum = Surface(SurfNum).SolarEnclIndex; int const ConstrNum = state.dataSurface->SurfActiveConstruction(SurfNum); if (state.dataSurface->SurfWinWindowModelType(SurfNum) != WindowEQLModel) { @@ -3685,7 +3675,7 @@ void InitIntSolarDistribution(EnergyPlusData &state) // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the state.dataHeatBalSurfMgr->adjQL = - state.dataHeatBalSurfMgr->curQL + state.dataViewFactor->ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; + state.dataHeatBalSurfMgr->curQL + state.dataViewFactor->EnclRadInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance // EnclRadThermAbsMult is a multiplier for each zone/enclosure // QRadThermInAbs is the thermal radiation absorbed on inside surfaces @@ -3847,7 +3837,7 @@ void InitIntSolarDistribution(EnergyPlusData &state) // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the state.dataHeatBalSurfMgr->adjQL = - state.dataHeatBalSurfMgr->curQL + state.dataViewFactor->ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; + state.dataHeatBalSurfMgr->curQL + state.dataViewFactor->EnclRadInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance // EnclRadThermAbsMult is a multiplier for each zone/radiant enclosure // QRadThermInAbs is the thermal radiation absorbed on inside surfaces @@ -4064,7 +4054,7 @@ void ComputeIntThermalAbsorpFactors(EnergyPlusData &state) } for (int radEnclosureNum = 1; radEnclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++radEnclosureNum) { - auto &thisEnclosure(state.dataViewFactor->ZoneRadiantInfo(radEnclosureNum)); + auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(radEnclosureNum)); if (!state.dataHeatBal->EnclRadReCalc(radEnclosureNum)) continue; Real64 SUM1 = 0.0; for (int const SurfNum : thisEnclosure.SurfacePtr) { @@ -4176,7 +4166,7 @@ void ComputeIntSWAbsorpFactors(EnergyPlusData &state) if (!state.dataHeatBal->EnclRadReCalc(enclosureNum)) continue; Real64 SUM1 = 0.0; // Intermediate calculation value for solar absorbed and transmitted - for (int const SurfNum : state.dataViewFactor->ZoneSolarInfo(enclosureNum).SurfacePtr) { + for (int const SurfNum : state.dataViewFactor->EnclSolInfo(enclosureNum).SurfacePtr) { int const ConstrNum = state.dataSurface->SurfActiveConstruction(SurfNum); if (state.dataConstruction->Construct(ConstrNum).TransDiff <= 0.0) { // Opaque surface @@ -4309,7 +4299,7 @@ void ComputeIntSWAbsorpFactors(EnergyPlusData &state) if (state.dataHeatBal->ZoneSolAbsFirstCalc(enclosureNum)) { ShowWarningError(state, "ComputeIntSWAbsorbFactors: Sum of area times inside solar absorption for all surfaces is zero in Zone: " + - state.dataViewFactor->ZoneSolarInfo(enclosureNum).Name); + state.dataViewFactor->EnclSolInfo(enclosureNum).Name); state.dataHeatBal->ZoneSolAbsFirstCalc(enclosureNum) = false; } state.dataHeatBal->EnclSolVMULT(enclosureNum) = 0.0; @@ -8240,7 +8230,7 @@ void TestSurfTempCalcHeatBalanceInsideSurf(EnergyPlusData &state, Real64 TH12, i "C"); } } - if (zone.EnforcedReciprocity) { + if (state.dataHeatBal->Space(state.dataSurface->Surface(SurfNum).Space).EnforcedReciprocity) { if (WarmupSurfTemp > 3) { ShowSevereError(state, "CalcHeatBalanceInsideSurf: Zone=\"" + zone.Name + "\" has view factor enforced reciprocity"); ShowContinueError(state, " and is having temperature out of bounds errors. Please correct zone geometry and rerun."); diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 7abff657107..23925272131 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -14166,8 +14166,6 @@ void GetDelaySequences(EnergyPlusData &state, ort->initAdjFenDone = true; } - int radEnclosureNum = Zone(zoneIndex).RadiantEnclosureNum; - if (desDaySelected != 0) { Array2D decayCurve; @@ -14189,6 +14187,7 @@ void GetDelaySequences(EnergyPlusData &state, // code from ComputeDelayedComponents starts for (int jSurf = Zone(zoneIndex).HTSurfaceFirst; jSurf <= Zone(zoneIndex).HTSurfaceLast; ++jSurf) { + int radEnclosureNum = state.dataSurface->Surface(jSurf).RadEnclIndex; // for each time step, step back through time and apply decay curve to radiant heat for each end use absorbed in each surface Real64 peopleConvFromSurf = 0.0; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index c3f6b729c05..6e208fe07de 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14838,6 +14838,23 @@ namespace SurfaceGeometry { } else { state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->NumOfSpaces; } + + // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + for (int spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == 0) { + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; + } else { + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = + min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + } + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = + max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + } + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast != -1); + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst <= state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast); + } } } From 71810c90377c94df10724b3518ce3f3aee4e06ab Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 14 Jul 2021 15:27:04 -0500 Subject: [PATCH 29/98] Space - Merge cleanup? --- src/EnergyPlus/RoomAirModelManager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 0ad02403446..da3b74cc92e 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1692,7 +1692,7 @@ namespace RoomAirModelManager { ErrorsFound = true; continue; } - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(numGains).Name = + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain(gainsLoop).Name = state.dataIPShortCut->cAlphaArgs(gainsLoop * 2 + 1); bool gainFound = false; From e3d4458b2ef08986913a7e6c0a4eb456a2a3dca0 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 14 Jul 2021 19:18:41 -0500 Subject: [PATCH 30/98] Space - Daylighting part 1 --- src/EnergyPlus/DataDaylighting.hh | 17 +- src/EnergyPlus/DataHeatBalance.hh | 3 +- src/EnergyPlus/DataSurfaces.hh | 6 +- src/EnergyPlus/DaylightingManager.cc | 252 ++++++++++++++------------- src/EnergyPlus/DaylightingManager.hh | 2 +- src/EnergyPlus/HeatBalanceManager.cc | 1 - src/EnergyPlus/SurfaceGeometry.cc | 4 + 7 files changed, 152 insertions(+), 133 deletions(-) diff --git a/src/EnergyPlus/DataDaylighting.hh b/src/EnergyPlus/DataDaylighting.hh index 1f8ec49477d..9b94606372c 100644 --- a/src/EnergyPlus/DataDaylighting.hh +++ b/src/EnergyPlus/DataDaylighting.hh @@ -117,6 +117,13 @@ namespace DataDaylighting { } }; + struct EnclDaylightCalc + { + Real64 AveVisDiffReflect = 0.0; // Area-weighted average inside surface visible reflectance of zone + Real64 TotInsSurfArea = 0.0; // Total inside surface area of a daylit zone (m2) + Real64 FloorVisRefl = 0.0; // Area-weighted visible reflectance of floor of a daylit zone + }; + struct ZoneDaylightCalc { // Members @@ -142,7 +149,6 @@ namespace DataDaylighting { int LightControlSteps; // Number of levels (excluding zero) of stepped control system Real64 LightControlProbability; // For manual control of stepped systems, probability that lighting will int TotalExtWindows; // Total number of exterior windows in the zone or same solar enclosure - Real64 AveVisDiffReflect; // Area-weighted average inside surface visible reflectance of zone Real64 DElightGriddingResolution; // Field: Delight Gridding Resolution Array1D RefPtPowerReductionFactor; // =1.0 ! Electric power reduction factor at reference points // due to daylighting @@ -164,8 +170,6 @@ namespace DataDaylighting { // sublists a just a single index to a fenestration surface if they are deployed one at a time. Array1D_int MapShdOrdToLoopNum; // list that maps back the original loop order when using ShadeDeployOrderExtWins for shade deployment Real64 MinIntWinSolidAng; // Minimum solid angle subtended by an interior window in a zone - Real64 TotInsSurfArea; // Total inside surface area of a daylit zone (m2) - Real64 FloorVisRefl; // Area-weighted visible reflectance of floor of a daylit zone Real64 InterReflIllFrIntWins; // Inter-reflected illuminance due to beam and diffuse solar passing // through a zone's interior windows (lux) Array1D BacLum; // =0.0 ! Background luminance at each reference point (cd/m2) @@ -210,9 +214,9 @@ namespace DataDaylighting { ZoneDaylightCalc() : DaylightMethod(iDaylightingMethod::NoDaylighting), AvailSchedNum(0), TotalDaylRefPoints(0), LightControlType(iLtgCtrlType::Continuous), glareRefPtNumber(0), ViewAzimuthForGlare(0.0), MaxGlareallowed(0), MinPowerFraction(0.0), MinLightFraction(0.0), LightControlSteps(0), - LightControlProbability(0.0), TotalExtWindows(0), AveVisDiffReflect(0.0), DElightGriddingResolution(0.0), ZonePowerReductionFactor(1.0), - NumOfIntWinAdjZones(0), NumOfIntWinAdjZoneExtWins(0), NumOfDayltgExtWins(0), MinIntWinSolidAng(0.0), TotInsSurfArea(0.0), - FloorVisRefl(0.0), InterReflIllFrIntWins(0.0), AdjZoneHasDayltgCtrl(false), MapCount(0) + LightControlProbability(0.0), TotalExtWindows(0), DElightGriddingResolution(0.0), ZonePowerReductionFactor(1.0), NumOfIntWinAdjZones(0), + NumOfIntWinAdjZoneExtWins(0), NumOfDayltgExtWins(0), MinIntWinSolidAng(0.0), InterReflIllFrIntWins(0.0), AdjZoneHasDayltgCtrl(false), + MapCount(0) { } }; @@ -329,6 +333,7 @@ struct DaylightingData : BaseGlobalStruct bool DFSReportAllShadowCalculationDays = false; int TotDElightCFS = 0; + Array1D EnclDaylight; Array1D ZoneDaylight; Array1D IllumMap; Array1D IllumMapCalc; diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index d71a229ac68..439c0ad6e12 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -436,6 +436,7 @@ namespace DataHeatBalance { std::vector ZoneExtSolarSurfaceList; // List of exterior solar surfaces in a zone int ZoneRadEnclosureFirst; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange int ZoneRadEnclosureLast; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange + int ZoneFirstSpaceSolEnclosure; // TODO: For daylighting, this is a punt, it's the solar enclosure number of the first space in the zone Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp @@ -519,7 +520,7 @@ namespace DataHeatBalance { OpaqOrIntMassSurfaceLast(-1), WindowSurfaceFirst(0), WindowSurfaceLast(-1), OpaqOrWinSurfaceFirst(0), OpaqOrWinSurfaceLast(-1), TDDDomeFirst(0), TDDDomeLast(-1), InsideConvectionAlgo(ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), - MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), + MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), ZoneFirstSpaceSolEnclosure(0), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 142897260c9..7b139422c97 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -732,9 +732,9 @@ namespace DataSurfaces { Array1D IllumFromWinAtRefPtRep; // Illuminance from window at reference point N [lux] Array1D LumWinFromRefPtRep; // Window luminance as viewed from reference point N [cd/m2] // for shadowing of ground by building and obstructions [W/m2] - Array1D ZoneAreaMinusThisSurf; // Zone inside surface area minus this surface and its subsurfaces + Array1D EnclAreaMinusThisSurf; // Enclosure inside surface area minus this surface and its subsurfaces // for floor/wall/ceiling (m2) - Array1D ZoneAreaReflProdMinusThisSurf; // Zone product of inside surface area times vis reflectance + Array1D EnclAreaReflProdMinusThisSurf; // Enclosure product of inside surface area times vis reflectance // minus this surface and its subsurfaces, // for floor/wall/ceiling (m2) @@ -743,7 +743,7 @@ namespace DataSurfaces { // Default Constructor SurfaceWindowCalc() : WinCenter(3, 0.0), ThetaFace(10, 296.15), OutProjSLFracMult(24, 1.0), InOutProjSLFracMult(24, 1.0), EffShBlindEmiss(MaxSlatAngs, 0.0), - EffGlassEmiss(MaxSlatAngs, 0.0), ZoneAreaMinusThisSurf(3, 0.0), ZoneAreaReflProdMinusThisSurf(3, 0.0) + EffGlassEmiss(MaxSlatAngs, 0.0), EnclAreaMinusThisSurf(3, 0.0), EnclAreaReflProdMinusThisSurf(3, 0.0) { } }; diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index c0ceb509400..0ed1ea940f9 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -147,21 +147,21 @@ namespace EnergyPlus::DaylightingManager { using namespace DataHeatBalance; using namespace DataSurfaces; -void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum) // Zone number +void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclosure number { // SUBROUTINE INFORMATION: // AUTHOR Fred Winkelmann // DATE WRITTEN July 1997 // MODIFIED Mar 2004, FCW: add calculation of following SurfaceWindow variables: - // ZoneAreaMinusThisSurf, ZoneAreaReflProdMinusThisSurf, RhoCeilingWall, + // EnclAreaMinusThisSurf, EnclAreaReflProdMinusThisSurf, RhoCeilingWall, // RhoFloorWall, FractionUpgoing. Add calculation of ZoneDaylight%FloorVisRefl. // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: - // Called by CalcDayltgCoefficients for each daylit zone. Determines total + // Called by CalcDayltgCoefficients for each daylit Space. Determines total // area and area-weighted average visible reflectance of - // all inside faces of the surfaces of a zone. In addition, finds + // all inside faces of the surfaces of a Space. In addition, finds // area and average reflectance of interzone, underground and exterior // heat-transfer surfaces in the following categories: floor (tilt > 170 deg), // ceiling (tilt < 10 deg), and wall (10 < tilt < 170 deg). @@ -174,11 +174,9 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum) // Zone n // REFERENCES: // Based on DOE-2.1E subroutine DAVREF - auto &Zone(state.dataHeatBal->Zone); - SurfaceClass IType; // Surface type/class Real64 AREA; // Inside surface area (m2) - Real64 AInsTot; // Total inside surface area of a zone (m2) + Real64 AInsTot; // Total inside surface area of a Space (m2) Real64 ARHTOT; // Sum over surfaces of AREA*(inside visible reflectance) (m2) int ITILT; // Surface tilt category (1 = floor, 2 = wall, 3 = ceiling) int IT; // Tilt index @@ -193,23 +191,24 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum) // Zone n // Area sum and area * reflectance sum for different orientations state.dataDaylightingManager->AR = 0.0; state.dataDaylightingManager->ARH = 0.0; - // Loop over surfaces in the zone's enclosure - auto &thisEnclosure(state.dataViewFactor->ZoneSolarInfo(Zone(ZoneNum).SolarEnclosureNum)); + // Loop over surfaces in the Space's enclosure + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(EnclNum)); for (int ISurf : thisEnclosure.SurfacePtr) { IType = state.dataSurface->Surface(ISurf).Class; + int zoneNum = state.dataSurface->Surface(ISurf).Zone; // Error if window has multiplier > 1 since this causes incorrect illuminance calc if (IType == SurfaceClass::Window && state.dataSurface->Surface(ISurf).Multiplier > 1.0) { if (thisEnclosure.TotalEnclosureDaylRefPoints > 0) { ShowSevereError(state, "DayltgAveInteriorReflectance: Multiplier > 1.0 for window " + state.dataSurface->Surface(ISurf).Name + - " in Zone=" + state.dataSurface->Surface(ISurf).ZoneName); - ShowContinueError(state, "...not allowed since it is in a zone or enclosure with daylighting."); + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ShowContinueError(state, "...not allowed since it is in a space or enclosure with daylighting."); ShowFatalError(state, "Program terminates due to preceding conditions."); } else { ShowSevereError(state, "DayltgAveInteriorReflectance: Multiplier > 1.0 for window " + state.dataSurface->Surface(ISurf).Name + - " in Zone=" + state.dataSurface->Surface(ISurf).ZoneName); - ShowContinueError(state, "...an adjacent Zone has daylighting. Simulation cannot proceed."); + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ShowContinueError(state, "...an adjacent Space has daylighting. Simulation cannot proceed."); ShowFatalError(state, "Program terminates due to preceding conditions."); } } @@ -239,18 +238,18 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum) // Zone n } } - // Average inside surface reflectance of zone - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect = ARHTOT / AInsTot; - // Total inside surface area of zone - state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea = AInsTot; + // Average inside surface reflectance of enclosure + state.dataDaylightingData->EnclDaylight(EnclNum).AveVisDiffReflect = ARHTOT / AInsTot; + // Total inside surface area of enclosure + state.dataDaylightingData->EnclDaylight(EnclNum).TotInsSurfArea = AInsTot; // Average floor visible reflectance - state.dataDaylightingData->ZoneDaylight(ZoneNum).FloorVisRefl = + state.dataDaylightingData->EnclDaylight(EnclNum).FloorVisRefl = state.dataDaylightingManager->ARH(3) / (state.dataDaylightingManager->AR(3) + 1.e-6); for (int ISurf : thisEnclosure.SurfacePtr) { IType = state.dataSurface->Surface(ISurf).Class; if (IType == SurfaceClass::Wall || IType == SurfaceClass::Floor || IType == SurfaceClass::Roof) { - // Remove this surface from the zone inside surface area and area*reflectivity + // Remove this surface from the space inside surface area and area*reflectivity // The resulting areas are AP(ITILT). The resulting area*reflectivity is ARHP(ITILT). // Initialize gross area of surface (including subsurfaces) ATWL = state.dataSurface->Surface(ISurf).Area; // This is the surface area less subsurfaces @@ -291,21 +290,22 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum) // Zone n state.dataDaylightingManager->ARHP(IT) = state.dataDaylightingManager->ARH(IT); } } - state.dataSurface->SurfaceWindow(ISurf).ZoneAreaMinusThisSurf = state.dataDaylightingManager->AP; - state.dataSurface->SurfaceWindow(ISurf).ZoneAreaReflProdMinusThisSurf = state.dataDaylightingManager->ARHP; + state.dataSurface->SurfaceWindow(ISurf).EnclAreaMinusThisSurf = state.dataDaylightingManager->AP; + state.dataSurface->SurfaceWindow(ISurf).EnclAreaReflProdMinusThisSurf = state.dataDaylightingManager->ARHP; } - } // End of loop over opaque surfaces in zone + } // End of loop over opaque surfaces in enclosure for (int IWin : thisEnclosure.SurfacePtr) { if (state.dataSurface->Surface(IWin).Class == SurfaceClass::Window) { int ISurf = state.dataSurface->Surface(IWin).BaseSurf; + int zoneNum = state.dataSurface->Surface(IWin).Zone; // Ratio of floor-to-window-center height and average floor-to-ceiling height - ETA = max( - 0.0, - min(1.0, - (state.dataSurface->SurfaceWindow(IWin).WinCenter(3) - Zone(ZoneNum).OriginZ) * Zone(ZoneNum).FloorArea / Zone(ZoneNum).Volume)); - state.dataDaylightingManager->AP = state.dataSurface->SurfaceWindow(ISurf).ZoneAreaMinusThisSurf; - state.dataDaylightingManager->ARHP = state.dataSurface->SurfaceWindow(ISurf).ZoneAreaReflProdMinusThisSurf; + ETA = max(0.0, + min(1.0, + (state.dataSurface->SurfaceWindow(IWin).WinCenter(3) - state.dataHeatBal->Zone(zoneNum).OriginZ) * + state.dataHeatBal->Zone(zoneNum).FloorArea / state.dataHeatBal->Zone(zoneNum).Volume)); + state.dataDaylightingManager->AP = state.dataSurface->SurfaceWindow(ISurf).EnclAreaMinusThisSurf; + state.dataDaylightingManager->ARHP = state.dataSurface->SurfaceWindow(ISurf).EnclAreaReflProdMinusThisSurf; // Average reflectance seen by light moving up (RhoCeilingWall) and down (RhoFloorWall) // across horizontal plane through center of window state.dataSurface->SurfWinRhoCeilingWall(IWin) = @@ -594,7 +594,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) IWin = state.dataDaylightingData->ZoneDaylight(ZoneNum).DayltgExtWinSurfNums(loop); // For this report, do not include ext wins in zone adjacent to ZoneNum since the inter-reflected // component will not be calculated for these windows until the time-step loop. - if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).SolarEnclosureNum) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { // Output for each reference point, for each sky. Group by sky type first for (const DataDaylighting::SkyType &skyType : {DataDaylighting::SkyType::Clear, DataDaylighting::SkyType::ClearTurbid, @@ -679,7 +679,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) // For this report, do not include ext wins in zone/enclosure adjacent to ZoneNum since the inter-reflected // component will not be calculated for these windows until the time-step loop. - if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).SolarEnclosureNum) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { if (state.dataSurface->SurfWinMovableSlats(IWin)) { // variable slat angle - MaxSlatangle sets @@ -1734,7 +1734,7 @@ void FigureDayltgCoeffsAtPointsSetupForWindow( state.dataDaylightingData->IllumMapCalc(MapNum).SolidAngAtMapPt(loopwin, iRefPoint) = 0.0; state.dataDaylightingData->IllumMapCalc(MapNum).SolidAngAtMapPtWtd(loopwin, iRefPoint) = 0.0; } - if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == Zone(ZoneNum).SolarEnclosureNum) { + if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { ExtWinType = DataDaylighting::iExtWinType::InZoneExtWin; } else { ExtWinType = DataDaylighting::iExtWinType::AdjZoneExtWin; @@ -3884,7 +3884,7 @@ void FigureDayltgCoeffsAtPointsForSunPosition( // Interior window visible transmittance multiplier for exterior window in adjacent zone TVisIntWinMult = 1.0; TVisIntWinDiskMult = 1.0; - if (state.dataSurface->Surface(IWin).SolarEnclIndex != Zone(ZoneNum).SolarEnclosureNum) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex != Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { TVisIntWinMult = TVISIntWin; TVisIntWinDiskMult = TVISIntWinDisk; } @@ -3958,6 +3958,8 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, // Azimuth of sun in absolute coord sys state.dataDaylightingManager->THSUN = state.dataDaylightingManager->THSUNHR(iHour); + int const enclNum = state.dataSurface->Surface(IWin).SolarEnclIndex; + for (ISky = 1; ISky <= 4; ++ISky) { // Loop over sky types // Loop over shading index (1=bare window; 2=diffusing glazing, shade, screen or fixed slat-angle blind; @@ -3979,7 +3981,7 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylSourceFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = state.dataDaylightingManager->AVWLSK(iHour, JSH, ISky) / (NWX * NWY * state.dataDaylightingManager->GILSK(iHour, ISky)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * state.dataDaylightingManager->GILSK(iHour, ISky)); } else { state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylIllFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = 0.0; @@ -4002,10 +4004,10 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingManager->AVWLSUdisk(iHour, JSH) / (NWX * NWY * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSun(iHour, JSH, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSunDisk(iHour, JSH, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); } else { state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylIllFacSun(iHour, JSH, iRefPoint, loopwin) = 0.0; @@ -4095,6 +4097,8 @@ void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, // Azimuth of sun in absolute coord sys state.dataDaylightingManager->THSUN = state.dataDaylightingManager->THSUNHR(iHour); + int const enclNum = state.dataSurface->Surface(IWin).SolarEnclIndex; + for (ISky = 1; ISky <= 4; ++ISky) { // Loop over sky types // Loop over shading index (1=bare window; 2=diffusing glazing, shade, screen or fixed slat-angle blind; @@ -4116,7 +4120,7 @@ void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingData->IllumMapCalc(MapNum).DaylSourceFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = state.dataDaylightingManager->AVWLSK(iHour, JSH, ISky) / (NWX * NWY * state.dataDaylightingManager->GILSK(iHour, ISky)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * state.dataDaylightingManager->GILSK(iHour, ISky)); } else { state.dataDaylightingData->IllumMapCalc(MapNum).DaylIllFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = 0.0; @@ -4139,10 +4143,10 @@ void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingManager->AVWLSUdisk(iHour, JSH) / (NWX * NWY * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSun(iHour, JSH, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSunDisk(iHour, JSH, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); } else { state.dataDaylightingData->IllumMapCalc(MapNum).DaylIllFacSun(iHour, JSH, iMapPoint, loopwin) = 0.0; @@ -4218,6 +4222,8 @@ void GetDaylightingParametersInput(EnergyPlusData &state) cCurrentModuleObject = "Daylighting:Controls"; TotDaylightingControls = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); if (TotDaylightingControls > 0) { + state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfSpaces); + state.dataDaylightingData->EnclDaylight.allocate(state.dataViewFactor->NumOfSolarEnclosures); GetInputDayliteRefPt(state, ErrorsFound); GetDaylightingControls(state, TotDaylightingControls, ErrorsFound); GeometryTransformForDaylighting(state); @@ -4229,18 +4235,22 @@ void GetDaylightingParametersInput(EnergyPlusData &state) state.dataDaylightingManager->maxNumRefPtInAnyZone = 0; state.dataDaylightingManager->maxNumRefPtInAnyEncl = 0; - for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { - if (state.dataSurface->Surface(SurfNum).Class != SurfaceClass::Window) continue; - // Loop through all zones in the same enclosure to find total reference points + for (int enclNum = 1; enclNum < state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { + // Loop through all spaces in the same enclosure to find total reference points int numEnclRefPoints = 0; - int surfEnclNum = state.dataSurface->Surface(SurfNum).SolarEnclIndex; - for (int const zoneNum : state.dataViewFactor->ZoneSolarInfo(surfEnclNum).ZoneNums) { - int numRefPoints = state.dataDaylightingData->ZoneDaylight(zoneNum).TotalDaylRefPoints; + for (int const spaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { + int numRefPoints = state.dataDaylightingData->ZoneDaylight(spaceNum).TotalDaylRefPoints; numEnclRefPoints += numRefPoints; state.dataDaylightingManager->maxNumRefPtInAnyZone = max(numRefPoints, state.dataDaylightingManager->maxNumRefPtInAnyZone); } state.dataDaylightingManager->maxNumRefPtInAnyEncl = max(numEnclRefPoints, state.dataDaylightingManager->maxNumRefPtInAnyEncl); - state.dataViewFactor->ZoneSolarInfo(surfEnclNum).TotalEnclosureDaylRefPoints = numEnclRefPoints; + state.dataViewFactor->EnclSolInfo(enclNum).TotalEnclosureDaylRefPoints = numEnclRefPoints; + } + + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { + if (state.dataSurface->Surface(SurfNum).Class != SurfaceClass::Window) continue; + int const surfEnclNum = state.dataSurface->Surface(SurfNum).SolarEnclIndex; + int const numEnclRefPoints = state.dataViewFactor->EnclSolInfo(surfEnclNum).TotalEnclosureDaylRefPoints; if (numEnclRefPoints > 0) { if (!state.dataSurface->SurfWinSurfDayLightInit(SurfNum)) { state.dataSurface->SurfaceWindow(SurfNum).SolidAngAtRefPt.allocate(numEnclRefPoints); @@ -4262,13 +4272,8 @@ void GetDaylightingParametersInput(EnergyPlusData &state) } else { int SurfNumAdj = state.dataSurface->Surface(SurfNum).ExtBoundCond; if (SurfNumAdj > 0) { - // Loop through all zones in the adjacent enclosure to find total reference points - int numAdjEnclRefPoints = 0; - int adjSurfEnclNum = state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex; - for (int const adjZoneNum : state.dataViewFactor->ZoneSolarInfo(adjSurfEnclNum).ZoneNums) { - numAdjEnclRefPoints += state.dataDaylightingData->ZoneDaylight(adjZoneNum).TotalDaylRefPoints; - } - state.dataViewFactor->ZoneSolarInfo(adjSurfEnclNum).TotalEnclosureDaylRefPoints = numAdjEnclRefPoints; + int const adjSurfEnclNum = state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex; + int const numAdjEnclRefPoints = state.dataViewFactor->EnclSolInfo(adjSurfEnclNum).TotalEnclosureDaylRefPoints; if (numAdjEnclRefPoints > 0) { if (!state.dataSurface->SurfWinSurfDayLightInit(SurfNum)) { state.dataSurface->SurfaceWindow(SurfNum).SolidAngAtRefPt.allocate(numAdjEnclRefPoints); @@ -4294,7 +4299,7 @@ void GetDaylightingParametersInput(EnergyPlusData &state) if (state.dataSurface->Surface(SurfNum).ExtBoundCond == ExternalEnvironment) { if (state.dataSurface->Surface(SurfNum).HasShadeControl) { - auto &thisSurfEnclosure(state.dataViewFactor->ZoneSolarInfo(state.dataSurface->Surface(SurfNum).SolarEnclIndex)); + auto &thisSurfEnclosure(state.dataViewFactor->EnclSolInfo(state.dataSurface->Surface(SurfNum).SolarEnclIndex)); if (state.dataSurface->WindowShadingControl(state.dataSurface->Surface(SurfNum).activeWindowShadingControl).GlareControlIsActive) { // Error if GlareControlIsActive but window is not in a Daylighting:Detailed zone if (thisSurfEnclosure.TotalEnclosureDaylRefPoints == 0) { @@ -4302,7 +4307,7 @@ void GetDaylightingParametersInput(EnergyPlusData &state) ShowContinueError(state, "GlareControlIsActive = Yes but it is not in a Daylighting zone or enclosure."); ShowContinueError(state, "Zone or enclosure indicated=" + - state.dataViewFactor->ZoneSolarInfo(state.dataSurface->Surface(SurfNum).SolarEnclIndex).Name); + state.dataViewFactor->EnclSolInfo(state.dataSurface->Surface(SurfNum).SolarEnclIndex).Name); ErrorsFound = true; } // Error if GlareControlIsActive and window is in a Daylighting:Detailed zone/enclosure with @@ -4311,7 +4316,7 @@ void GetDaylightingParametersInput(EnergyPlusData &state) for (int const intWin : thisSurfEnclosure.SurfacePtr) { int const SurfNumAdj = state.dataSurface->Surface(intWin).ExtBoundCond; if (state.dataSurface->Surface(intWin).Class == SurfaceClass::Window && SurfNumAdj > 0) { - auto &adjSurfEnclosure(state.dataViewFactor->ZoneSolarInfo(state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex)); + auto &adjSurfEnclosure(state.dataViewFactor->EnclSolInfo(state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex)); if (adjSurfEnclosure.TotalEnclosureDaylRefPoints > 0) { ShowSevereError(state, "Window=" + state.dataSurface->Surface(SurfNum).Name + " has Window Shading Control with"); ShowContinueError(state, "GlareControlIsActive = Yes and is in a Daylighting zone or enclosure"); @@ -4340,7 +4345,7 @@ void GetDaylightingParametersInput(EnergyPlusData &state) for (int const intWin : thisSurfEnclosure.SurfacePtr) { int const SurfNumAdj = state.dataSurface->Surface(intWin).ExtBoundCond; if (state.dataSurface->Surface(intWin).Class == SurfaceClass::Window && SurfNumAdj > 0) { - auto &adjSurfEnclosure(state.dataViewFactor->ZoneSolarInfo(state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex)); + auto &adjSurfEnclosure(state.dataViewFactor->EnclSolInfo(state.dataSurface->Surface(SurfNumAdj).SolarEnclIndex)); if (adjSurfEnclosure.TotalEnclosureDaylRefPoints > 0) { ShowSevereError(state, "Window=" + state.dataSurface->Surface(SurfNum).Name + " has Window Shading Control with"); ShowContinueError(state, "MeetDaylightIlluminanceSetpoint and is in a Daylighting zone or enclosure"); @@ -4383,11 +4388,13 @@ void GetDaylightingParametersInput(EnergyPlusData &state) } } else { for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { - for (int const enclSurfNum : state.dataViewFactor->ZoneSolarInfo(enclNum).SurfacePtr) { + for (int const enclSurfNum : state.dataViewFactor->EnclSolInfo(enclNum).SurfacePtr) { if (state.dataSurface->Surface(enclSurfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(enclSurfNum).ExtSolar) { int refPtCount = 0; - for (int const enclZoneNum : state.dataViewFactor->ZoneSolarInfo(enclNum).ZoneNums) { - if (state.dataViewFactor->ZoneSolarInfo(enclNum).TotalEnclosureDaylRefPoints > 0 && !Zone(enclZoneNum).HasInterZoneWindow && + // TODO: This enclosure/zone mapping is a mess, punting for now + for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { + int const enclZoneNum = state.dataHeatBal->Space(enclSpaceNum).ZoneNum; + if (state.dataViewFactor->EnclSolInfo(enclNum).TotalEnclosureDaylRefPoints > 0 && !Zone(enclZoneNum).HasInterZoneWindow && state.dataDaylightingData->ZoneDaylight(enclZoneNum).DaylightMethod == DataDaylighting::iDaylightingMethod::SplitFluxDaylighting) { for (int refPtNum = 1; refPtNum <= state.dataDaylightingData->ZoneDaylight(enclZoneNum).TotalDaylRefPoints; ++refPtNum) { @@ -5464,8 +5471,9 @@ void CheckTDDsAndLightShelvesInDaylitZones(EnergyPlusData &state) SurfNum = state.dataDaylightingDevicesData->TDDPipe(PipeNum).Diffuser; if (SurfNum > 0) { bool daylightControlFound = false; - int const pipeEnclNum = state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).SolarEnclosureNum; - for (int const zoneNum : state.dataViewFactor->ZoneSolarInfo(pipeEnclNum).ZoneNums) { + int const pipeEnclNum = state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).ZoneFirstSpaceSolEnclosure; + for (int const spaceNum : state.dataViewFactor->EnclSolInfo(pipeEnclNum).SpaceNums) { + int const zoneNum = state.dataHeatBal->Space(spaceNum).ZoneNum; if (state.dataDaylightingData->ZoneDaylight(zoneNum).DaylightMethod != DataDaylighting::iDaylightingMethod::NoDaylighting) { daylightControlFound = true; } @@ -5720,12 +5728,13 @@ void DayltgGlareWithIntWins(EnergyPlusData &state, // entering zone through its interior windows int RefPoints = state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints; // Number of daylighting reference points in zone + int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int IL = 1; IL <= RefPoints; ++IL) { Real64 BackgroundLum = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins * - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi; + state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi; BackgroundLum = max(state.dataDaylightingData->ZoneDaylight(ZoneNum).IllumSetPoint(IL) * - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi, + state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, BackgroundLum); // Loop over exterior windows associated with zone @@ -6786,8 +6795,9 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number // Calculate glare index at each reference point assuming the daylight illuminance setpoint is // met at both reference points, either by daylight or electric lights + int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int IL = 1; IL <= NREFPT; ++IL) { - BACL = max(SetPnt(IL) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi, + BACL = max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL)); // DayltgGlare uses ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,1,loop) for unshaded windows, and // ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,2,loop) for shaded windows @@ -6927,7 +6937,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number // Re-calc daylight and glare at shaded state. For switchable glazings, it is the fully dark state. for (int IL = 1; IL <= NREFPT; ++IL) { - BACL = max(SetPnt(IL) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi, + BACL = max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // DayltgGlare uses ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,2,loop) for shaded state DayltgGlare(state, IL, BACL, GLRNEW(IL), ZoneNum); @@ -7078,7 +7088,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number RBACLU(IL, igroup) = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + (WBACLU(1, IL, igroup) - WBACLU(2, IL, igroup)) * (1.0 - tmpSWFactor); BACL = - max(SetPnt(IL) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi, + max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // needs to update SourceLumFromWinAtRefPt(IL,2,loop) before re-calc DayltgGlare tmpMult = (TVIS1(igroup) - (TVIS1(igroup) - TVIS2(igroup)) * tmpSWFactor) / TVIS2(igroup); @@ -7128,7 +7138,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number RBACLU(IL, igroup) = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + (WBACLU(1, IL, igroup) - WBACLU(2, IL, igroup)) * (1.0 - tmpSWFactor); BACL = - max(SetPnt(IL) * state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect / DataGlobalConstants::Pi, + max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // needs to update SourceLumFromWinAtRefPt(IL,2,IWin) before re-calc DayltgGlare @@ -7217,14 +7227,12 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number IS = 2; if (state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylightMethod == DataDaylighting::iDaylightingMethod::SplitFluxDaylighting) { int refPtCount = 0; - for (int const enclZoneNum : state.dataViewFactor->ZoneSolarInfo(state.dataHeatBal->Zone(ZoneNum).SolarEnclosureNum).ZoneNums) { - for (int refPtNum = 1; refPtNum <= state.dataDaylightingData->ZoneDaylight(enclZoneNum).TotalDaylRefPoints; ++refPtNum) { - ++refPtCount; // Count reference points across each zone in the same enclosure - state.dataSurface->SurfaceWindow(IWin).IllumFromWinAtRefPtRep(refPtCount) = - state.dataDaylightingData->ZoneDaylight(enclZoneNum).IllumFromWinAtRefPt(loop, IS, refPtNum); - state.dataSurface->SurfaceWindow(IWin).LumWinFromRefPtRep(refPtCount) = - state.dataDaylightingData->ZoneDaylight(enclZoneNum).SourceLumFromWinAtRefPt(loop, IS, refPtNum); - } + for (int refPtNum = 1; refPtNum <= state.dataViewFactor->EnclSolInfo(enclNum).TotalEnclosureDaylRefPoints; ++refPtNum) { + ++refPtCount; // Count reference points across each zone in the same enclosure + state.dataSurface->SurfaceWindow(IWin).IllumFromWinAtRefPtRep(refPtCount) = + state.dataDaylightingData->ZoneDaylight(ZoneNum).IllumFromWinAtRefPt(loop, IS, refPtNum); + state.dataSurface->SurfaceWindow(IWin).LumWinFromRefPtRep(refPtCount) = + state.dataDaylightingData->ZoneDaylight(ZoneNum).SourceLumFromWinAtRefPt(loop, IS, refPtNum); } } } @@ -7681,7 +7689,7 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, int ZoneNumThisWin; // temporary to check if this window is actually in adjacent zone DataDaylighting::iExtWinType ExtWinType; // Exterior window type (InZoneExtWin, AdjZoneExtWin, NotInOrAdjZoneExtWin) - Real64 ZoneInsideSurfArea; // temporary for calculations, total surface area of zone surfaces m2 + Real64 EnclInsideSurfArea; // temporary for calculations, total surface area of enclosure surfaces m2 int IntWinAdjZoneExtWinNum; // the index of the exterior window in IntWinAdjZoneExtWin nested struct int AdjExtWinLoop; // loop index for searching IntWinAdjZoneExtWin int IntWinLoop; // loop index for searching interior windows @@ -7691,17 +7699,20 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, WinShadingType ShType; ZoneNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).Zone; + int const enclNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex; + int const enclNumThisZone = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; // The inside surface area, ZoneDaylight(ZoneNum)%TotInsSurfArea was calculated in subr DayltgAveInteriorReflectance - if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == state.dataHeatBal->Zone(ZoneNum).SolarEnclosureNum) { + if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == + state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { ExtWinType = DataDaylighting::iExtWinType::InZoneExtWin; - ZoneInsideSurfArea = state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea; + EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNumThisWin).TotInsSurfArea; IntWinAdjZoneExtWinNum = 0; } else { ExtWinType = DataDaylighting::iExtWinType::AdjZoneExtWin; // If window is exterior window in adjacent zone, then use areas of both zones - ZoneInsideSurfArea = - state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea + state.dataDaylightingData->ZoneDaylight(ZoneNumThisWin).TotInsSurfArea; + EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNumThisZone).TotInsSurfArea + + state.dataDaylightingData->EnclDaylight(enclNumThisWin).TotInsSurfArea; // find index in IntWinAdjZoneExtWin for (AdjExtWinLoop = 1; AdjExtWinLoop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZoneExtWins; ++AdjExtWinLoop) { if (IWin == state.dataDaylightingData->ZoneDaylight(ZoneNum).IntWinAdjZoneExtWin(AdjExtWinLoop).SurfNum) { // found it @@ -8221,7 +8232,7 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, (FLFWSK(JSH, ISky) * state.dataSurface->SurfWinRhoFloorWall(IWin) + FLCWSK(JSH, ISky) * state.dataSurface->SurfWinRhoCeilingWall(IWin)) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); } // JSH } // ISKY @@ -8468,12 +8479,12 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, state.dataDaylightingManager->EINTSU(IHR, JSH) = (FLFWSU(JSH) * state.dataSurface->SurfWinRhoFloorWall(IWin) + FLCWSU(JSH) * state.dataSurface->SurfWinRhoCeilingWall(IWin)) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); state.dataDaylightingManager->EINTSUdisk(IHR, JSH) = FLFWSUdisk(JSH) * state.dataSurface->SurfWinRhoFloorWall(IWin) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); } } @@ -8715,7 +8726,6 @@ void DayltgInterReflectedIllumComplexFenestration(EnergyPlusData &state, Real64 LambdaInc; // current lambda value for incoming direction // REAL(r64) :: LambdaTrn ! current lambda value for incoming direction Real64 dirTrans; // directional bsdf transmittance - Real64 ZoneInsideSurfArea; CurCplxFenState = state.dataSurface->SurfaceWindow(IWin).ComplexFen.CurrentState; iConst = state.dataSurface->SurfaceWindow(IWin).ComplexFen.State(CurCplxFenState).Konst; @@ -8787,17 +8797,18 @@ void DayltgInterReflectedIllumComplexFenestration(EnergyPlusData &state, FLSUdiskTot += FLSUdisk(iBackElem); } - ZoneInsideSurfArea = state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea; + int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + Real64 EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea; for (iSky = 1; iSky <= 4; ++iSky) { state.dataDaylightingManager->EINTSK(IHR, 1, iSky) = FFSKTot(iSky) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); } state.dataDaylightingManager->EINTSU(IHR, 1) = FFSUTot * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); state.dataDaylightingManager->EINTSUdisk(IHR, 1) = FFSUdiskTot * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (ZoneInsideSurfArea * (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); if (allocated(FLSK)) FLSK.deallocate(); if (allocated(FLSU)) FLSU.deallocate(); @@ -10205,7 +10216,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) // Count number of exterior Windows (use to allocate arrays) for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { // Count exterior windows in this zone or shared solar enclosure - for (int const surfNum : state.dataViewFactor->ZoneSolarInfo(Zone(ZoneNum).SolarEnclosureNum).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10219,21 +10230,21 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints == 0) continue; // This is a Daylighting:Detailed zone // Find adjacent zones/enclosures - int const thisZoneEnclNum = Zone(ZoneNum).SolarEnclosureNum; + int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; - for (int ZoneNumAdj : state.dataViewFactor->ZoneSolarInfo(adjEnclNum).ZoneNums) { + for (int SpaceNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { // Require that ZoneNumAdj have a least one exterior window - bool AdjZoneHasExtWins = false; - for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { + bool AdjEnclHasExtWins = false; + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { - AdjZoneHasExtWins = true; + AdjEnclHasExtWins = true; break; } } - if (!AdjZoneHasExtWins) continue; + if (!AdjEnclHasExtWins) continue; // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to ZoneNum - for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { // This is an interior window in ZoneNumAdj if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { @@ -10253,35 +10264,33 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int NumList = 0; if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints == 0) continue; // This is a Daylighting:Detailed zone - // Find adjacent zones - int const thisZoneEnclNum = Zone(ZoneNum).SolarEnclosureNum; + // Find adjacent enclosures + int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; - for (int ZoneNumAdj : state.dataViewFactor->ZoneSolarInfo(adjEnclNum).ZoneNums) { - if (ZoneNumAdj == ZoneNum) continue; // Require that ZoneNumAdj have a least one exterior window - bool AdjZoneHasExtWins = false; - for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { + bool AdjEnclHasExtWins = false; + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { - AdjZoneHasExtWins = true; + AdjEnclHasExtWins = true; break; } } - if (!AdjZoneHasExtWins) continue; - // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to ZoneNum - for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { + if (!AdjEnclHasExtWins) continue; + // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to enclNum + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { // This is an interior window in ZoneNumAdj if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { // This interior window is adjacent to ZoneNum ++NumList; + int ZoneNumAdj = state.dataSurface->Surface(SurfNumAdj).Zone; state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(NumList) = ZoneNumAdj; state.dataDaylightingData->ZoneDaylight(ZoneNumAdj).AdjZoneHasDayltgCtrl = true; break; } } } - } } state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones = NumList; } @@ -10293,7 +10302,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZoneExtWins = 0; continue; } - int const thisZoneEnclNum = Zone(ZoneNum).SolarEnclosureNum; + int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int ZoneAdjLoop = 1; ZoneAdjLoop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones; ++ZoneAdjLoop) { int ZoneNumAdj = state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(ZoneAdjLoop); for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { @@ -10353,7 +10362,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) // This is a Daylighting:Detailed zone // Get exterior windows in this zone or shared solar enclosure - for (int const surfNum : state.dataViewFactor->ZoneSolarInfo(Zone(ZoneNum).SolarEnclosureNum).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10432,7 +10441,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int ZoneExtWinCtr = 0; - for (int const surfNum : state.dataViewFactor->ZoneSolarInfo(Zone(ZoneNum).SolarEnclosureNum).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10644,7 +10653,8 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins = 0.0; - auto &thisEnclSurfaces(state.dataViewFactor->ZoneSolarInfo(state.dataHeatBal->Zone(ZoneNum).SolarEnclosureNum).SurfacePtr); + int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + auto &thisEnclSurfaces(state.dataViewFactor->EnclSolInfo(enclNum).SurfacePtr); for (int const IWin : thisEnclSurfaces) { if (state.dataSurface->Surface(IWin).Class == SurfaceClass::Window && state.dataSurface->Surface(IWin).ExtBoundCond >= 1) { // This is an interior window in ZoneNum @@ -10654,13 +10664,13 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu state.dataSurface->Surface(IWin).Area * state.dataEnvrn->PDIFLW; QDifTransUp = QDifTrans * state.dataSurface->SurfWinFractionUpgoing(IWin); QDifTransDn = QDifTrans * (1.0 - state.dataSurface->SurfWinFractionUpgoing(IWin)); - if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect) != + if (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * + (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect) != 0.0) { DifInterReflIllThisWin = (QDifTransDn * state.dataSurface->SurfWinRhoFloorWall(IWin) + QDifTransUp * state.dataSurface->SurfWinRhoCeilingWall(IWin)) / - (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * + (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); } else { DifInterReflIllThisWin = 0.0; } @@ -10671,11 +10681,11 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu // Add inter-reflected illuminance from beam solar entering ZoneNum through interior windows // TH, CR 7873, 9/17/2009 BmInterReflIll = 0.0; - if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea > 0) { + if (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea > 0) { BmInterReflIll = (state.dataHeatBal->EnclSolDBIntWin(ZoneNum) * state.dataEnvrn->BeamSolarRad * state.dataEnvrn->PDIRLW * - state.dataDaylightingData->ZoneDaylight(ZoneNum).FloorVisRefl) / - (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->ZoneDaylight(ZoneNum).AveVisDiffReflect)); + state.dataDaylightingData->EnclDaylight(enclNum).FloorVisRefl) / + (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * + (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); } state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins += BmInterReflIll; @@ -10745,8 +10755,8 @@ void CalcMinIntWinSolidAngs(EnergyPlusData &state) ZoneNumAdj = state.dataSurface->Surface(state.dataSurface->Surface(IWin).ExtBoundCond).Zone; IntWinNextToIntWinAdjZone = false; for (loop = 1; loop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones; ++loop) { - if (Zone(ZoneNumAdj).SolarEnclosureNum == - Zone(state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(loop)).SolarEnclosureNum) { + if (Zone(ZoneNumAdj).ZoneFirstSpaceSolEnclosure == + Zone(state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(loop)).ZoneFirstSpaceSolEnclosure) { IntWinNextToIntWinAdjZone = true; break; } diff --git a/src/EnergyPlus/DaylightingManager.hh b/src/EnergyPlus/DaylightingManager.hh index 0d96e9ba32a..98c30b5c853 100644 --- a/src/EnergyPlus/DaylightingManager.hh +++ b/src/EnergyPlus/DaylightingManager.hh @@ -86,7 +86,7 @@ namespace DaylightingManager { constexpr int NPHMAX(10); // Number of sky/ground integration steps in altitude constexpr int NTHMAX(16); // Number of sky/ground integration steps in azimuth - void DayltgAveInteriorReflectance(EnergyPlusData &state, int &ZoneNum); // Zone number + void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum); // Enclosure number void CalcDayltgCoefficients(EnergyPlusData &state); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 542b4842b5d..cbef1313a7d 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4944,7 +4944,6 @@ namespace HeatBalanceManager { state.dataHeatBal->Zone.allocate(state.dataGlobal->NumOfZones); state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->NumOfSpaces); state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->NumOfSpaces); - state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfSpaces); ZoneLoop = 0; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 6e208fe07de..09cbdc9f100 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14850,6 +14850,10 @@ namespace SurfaceGeometry { } state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + // TODO: For daylighting, set the zone solar enclosure number to the first space's number + if (state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure == 0) { + state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; + } } assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast != -1); From 93b60b52b60699de099fdf09b24bfab75c470166 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 15 Jul 2021 11:12:46 -0500 Subject: [PATCH 31/98] Space - fix failures and formatting --- src/EnergyPlus/DataViewFactorInformation.hh | 34 +++++++++--------- src/EnergyPlus/DaylightingManager.cc | 40 ++++++++++----------- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 11 +++--- src/EnergyPlus/HeatBalanceManager.cc | 2 -- src/EnergyPlus/OutputReports.cc | 30 ++++++++-------- src/EnergyPlus/SurfaceGeometry.cc | 14 ++++---- 6 files changed, 66 insertions(+), 65 deletions(-) diff --git a/src/EnergyPlus/DataViewFactorInformation.hh b/src/EnergyPlus/DataViewFactorInformation.hh index 30d71c08057..0c405bd70c8 100644 --- a/src/EnergyPlus/DataViewFactorInformation.hh +++ b/src/EnergyPlus/DataViewFactorInformation.hh @@ -64,25 +64,25 @@ namespace DataViewFactorInformation { struct EnclosureViewFactorInformation { // Members - std::string Name; // Enclosure name + std::string Name; // Enclosure name std::vector SpaceNames; // Space names which are part of this enclosure std::vector SpaceNums; // Spaces which are part of this enclosure - int NumOfSurfaces; // Number of surfaces in the enclosure - Array2D F; // View Factors - Array2D ScriptF; // Hottel's Script F //Tuned Transposed - Array1D Area; // Surface area - Array1D Emissivity; // Surface emissivity - Array1D Azimuth; // Azimuth angle of the surface (in degrees) - Array1D Tilt; // Tilt angle of the surface (in degrees) - Array1D FMRT; // Mean Radiant Temperature "View Factor" used in Carroll method - Array1D Fp; // F' (Oppenheim surface resistance used in Carroll method) - Array1D_int SurfacePtr; // Surface number for surfaces in this enclosure - std::vector SurfaceReportNums; // Enclosure surface numbers for reporting view factors in old order (sub-surfaces follow base surfaces) - Real64 FloorArea; // Floor area of zone(s) in enclosure - Real64 ExtWindowArea; // Exterior window area - Real64 TotalSurfArea; // Total surface area - Array1D SolAbsorptance; // Surface solar absorptance - int TotalEnclosureDaylRefPoints; // Total number of daylighting reference points in enclosure + int NumOfSurfaces; // Number of surfaces in the enclosure + Array2D F; // View Factors + Array2D ScriptF; // Hottel's Script F //Tuned Transposed + Array1D Area; // Surface area + Array1D Emissivity; // Surface emissivity + Array1D Azimuth; // Azimuth angle of the surface (in degrees) + Array1D Tilt; // Tilt angle of the surface (in degrees) + Array1D FMRT; // Mean Radiant Temperature "View Factor" used in Carroll method + Array1D Fp; // F' (Oppenheim surface resistance used in Carroll method) + Array1D_int SurfacePtr; // Surface number for surfaces in this enclosure + std::vector SurfaceReportNums; // Enclosure surface numbers for reporting view factors in old order (sub-surfaces follow base surfaces) + Real64 FloorArea; // Floor area of zone(s) in enclosure + Real64 ExtWindowArea; // Exterior window area + Real64 TotalSurfArea; // Total surface area + Array1D SolAbsorptance; // Surface solar absorptance + int TotalEnclosureDaylRefPoints; // Total number of daylighting reference points in enclosure // Default Constructor EnclosureViewFactorInformation() : NumOfSurfaces(0), FloorArea(0.0), ExtWindowArea(0.0), TotalSurfArea(0.0), TotalEnclosureDaylRefPoints(0) diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index cee353a1eb7..a6184f122d8 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -10269,29 +10269,29 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; - // Require that ZoneNumAdj have a least one exterior window - bool AdjEnclHasExtWins = false; - for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { - AdjEnclHasExtWins = true; - break; - } + // Require that ZoneNumAdj have a least one exterior window + bool AdjEnclHasExtWins = false; + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { + if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { + AdjEnclHasExtWins = true; + break; } - if (!AdjEnclHasExtWins) continue; - // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to enclNum - for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { - // This is an interior window in ZoneNumAdj - if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { - // This interior window is adjacent to ZoneNum - ++NumList; - int ZoneNumAdj = state.dataSurface->Surface(SurfNumAdj).Zone; - state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(NumList) = ZoneNumAdj; - state.dataDaylightingData->ZoneDaylight(ZoneNumAdj).AdjZoneHasDayltgCtrl = true; - break; - } + } + if (!AdjEnclHasExtWins) continue; + // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to enclNum + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { + if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { + // This is an interior window in ZoneNumAdj + if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { + // This interior window is adjacent to ZoneNum + ++NumList; + int ZoneNumAdj = state.dataSurface->Surface(SurfNumAdj).Zone; + state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(NumList) = ZoneNumAdj; + state.dataDaylightingData->ZoneDaylight(ZoneNumAdj).AdjZoneHasDayltgCtrl = true; + break; } } + } } state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones = NumList; } diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 2f894be5a1b..5c3869c10ad 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -2067,16 +2067,15 @@ namespace HeatBalanceIntRadExchange { int const surfZoneNum = state.dataSurface->Surface(surfNum).Zone; if (RadSysZoneNum == 0) { // This should never happen - but it does in some simple unit tests that are designed to throw errors - ShowSevereError(state, - std::string{routineName} + "Somehow the radiant system zone number is zero for" + cCurrentModuleObject + " = " + - RadSysName); + ShowSevereError( + state, std::string{routineName} + "Somehow the radiant system zone number is zero for" + cCurrentModuleObject + " = " + RadSysName); ErrorsFound = true; } else if (surfZoneNum == 0) { // This should never happen ShowSevereError(state, - std::string{routineName} + "Somehow the surface zone number is zero for" + cCurrentModuleObject + " = " + - RadSysName + " and Surface = " + SurfaceName); // LCOV_EXCL_LINE - ErrorsFound = true; // LCOV_EXCL_LINE + std::string{routineName} + "Somehow the surface zone number is zero for" + cCurrentModuleObject + " = " + RadSysName + + " and Surface = " + SurfaceName); // LCOV_EXCL_LINE + ErrorsFound = true; // LCOV_EXCL_LINE } else if (surfZoneNum != RadSysZoneNum) { ShowSevereError(state, std::string(routineName) + "Surface = " + SurfaceName + " is not in the same zone as the radiant equipment."); ShowContinueError(state, "Surface zone or enclosure = " + state.dataHeatBal->Zone(surfZoneNum).Name); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 3c774499b88..4ae86b78db9 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4964,8 +4964,6 @@ namespace HeatBalanceManager { state.dataGlobal->NumOfZones = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); state.dataHeatBal->Zone.allocate(state.dataGlobal->NumOfZones); - state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->NumOfSpaces); - state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->NumOfSpaces); ZoneLoop = 0; diff --git a/src/EnergyPlus/OutputReports.cc b/src/EnergyPlus/OutputReports.cc index 09d2d4515f9..e9e499033be 100644 --- a/src/EnergyPlus/OutputReports.cc +++ b/src/EnergyPlus/OutputReports.cc @@ -442,20 +442,22 @@ static void DXFDaylightingReferencePoints(EnergyPlusData &state, InputOutputFile static constexpr fmt::string_view Format_709(" 0\nCIRCLE\n 8\n{}\n 62\n{:3}\n 10\n{:15.5F}\n 20\n{:15.5F}\n 30\n{:15.5F}\n 40\n{:15.5F}\n"); // Do any daylighting reference points on layer for zone - for (int zones = 1; zones <= state.dataGlobal->NumOfZones; ++zones) { - auto curcolorno = ColorNo::DaylSensor1; - - for (int refpt = 1; refpt <= state.dataDaylightingData->ZoneDaylight(zones).TotalDaylRefPoints; ++refpt) { - print(of, "999\n{}:{}:{}\n", state.dataHeatBal->Zone(zones).Name, DELight ? "DEDayRefPt" : "DayRefPt", refpt); - print(of, - Format_709, - normalizeName(state.dataHeatBal->Zone(zones).Name), - state.dataSurfColor->DXFcolorno(static_cast(curcolorno)), - state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(1, refpt), - state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(2, refpt), - state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(3, refpt), - 0.2); - curcolorno = ColorNo::DaylSensor2; // ref pts 2 and later are this color + if (state.dataDaylightingData->TotRefPoints > 0) { + for (int zones = 1; zones <= state.dataGlobal->NumOfZones; ++zones) { + auto curcolorno = ColorNo::DaylSensor1; + + for (int refpt = 1; refpt <= state.dataDaylightingData->ZoneDaylight(zones).TotalDaylRefPoints; ++refpt) { + print(of, "999\n{}:{}:{}\n", state.dataHeatBal->Zone(zones).Name, DELight ? "DEDayRefPt" : "DayRefPt", refpt); + print(of, + Format_709, + normalizeName(state.dataHeatBal->Zone(zones).Name), + state.dataSurfColor->DXFcolorno(static_cast(curcolorno)), + state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(1, refpt), + state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(2, refpt), + state.dataDaylightingData->ZoneDaylight(zones).DaylRefPtAbsCoord(3, refpt), + 0.2); + curcolorno = ColorNo::DaylSensor2; // ref pts 2 and later are this color + } } } } diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index e7dbe2745ac..f20f65a3f0a 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -1557,9 +1557,6 @@ namespace SurfaceGeometry { } // ...end of the Surface DO loop for finding BaseSurf //********************************************************************************** - - CreateMissingSpaces(state, ErrorsFound); - // The surfaces need to be hierarchical by zone. Input is allowed to be in any order. In // this section the surfaces are reordered into: // All shadowing surfaces (if mirrored, Mir- surface follows immediately after original) @@ -1813,6 +1810,8 @@ namespace SurfaceGeometry { state.dataSurfaceGeometry->SurfaceTmp.deallocate(); // DeAllocate the Temp Surface derived type + CreateMissingSpaces(state, ErrorsFound); + // For each Base Surface Type (Wall, Floor, Roof) for (int Loop = 1; Loop <= 3; ++Loop) { @@ -2439,14 +2438,15 @@ namespace SurfaceGeometry { if (diffp > 0.05) { ++ErrCount; if (ErrCount == 1 && !state.dataGlobal->DisplayExtraWarnings) { - ShowWarningError(state, RoutineName + "Entered Space Floor Areas differ from calculated Space Floor Area(s)."); + ShowWarningError( + state, std::string(RoutineName) + "Entered Space Floor Areas differ from calculated Space Floor Area(s)."); ShowContinueError(state, "...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual Spaces."); } if (state.dataGlobal->DisplayExtraWarnings) { // Warn user of using specified Space Floor Area ShowWarningError(state, - RoutineName + "Entered Floor Area entered for Space=\"" + + std::string(RoutineName) + "Entered Floor Area entered for Space=\"" + state.dataHeatBal->Space(spaceNum).Name + "\" significantly different from calculated Floor Area"); ShowContinueError( @@ -14646,9 +14646,11 @@ namespace SurfaceGeometry { if (EnclosureType == RadiantEnclosures) { radiantSetup = true; RadiantOrSolar = "Radiant"; + state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->NumOfSpaces); } else if (EnclosureType == SolarEnclosures) { solarSetup = true; RadiantOrSolar = "Solar"; + state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->NumOfSpaces); } else { ShowFatalError(state, std::string{RoutineName} + @@ -14895,7 +14897,7 @@ namespace SurfaceGeometry { // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { for (int spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == 0) { + if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == -1) { // initial value state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; } else { state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = From d067ec9b37dc14971dee6a54932b1790e230d689 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 19 Jul 2021 16:41:05 -0500 Subject: [PATCH 32/98] Space - fix more problems --- src/EnergyPlus/DataHeatBalance.hh | 20 ++++++------ src/EnergyPlus/DaylightingManager.cc | 2 +- src/EnergyPlus/HeatBalanceManager.cc | 1 + src/EnergyPlus/InternalHeatGains.cc | 42 ++++++++++++------------- src/EnergyPlus/SurfaceGeometry.cc | 47 ++++++++++++++++------------ 5 files changed, 59 insertions(+), 53 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 838eab82ce1..c25e3386894 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -354,19 +354,17 @@ namespace DataHeatBalance { std::string Name = ""; // Space name int ZoneNum = 0; // Pointer to Zone wich contains this space Real64 UserEnteredFloorArea = 0.0; // User input floor area for this space - Real64 CalcFloorArea = 0.0; // Calculated floor area used for this space - bool HasFloor; // Has "Floor" surface std::string SpaceType = "General"; // Space type tag EPVector Tags; // Optional tags for reporting EPVector Surfaces; // Pointers to surfaces in this space - bool EnforcedReciprocity; // if zone required forced reciprocity -- - // less out of bounds temperature errors allowed - int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to - int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to - Real64 FloorArea = 0.0; // Floor area used for this space - Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone - Real64 TotalSurfArea = 0.0; // Total surface area for Zone - Real64 OriginZ = 0.0; // Z origin [m] + Real64 CalcFloorArea = 0.0; // Calculated floor area used for this space + Real64 FloorArea = 0.0; // Floor area used for this space + bool HasFloor = false; // Has "Floor" surface + Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone + Real64 TotalSurfArea = 0.0; // Total surface area for Zone + bool EnforcedReciprocity = false; // if zone/space required forced reciprocity -- less out of bounds temp errors allowed + int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to + int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to }; struct SpaceListData @@ -452,7 +450,7 @@ namespace DataHeatBalance { std::vector ZoneExtSolarSurfaceList; // List of exterior solar surfaces in a zone int ZoneRadEnclosureFirst; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange int ZoneRadEnclosureLast; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange - int ZoneFirstSpaceSolEnclosure; // TODO: For daylighting, this is a punt, it's the solar enclosure number of the first space in the zone + int ZoneFirstSpaceSolEnclosure; // TODO: For daylighting, this is a punt, it's the solar enclosure number of the first space in the zone Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index a6184f122d8..9f552e91f8e 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -436,6 +436,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) // exterior windows in Daylighting:Detailed zones. Note that it is possible for a // Daylighting:Detailed zone to have zero exterior windows of its own, but it may have an interior // through which daylight passes from adjacent zones with exterior windows. + if (state.dataDaylightingData->TotRefPoints == 0) return; if (state.dataGlobal->BeginSimFlag) { state.dataDaylightingManager->TotWindowsWithDayl = 0; for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { @@ -4223,7 +4224,6 @@ void GetDaylightingParametersInput(EnergyPlusData &state) cCurrentModuleObject = "Daylighting:Controls"; TotDaylightingControls = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); if (TotDaylightingControls > 0) { - state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfSpaces); state.dataDaylightingData->EnclDaylight.allocate(state.dataViewFactor->NumOfSolarEnclosures); GetInputDayliteRefPt(state, ErrorsFound); GetDaylightingControls(state, TotDaylightingControls, ErrorsFound); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 4ae86b78db9..421450dc369 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4964,6 +4964,7 @@ namespace HeatBalanceManager { state.dataGlobal->NumOfZones = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); state.dataHeatBal->Zone.allocate(state.dataGlobal->NumOfZones); + state.dataDaylightingData->ZoneDaylight.allocate(state.dataGlobal->NumOfZones); ZoneLoop = 0; diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index fe3067c1ffa..842bffc0b29 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -407,70 +407,70 @@ namespace InternalHeatGains { "Space Total Internal Radiant Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Radiant Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Visible Radiation Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Visible Radiation Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Convective Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Convective Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Latent Gain Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Latent Gain Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Total Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Total Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(Loop).Name); } @@ -1404,77 +1404,77 @@ namespace InternalHeatGains { "Space People Occupant Count", OutputProcessor::Unit::None, state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Radiant Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Radiant Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Convective Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Convective Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Sensible Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Sensible Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Latent Gain Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Latent Gain Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Total Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, - "Space", + "Zone", "Sum", state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Total Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, - "Space", + "Zone", "Average", state.dataHeatBal->Space(spaceNum).Name); } diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index f20f65a3f0a..cb290645d1b 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -290,8 +290,6 @@ namespace SurfaceGeometry { static constexpr std::string_view RoutineName("SetUpZoneGeometry: "); Real64 AverageHeight; // Used to keep track of average height of a surface/zone - int SurfNum; // Surface number (DO loop counter) - int ZoneNum; // Zone number for current surface and DO loop counter Real64 ZMax; // Maximum Z of a surface (detailed outside coefficient calculation) Real64 ZMin; // Minimum Z of a surface (detailed outside coefficient calculation) Real64 ZCeilAvg; @@ -335,7 +333,7 @@ namespace SurfaceGeometry { ZoneCeilingHeightEntered.dimension(state.dataGlobal->NumOfZones, false); ZoneCeilingArea.dimension(state.dataGlobal->NumOfZones, 0.0); - for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { state.dataSurfaceGeometry->CosZoneRelNorth(ZoneNum) = std::cos(-state.dataHeatBal->Zone(ZoneNum).RelNorth * DataGlobalConstants::DegToRadians); @@ -369,7 +367,7 @@ namespace SurfaceGeometry { state.dataSurface->ShadingSurfaceFirst = -1; state.dataSurface->ShadingSurfaceLast = -1; - for (SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { // Loop through all surfaces... + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { // Loop through all surfaces... state.dataSurface->SurfAirSkyRadSplit(SurfNum) = std::sqrt(0.5 * (1.0 + state.dataSurface->Surface(SurfNum).CosTilt)); @@ -398,21 +396,28 @@ namespace SurfaceGeometry { e.TotalSurfArea = 0.0; } + for (auto &s : state.dataHeatBal->Space) { + s.ExtWindowArea = 0.0; + s.TotalSurfArea = 0.0; + } DetailedWWR = (state.dataInputProcessing->inputProcessor->getNumSectionsFound("DETAILEDWWR_DEBUG") > 0); if (DetailedWWR) { print(state.files.debug, "{}", "=======User Entered Classification ================="); print(state.files.debug, "{}", "Surface,Class,Area,Tilt"); } - for (SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { // Loop through all surfaces to find windows... + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { // Loop through all surfaces to find windows... if (!state.dataSurface->Surface(SurfNum).HeatTransSurf && !state.dataSurface->Surface(SurfNum).IsAirBoundarySurf) continue; // Skip shadowing (sub)surfaces - ZoneNum = state.dataSurface->Surface(SurfNum).Zone; + int const ZoneNum = state.dataSurface->Surface(SurfNum).Zone; + int const spaceNum = state.dataSurface->Surface(SurfNum).Space; state.dataHeatBal->Zone(ZoneNum).TotalSurfArea += state.dataSurface->Surface(SurfNum).Area; + state.dataHeatBal->Space(spaceNum).TotalSurfArea += state.dataSurface->Surface(SurfNum).Area; if (state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).TypeIsWindow) { state.dataHeatBal->Zone(ZoneNum).TotalSurfArea += state.dataSurface->SurfWinFrameArea(SurfNum); state.dataHeatBal->Zone(ZoneNum).HasWindow = true; + state.dataHeatBal->Space(spaceNum).TotalSurfArea += state.dataSurface->SurfWinFrameArea(SurfNum); } if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Roof) ZoneCeilingArea(ZoneNum) += state.dataSurface->Surface(SurfNum).GrossArea; @@ -459,15 +464,15 @@ namespace SurfaceGeometry { if ((state.dataSurface->Surface(SurfNum).ExtBoundCond > 0) && (state.dataSurface->Surface(SurfNum).BaseSurf != SurfNum)) { // Interzone window present - state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).HasInterZoneWindow = true; + state.dataHeatBal->Zone(ZoneNum).HasInterZoneWindow = true; } else { if (((state.dataSurface->Surface(SurfNum).ExtBoundCond == ExternalEnvironment) || (state.dataSurface->Surface(SurfNum).ExtBoundCond == OtherSideCondModeledExt)) && (state.dataSurface->Surface(SurfNum).Class != SurfaceClass::TDD_Dome)) { - state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).ExtWindowArea += - state.dataSurface->Surface(SurfNum).GrossArea; - state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).ExtWindowArea_Multiplied = - state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).ExtWindowArea + + state.dataHeatBal->Zone(ZoneNum).ExtWindowArea += state.dataSurface->Surface(SurfNum).GrossArea; + state.dataHeatBal->Space(spaceNum).ExtWindowArea += state.dataSurface->Surface(SurfNum).GrossArea; + state.dataHeatBal->Zone(ZoneNum).ExtWindowArea_Multiplied = + state.dataHeatBal->Zone(ZoneNum).ExtWindowArea + state.dataSurface->Surface(SurfNum).GrossArea * state.dataSurface->Surface(SurfNum).Multiplier * state.dataHeatBal->Zone(ZoneNum).Multiplier * state.dataHeatBal->Zone(ZoneNum).ListMultiplier; if (DetailedWWR) { @@ -489,7 +494,7 @@ namespace SurfaceGeometry { print(state.files.debug, "{}\n", "Zone,ExtWallArea,ExtWindowArea"); } - for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { CeilCount = 0.0; FloorCount = 0.0; Count = 0; @@ -506,7 +511,8 @@ namespace SurfaceGeometry { state.dataHeatBal->Zone(ZoneNum).ExtWindowArea); } // Use AllSurfaceFirst which includes air boundaries - for (SurfNum = state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst; SurfNum <= state.dataHeatBal->Zone(ZoneNum).AllSurfaceLast; ++SurfNum) { + for (int SurfNum = state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst; SurfNum <= state.dataHeatBal->Zone(ZoneNum).AllSurfaceLast; + ++SurfNum) { if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Roof) { // Use Average Z for surface, more important for roofs than floors... ++CeilCount; @@ -577,7 +583,7 @@ namespace SurfaceGeometry { // Calculate zone centroid (and min/max x,y,z for zone) // Use AllSurfaceFirst which includes air boundaries - for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { nonInternalMassSurfacesPresent = false; TotSurfArea = 0.0; state.dataHeatBal->Zone(ZoneNum).Centroid = Vector(0.0, 0.0, 0.0); @@ -589,7 +595,8 @@ namespace SurfaceGeometry { state.dataHeatBal->Zone(ZoneNum).MinimumZ = state.dataSurface->Surface(state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst).Vertex(1).z; state.dataHeatBal->Zone(ZoneNum).MaximumZ = state.dataSurface->Surface(state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst).Vertex(1).z; } - for (SurfNum = state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst; SurfNum <= state.dataHeatBal->Zone(ZoneNum).HTSurfaceLast; ++SurfNum) { + for (int SurfNum = state.dataHeatBal->Zone(ZoneNum).AllSurfaceFirst; SurfNum <= state.dataHeatBal->Zone(ZoneNum).HTSurfaceLast; + ++SurfNum) { if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::IntMass) continue; nonInternalMassSurfacesPresent = true; if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Wall || @@ -641,13 +648,13 @@ namespace SurfaceGeometry { state.dataSurface->SurfAdjacentZone.dimension(state.dataSurface->TotSurfaces, 0); // note -- adiabatic surfaces will show same zone as surface - for (SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { if (state.dataSurface->Surface(SurfNum).ExtBoundCond <= 0) continue; state.dataSurface->SurfAdjacentZone(SurfNum) = state.dataSurface->Surface(state.dataSurface->Surface(SurfNum).ExtBoundCond).Zone; } - for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { - for (SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { + for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { if (!state.dataSurface->Surface(SurfNum).HeatTransSurf && state.dataSurface->Surface(SurfNum).ZoneName == state.dataHeatBal->Zone(ZoneNum).Name) ++state.dataHeatBal->Zone(ZoneNum).NumShadingSurfaces; @@ -669,7 +676,7 @@ namespace SurfaceGeometry { } // surfaces } // zones - for (int SurfNum : state.dataSurface->AllSurfaceListReportOrder) { + for (int const SurfNum : state.dataSurface->AllSurfaceListReportOrder) { if (state.dataSurface->Surface(SurfNum).Construction > 0 && state.dataSurface->Surface(SurfNum).Construction <= state.dataHeatBal->TotConstructs) { NominalUwithConvCoeffs = ComputeNominalUwithConvCoeffs(state, SurfNum, isWithConvCoefValid); @@ -745,7 +752,7 @@ namespace SurfaceGeometry { "Area {m2}, Number of Surfaces, Number of SubSurfaces, Number of Shading SubSurfaces, Part of Total Building Area"); print(state.files.eio, "{}\n", Format_721); - for (ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { // Write Zone Information to the initialization output file { From 531fff63cc5bc038d6c77533189bf34b821ec0b9 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 19 Jul 2021 19:23:32 -0500 Subject: [PATCH 33/98] Space - unit test repairs and formatting --- idd/Energy+.idd.in | 8 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 7 +- .../unit/HeatBalanceIntRadExchange.unit.cc | 309 +++++++++++------- .../unit/HeatBalanceSurfaceManager.unit.cc | 6 +- tst/EnergyPlus/unit/HybridModel.unit.cc | 1 - .../unit/OutputReportTabular.unit.cc | 17 +- .../unit/RoomAirflowNetwork.unit.cc | 12 +- tst/EnergyPlus/unit/SurfaceGeometry.unit.cc | 196 +++++++---- .../unit/ZoneTempPredictorCorrector.unit.cc | 1 - 9 files changed, 356 insertions(+), 201 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index d350638a6d4..998d4ea6382 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -18761,11 +18761,11 @@ ZoneProperty:UserViewFactors:BySurfaceName, \memo (Number of Surfaces)**2 are expected. Any omitted surface pairs will be assumed to have a view factor of zero. \extensible:3 - copy last three fields, remembering to remove ; \format ViewFactor - A1, \field Zone or ZoneList Name - \note View factors may be entered for a single zone or for a group of zones connected by Construction:AirBoundary + A1, \field Space or SpaceList Name + \note View factors may be entered for a single space or for a group of spaces connected by Construction:AirBoundary \type object-list - \object-list ZoneNames - \object-list ZoneListNames + \object-list SpaceNames + \object-list SpaceListNames A2, \field From Surface 1 \begin-extensible \type object-list diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 5c3869c10ad..c37be194f31 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1227,9 +1227,10 @@ namespace HeatBalanceIntRadExchange { } if (!enclMatchFound) { if (spaceListNum > 0) { - ShowSevereError(state, - "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisSpaceOrSpaceListName + - "\" found a matching ZoneList, but did not find a matching radiant or solar enclosure with the same zones."); + ShowSevereError( + state, + "AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisSpaceOrSpaceListName + + "\" found a matching SpaceList, but did not find a matching radiant or solar enclosure with the same spaces."); ErrorsFound = true; } else { diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index aa80fc44aaf..f08f8beba93 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -137,7 +137,6 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) int N; // NUMBER OF SURFACES Array1D A; // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG Array2D F; // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) - int ZoneNum; // Zone number being fixed Real64 OriginalCheckValue; // check of SUM(F) - N Real64 FixedCheckValue; // check after fixed of SUM(F) - N Real64 FinalCheckValue; // the one to go with @@ -165,20 +164,20 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) F(3, 2) = 0.5; F(3, 3) = 0.0; - ZoneNum = 1; + int spaceNum = 1; - state->dataHeatBal->Zone.allocate(ZoneNum); - state->dataHeatBal->Zone(ZoneNum).Name = "Test"; - state->dataViewFactor->ZoneRadiantInfo.allocate(ZoneNum); - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name = state->dataHeatBal->Zone(ZoneNum).Name; - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums.push_back(ZoneNum); + state->dataHeatBal->Space.allocate(spaceNum); + state->dataHeatBal->Space(spaceNum).Name = "Test"; + state->dataViewFactor->EnclRadInfo.allocate(spaceNum); + state->dataViewFactor->EnclRadInfo(spaceNum).Name = state->dataHeatBal->Space(spaceNum).Name; + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums.push_back(spaceNum); FixViewFactors(*state, N, A, F, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums, + state->dataViewFactor->EnclRadInfo(spaceNum).Name, + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -217,8 +216,8 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) N, A, F, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums, + state->dataViewFactor->EnclRadInfo(spaceNum).Name, + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -247,8 +246,8 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) N, A, F, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums, + state->dataViewFactor->EnclRadInfo(spaceNum).Name, + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -277,8 +276,8 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) N, A, F, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums, + state->dataViewFactor->EnclRadInfo(spaceNum).Name, + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -330,8 +329,8 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) N, A, F, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).Name, - state->dataViewFactor->ZoneRadiantInfo(ZoneNum).ZoneNums, + state->dataViewFactor->EnclRadInfo(spaceNum).Name, + state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -445,8 +444,28 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) "Zone,", "Zone 5; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + + "Space,", + "Space 4, !- Name", + "Zone 4; !- Zone Name", + + "Space,", + "Space 5, !- Name", + "Zone 5; !- Zone Name", + "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 3,", + "Space 3,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -459,13 +478,13 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) "SB51,SB53,8.311358E-002,", "SB51,SB54,2.672021E-002;", - "ZoneList,", + "SpaceList,", "Perimeter Zones, !- Name", - "Zone 5, !- Zone 1 Name", - "Zone 2; !- Zone 2 Name", + "Space 5, !- Zone 1 Name", + "Space 2; !- Zone 2 Name", "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 6,", + "Space 6,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -475,36 +494,38 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetSpaceData(*state, ErrorsFound); + EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfRadiantEnclosures = 3; - state->dataViewFactor->ZoneRadiantInfo.allocate(3); - state->dataViewFactor->ZoneRadiantInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->ZoneRadiantInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->ZoneRadiantInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(3).Name = "Zone 3"; - state->dataViewFactor->ZoneRadiantInfo(3).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); + state->dataViewFactor->EnclRadInfo.allocate(3); + state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; + state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; + state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; + state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); EXPECT_TRUE(ErrorsFound); std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Perimeter Zones\" found a matching " - "ZoneList, but did not find a matching radiant or solar enclosure with the same zones.", - " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Zone 6\" did not find a matching " + "SpaceList, but did not find a matching radiant or solar enclosure with the same spaces.", + " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Space 6\" did not find a matching " "radiant or solar enclosure name."}); EXPECT_TRUE(compare_err_stream(error_string, true)); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Enclosure 1"); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(2).Name, "Enclosure 2"); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(3).Name, "Zone 3"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(1).Name, "Enclosure 1"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(3).Name, "Space 3"); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) @@ -526,8 +547,28 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) "Zone,", "Zone 5; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + + "Space,", + "Space 4, !- Name", + "Zone 4; !- Zone Name", + + "Space,", + "Space 5, !- Name", + "Zone 5; !- Zone Name", + "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 3,", + "Space 3,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -540,13 +581,13 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) "SB51,SB53,8.311358E-002,", "SB51,SB54,2.672021E-002;", - "ZoneList,", + "SpaceList,", "Perimeter Zones, !- Name", - "Zone 5, !- Zone 1 Name", - "Zone 2; !- Zone 2 Name", + "Space 5, !- Zone 1 Name", + "Space 2; !- Zone 2 Name", "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 6,", + "Space 6,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -556,33 +597,35 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetSpaceData(*state, ErrorsFound); + EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfSolarEnclosures = 3; - state->dataViewFactor->ZoneSolarInfo.allocate(3); - state->dataViewFactor->ZoneSolarInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->ZoneSolarInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->ZoneSolarInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(3).Name = "Zone 3"; - state->dataViewFactor->ZoneSolarInfo(3).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); + state->dataViewFactor->EnclSolInfo.allocate(3); + state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; + state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; + state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; + state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); EXPECT_TRUE(ErrorsFound); - std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Zone " + std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Space " "6\" did not find a matching radiant or solar enclosure name."}); EXPECT_TRUE(compare_err_stream(error_string, true)); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(1).Name, "Perimeter Zones"); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(2).Name, "Enclosure 2"); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(3).Name, "Zone 3"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(1).Name, "Perimeter Zones"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(3).Name, "Space 3"); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) @@ -604,8 +647,28 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) "Zone,", "Zone 5; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + + "Space,", + "Space 4, !- Name", + "Zone 4; !- Zone Name", + + "Space,", + "Space 5, !- Name", + "Zone 5; !- Zone Name", + "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 3,", + "Space 3,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -618,13 +681,13 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) "SB51,SB53,8.311358E-002,", "SB51,SB54,2.672021E-002;", - "ZoneList,", + "SpaceList,", "Perimeter Zones, !- Name", - "Zone 5, !- Zone 1 Name", - "Zone 2; !- Zone 2 Name", + "Space 5, !- Zone 1 Name", + "Space 2; !- Zone 2 Name", "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 6,", + "Space 6,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -634,36 +697,38 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetSpaceData(*state, ErrorsFound); + EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfSolarEnclosures = 3; - state->dataViewFactor->ZoneSolarInfo.allocate(3); - state->dataViewFactor->ZoneSolarInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->ZoneSolarInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->ZoneSolarInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneSolarInfo(3).Name = "Zone 3"; - state->dataViewFactor->ZoneSolarInfo(3).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); + state->dataViewFactor->EnclSolInfo.allocate(3); + state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; + state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; + state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; + state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); EXPECT_TRUE(ErrorsFound); std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Perimeter Zones\" found a matching " - "ZoneList, but did not find a matching radiant or solar enclosure with the same zones.", - " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Zone 6\" did not find a matching " + "SpaceList, but did not find a matching radiant or solar enclosure with the same spaces.", + " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Space 6\" did not find a matching " "radiant or solar enclosure name."}); EXPECT_TRUE(compare_err_stream(error_string, true)); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(1).Name, "Enclosure 1"); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(2).Name, "Enclosure 2"); - EXPECT_EQ(state->dataViewFactor->ZoneSolarInfo(3).Name, "Zone 3"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(1).Name, "Enclosure 1"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(state->dataViewFactor->EnclSolInfo(3).Name, "Space 3"); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) @@ -685,8 +750,28 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) "Zone,", "Zone 5; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + + "Space,", + "Space 4, !- Name", + "Zone 4; !- Zone Name", + + "Space,", + "Space 5, !- Name", + "Zone 5; !- Zone Name", + "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 3,", + "Space 3,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -699,13 +784,13 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) "SB51,SB53,8.311358E-002,", "SB51,SB54,2.672021E-002;", - "ZoneList,", + "SpaceList,", "Perimeter Zones, !- Name", - "Zone 5, !- Zone 1 Name", - "Zone 2; !- Zone 2 Name", + "Space 5, !- Space 1 Name", + "Space 2; !- Space 2 Name", "ZoneProperty:UserViewFactors:BySurfaceName,", - "Zone 6,", + "Space 6,", "SB51,SB51,0.000000,", "SB51,SB52,2.672021E-002,", "SB51,SB53,8.311358E-002,", @@ -715,33 +800,35 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetSpaceData(*state, ErrorsFound); + EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfRadiantEnclosures = 3; - state->dataViewFactor->ZoneRadiantInfo.allocate(3); - state->dataViewFactor->ZoneRadiantInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->ZoneRadiantInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(1).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->ZoneRadiantInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(2).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); - state->dataViewFactor->ZoneRadiantInfo(3).Name = "Zone 3"; - state->dataViewFactor->ZoneRadiantInfo(3).ZoneNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Zone, state->dataGlobal->NumOfZones)); + state->dataViewFactor->EnclRadInfo.allocate(3); + state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; + state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; + state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; + state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); EXPECT_TRUE(ErrorsFound); - std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Zone " + std::string const error_string = delimited_string({" ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:BySurfaceName=\"Space " "6\" did not find a matching radiant or solar enclosure name."}); EXPECT_TRUE(compare_err_stream(error_string, true)); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Perimeter Zones"); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(2).Name, "Enclosure 2"); - EXPECT_EQ(state->dataViewFactor->ZoneRadiantInfo(3).Name, "Zone 3"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(1).Name, "Perimeter Zones"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(state->dataViewFactor->EnclRadInfo(3).Name, "Space 3"); } } // namespace EnergyPlus diff --git a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc index c7f0639be9c..2b06e61aa0d 100644 --- a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc @@ -291,12 +291,12 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_ComputeIntThermalAbsorpFacto state->dataHeatBalSurf->SurfAbsThermalInt.allocate(1); state->dataViewFactor->NumOfRadiantEnclosures = 1; - state->dataViewFactor->ZoneRadiantInfo.allocate(1); + state->dataViewFactor->EnclRadInfo.allocate(1); state->dataHeatBal->EnclRadReCalc.allocate(1); state->dataHeatBal->EnclRadReCalc(1) = true; state->dataHeatBal->EnclRadThermAbsMult.allocate(1); - state->dataViewFactor->ZoneRadiantInfo(1).SurfacePtr.allocate(1); - state->dataViewFactor->ZoneRadiantInfo(1).SurfacePtr(1) = 1; + state->dataViewFactor->EnclRadInfo(1).SurfacePtr.allocate(1); + state->dataViewFactor->EnclRadInfo(1).SurfacePtr(1) = 1; ComputeIntThermalAbsorpFactors(*state); diff --git a/tst/EnergyPlus/unit/HybridModel.unit.cc b/tst/EnergyPlus/unit/HybridModel.unit.cc index 053e494cd97..8d9686419f9 100644 --- a/tst/EnergyPlus/unit/HybridModel.unit.cc +++ b/tst/EnergyPlus/unit/HybridModel.unit.cc @@ -179,7 +179,6 @@ TEST_F(EnergyPlusFixture, HybridModel_CorrectZoneAirTempTest) state->dataZoneEquip->ZoneEquipConfig.allocate(1); state->dataZoneEquip->ZoneEquipConfig(1).ActualZoneNum = 1; state->dataHeatBal->ZoneIntGain.allocate(1); - state->dataHeatBal->ZoneIntGain(1).NumberOfDevices = 0; state->dataSize->ZoneEqSizing.allocate(1); // CorrectZoneHumRat variable initialization diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 81c6af304b0..184c57ffb14 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6862,15 +6862,18 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesTwice_test) state->dataGlobal->NumOfZones = 4; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); + state->dataGlobal->NumOfSpaces = 4; + state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 1; - state->dataHeatBal->Zone(iZone).RadiantEnclosureNum = 1; + state->dataHeatBal->Space(iZone).RadiantEnclosureNum = 1; state->dataSurface->TotSurfaces = 4; state->dataSurface->Surface.allocate(state->dataSurface->TotSurfaces); state->dataSurface->Surface(1).HeatTransSurf = true; state->dataSurface->Surface(1).Class = SurfaceClass::Window; + state->dataSurface->Surface(1).RadEnclIndex = 1; Array1D peopleDelaySeq; peopleDelaySeq.allocate(state->dataGlobal->NumOfTimeStepInHour * 24); @@ -8195,10 +8198,12 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataGlobal->NumOfZones = 1; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); + state->dataGlobal->NumOfSpaces = 1; + state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 4; - state->dataHeatBal->Zone(iZone).RadiantEnclosureNum = 1; + state->dataHeatBal->Space(iZone).RadiantEnclosureNum = 1; int radEnclosureNum = 1; state->dataSurface->TotSurfaces = 4; @@ -8258,6 +8263,10 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataSurface->Surface(2).Class = SurfaceClass::Wall; state->dataSurface->Surface(3).Class = SurfaceClass::Floor; state->dataSurface->Surface(4).Class = SurfaceClass::Shading; + state->dataSurface->Surface(1).RadEnclIndex = 1; + state->dataSurface->Surface(2).RadEnclIndex = 1; + state->dataSurface->Surface(3).RadEnclIndex = 1; + state->dataSurface->Surface(4).RadEnclIndex = 1; for (int jSurf = 1; jSurf <= 4; ++jSurf) { for (int step = 1; step <= 10; ++step) { @@ -8307,6 +8316,10 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataSurface->Surface(4).Class = SurfaceClass::Wall; state->dataSurface->Surface(1).Class = SurfaceClass::Floor; state->dataSurface->Surface(3).Class = SurfaceClass::Shading; + state->dataSurface->Surface(2).RadEnclIndex = 1; + state->dataSurface->Surface(4).RadEnclIndex = 1; + state->dataSurface->Surface(1).RadEnclIndex = 1; + state->dataSurface->Surface(3).RadEnclIndex = 1; for (int jSurf = 1; jSurf <= 4; ++jSurf) { for (int step = 1; step <= 10; ++step) { diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index 5a91d6a99e4..bd1a9fd6fa3 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -256,12 +256,12 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataHeatBal->Zone(ZoneNum).HTSurfaceLast = 2; state->dataHeatBal->Zone(ZoneNum).ZoneVolCapMultpMoist = 0; - state->dataHeatBal->ZoneIntGain(ZoneNum).NumberOfDevices = 1; - state->dataHeatBal->ZoneIntGain(ZoneNum).Device.allocate(state->dataHeatBal->ZoneIntGain(1).NumberOfDevices); - state->dataHeatBal->ZoneIntGain(ZoneNum).Device(1).CompObjectName = "PEOPLE"; - state->dataHeatBal->ZoneIntGain(ZoneNum).Device(1).CompTypeOfNum = IntGainTypeOf_People; - state->dataHeatBal->ZoneIntGain(ZoneNum).Device(1).ConvectGainRate = 300.0; - state->dataHeatBal->ZoneIntGain(ZoneNum).Device(1).LatentGainRate = 200.0; + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).NumberOfDevices = 1; + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device.allocate(state->dataHeatBal->SpaceIntGainDevices(1).NumberOfDevices); + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).CompObjectName = "PEOPLE"; + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).CompTypeOfNum = IntGainTypeOf_People; + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).ConvectGainRate = 300.0; + state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).LatentGainRate = 200.0; state->dataSurface->Surface(1).HeatTransSurf = true; state->dataSurface->Surface(2).HeatTransSurf = true; diff --git a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc index 3930a5cd948..1f3e43d3df9 100644 --- a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc +++ b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc @@ -5053,6 +5053,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari "Zone,", "Zone 3; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + "Material,", " Some Material, !- Name", " VeryRough, !- Roughness", @@ -5154,26 +5166,26 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari EXPECT_FALSE(ErrorsFound); // expect no errors EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 3); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(2).Name, "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(3).Name, "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(2).ZoneNames[0], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(3).ZoneNames[0], "Zone 3")); - EXPECT_EQ(state->dataHeatBal->Zone(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).RadiantEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Zone(3).RadiantEnclosureNum, 3); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).Name, "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(3).Name, "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).SpaceNames[0], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(3).SpaceNames[0], "Space 3")); + EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 3); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 3); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).Name, "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(2).Name, "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(3).Name, "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(2).ZoneNames[0], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(3).ZoneNames[0], "Zone 3")); - EXPECT_EQ(state->dataHeatBal->Zone(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).SolarEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Zone(3).SolarEnclosureNum, 3); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).Name, "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(3).Name, "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).SpaceNames[0], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(3).SpaceNames[0], "Space 3")); + EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 3); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBoundaries1) @@ -5189,6 +5201,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda "Zone,", "Zone 3; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + "Material,", " Some Material, !- Name", " VeryRough, !- Roughness", @@ -5345,22 +5369,22 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda EXPECT_FALSE(ErrorsFound); // expect no errors EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 1); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[1], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[2], "Zone 3")); - EXPECT_EQ(state->dataHeatBal->Zone(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(3).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[2], "Space 3")); + EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 1); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[1], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[2], "Zone 3")); - EXPECT_EQ(state->dataHeatBal->Zone(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(3).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[2], "Space 3")); + EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBoundaries2) @@ -5376,6 +5400,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda "Zone,", "Zone 3; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + "Material,", " Some Material, !- Name", " VeryRough, !- Roughness", @@ -5543,24 +5579,24 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda // For this test case, Zones 1 and 3 share radiant and solar enclosures EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 2); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[1], "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(2).Name, "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(2).ZoneNames[0], "Zone 2")); - EXPECT_EQ(state->dataHeatBal->Zone(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).RadiantEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Zone(3).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).Name, "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).SpaceNames[0], "Space 2")); + EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 2); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[1], "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(2).Name, "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(2).ZoneNames[0], "Zone 2")); - EXPECT_EQ(state->dataHeatBal->Zone(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).SolarEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Zone(3).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).Name, "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).SpaceNames[0], "Space 2")); + EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); // Check surface order int Zone1Surface1 = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone1-Surface1"), state->dataSurface->Surface); @@ -5605,6 +5641,26 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda "Zone,", "Zone 5; !- Name", + "Space,", + "Space 1, !- Name", + "Zone 1; !- Zone Name", + + "Space,", + "Space 2, !- Name", + "Zone 2; !- Zone Name", + + "Space,", + "Space 3, !- Name", + "Zone 3; !- Zone Name", + + "Space,", + "Space 4, !- Name", + "Zone 4; !- Zone Name", + + "Space,", + "Space 5, !- Name", + "Zone 5; !- Zone Name", + "Material,", " Some Material, !- Name", " VeryRough, !- Roughness", @@ -5905,30 +5961,30 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda // This should trigger the enclosure merging and all five zones should share a radiant and solar enclosure EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 1); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[1], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[2], "Zone 5")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[3], "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneRadiantInfo(1).ZoneNames[4], "Zone 4")); - EXPECT_EQ(state->dataHeatBal->Zone(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(3).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(4).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(5).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[2], "Space 5")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[3], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[4], "Space 4")); + EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(4).RadiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(5).RadiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 1); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[0], "Zone 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[1], "Zone 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[2], "Zone 5")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[3], "Zone 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->ZoneSolarInfo(1).ZoneNames[4], "Zone 4")); - EXPECT_EQ(state->dataHeatBal->Zone(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(2).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(3).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(4).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Zone(5).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[2], "Space 5")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[3], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[4], "Space 4")); + EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(4).SolarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->Space(5).SolarEnclosureNum, 1); } TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) diff --git a/tst/EnergyPlus/unit/ZoneTempPredictorCorrector.unit.cc b/tst/EnergyPlus/unit/ZoneTempPredictorCorrector.unit.cc index 6fff5546c0c..6ead02965d8 100644 --- a/tst/EnergyPlus/unit/ZoneTempPredictorCorrector.unit.cc +++ b/tst/EnergyPlus/unit/ZoneTempPredictorCorrector.unit.cc @@ -1026,7 +1026,6 @@ TEST_F(EnergyPlusFixture, ZoneTempPredictorCorrector_CalcZoneSums_SurfConvection state->dataHeatBalFanSys->MCPTC(ZoneNum) = 0.0; state->dataHeatBalFanSys->MDotCPOA(ZoneNum) = 0.0; - state->dataHeatBal->ZoneIntGain(1).NumberOfDevices = 0; state->dataHeatBalFanSys->SumConvHTRadSys(1) = 0.0; state->dataHeatBalFanSys->SumConvPool(1) = 0.0; From e09b7729ee391ef188d0459b86a724af7283f93a Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 19 Jul 2021 19:30:15 -0500 Subject: [PATCH 34/98] Formatting --- src/EnergyPlus/DataHeatBalance.hh | 3 ++- src/EnergyPlus/SurfaceGeometry.hh | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index ad05ca3e75e..bdf71a5042d 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -521,7 +521,8 @@ namespace DataHeatBalance { OpaqOrIntMassSurfaceLast(-1), WindowSurfaceFirst(0), WindowSurfaceLast(-1), OpaqOrWinSurfaceFirst(0), OpaqOrWinSurfaceLast(-1), TDDDomeFirst(0), TDDDomeLast(-1), InsideConvectionAlgo(ConvectionConstants::HcInt_ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ConvectionConstants::HcExt_ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), - MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), ZoneFirstSpaceSolEnclosure(0), + MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), + ZoneFirstSpaceSolEnclosure(0), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index f0ae4e976de..f86e5a565cb 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -381,10 +381,11 @@ namespace SurfaceGeometry { void SetupShadeSurfacesForSolarCalcs(EnergyPlusData &state); - void SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, - Array1D &Enclosures, // Radiant or Solar Enclosures - SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar - bool &ErrorsFound); // Set to true if errors found + void + SetupEnclosuresAndAirBoundaries(EnergyPlusData &state, + Array1D &Enclosures, // Radiant or Solar Enclosures + SurfaceGeometry::enclosureType const &EnclosureType, // Radiant or Solar + bool &ErrorsFound); // Set to true if errors found void CheckConvexity(EnergyPlusData &state, int const SurfNum, // Current surface number From 7486e9d4deb76811a7afd0cebf9249cb797d4be2 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 11:13:30 -0500 Subject: [PATCH 35/98] Space - fix build warnings --- src/EnergyPlus/DaylightingManager.cc | 39 ++++++++++----------- src/EnergyPlus/DaylightingManager.hh | 1 - src/EnergyPlus/HeatBalanceIntRadExchange.cc | 11 +++--- src/EnergyPlus/HeatBalanceSurfaceManager.cc | 1 - src/EnergyPlus/SurfaceGeometry.cc | 4 +-- src/EnergyPlus/SurfaceGeometry.hh | 2 +- 6 files changed, 25 insertions(+), 33 deletions(-) diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index 9f552e91f8e..accff36753c 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -1628,11 +1628,11 @@ void CalcDayltgCoeffsMapPoints(EnergyPlusData &state, int const ZoneNum) // Also calculate corresponding glare factors. ILB = IL; for (IHR = 1; IHR <= 24; ++IHR) { - FigureMapPointDayltgFactorsToAddIllums(state, ZoneNum, MapNum, ILB, IHR, IWin, loopwin, NWX, NWY, ICtrl); + FigureMapPointDayltgFactorsToAddIllums(state, MapNum, ILB, IHR, IWin, loopwin, NWX, NWY, ICtrl); } // End of sun position loop, IHR } else { ILB = IL; - FigureMapPointDayltgFactorsToAddIllums(state, ZoneNum, MapNum, ILB, state.dataGlobal->HourOfDay, IWin, loopwin, NWX, NWY, ICtrl); + FigureMapPointDayltgFactorsToAddIllums(state, MapNum, ILB, state.dataGlobal->HourOfDay, IWin, loopwin, NWX, NWY, ICtrl); } } // End of window loop, loopwin - IWin @@ -4055,7 +4055,6 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, } void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, - int const ZoneNum, int const MapNum, int const iMapPoint, int const iHour, @@ -10234,25 +10233,23 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; - for (int SpaceNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { - // Require that ZoneNumAdj have a least one exterior window - bool AdjEnclHasExtWins = false; - for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { - AdjEnclHasExtWins = true; - break; - } + // Require that adjEnclNum have a least one exterior window + bool AdjEnclHasExtWins = false; + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { + if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { + AdjEnclHasExtWins = true; + break; } - if (!AdjEnclHasExtWins) continue; - // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to ZoneNum - for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { - // This is an interior window in ZoneNumAdj - if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { - // This interior window is adjacent to ZoneNum - ++NumList; - break; - } + } + if (!AdjEnclHasExtWins) continue; + // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to ZoneNum + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { + if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { + // This is an interior window in ZoneNumAdj + if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { + // This interior window is adjacent to ZoneNum + ++NumList; + break; } } } diff --git a/src/EnergyPlus/DaylightingManager.hh b/src/EnergyPlus/DaylightingManager.hh index 2c804549468..ff99ea961d7 100644 --- a/src/EnergyPlus/DaylightingManager.hh +++ b/src/EnergyPlus/DaylightingManager.hh @@ -298,7 +298,6 @@ namespace DaylightingManager { ); void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, - int const ZoneNum, int const MapNum, int const iMapPoint, int const iHour, diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index c37be194f31..6b03eef0607 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -508,9 +508,8 @@ namespace HeatBalanceIntRadExchange { } int numEnclosureSurfaces = 0; for (int spaceNum : thisEnclosure.SpaceNums) { - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { - ++numEnclosureSurfaces; - } + // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces + numEnclosureSurfaces += int(state.dataHeatBal->Space(spaceNum).Surfaces.size()); } thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; state.dataHeatBalIntRadExchg->MaxNumOfRadEnclosureSurfs = @@ -816,10 +815,8 @@ namespace HeatBalanceIntRadExchange { } int numEnclosureSurfaces = 0; for (int spaceNum : thisEnclosure.SpaceNums) { - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { - // Include only heat transfer surfaces - ++numEnclosureSurfaces; - } + // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces + numEnclosureSurfaces += int(state.dataHeatBal->Space(spaceNum).Surfaces.size()); } thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; if (numEnclosureSurfaces < 1) ShowFatalError(state, "No surfaces in an enclosure in InitSolarViewFactors"); diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index 5659de0a1cf..e7761f4942e 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -3603,7 +3603,6 @@ void InitIntSolarDistribution(EnergyPlusData &state) int const firstSurfOpaque = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceFirst; int const lastSurfOpaque = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceLast; for (int SurfNum = firstSurfOpaque; SurfNum <= lastSurfOpaque; ++SurfNum) { - int const radEnclosureNum = Surface(SurfNum).RadEnclIndex; int const solEnclosureNum = Surface(SurfNum).SolarEnclIndex; int const ConstrNum = Surface(SurfNum).Construction; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index b88b9f39a96..5798ba978e1 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -1816,7 +1816,7 @@ namespace SurfaceGeometry { state.dataSurfaceGeometry->SurfaceTmp.deallocate(); // DeAllocate the Temp Surface derived type - CreateMissingSpaces(state, ErrorsFound); + CreateMissingSpaces(state); // For each Base Surface Type (Wall, Floor, Roof) @@ -2808,7 +2808,7 @@ namespace SurfaceGeometry { } } - void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound) + void CreateMissingSpaces(EnergyPlusData &state) { // Scan surfaces to see if Space was assigned in input for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index f86e5a565cb..5368222d417 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -88,7 +88,7 @@ namespace SurfaceGeometry { void GetSurfaceData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input - void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound); + void CreateMissingSpaces(EnergyPlusData &state); void checkSubSurfAzTiltNorm(EnergyPlusData &state, SurfaceData &baseSurface, // Base surface data (in) From b0aca1f4da7ccad50cb19c3bf74ef3f97e77d23b Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 13:22:09 -0500 Subject: [PATCH 36/98] Space - fix surface space assignments --- src/EnergyPlus/SurfaceGeometry.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 5798ba978e1..7b2d6e6faaf 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2844,10 +2844,11 @@ namespace SurfaceGeometry { auto &thisSurf = state.dataSurface->Surface(surfNum); if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces if (thisSurf.Space == 0) { - int lastSpace = state.dataHeatBal->Zone(thisSurf.Zone).Spaces.size(); - thisSurf.Space = state.dataHeatBal->Zone(thisSurf.Zone).Spaces(lastSpace); + int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).Spaces.size(); + int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).Spaces(numSpaces); + thisSurf.Space = lastSpaceForZone; // Add to Space's list of surfaces - state.dataHeatBal->Space(lastSpace).Surfaces.emplace_back(surfNum); + state.dataHeatBal->Space(lastSpaceForZone).Surfaces.emplace_back(surfNum); } } } From d06fb71838d7bc40d2ea55fe8f41f4e87a17e91c Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 13:22:58 -0500 Subject: [PATCH 37/98] Space - fix People input processing --- src/EnergyPlus/InternalHeatGains.cc | 73 +++++++++++++++++++++++++---- 1 file changed, 63 insertions(+), 10 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 842bffc0b29..3ec665aef64 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -513,9 +513,9 @@ namespace InternalHeatGains { if (spaceNum > 0) { state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; ++state.dataHeatBal->TotPeople; - state.dataHeatBal->PeopleObjects(Item).NumOfZones = 1; - state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; - state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; + state.dataHeatBal->PeopleObjects(Item).NumOfSpaces = 1; + state.dataHeatBal->PeopleObjects(Item).SpaceListActive = false; + state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr = spaceNum; state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; continue; } @@ -569,12 +569,22 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->PeopleObjects(Item).NumOfZones; ++Item1) { + int const numZones = state.dataHeatBal->PeopleObjects(Item).NumOfZones; + int const numSpaces = state.dataHeatBal->PeopleObjects(Item).NumOfSpaces; + // At this point, one or both of these should be zero + assert((numZones == 0) || (numSpaces == 0)); + + int const numItems = max(numZones, numSpaces); + for (int Item1 = 1; Item1 <= numItems; ++Item1) { ++Loop; - if (!state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { + if ((numZones > 0) && !state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { state.dataHeatBal->People(Loop).Name = AlphaName(1); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; - } else { + int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->People(Loop).ZonePtr = zoneNum; + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + } + } else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { CheckCreatedZoneItemName( state, RoutineName, @@ -587,11 +597,54 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->People(Loop).Name, errFlag); - state.dataHeatBal->People(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->People(Loop).ZonePtr = zoneNum; + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + } + if (errFlag) ErrorsFound = true; + } else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { + state.dataHeatBal->People(Loop).Name = AlphaName(1); + int const spaceNum = state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr; + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + } else if (state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { + int const spaceNum = state.dataHeatBal->SpaceList(state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr).Spaces(Item1); + CheckCreatedZoneItemName( + state, + RoutineName, + CurrentModuleObject, + state.dataHeatBal->Space(spaceNum).Name, + state.dataHeatBal->SpaceList(state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr).MaxSpaceNameLength, + state.dataHeatBal->PeopleObjects(Item).Name, + state.dataHeatBal->People, + Loop - 1, + state.dataHeatBal->People(Loop).Name, + errFlag); + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; if (errFlag) ErrorsFound = true; } + // Set space load fractions + if (int(state.dataHeatBal->People(Loop).SpacePtrs.size()) == 1) { + state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(1.0); + } else { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); + ShowContinueError(state, + "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + state.dataHeatBal->People(Loop).NumberOfPeoplePtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; @@ -6509,7 +6562,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; - for (int index = 1; index <= state.dataGlobal->NumOfSpaces; ++index) { + for (int index = 1; index <= int(state.dataHeatBal->People(Loop).SpacePtrs.size()); ++index) { int spaceNum = state.dataHeatBal->People(Loop).SpacePtrs(index); Real64 spaceFrac = state.dataHeatBal->People(Loop).SpaceFracs(index); state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc * spaceFrac; From dbd7fc729beb345c7a7244adf69e04a2fad28092 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 14:11:45 -0500 Subject: [PATCH 38/98] Space - move call to GetSpaceData and add check for Spaces with no surfs --- src/EnergyPlus/HeatBalanceManager.cc | 7 ++++--- src/EnergyPlus/SurfaceGeometry.cc | 13 +++++++++++-- src/EnergyPlus/SurfaceGeometry.hh | 2 +- .../unit/HeatBalanceIntRadExchange.unit.cc | 8 -------- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 3c43c3cec24..85763f28803 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -4909,8 +4909,6 @@ namespace HeatBalanceManager { GetZoneData(state, ErrorsFound); // Read Zone data from input file - GetSpaceData(state, ErrorsFound); - SurfaceGeometry::SetupZoneGeometry(state, ErrorsFound); } @@ -5172,7 +5170,10 @@ namespace HeatBalanceManager { // allocate the array the holds the predefined report data state.dataHeatBal->ZonePreDefRep.allocate(state.dataGlobal->NumOfZones); - } + + // Now get Space data after Zones are set up, because Space is optional, Zones are not + GetSpaceData(state, ErrorsFound); + } void GetZoneLocalEnvData(EnergyPlusData &state, bool &ErrorsFound) // Error flag indicator (true if errors found) { diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 7b2d6e6faaf..89cf1f33249 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -1816,7 +1816,7 @@ namespace SurfaceGeometry { state.dataSurfaceGeometry->SurfaceTmp.deallocate(); // DeAllocate the Temp Surface derived type - CreateMissingSpaces(state); + CreateMissingSpaces(state, ErrorsFound); // For each Base Surface Type (Wall, Floor, Roof) @@ -2808,8 +2808,9 @@ namespace SurfaceGeometry { } } - void CreateMissingSpaces(EnergyPlusData &state) + void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound) { + static constexpr std::string_view RoutineName("CreateMissingSpaces: "); // Scan surfaces to see if Space was assigned in input for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { auto &thisSurf = state.dataSurface->Surface(surfNum); @@ -2851,6 +2852,14 @@ namespace SurfaceGeometry { state.dataHeatBal->Space(lastSpaceForZone).Surfaces.emplace_back(surfNum); } } + + // Check that all Spaces have at least one Surface + for (int spaceNum = 1; spaceNum < state.dataGlobal->NumOfSpaces; ++spaceNum) { + if (int(state.dataHeatBal->Space(spaceNum).Surfaces.size()) == 0) { + ShowSevereError(state, std::string(RoutineName) + "Space = " + state.dataHeatBal->Space(spaceNum).Name + " has no surfaces."); + ErrorsFound = true; + } + } } void checkSubSurfAzTiltNorm(EnergyPlusData &state, diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index 5368222d417..f86e5a565cb 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -88,7 +88,7 @@ namespace SurfaceGeometry { void GetSurfaceData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input - void CreateMissingSpaces(EnergyPlusData &state); + void CreateMissingSpaces(EnergyPlusData &state, bool &ErrorsFound); void checkSubSurfAzTiltNorm(EnergyPlusData &state, SurfaceData &baseSurface, // Base surface data (in) diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index f08f8beba93..b45f1e58a06 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -494,8 +494,6 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetSpaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfRadiantEnclosures = 3; state->dataViewFactor->EnclRadInfo.allocate(3); @@ -597,8 +595,6 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetSpaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfSolarEnclosures = 3; state->dataViewFactor->EnclSolInfo.allocate(3); @@ -697,8 +693,6 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetSpaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfSolarEnclosures = 3; state->dataViewFactor->EnclSolInfo.allocate(3); @@ -800,8 +794,6 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) bool ErrorsFound = false; HeatBalanceManager::GetZoneData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetSpaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); state->dataViewFactor->NumOfRadiantEnclosures = 3; state->dataViewFactor->EnclRadInfo.allocate(3); From 2de351f5f3eb4b70386e08b9e7f857f902207c10 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 14:12:06 -0500 Subject: [PATCH 39/98] Space - more unit test repairs --- tst/EnergyPlus/unit/SurfaceGeometry.unit.cc | 66 ++++++++++----------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc index 1f3e43d3df9..402a18fd417 100644 --- a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc +++ b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc @@ -5084,7 +5084,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5101,7 +5101,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5118,7 +5118,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5135,7 +5135,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5235,7 +5235,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5252,7 +5252,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5269,7 +5269,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5286,7 +5286,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5303,7 +5303,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5320,7 +5320,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5337,7 +5337,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5435,7 +5435,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5452,7 +5452,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5469,7 +5469,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5486,7 +5486,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5503,7 +5503,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5520,7 +5520,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5537,7 +5537,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5683,7 +5683,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5700,7 +5700,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5717,7 +5717,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5734,7 +5734,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone2-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5751,7 +5751,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone4-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5768,7 +5768,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 4, !- Zone Name", - " , !- Space Name", + " Space 4, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone3-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5785,7 +5785,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 4, !- Zone Name", - " , !- Space Name", + " Space 4, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone5-Surface1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5802,7 +5802,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 5, !- Zone Name", - " , !- Space Name", + " Space 5, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone4-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5819,7 +5819,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone5-Surface2, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5836,7 +5836,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Wall, !- Surface Type", " Grouped Air Boundary, !- Construction Name", " Zone 5, !- Zone Name", - " , !- Space Name", + " Space 5, !- Space Name", " Surface, !- Outside Boundary Condition", " Zone1-Surface3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5853,7 +5853,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 1, !- Zone Name", - " , !- Space Name", + " Space 1, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5870,7 +5870,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 2, !- Zone Name", - " , !- Space Name", + " Space 2, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5887,7 +5887,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 3, !- Zone Name", - " , !- Space Name", + " Space 3, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5904,7 +5904,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 4, !- Zone Name", - " , !- Space Name", + " Space 4, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -5921,7 +5921,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda " Floor, !- Surface Type", " Some Construction, !- Construction Name", " Zone 5, !- Zone Name", - " , !- Space Name", + " Space 5, !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", From cfa218aab8baede5d3b2ad595b3a96cf6ac314f5 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 20 Jul 2021 14:17:33 -0500 Subject: [PATCH 40/98] Formatting --- src/EnergyPlus/HeatBalanceManager.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 85763f28803..331a9be6048 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5170,10 +5170,10 @@ namespace HeatBalanceManager { // allocate the array the holds the predefined report data state.dataHeatBal->ZonePreDefRep.allocate(state.dataGlobal->NumOfZones); - + // Now get Space data after Zones are set up, because Space is optional, Zones are not GetSpaceData(state, ErrorsFound); - } + } void GetZoneLocalEnvData(EnergyPlusData &state, bool &ErrorsFound) // Error flag indicator (true if errors found) { From d80b0f9244b1743e4d9925d3961a2721ddf53566 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 21 Jul 2021 09:08:13 -0500 Subject: [PATCH 41/98] Space - more unit test repairs and various refinements --- src/EnergyPlus/DataHeatBalance.hh | 6 ++-- src/EnergyPlus/DataRoomAirModel.hh | 2 +- src/EnergyPlus/DaylightingManager.cc | 6 ++-- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 2 +- .../HeatBalanceInternalHeatGains.cc | 5 ++- src/EnergyPlus/HeatBalanceManager.cc | 12 +++++++ src/EnergyPlus/HeatBalanceSurfaceManager.cc | 2 +- src/EnergyPlus/InternalHeatGains.cc | 2 +- src/EnergyPlus/SurfaceGeometry.cc | 18 +++++----- .../unit/AirflowNetworkBalanceManager.unit.cc | 34 +++++++++++++++++++ .../unit/HighTempRadiantSystem.unit.cc | 2 -- .../unit/LowTempRadiantSystem.unit.cc | 6 ++++ .../unit/RoomAirflowNetwork.unit.cc | 10 ++++++ 13 files changed, 86 insertions(+), 21 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index bdf71a5042d..b2c16aef69c 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -349,7 +349,6 @@ namespace DataHeatBalance { bool HasFloor = false; // Has "Floor" surface Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone Real64 TotalSurfArea = 0.0; // Total surface area for Zone - bool EnforcedReciprocity = false; // if zone/space required forced reciprocity -- less out of bounds temp errors allowed int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to }; @@ -473,6 +472,7 @@ namespace DataHeatBalance { Real64 NominalInfilVent; // internal infiltration/ventilation Real64 NominalMixing; // internal mixing/cross mixing bool TempOutOfBoundsReported; // if any temp out of bounds errors, first will show zone details. + bool EnforcedReciprocity; // if zone/space required forced reciprocity -- less out of bounds temp errors allowed int ZoneMinCO2SchedIndex; // Index for the schedule the schedule which determines minimum CO2 concentration int ZoneMaxCO2SchedIndex; // Index for the schedule the schedule which determines maximum CO2 concentration int ZoneContamControllerSchedIndex; // Index for this schedule @@ -530,8 +530,8 @@ namespace DataHeatBalance { LinkedOutAirNode(0.0), isPartOfTotalArea(true), isNominalOccupied(false), isNominalControlled(false), TotOccupants(0.0), AirHBimBalanceErrIndex(0), NoHeatToReturnAir(false), RefrigCaseRA(false), HasAdjustedReturnTempByITE(false), AdjustedReturnTempByITE(0.0), HasLtsRetAirGain(false), HasAirFlowWindowReturn(false), InternalHeatGains(0.0), NominalInfilVent(0.0), - NominalMixing(0.0), TempOutOfBoundsReported(false), ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), ZoneContamControllerSchedIndex(0), - FlagCustomizedZoneCap(false), + NominalMixing(0.0), TempOutOfBoundsReported(false), EnforcedReciprocity(false), ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), + ZoneContamControllerSchedIndex(0), FlagCustomizedZoneCap(false), // Hybrid Modeling ZoneMeasuredTemperature(0.0), ZoneMeasuredHumidityRatio(0.0), ZoneMeasuredCO2Concentration(0.0), ZoneMeasuredSupplyAirTemperature(0.0), ZoneMeasuredSupplyAirFlowRate(0.0), ZoneMeasuredSupplyAirHumidityRatio(0.0), ZoneMeasuredSupplyAirCO2Concentration(0.0), diff --git a/src/EnergyPlus/DataRoomAirModel.hh b/src/EnergyPlus/DataRoomAirModel.hh index e18d39b0fa9..d6f62ea179c 100644 --- a/src/EnergyPlus/DataRoomAirModel.hh +++ b/src/EnergyPlus/DataRoomAirModel.hh @@ -534,7 +534,7 @@ namespace DataRoomAirModel { Array1D SurfMask; // Sized to num of surfs in Zone, true if surface is associated with this node std::string NodeIntGainsListName; // name of node's internal gains list bool HasIntGainsAssigned; // True if this node has internal gain assigned - int NumIntGains; // Number of mathching internal gain objects for all spaces in the zone + int NumIntGains; // Number of matching internal gain objects for all spaces in the zone Array1D IntGainsDeviceSpaces; // index pointers to space struct Array1D IntGainsDeviceIndices; // index pointers to internal gains struct Array1D IntGainsFractions; // gain fractions to this node diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index accff36753c..dbddc85721d 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -4235,11 +4235,13 @@ void GetDaylightingParametersInput(EnergyPlusData &state) state.dataDaylightingManager->maxNumRefPtInAnyZone = 0; state.dataDaylightingManager->maxNumRefPtInAnyEncl = 0; - for (int enclNum = 1; enclNum < state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { + for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { // Loop through all spaces in the same enclosure to find total reference points int numEnclRefPoints = 0; for (int const spaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { - int numRefPoints = state.dataDaylightingData->ZoneDaylight(spaceNum).TotalDaylRefPoints; + int zoneNum = state.dataHeatBal->Space(spaceNum).ZoneNum; + // TODO MJW: Reference points will be double-counted for zone with more than one space + int numRefPoints = state.dataDaylightingData->ZoneDaylight(zoneNum).TotalDaylRefPoints; numEnclRefPoints += numRefPoints; state.dataDaylightingManager->maxNumRefPtInAnyZone = max(numRefPoints, state.dataDaylightingManager->maxNumRefPtInAnyZone); } diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 6b03eef0607..7d8928ae25d 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1632,7 +1632,7 @@ namespace HeatBalanceIntRadExchange { FinalCheckValue = FixedCheckValue = std::abs(RowSum - N); F = FixedF; for (int spaceNum : spaceNums) { - state.dataHeatBal->Space(spaceNum).EnforcedReciprocity = true; + state.dataHeatBal->Zone(state.dataHeatBal->Space(spaceNum).ZoneNum).EnforcedReciprocity = true; } return; // Do not iterate, stop with reciprocity satisfied. diff --git a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc index 6d48696fe0c..4442e906d0f 100644 --- a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc +++ b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc @@ -72,8 +72,11 @@ void SetupZoneInternalGain(EnergyPlusData &state, ) { // Distribute zone internal gain across all spaces in the zone weighted by floor area + Real64 gainFrac = 1.0; for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - Real64 gainFrac = state.dataHeatBal->Space(spaceNum).FloorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; + if (state.dataHeatBal->Zone(ZoneNum).Spaces.size() > 1) { + gainFrac = state.dataHeatBal->Space(spaceNum).FloorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; + } SetupSpaceInternalGain(state, spaceNum, gainFrac, diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 331a9be6048..63932ba26c5 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5554,6 +5554,18 @@ namespace HeatBalanceManager { } } } + + // Make sure every zone has at least one space + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + auto &thisZone = state.dataHeatBal->Zone(zoneNum); + if (thisZone.Spaces.empty()) { + ++state.dataGlobal->NumOfSpaces; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name; + // Add to zone's list of spaces + thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + } + } } // End of Get Input subroutines for the HB Module //****************************************************************************** diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index e7761f4942e..f95695d9f66 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -8226,7 +8226,7 @@ void TestSurfTempCalcHeatBalanceInsideSurf(EnergyPlusData &state, Real64 TH12, i "C"); } } - if (state.dataHeatBal->Space(state.dataSurface->Surface(SurfNum).Space).EnforcedReciprocity) { + if (zone.EnforcedReciprocity) { if (WarmupSurfTemp > 3) { ShowSevereError(state, "CalcHeatBalanceInsideSurf: Zone=\"" + zone.Name + "\" has view factor enforced reciprocity"); ShowContinueError(state, " and is having temperature out of bounds errors. Please correct zone geometry and rerun."); diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 3ec665aef64..c3ddfa866a4 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -627,7 +627,7 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->People(Loop).SpacePtrs.size()) == 1) { + if (int(state.dataHeatBal->People(Loop).SpacePtrs.size()) <= 1) { state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(1.0); } else { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 89cf1f33249..9305589c5c1 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2826,16 +2826,16 @@ namespace SurfaceGeometry { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { auto &thisZone = state.dataHeatBal->Zone(zoneNum); if (thisZone.AnySurfacesWithoutSpace) { - // If any surfaces in the zone are not assigned to a space, create a new space - ++state.dataGlobal->NumOfSpaces; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; - // Add to zone's list of spaces - thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + // If any surfaces in the zone are not assigned to a space, may need to create a new space + // Every zone has at least one space, created in HeatBalanceManager::GetSpaceData + // If no surfaces have a space assigned, then the default space will be used, otherwise, create a new space if (thisZone.AnySurfacesWithSpace) { - // If some surfaces in the zone are assigned to a space, the new space if the remainder of the zone + ++state.dataGlobal->NumOfSpaces; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; + // Add to zone's list of spaces + thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-Remainder"; - } else { - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name; } } } @@ -2853,7 +2853,7 @@ namespace SurfaceGeometry { } } - // Check that all Spaces have at least one Surface + // TODO MJW: Is this necessary? Check that all Spaces have at least one Surface for (int spaceNum = 1; spaceNum < state.dataGlobal->NumOfSpaces; ++spaceNum) { if (int(state.dataHeatBal->Space(spaceNum).Surfaces.size()) == 0) { ShowSevereError(state, std::string(RoutineName) + "Space = " + state.dataHeatBal->Space(spaceNum).Name + " has no surfaces."); diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index 4e43a64e70b..11f202af795 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -22041,6 +22041,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22065,6 +22066,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22089,6 +22091,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22113,6 +22116,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22137,6 +22141,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22161,6 +22166,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_17_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22185,6 +22191,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22209,6 +22216,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_10_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22233,6 +22241,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_5, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22257,6 +22266,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " FLOOR, !- Surface Type", " FLOOR SLAB 4 IN, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Zone, !- Outside Boundary Condition", " WEST_ZONE, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22281,6 +22291,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " WEST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22305,6 +22316,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22329,6 +22341,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22353,6 +22366,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22377,6 +22391,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22401,6 +22416,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22425,6 +22441,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_4_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22449,6 +22466,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22473,6 +22491,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_18_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22497,6 +22516,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " EAST_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22521,6 +22541,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " FLOOR, !- Surface Type", " FLOOR SLAB 4 IN, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Zone, !- Outside Boundary Condition", " EAST_ZONE, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22545,6 +22566,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " EAST_ZONE_T, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22569,6 +22591,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22593,6 +22616,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22617,6 +22641,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22641,6 +22666,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22665,6 +22691,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22689,6 +22716,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " EXTWALL80, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -22713,6 +22741,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22737,6 +22766,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_3_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22761,6 +22791,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11_T, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22785,6 +22816,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " WALL, !- Surface Type", " PARTITION06, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_11, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22809,6 +22841,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " FLOOR, !- Surface Type", " FLOOR SLAB 8 IN, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " Surface_19, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -22833,6 +22866,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestIntraZoneLinkageZoneIndex) " ROOF, !- Surface Type", " ROOF34, !- Construction Name", " NORTH_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc b/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc index b103dd2b505..4f7305fce47 100644 --- a/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc +++ b/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc @@ -113,8 +113,6 @@ TEST_F(EnergyPlusFixture, HighTempRadiantSystemTest_GetHighTempRadiantSystem) std::string const error_string01 = delimited_string({" ** Severe ** Heating Setpoint Temperature Schedule Name not found: RADIANT HEATING SETPOINTS", " ** ~~~ ** Occurs for ZoneHVAC:HighTemperatureRadiant = ZONERADHEATER", - " ** Severe ** GetRadiantSystemSurface: Somehow the radiant system enclosure number is zero " - "forZoneHVAC:HighTemperatureRadiant = ZONERADHEATER", " ** Severe ** Fraction of radiation distributed to surfaces and people sums up to less than 1 for ZONERADHEATER", " ** ~~~ ** This would result in some of the radiant energy delivered by the high temp radiant heater being lost.", " ** ~~~ ** The sum of all radiation fractions to surfaces = 0.80000", diff --git a/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc b/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc index d4745918e4b..fdac6b4dced 100644 --- a/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc +++ b/tst/EnergyPlus/unit/LowTempRadiantSystem.unit.cc @@ -3976,6 +3976,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " Floor, !- Surface Type", " Slab Floor with Radiant, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3992,6 +3993,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " Wall, !- Surface Type", " Slab Floor with Radiant, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4008,6 +4010,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4024,6 +4027,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4040,6 +4044,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " Wall, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -4056,6 +4061,7 @@ TEST_F(LowTempRadiantSystemTest, VariableFlowCoolingOnlyInputTest) " CEILING, !- Surface Type", " Slab, !- Construction Name", " West Zone, !- Zone Name", + " , !- Space Name", " Adiabatic, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index bd1a9fd6fa3..270bde727b3 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -100,14 +100,17 @@ class RoomAirflowNetworkTest : public EnergyPlusFixture state->dataSize->CurSysNum = 0; state->dataSize->CurOASysNum = 0; state->dataGlobal->NumOfZones = 1; + state->dataGlobal->NumOfSpaces = 1; state->dataLoopNodes->NumOfNodes = 5; state->dataGlobal->BeginEnvrnFlag = true; int NumOfSurfaces = 2; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); + state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); state->dataZoneEquip->ZoneEquipConfig.allocate(state->dataGlobal->NumOfZones); state->dataZoneEquip->ZoneEquipList.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->ZoneIntGain.allocate(state->dataGlobal->NumOfZones); + state->dataHeatBal->SpaceIntGainDevices.allocate(state->dataGlobal->NumOfSpaces); state->dataLoopNodes->NodeID.allocate(state->dataLoopNodes->NumOfNodes); state->dataLoopNodes->Node.allocate(state->dataLoopNodes->NumOfNodes); state->dataSurface->Surface.allocate(NumOfSurfaces); @@ -171,8 +174,14 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).HVAC(1).Name = "ZoneHVAC"; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceIndices.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceIndices.allocate(1); + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceSpaces.allocate(1); + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceSpaces.allocate(1); + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).NumIntGains = 1; + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).NumIntGains = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceIndices(1) = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceIndices(1) = 1; + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceSpaces(1) = 1; + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceSpaces(1) = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsFractions.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsFractions.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsFractions(1) = 0.4; @@ -255,6 +264,7 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataHeatBal->Zone(ZoneNum).HTSurfaceFirst = 1; state->dataHeatBal->Zone(ZoneNum).HTSurfaceLast = 2; state->dataHeatBal->Zone(ZoneNum).ZoneVolCapMultpMoist = 0; + state->dataHeatBal->Zone(ZoneNum).Spaces.emplace_back(1); state->dataHeatBal->SpaceIntGainDevices(ZoneNum).NumberOfDevices = 1; state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device.allocate(state->dataHeatBal->SpaceIntGainDevices(1).NumberOfDevices); From b5922de92e12ee72c711f13f65e77929ddf7f295 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 22 Jul 2021 16:25:54 -0500 Subject: [PATCH 42/98] Space - Fix more unit tests and daylighting problem --- src/EnergyPlus/DaylightingManager.cc | 16 +++-- src/EnergyPlus/HeatBalanceManager.cc | 6 ++ src/EnergyPlus/InternalHeatGains.cc | 9 ++- .../unit/AirflowNetworkBalanceManager.unit.cc | 64 +------------------ .../unit/HVACUnitaryBypassVAV.unit.cc | 9 --- .../unit/HeatBalanceIntRadExchange.unit.cc | 4 ++ .../unit/TranspiredCollector.unit.cc | 3 - .../unit/UnitaryHybridAirConditioner.unit.cc | 2 - 8 files changed, 27 insertions(+), 86 deletions(-) diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index dbddc85721d..15c4996de0d 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -10238,15 +10238,17 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) // Require that adjEnclNum have a least one exterior window bool AdjEnclHasExtWins = false; for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { + if ((state.dataSurface->Surface(SurfNumAdj).Class == SurfaceClass::Window) && + (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment)) { AdjEnclHasExtWins = true; break; } } if (!AdjEnclHasExtWins) continue; // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to ZoneNum - for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SpaceNums) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { + for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { + if ((state.dataSurface->Surface(SurfNumAdj).Class == SurfaceClass::Window) && + (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1)) { // This is an interior window in ZoneNumAdj if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { // This interior window is adjacent to ZoneNum @@ -10268,10 +10270,11 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; - // Require that ZoneNumAdj have a least one exterior window + // Require that adjEnclNum have a least one exterior window bool AdjEnclHasExtWins = false; for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment) { + if ((state.dataSurface->Surface(SurfNumAdj).Class == SurfaceClass::Window) && + (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond == ExternalEnvironment)) { AdjEnclHasExtWins = true; break; } @@ -10279,7 +10282,8 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) if (!AdjEnclHasExtWins) continue; // Loop again through surfaces in ZoneNumAdj and see if any are interior windows adjacent to enclNum for (int SurfNumAdj : state.dataViewFactor->EnclSolInfo(adjEnclNum).SurfacePtr) { - if (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1) { + if ((state.dataSurface->Surface(SurfNumAdj).Class == SurfaceClass::Window) && + (state.dataSurface->Surface(SurfNumAdj).ExtBoundCond >= 1)) { // This is an interior window in ZoneNumAdj if (state.dataSurface->Surface(state.dataSurface->Surface(SurfNumAdj).ExtBoundCond).SolarEnclIndex == thisZoneEnclNum) { // This interior window is adjacent to ZoneNum diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 63932ba26c5..2420631408b 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5809,6 +5809,12 @@ namespace HeatBalanceManager { { // Allocate zone / encl hb arrays + // TODO MJW: Punt for now, sometimes unit test will get here and need these to be allocated, but simulations need them sooner + if (!state.dataHeatBal->ZoneIntGain.allocated()) { + state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); + } state.dataHeatBal->ZoneMRT.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->ZoneSolAbsFirstCalc.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->EnclRadReCalc.allocate(state.dataGlobal->NumOfZones); diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index c3ddfa866a4..44cd6622bdd 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -259,9 +259,12 @@ namespace InternalHeatGains { auto &ErrorsFound(state.dataInternalHeatGains->ErrorsFound); - state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); - state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); + // TODO MJW: Punt for now, sometimes unit test need these to be allocated in AllocateZoneHeatBalArrays, but simulations need them here + if (!state.dataHeatBal->ZoneIntGain.allocated()) { + state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); + } state.dataHeatBal->ZnRpt.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->SpaceRpt.allocate(state.dataGlobal->NumOfSpaces); state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index 0f4cb9ec11e..9b7bf347320 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -4476,30 +4476,11 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_UserDefinedDuctViewFactor ASSERT_TRUE(process_idf(idf_objects)); - bool ErrorsFound = false; // Read objects - SimulationManager::GetProjectData(*state); - HeatBalanceManager::GetProjectControlData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetConstructData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); state->dataEnvrn->OutBaroPress = 101000; state->dataHVACGlobal->TimeStepSys = state->dataGlobal->TimeStepZone; - SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - - state->dataSurfaceGeometry->CosBldgRotAppGonly = 1.0; - state->dataSurfaceGeometry->SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); // Read AirflowNetwork inputs GetAirflowNetworkInput(*state); @@ -9244,8 +9225,6 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) " AnalyticalSolution; !- Algorithm"}); ASSERT_TRUE(process_idf(idf_objects)); - bool errors = false; - // Set up some environmental parameters state->dataEnvrn->OutBaroPress = 101325.0; state->dataEnvrn->OutDryBulbTemp = 25.0; @@ -9255,31 +9234,9 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) state->dataEnvrn->SiteWindExp = 0.0; // Disconnect variation by height state->dataEnvrn->WindSpeed = 10.0; - bool ErrorsFound = false; - // Read objects - SimulationManager::GetProjectData(*state); - HeatBalanceManager::GetProjectControlData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetConstructData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); state->dataHVACGlobal->TimeStepSys = state->dataGlobal->TimeStepZone; - SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - - // Magic to get surfaces read in correctly - state->dataHeatBal->AnyCTF = true; - state->dataSurfaceGeometry->CosBldgRotAppGonly = 1.0; - state->dataSurfaceGeometry->SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(*state, errors); // setup zone geometry and get zone data - EXPECT_FALSE(errors); // expect no errors CurveManager::GetCurveInput(*state); EXPECT_EQ(state->dataCurveManager->NumCurves, 2); @@ -9289,7 +9246,7 @@ TEST_F(EnergyPlusFixture, AirflowNetwork_TestExternalNodesWithLocalAirNode) GetAirflowNetworkInput(*state); // Issue 7656 std::string const error_string = delimited_string({ - " ** Warning ** No Timestep object found. Number of TimeSteps in Hour defaulted to 4.", + //" ** Warning ** No Timestep object found. Number of TimeSteps in Hour defaulted to 4.", " ** Warning ** CheckUsedConstructions: There are 2 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", }); @@ -17446,30 +17403,11 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_DuplicatedNodeNameTest) ASSERT_TRUE(process_idf(idf_objects)); - bool ErrorsFound = false; // Read objects - SimulationManager::GetProjectData(*state); - HeatBalanceManager::GetProjectControlData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetConstructData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); state->dataEnvrn->OutBaroPress = 101000; state->dataHVACGlobal->TimeStepSys = state->dataGlobal->TimeStepZone; - SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - - state->dataSurfaceGeometry->CosBldgRotAppGonly = 1.0; - state->dataSurfaceGeometry->SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); // Read AirflowNetwork inputs ASSERT_THROW(GetAirflowNetworkInput(*state), std::runtime_error); diff --git a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc index 48edecc15d1..461098b9adc 100644 --- a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc +++ b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc @@ -648,17 +648,8 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) SimulationManager::GetProjectData(*state); HeatBalanceManager::GetProjectControlData(*state, ErrorsFound); EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetConstructData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - ASSERT_FALSE(ErrorsFound); - HeatBalanceManager::AllocateHeatBalArrays(*state); ZoneTempPredictorCorrector::InitZoneAirSetPoints(*state); bool simZone = false; bool simAir = false; diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index b45f1e58a06..8cb1754e5a1 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -166,8 +166,12 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) int spaceNum = 1; + state->dataHeatBal->Zone.allocate(spaceNum); + state->dataHeatBal->Zone(spaceNum).Name = "Test"; + state->dataHeatBal->Zone(spaceNum).Spaces.emplace_back(spaceNum); state->dataHeatBal->Space.allocate(spaceNum); state->dataHeatBal->Space(spaceNum).Name = "Test"; + state->dataHeatBal->Space(spaceNum).ZoneNum = spaceNum; state->dataViewFactor->EnclRadInfo.allocate(spaceNum); state->dataViewFactor->EnclRadInfo(spaceNum).Name = state->dataHeatBal->Space(spaceNum).Name; state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums.push_back(spaceNum); diff --git a/tst/EnergyPlus/unit/TranspiredCollector.unit.cc b/tst/EnergyPlus/unit/TranspiredCollector.unit.cc index cf8c8af99e2..5a68c711b09 100644 --- a/tst/EnergyPlus/unit/TranspiredCollector.unit.cc +++ b/tst/EnergyPlus/unit/TranspiredCollector.unit.cc @@ -212,9 +212,6 @@ TEST_F(EnergyPlusFixture, TranspiredCollectors_InitTranspiredCollectorTest) GetConstructData(*state, ErrorsFound); // read construction data EXPECT_FALSE(ErrorsFound); // expect no errors - GetZoneData(*state, ErrorsFound); // read zone data - EXPECT_FALSE(ErrorsFound); // expect no errors - state->dataSurfaceGeometry->CosZoneRelNorth.allocate(1); state->dataSurfaceGeometry->SinZoneRelNorth.allocate(1); diff --git a/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc b/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc index ce4da0b5e78..2715b3d3572 100644 --- a/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc +++ b/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc @@ -409,8 +409,6 @@ TEST_F(EnergyPlusFixture, Test_UnitaryHybridAirConditioner_Unittest) state->dataZoneEnergyDemand->ZoneSysEnergyDemand.allocate(state->dataGlobal->NumOfZones); state->dataZoneEnergyDemand->DeadBandOrSetback.allocate(state->dataGlobal->NumOfZones); - HeatBalanceManager::GetZoneData(*state, ErrorsFound); // read zone data - EXPECT_FALSE(ErrorsFound); // expect no errors DataZoneEquipment::GetZoneEquipmentData(*state); // read zone equipment SystemReports::ReportMaxVentilationLoads(); state->dataZoneEquip->ZoneEquipInputsFilled = true; state->dataHeatBal->ZnAirRpt.allocate(state->dataGlobal->NumOfZones); From 75909b46295c85bd7db5fb84cd86830d5040911e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 22 Jul 2021 16:42:16 -0500 Subject: [PATCH 43/98] Space - Update new SetUpOutputVariable calls --- src/EnergyPlus/InternalHeatGains.cc | 84 ++++++++++++++--------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index c83964473e8..98b601a8d80 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -410,71 +410,71 @@ namespace InternalHeatGains { "Space Total Internal Radiant Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Radiant Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Visible Radiation Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Visible Radiation Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Convective Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Convective Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Latent Gain Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Latent Gain Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Total Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(Loop).Name); SetupOutputVariable(state, "Space Total Internal Total Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(Loop).Name); } @@ -1460,78 +1460,78 @@ namespace InternalHeatGains { "Space People Occupant Count", OutputProcessor::Unit::None, state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Radiant Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Radiant Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Convective Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Convective Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Sensible Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Sensible Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Latent Gain Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Latent Gain Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Total Heating Energy", OutputProcessor::Unit::J, state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, - "Zone", - "Sum", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Space(spaceNum).Name); SetupOutputVariable(state, "Space People Total Heating Rate", OutputProcessor::Unit::W, state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, - "Zone", - "Average", + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Space(spaceNum).Name); } } From 4a010d0831768ddb601c6fc675351a6e08099568 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 22 Jul 2021 23:01:38 -0500 Subject: [PATCH 44/98] Space - fix field names in epJSON test file --- ...gMediumOfficeNew2004_Chicago_epJSON.epJSON | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON index 2e8060c758f..a90baad5ae1 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON @@ -7166,8 +7166,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Core_bottom" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Core_bottom" }, "Core_mid People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7182,8 +7182,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Core_mid" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Core_mid" }, "Core_top People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7198,8 +7198,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Core_top" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Core_top" }, "Perimeter_bot_ZN_1 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7214,8 +7214,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_bot_ZN_1" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_1" }, "Perimeter_bot_ZN_2 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7230,8 +7230,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_bot_ZN_2" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_2" }, "Perimeter_bot_ZN_3 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7246,8 +7246,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_bot_ZN_3" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_3" }, "Perimeter_bot_ZN_4 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7262,8 +7262,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_bot_ZN_4" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_4" }, "Perimeter_mid_ZN_1 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7278,8 +7278,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_mid_ZN_1" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_1" }, "Perimeter_mid_ZN_2 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7294,8 +7294,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_mid_ZN_2" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_2" }, "Perimeter_mid_ZN_3 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7310,8 +7310,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_mid_ZN_3" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_3" }, "Perimeter_mid_ZN_4 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7326,8 +7326,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_mid_ZN_4" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_4" }, "Perimeter_top_ZN_1 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7342,8 +7342,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_top_ZN_1" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_1" }, "Perimeter_top_ZN_2 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7358,8 +7358,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_top_ZN_2" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_2" }, "Perimeter_top_ZN_3 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7374,8 +7374,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_top_ZN_3" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_3" }, "Perimeter_top_ZN_4 People": { "activity_level_schedule_name": "ACTIVITY_SCH", @@ -7390,8 +7390,8 @@ "sensible_heat_fraction": "Autocalculate", "thermal_comfort_model_1_type": "Fanger", "work_efficiency_schedule_name": "WORK_EFF_SCH", - "zone_floor_area_per_person": 18.58, - "zone_or_zonelist_name": "Perimeter_top_ZN_4" + "floor_area_per_person": 18.58, + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_4" } }, "Pipe:Adiabatic": { From a34dfd7f89f776575691d27a0e8fc79f1a5d589e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 22 Jul 2021 23:02:57 -0500 Subject: [PATCH 45/98] Space - more unit test repairs and fix internal gains repvar bools --- src/EnergyPlus/InternalHeatGains.cc | 87 ++++++++++--------- .../unit/PurchasedAirManager.unit.cc | 2 + tst/EnergyPlus/unit/WindowManager.unit.cc | 2 - 3 files changed, 46 insertions(+), 45 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 98b601a8d80..b98080eccbb 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -270,15 +270,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); - EPVector RepVarSet; - EPVector SpaceRepVarSet; + Array1D_bool RepVarSet; + Array1D_bool SpaceRepVarSet; RepVarSet.allocate(state.dataGlobal->NumOfZones); SpaceRepVarSet.allocate(state.dataGlobal->NumOfSpaces); - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } // Determine argument length of objects gotten by this routine @@ -742,7 +742,7 @@ namespace InternalHeatGains { ShowWarningError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + + state.dataIPShortCut->cNumericFieldNames(3) + ", but Zone Floor Area = 0. 0 People will result."); } } else { @@ -1630,11 +1630,11 @@ namespace InternalHeatGains { } } - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "Lights"; state.dataHeatBal->NumLightsStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -2204,11 +2204,11 @@ namespace InternalHeatGains { PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtArea, "Interior Lighting Total", state.dataInternalHeatGains->sumArea); PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtPower, "Interior Lighting Total", state.dataInternalHeatGains->sumPower); - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ElectricEquipment"; state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -2668,11 +2668,11 @@ namespace InternalHeatGains { } // Item - Number of ZoneElectric objects } // Check on number of ZoneElectric - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "GasEquipment"; state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -3170,11 +3170,11 @@ namespace InternalHeatGains { } // Item - number of gas statements } // check for number of gas statements - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "HotWaterEquipment"; state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -3634,11 +3634,11 @@ namespace InternalHeatGains { } // Item - number of hot water statements } - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "SteamEquipment"; state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -4098,11 +4098,11 @@ namespace InternalHeatGains { } // Item - number of hot water statements } - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "OtherEquipment"; state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -4588,11 +4588,11 @@ namespace InternalHeatGains { } // Item - number of other equipment statements } - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -5478,11 +5478,11 @@ namespace InternalHeatGains { } } // Check on number of ZoneITEq - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -5726,11 +5726,11 @@ namespace InternalHeatGains { &state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate); } - for (auto repVar : RepVarSet) { - repVar = true; + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + RepVarSet(zoneNum) = true; } - for (auto repVar : SpaceRepVarSet) { - repVar = true; + for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); @@ -5836,6 +5836,7 @@ namespace InternalHeatGains { } RepVarSet.deallocate(); + SpaceRepVarSet.deallocate(); IHGNumbers.deallocate(); AlphaName.deallocate(); diff --git a/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc b/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc index ed675bb09ff..320102da276 100644 --- a/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc +++ b/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc @@ -121,6 +121,8 @@ class ZoneIdealLoadsTest : public EnergyPlusFixture state->dataHeatBalFanSys->SysDepZoneLoads.allocate(1); state->dataHeatBal->MassConservation.allocate(1); state->dataHeatBal->ZoneIntGain.allocate(1); + state->dataHeatBal->SpaceIntGain.allocate(1); + state->dataHeatBal->SpaceIntGainDevices.allocate(1); state->dataSurface->SurfaceWindow.allocate(1); state->dataHeatBal->RefrigCaseCredit.allocate(1); state->dataHeatBalFanSys->ZoneLatentGain.allocate(1); diff --git a/tst/EnergyPlus/unit/WindowManager.unit.cc b/tst/EnergyPlus/unit/WindowManager.unit.cc index 16ff0359668..97db524a942 100644 --- a/tst/EnergyPlus/unit/WindowManager.unit.cc +++ b/tst/EnergyPlus/unit/WindowManager.unit.cc @@ -191,8 +191,6 @@ TEST_F(EnergyPlusFixture, WindowFrameTest) ASSERT_TRUE(process_idf(idf_objects)); - state->dataHeatBal->ZoneIntGain.allocate(1); - createFacilityElectricPowerServiceObject(*state); HeatBalanceManager::SetPreConstructionInputParameters(*state); From 58baba355327e06b01fa24129b8541bf220a2843 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 23 Jul 2021 11:07:50 -0500 Subject: [PATCH 46/98] Space - propagate internal gains setup and comment new output vars --- src/EnergyPlus/DataHeatBalance.hh | 30 +- src/EnergyPlus/InternalHeatGains.cc | 717 +++++++++++++----- .../unit/UnitaryHybridAirConditioner.unit.cc | 2 +- 3 files changed, 541 insertions(+), 208 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index b2c16aef69c..91c42dc703c 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -674,17 +674,19 @@ namespace DataHeatBalance { struct LightsData { // Members - std::string Name; // LIGHTS object name - int ZonePtr; // Which zone lights are in - int SchedPtr; // Schedule for lights - Real64 DesignLevel; // design level for lights [W] - bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. - Real64 EMSLightingPower; // Value EMS is directing to use for override - Real64 FractionReturnAir; // Percentage (fraction 0.0-1.0) of sensible heat gain that is return air - Real64 FractionRadiant; // Percentage (fraction 0.0-1.0) of sensible heat gain that is radiant - Real64 FractionShortWave; // Percentage (fraction 0.0-1.0) of sensible heat gain that is short wave - Real64 FractionReplaceable; // Percentage (fraction 0.0-1.0) of sensible heat gain that is replaceable - Real64 FractionConvected; // Percentage (fraction 0.0-1.0) of sensible heat gain that is convective + std::string Name; // LIGHTS object name + int ZonePtr; // Which zone lights are in + EPVector SpacePtrs; // Pointers to space numbers for this object + EPVector SpaceFracs; // Fraction of total gains applied to each space + int SchedPtr; // Schedule for lights + Real64 DesignLevel; // design level for lights [W] + bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. + Real64 EMSLightingPower; // Value EMS is directing to use for override + Real64 FractionReturnAir; // Percentage (fraction 0.0-1.0) of sensible heat gain that is return air + Real64 FractionRadiant; // Percentage (fraction 0.0-1.0) of sensible heat gain that is radiant + Real64 FractionShortWave; // Percentage (fraction 0.0-1.0) of sensible heat gain that is short wave + Real64 FractionReplaceable; // Percentage (fraction 0.0-1.0) of sensible heat gain that is replaceable + Real64 FractionConvected; // Percentage (fraction 0.0-1.0) of sensible heat gain that is convective bool FractionReturnAirIsCalculated; Real64 FractionReturnAirPlenTempCoeff1; Real64 FractionReturnAirPlenTempCoeff2; @@ -727,6 +729,8 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in + EPVector SpacePtrs; // Pointers to space numbers for this object + EPVector SpaceFracs; // Fraction of total gains applied to each space int SchedPtr; // Schedule for internal gain Real64 DesignLevel; // design level for internal gain [W] bool EMSZoneEquipOverrideOn; // EMS actuating equipment power if .TRUE. @@ -774,6 +778,8 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in + EPVector SpacePtrs; // Pointers to space numbers for this object + EPVector SpaceFracs; // Fraction of total gains applied to each space bool FlowControlWithApproachTemps; // True if using supply and return approach temperature for ITE object. Real64 DesignTotalPower; // Design level for internal gain [W] Real64 NomMinDesignLevel; // Nominal Minimum Design Level (min sch X design level) @@ -876,6 +882,8 @@ namespace DataHeatBalance { // Members std::string Name; // BASEBOARD HEAT object name int ZonePtr; + EPVector SpacePtrs; // Pointers to space numbers for this object + EPVector SpaceFracs; // Fraction of total gains applied to each space int SchedPtr; Real64 CapatLowTemperature; Real64 LowTemperature; diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index b98080eccbb..a92585c32ef 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -404,79 +404,79 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(Loop).Name); } - for (int Loop = 1; Loop <= state.dataGlobal->NumOfSpaces; ++Loop) { - // Overall Space Variables - SetupOutputVariable(state, - "Space Total Internal Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Visible Radiation Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(Loop).Name); - SetupOutputVariable(state, - "Space Total Internal Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(Loop).Name); - } + // for (int Loop = 1; Loop <= state.dataGlobal->NumOfSpaces; ++Loop) { + // // Overall Space Variables + // SetupOutputVariable(state, + // "Space Total Internal Radiant Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Radiant Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Visible Radiation Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Visible Radiation Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Convective Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Convective Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Latent Gain Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Latent Gain Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Total Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(Loop).Name); + // SetupOutputVariable(state, + // "Space Total Internal Total Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(Loop).Name); + //} // PEOPLE: Includes both information related to the heat balance and thermal comfort // First, allocate and initialize the People derived type @@ -584,8 +584,10 @@ namespace InternalHeatGains { state.dataHeatBal->People(Loop).Name = AlphaName(1); int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + } } } else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { CheckCreatedZoneItemName( @@ -602,15 +604,19 @@ namespace InternalHeatGains { errFlag); int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + } } if (errFlag) ErrorsFound = true; } else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { state.dataHeatBal->People(Loop).Name = AlphaName(1); int const spaceNum = state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr; - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + if (spaceNum > 0) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + } } else if (state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { int const spaceNum = state.dataHeatBal->SpaceList(state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr).Spaces(Item1); CheckCreatedZoneItemName( @@ -624,8 +630,10 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->People(Loop).Name, errFlag); - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + if (spaceNum > 0) { + state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + } if (errFlag) ErrorsFound = true; } @@ -633,18 +641,20 @@ namespace InternalHeatGains { if (int(state.dataHeatBal->People(Loop).SpacePtrs.size()) <= 1) { state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(1.0); } else { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + if (state.dataHeatBal->People(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); + ShowContinueError(state, + "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); + ErrorsFound = true; } - } else { - ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); - ShowContinueError(state, - "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - ErrorsFound = true; } } @@ -1451,90 +1461,90 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); } - // Space total report variables - for (int spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { - - if (SpaceRepVarSet(spaceNum)) { - SpaceRepVarSet(spaceNum) = false; - SetupOutputVariable(state, - "Space People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Sensible Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Space(spaceNum).Name); - SetupOutputVariable(state, - "Space People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Space(spaceNum).Name); - } - } + //// Space total report variables + // for (int spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { + + // if (SpaceRepVarSet(spaceNum)) { + // SpaceRepVarSet(spaceNum) = false; + // SetupOutputVariable(state, + // "Space People Occupant Count", + // OutputProcessor::Unit::None, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Radiant Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Radiant Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Convective Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Convective Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Sensible Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Sensible Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Latent Gain Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Latent Gain Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Total Heating Energy", + // OutputProcessor::Unit::J, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Summed, + // state.dataHeatBal->Space(spaceNum).Name); + // SetupOutputVariable(state, + // "Space People Total Heating Rate", + // OutputProcessor::Unit::W, + // state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->Space(spaceNum).Name); + // } + //} if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, @@ -1715,7 +1725,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->LightsObjects(Item).ZoneListActive) { state.dataHeatBal->Lights(Loop).Name = AlphaName(1); - state.dataHeatBal->Lights(Loop).ZonePtr = state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->Lights(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -1729,8 +1745,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->Lights(Loop).Name, errFlag); - state.dataHeatBal->Lights(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->Lights(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -1777,6 +1798,27 @@ namespace InternalHeatGains { } } + // Set space load fractions + if (int(state.dataHeatBal->Lights(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->Lights(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->Lights(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->Lights(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->Lights(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating Lights loads to Spaces."); + ShowContinueError(state, + "Occurs for Lights object =" + state.dataHeatBal->LightsObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // Lights Design Level calculation method. { auto const lightingLevel(AlphaName(4)); @@ -2289,7 +2331,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->ZoneElectricObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneElectric(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneElectric(Loop).ZonePtr = state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -2304,8 +2352,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->ZoneElectric(Loop).Name, errFlag); - state.dataHeatBal->ZoneElectric(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -2346,6 +2399,28 @@ namespace InternalHeatGains { } } + // Set space load fractions + if (int(state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneElectric(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneElectric(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneElectric(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError( + state, std::string(RoutineName) + "Zone floor area is zero when allocating ElectricEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for ElectricEquipment object =" + state.dataHeatBal->ZoneElectricObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // Electric equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); @@ -2753,7 +2828,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->ZoneGasObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneGas(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneGas(Loop).ZonePtr = state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneGas(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -2768,8 +2849,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->ZoneGas(Loop).Name, errFlag); - state.dataHeatBal->ZoneGas(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneGas(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -2816,6 +2902,28 @@ namespace InternalHeatGains { } } + // Set space load fractions + if (int(state.dataHeatBal->ZoneGas(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneGas(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneGas(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneGas(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneGas(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, + std::string(RoutineName) + "Zone floor area is zero when allocating GasEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for GasEquipment object =" + state.dataHeatBal->ZoneGasObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); @@ -3255,7 +3363,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->HotWaterEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneHWEq(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -3270,8 +3384,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->ZoneHWEq(Loop).Name, errFlag); - state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -3312,6 +3431,28 @@ namespace InternalHeatGains { } } + // Set space load fractions + if (int(state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError( + state, std::string(RoutineName) + "Zone floor area is zero when allocating HotWaterEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for HotWaterEquipment object =" + state.dataHeatBal->HotWaterEqObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // Hot Water equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); @@ -3719,7 +3860,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->SteamEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneSteamEq(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -3734,8 +3881,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->ZoneSteamEq(Loop).Name, errFlag); - state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -3776,6 +3928,28 @@ namespace InternalHeatGains { } } + // Set space load fractions + if (int(state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, + std::string(RoutineName) + "Zone floor area is zero when allocating SteamEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for SteamEquipment object =" + state.dataHeatBal->SteamEqObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // Hot Water equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); @@ -4183,7 +4357,13 @@ namespace InternalHeatGains { ++Loop; if (!state.dataHeatBal->OtherEqObjects(Item).ZoneListActive) { state.dataHeatBal->ZoneOtherEq(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr; + int zoneNum = state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr; + state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } } else { CheckCreatedZoneItemName( state, @@ -4198,8 +4378,13 @@ namespace InternalHeatGains { Loop - 1, state.dataHeatBal->ZoneOtherEq(Loop).Name, errFlag); - state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = - state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } if (errFlag) ErrorsFound = true; } @@ -4244,6 +4429,28 @@ namespace InternalHeatGains { SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr); } + // Set space load fractions + if (int(state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, + std::string(RoutineName) + "Zone floor area is zero when allocating OtherEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for OtherEquipment object =" + state.dataHeatBal->OtherEqObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } + // equipment design level calculation method. unsigned int DesignLevelFieldNumber; { @@ -4620,7 +4827,36 @@ namespace InternalHeatGains { state.dataIPShortCut->cNumericFieldNames); state.dataHeatBal->ZoneITEq(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneITEq(Loop).ZonePtr = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + state.dataHeatBal->ZoneITEq(Loop).ZonePtr = zoneNum; + if (zoneNum > 0) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneITEq(Loop).SpacePtrs.emplace_back(spaceNum); + } + } + + // Set space load fractions + if (int(state.dataHeatBal->ZoneITEq(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneITEq(Loop).SpaceFracs.emplace_back(1.0); + } else { + if (state.dataHeatBal->ZoneITEq(Loop).ZonePtr > 0) { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneITEq(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneITEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, + std::string(RoutineName) + + "Zone floor area is zero when allocating ElectricEquipment:ITE:AirCooled loads to Spaces."); + ShowContinueError(state, + "Occurs for ElectricEquipment:ITE:AirCooled object =" + state.dataHeatBal->ZoneITEq(Loop).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } + } // IT equipment design level calculation method. if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { @@ -5507,12 +5743,39 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneBBHeat(Loop).Name = AlphaName(1); - state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); + state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr = zoneNum; if (state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr == 0) { ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); ErrorsFound = true; + } else { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.emplace_back(spaceNum); + } + + // Set space load fractions + if (int(state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs.emplace_back(1.0); + } else { + Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).FloorArea; + if (zoneArea > 0.0) { + for (int const spaceNum : state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs) { + Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; + state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + } + } else { + ShowSevereError(state, + std::string(RoutineName) + + "Zone floor area is zero when allocating ZoneBaseboard:OutdoorTemperatureControlled loads to Spaces."); + ShowContinueError( + state, + "Occurs for ZoneBaseboard:OutdoorTemperatureControlled object =" + state.dataHeatBal->ZoneBBHeat(Loop).Name + + " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); + ErrorsFound = true; + } + } } state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); @@ -6639,6 +6902,16 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate; state.dataHeatBal->ZoneIntGain(NZ).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate; + + for (int index = 1; index <= int(state.dataHeatBal->Lights(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->Lights(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->Lights(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotElecEquip; ++Loop) { @@ -6664,6 +6937,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneElectric(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneElectric(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { @@ -6686,6 +6968,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneGas(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneGas(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneGas(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { @@ -6706,6 +6997,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { @@ -6727,6 +7027,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { @@ -6748,6 +7057,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { @@ -6776,6 +7094,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(NZ).BaseHeatPower += state.dataHeatBal->ZoneBBHeat(Loop).Power; state.dataHeatBal->ZoneIntGain(NZ).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate; state.dataHeatBal->ZoneIntGain(NZ).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; + + for (int index = 1; index <= int(state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs(index); + state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate * spaceFrac; + } } for (Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { diff --git a/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc b/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc index 2715b3d3572..ab54ec55ac8 100644 --- a/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc +++ b/tst/EnergyPlus/unit/UnitaryHybridAirConditioner.unit.cc @@ -409,7 +409,7 @@ TEST_F(EnergyPlusFixture, Test_UnitaryHybridAirConditioner_Unittest) state->dataZoneEnergyDemand->ZoneSysEnergyDemand.allocate(state->dataGlobal->NumOfZones); state->dataZoneEnergyDemand->DeadBandOrSetback.allocate(state->dataGlobal->NumOfZones); - DataZoneEquipment::GetZoneEquipmentData(*state); // read zone equipment SystemReports::ReportMaxVentilationLoads(); + DataZoneEquipment::GetZoneEquipmentData(*state); // read zone equipment SystemReports::ReportMaxVentilationLoads(); state->dataZoneEquip->ZoneEquipInputsFilled = true; state->dataHeatBal->ZnAirRpt.allocate(state->dataGlobal->NumOfZones); state->dataHeatBalFanSys->MAT.allocate(state->dataGlobal->NumOfZones); From 6fd04fecae043ae3399a08739ff96b220411004d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 26 Jul 2021 10:43:59 -0500 Subject: [PATCH 47/98] Space - fix zone enclosure numbers --- src/EnergyPlus/SurfaceGeometry.cc | 36 +++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index d56ed53b461..822a816fe33 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14907,27 +14907,27 @@ namespace SurfaceGeometry { } else { state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->NumOfSpaces; } + } - // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - for (int spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == -1) { // initial value - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; - } else { - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = - min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); - } - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = - max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); - // TODO: For daylighting, set the zone solar enclosure number to the first space's number - if (state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure == 0) { - state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; - } + // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + for (int spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == -1) { // initial value + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; + } else { + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = + min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + } + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = + max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + // TODO: For daylighting, set the zone solar enclosure number to the first space's number + if (state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure == 0) { + state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; } - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast != -1); - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst <= state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast); } + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast != -1); + assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst <= state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast); } } From 05c39ece0e7293bd014654a7dda5a5ba58de1600 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 26 Jul 2021 15:50:09 -0500 Subject: [PATCH 48/98] Space - fix some daylighting issues and revert some changes --- src/EnergyPlus/DaylightingManager.cc | 69 +++++++++++++++------------- src/EnergyPlus/DaylightingManager.hh | 2 +- 2 files changed, 38 insertions(+), 33 deletions(-) diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index 043c349412e..c928c99c369 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -147,7 +147,7 @@ namespace EnergyPlus::DaylightingManager { using namespace DataHeatBalance; using namespace DataSurfaces; -void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclosure number +void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum) // Enclosure number { // SUBROUTINE INFORMATION: @@ -159,9 +159,9 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclos // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: - // Called by CalcDayltgCoefficients for each daylit Space. Determines total + // Called by CalcDayltgCoefficients for each daylit zone. Determines total // area and area-weighted average visible reflectance of - // all inside faces of the surfaces of a Space. In addition, finds + // all inside faces of the surfaces of a zone. In addition, finds // area and average reflectance of interzone, underground and exterior // heat-transfer surfaces in the following categories: floor (tilt > 170 deg), // ceiling (tilt < 10 deg), and wall (10 < tilt < 170 deg). @@ -174,9 +174,11 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclos // REFERENCES: // Based on DOE-2.1E subroutine DAVREF + auto &Zone(state.dataHeatBal->Zone); + SurfaceClass IType; // Surface type/class Real64 AREA; // Inside surface area (m2) - Real64 AInsTot; // Total inside surface area of a Space (m2) + Real64 AInsTot; // Total inside surface area of an enclosure (m2) Real64 ARHTOT; // Sum over surfaces of AREA*(inside visible reflectance) (m2) int ITILT; // Surface tilt category (1 = floor, 2 = wall, 3 = ceiling) int IT; // Tilt index @@ -191,24 +193,25 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclos // Area sum and area * reflectance sum for different orientations state.dataDaylightingManager->AR = 0.0; state.dataDaylightingManager->ARH = 0.0; - // Loop over surfaces in the Space's enclosure - auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(EnclNum)); + // Loop over surfaces in the zone's enclosure + + int const enclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclNum)); for (int ISurf : thisEnclosure.SurfacePtr) { IType = state.dataSurface->Surface(ISurf).Class; - int zoneNum = state.dataSurface->Surface(ISurf).Zone; // Error if window has multiplier > 1 since this causes incorrect illuminance calc if (IType == SurfaceClass::Window && state.dataSurface->Surface(ISurf).Multiplier > 1.0) { if (thisEnclosure.TotalEnclosureDaylRefPoints > 0) { ShowSevereError(state, "DayltgAveInteriorReflectance: Multiplier > 1.0 for window " + state.dataSurface->Surface(ISurf).Name + - " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); - ShowContinueError(state, "...not allowed since it is in a space or enclosure with daylighting."); + " in Zone=" + state.dataSurface->Surface(ISurf).ZoneName); + ShowContinueError(state, "...not allowed since it is in a zone or enclosure with daylighting."); ShowFatalError(state, "Program terminates due to preceding conditions."); } else { ShowSevereError(state, "DayltgAveInteriorReflectance: Multiplier > 1.0 for window " + state.dataSurface->Surface(ISurf).Name + - " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); - ShowContinueError(state, "...an adjacent Space has daylighting. Simulation cannot proceed."); + " in Zone=" + state.dataSurface->Surface(ISurf).ZoneName); + ShowContinueError(state, "...an adjacent Zone has daylighting. Simulation cannot proceed."); ShowFatalError(state, "Program terminates due to preceding conditions."); } } @@ -239,11 +242,16 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclos } // Average inside surface reflectance of enclosure - state.dataDaylightingData->EnclDaylight(EnclNum).AveVisDiffReflect = ARHTOT / AInsTot; + if (AInsTot <= 0.0) { + ShowSevereError(state, + "DayltgAveInteriorReflectance: Total opaque surface area is <=0.0 in solar enclosure=" + thisEnclosure.Name); + ShowFatalError(state, "Program terminates due to preceding conditions."); + } + state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect = ARHTOT / AInsTot; // Total inside surface area of enclosure - state.dataDaylightingData->EnclDaylight(EnclNum).TotInsSurfArea = AInsTot; + state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea = AInsTot; // Average floor visible reflectance - state.dataDaylightingData->EnclDaylight(EnclNum).FloorVisRefl = + state.dataDaylightingData->EnclDaylight(enclNum).FloorVisRefl = state.dataDaylightingManager->ARH(3) / (state.dataDaylightingManager->AR(3) + 1.e-6); for (int ISurf : thisEnclosure.SurfacePtr) { @@ -298,12 +306,11 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum) // Enclos for (int IWin : thisEnclosure.SurfacePtr) { if (state.dataSurface->Surface(IWin).Class == SurfaceClass::Window) { int ISurf = state.dataSurface->Surface(IWin).BaseSurf; - int zoneNum = state.dataSurface->Surface(IWin).Zone; // Ratio of floor-to-window-center height and average floor-to-ceiling height ETA = max(0.0, min(1.0, - (state.dataSurface->SurfaceWindow(IWin).WinCenter(3) - state.dataHeatBal->Zone(zoneNum).OriginZ) * - state.dataHeatBal->Zone(zoneNum).FloorArea / state.dataHeatBal->Zone(zoneNum).Volume)); + (state.dataSurface->SurfaceWindow(IWin).WinCenter(3) - state.dataHeatBal->Zone(ZoneNum).OriginZ) * + state.dataHeatBal->Zone(ZoneNum).FloorArea / state.dataHeatBal->Zone(ZoneNum).Volume)); state.dataDaylightingManager->AP = state.dataSurface->SurfaceWindow(ISurf).EnclAreaMinusThisSurf; state.dataDaylightingManager->ARHP = state.dataSurface->SurfaceWindow(ISurf).EnclAreaReflProdMinusThisSurf; // Average reflectance seen by light moving up (RhoCeilingWall) and down (RhoFloorWall) @@ -483,6 +490,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) if ((state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints > 0 && state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfDayltgExtWins > 0) || state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjZoneHasDayltgCtrl) { + int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; DayltgAveInteriorReflectance(state, ZoneNum); } } @@ -5472,15 +5480,8 @@ void CheckTDDsAndLightShelvesInDaylitZones(EnergyPlusData &state) for (PipeNum = 1; PipeNum <= state.dataDaylightingDevicesData->NumOfTDDPipes; ++PipeNum) { SurfNum = state.dataDaylightingDevicesData->TDDPipe(PipeNum).Diffuser; if (SurfNum > 0) { - bool daylightControlFound = false; - int const pipeEnclNum = state.dataHeatBal->Zone(state.dataSurface->Surface(SurfNum).Zone).ZoneFirstSpaceSolEnclosure; - for (int const spaceNum : state.dataViewFactor->EnclSolInfo(pipeEnclNum).SpaceNums) { - int const zoneNum = state.dataHeatBal->Space(spaceNum).ZoneNum; - if (state.dataDaylightingData->ZoneDaylight(zoneNum).DaylightMethod != DataDaylighting::iDaylightingMethod::NoDaylighting) { - daylightControlFound = true; - } - } - if (!daylightControlFound) { + int const pipeEnclNum = state.dataSurface->Surface(SurfNum).SolarEnclIndex; + if (state.dataViewFactor->EnclSolInfo(pipeEnclNum).TotalEnclosureDaylRefPoints == 0) { ShowWarningError(state, "DaylightingDevice:Tubular = " + state.dataDaylightingDevicesData->TDDPipe(PipeNum).Name + ": is not connected to a Zone that has Daylighting, no visible transmittance will be modeled through the " @@ -7229,12 +7230,16 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number IS = 2; if (state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylightMethod == DataDaylighting::iDaylightingMethod::SplitFluxDaylighting) { int refPtCount = 0; - for (int refPtNum = 1; refPtNum <= state.dataViewFactor->EnclSolInfo(enclNum).TotalEnclosureDaylRefPoints; ++refPtNum) { - ++refPtCount; // Count reference points across each zone in the same enclosure - state.dataSurface->SurfaceWindow(IWin).IllumFromWinAtRefPtRep(refPtCount) = - state.dataDaylightingData->ZoneDaylight(ZoneNum).IllumFromWinAtRefPt(loop, IS, refPtNum); - state.dataSurface->SurfaceWindow(IWin).LumWinFromRefPtRep(refPtCount) = - state.dataDaylightingData->ZoneDaylight(ZoneNum).SourceLumFromWinAtRefPt(loop, IS, refPtNum); + for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { + int enclZoneNum = state.dataHeatBal->Space(enclSpaceNum).ZoneNum; + // TODO MJW: Reference points will be double-counted for zone with more than one space + for (int refPtNum = 1; refPtNum <= state.dataDaylightingData->ZoneDaylight(enclZoneNum).TotalDaylRefPoints; ++refPtNum) { + ++refPtCount; // Count reference points across each zone in the same enclosure + state.dataSurface->SurfaceWindow(IWin).IllumFromWinAtRefPtRep(refPtCount) = + state.dataDaylightingData->ZoneDaylight(enclZoneNum).IllumFromWinAtRefPt(loop, IS, refPtNum); + state.dataSurface->SurfaceWindow(IWin).LumWinFromRefPtRep(refPtCount) = + state.dataDaylightingData->ZoneDaylight(enclZoneNum).SourceLumFromWinAtRefPt(loop, IS, refPtNum); + } } } } diff --git a/src/EnergyPlus/DaylightingManager.hh b/src/EnergyPlus/DaylightingManager.hh index ff99ea961d7..21dde28b670 100644 --- a/src/EnergyPlus/DaylightingManager.hh +++ b/src/EnergyPlus/DaylightingManager.hh @@ -86,7 +86,7 @@ namespace DaylightingManager { constexpr int NPHMAX(10); // Number of sky/ground integration steps in altitude constexpr int NTHMAX(16); // Number of sky/ground integration steps in azimuth - void DayltgAveInteriorReflectance(EnergyPlusData &state, int &EnclNum); // Enclosure number + void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum); // Enclosure number void CalcDayltgCoefficients(EnergyPlusData &state); From 9582936fa210b022235520b9f48a956806eb8d16 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 27 Jul 2021 10:01:02 -0500 Subject: [PATCH 49/98] Space - fix air boundaries and user view factors --- src/EnergyPlus/DaylightingManager.cc | 4 +--- src/EnergyPlus/DaylightingManager.hh | 2 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 17 +++++++++++++---- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index c928c99c369..60140810afe 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -243,8 +243,7 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum) // E // Average inside surface reflectance of enclosure if (AInsTot <= 0.0) { - ShowSevereError(state, - "DayltgAveInteriorReflectance: Total opaque surface area is <=0.0 in solar enclosure=" + thisEnclosure.Name); + ShowSevereError(state, "DayltgAveInteriorReflectance: Total opaque surface area is <=0.0 in solar enclosure=" + thisEnclosure.Name); ShowFatalError(state, "Program terminates due to preceding conditions."); } state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect = ARHTOT / AInsTot; @@ -490,7 +489,6 @@ void CalcDayltgCoefficients(EnergyPlusData &state) if ((state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints > 0 && state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfDayltgExtWins > 0) || state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjZoneHasDayltgCtrl) { - int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; DayltgAveInteriorReflectance(state, ZoneNum); } } diff --git a/src/EnergyPlus/DaylightingManager.hh b/src/EnergyPlus/DaylightingManager.hh index 21dde28b670..91ba6503528 100644 --- a/src/EnergyPlus/DaylightingManager.hh +++ b/src/EnergyPlus/DaylightingManager.hh @@ -86,7 +86,7 @@ namespace DaylightingManager { constexpr int NPHMAX(10); // Number of sky/ground integration steps in altitude constexpr int NTHMAX(16); // Number of sky/ground integration steps in azimuth - void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum); // Enclosure number + void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum); void CalcDayltgCoefficients(EnergyPlusData &state); diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 7d8928ae25d..557345d458d 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -509,7 +509,11 @@ namespace HeatBalanceIntRadExchange { int numEnclosureSurfaces = 0; for (int spaceNum : thisEnclosure.SpaceNums) { // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces - numEnclosureSurfaces += int(state.dataHeatBal->Space(spaceNum).Surfaces.size()); + // But it also includes air boundary surfaces which need to be excluded here + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; + ++numEnclosureSurfaces; + } } thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; state.dataHeatBalIntRadExchg->MaxNumOfRadEnclosureSurfs = @@ -532,6 +536,7 @@ namespace HeatBalanceIntRadExchange { for (int const spaceNum : thisEnclosure.SpaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; } @@ -816,7 +821,11 @@ namespace HeatBalanceIntRadExchange { int numEnclosureSurfaces = 0; for (int spaceNum : thisEnclosure.SpaceNums) { // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces - numEnclosureSurfaces += int(state.dataHeatBal->Space(spaceNum).Surfaces.size()); + // But it also includes air boundary surfaces which need to be excluded here + for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; + ++numEnclosureSurfaces; + } } thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; if (numEnclosureSurfaces < 1) ShowFatalError(state, "No surfaces in an enclosure in InitSolarViewFactors"); @@ -834,7 +843,7 @@ namespace HeatBalanceIntRadExchange { for (int const spaceNum : thisEnclosure.SpaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { - // Do not include non-heat transfer surfaces + if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; // Store pointers back to here @@ -1277,7 +1286,7 @@ namespace HeatBalanceIntRadExchange { auto &cCurrentModuleObject = state.dataIPShortCut->cCurrentModuleObject; NoUserInputF = true; UserFZoneIndex = state.dataInputProcessing->inputProcessor->getObjectItemNum( - state, "ZoneProperty:UserViewFactors:BySurfaceName", "zone_or_zonelist_name", EnclosureName); + state, "ZoneProperty:UserViewFactors:BySurfaceName", "space_or_spacelist_name", EnclosureName); if (UserFZoneIndex > 0) { enclosureSurfaceNames.allocate(N); From ffdc09a0bbde7c75b5538c7d12cc351a4af298e0 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sat, 31 Jul 2021 10:34:34 -0500 Subject: [PATCH 50/98] Space - spaceTypes --- src/EnergyPlus/DataGlobals.hh | 2 ++ src/EnergyPlus/DataHeatBalance.hh | 5 ++- src/EnergyPlus/HeatBalanceManager.cc | 44 +++++++++++++++++++++++++-- src/EnergyPlus/HeatBalanceManager.hh | 2 ++ src/EnergyPlus/OutputReportTabular.cc | 5 +++ src/EnergyPlus/SurfaceGeometry.cc | 4 +++ 6 files changed, 59 insertions(+), 3 deletions(-) diff --git a/src/EnergyPlus/DataGlobals.hh b/src/EnergyPlus/DataGlobals.hh index 1e3cd342426..60cbf5de984 100644 --- a/src/EnergyPlus/DataGlobals.hh +++ b/src/EnergyPlus/DataGlobals.hh @@ -105,6 +105,7 @@ struct DataGlobal : BaseGlobalStruct int NumOfTimeStepInHour = 0; // Number of time steps in each hour of the simulation int NumOfZones = 0; // Total number of Zones for simulation int NumOfSpaces = 0; // Total number of Spaces for simulation + int NumSpaceTypes = 0; // Number of space types int TimeStep = 0; // Counter for time steps (fractional hours) Real64 TimeStepZone = 0.0; // Zone time step in fractional hours bool WarmupFlag = false; // True during the warmup portion of a simulation @@ -210,6 +211,7 @@ struct DataGlobal : BaseGlobalStruct this->NumOfTimeStepInHour = 0; this->NumOfZones = 0; this->NumOfSpaces = 0; + this->NumSpaceTypes = 0; this->TimeStep = 0; this->TimeStepZone = 0.0; this->WarmupFlag = false; diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 91c42dc703c..398c2184354 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -342,6 +342,7 @@ namespace DataHeatBalance { int ZoneNum = 0; // Pointer to Zone wich contains this space Real64 UserEnteredFloorArea = 0.0; // User input floor area for this space std::string SpaceType = "General"; // Space type tag + int SpaceTypeNum = 0; // Points to spaceType for this space EPVector Tags; // Optional tags for reporting EPVector Surfaces; // Pointers to surfaces in this space Real64 CalcFloorArea = 0.0; // Calculated floor area used for this space @@ -1757,7 +1758,7 @@ namespace DataHeatBalance { } }; - struct ZoneReportVars // Zone level. + struct ZoneReportVars // Zone and Space report variables { // Members // People @@ -2296,6 +2297,7 @@ struct HeatBalanceData : BaseGlobalStruct DataHeatBalance::ZoneAirMassFlowConservation ZoneAirMassFlow; EPVector ZoneLocalEnvironment; bool MundtFirstTimeFlag = true; + EPVector spaceTypes; void clear_state() override { @@ -2569,6 +2571,7 @@ struct HeatBalanceData : BaseGlobalStruct this->ZoneAirMassFlow = DataHeatBalance::ZoneAirMassFlowConservation(); this->ZoneLocalEnvironment.deallocate(); this->MundtFirstTimeFlag = true; + this->spaceTypes.deallocate(); } }; diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 79838842c53..925f3fbd072 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5467,7 +5467,10 @@ namespace HeatBalanceManager { int numSpaces = instancesValue.size(); int spaceNum = 0; // Allow for one additional Space per zone if some surfaces do not have a Space assigned in input - state.dataHeatBal->Space.allocate(numSpaces + state.dataGlobal->NumOfZones); + state.dataHeatBal->Space.allocate(size_t(numSpaces + state.dataGlobal->NumOfZones)); + // Allow for one additional "General" space type for auto-generated spaces + state.dataHeatBal->spaceTypes.allocate(size_t(numSpaces + 1)); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { ++spaceNum; auto const &objectFields = instance.value(); @@ -5486,6 +5489,20 @@ namespace HeatBalanceManager { ErrorsFound = true; } thisSpace.SpaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); + bool spaceTypeFound = false; + for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->NumSpaceTypes; ++spaceTypePtr) { + if (UtilityRoutines::SameString(thisSpace.SpaceType, state.dataHeatBal->spaceTypes(spaceTypePtr))) { + thisSpace.SpaceTypeNum = spaceTypePtr; + spaceTypeFound = true; + break; + } + } + if (!spaceTypeFound) { + ++state.dataGlobal->NumSpaceTypes; + state.dataHeatBal->spaceTypes(state.dataGlobal->NumSpaceTypes) = thisSpace.SpaceType; + thisSpace.SpaceTypeNum = state.dataGlobal->NumSpaceTypes; + } + auto extensibles = objectFields.find("tags"); auto const &extensionSchemaProps = objectSchemaProps["tags"]["items"]["properties"]; if (extensibles != objectFields.end()) { @@ -5497,7 +5514,7 @@ namespace HeatBalanceManager { } state.dataGlobal->NumOfSpaces = spaceNum; } else { - // If no Spaces are defined, the allow for one Space per zone + // If no Spaces are defined, then allow for one Space per zone state.dataHeatBal->Space.allocate(state.dataGlobal->NumOfZones); } @@ -5562,11 +5579,34 @@ namespace HeatBalanceManager { ++state.dataGlobal->NumOfSpaces; state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceType = "GENERAL"; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceTypeNum = GetGeneralSpaceTypeNum(state); // Add to zone's list of spaces thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); } } } + + int GetGeneralSpaceTypeNum(EnergyPlusData &state) + { + // If "General" exists as a space type return the index + bool generalSpaceTypeExists = false; + int generalSpaceTypeNum = 0; + for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->NumSpaceTypes; ++spaceTypePtr) { + if (UtilityRoutines::SameString(state.dataHeatBal->spaceTypes(spaceTypePtr), "GENERAL")) { + generalSpaceTypeNum = spaceTypePtr; + generalSpaceTypeExists = true; + break; + } + } + // Add General space type if it doesn't exist yet + if (!generalSpaceTypeExists) { + ++state.dataGlobal->NumSpaceTypes; + state.dataHeatBal->spaceTypes(state.dataGlobal->NumSpaceTypes) = "GENERAL"; + generalSpaceTypeNum = state.dataGlobal->NumSpaceTypes; + } + return generalSpaceTypeNum; + } // End of Get Input subroutines for the HB Module //****************************************************************************** diff --git a/src/EnergyPlus/HeatBalanceManager.hh b/src/EnergyPlus/HeatBalanceManager.hh index bbffbf3087e..b3808bb5cb5 100644 --- a/src/EnergyPlus/HeatBalanceManager.hh +++ b/src/EnergyPlus/HeatBalanceManager.hh @@ -117,6 +117,8 @@ namespace HeatBalanceManager { void GetSpaceData(EnergyPlusData &state, bool &ErrorsFound); + int GetGeneralSpaceTypeNum(EnergyPlusData &state); + void GetZoneLocalEnvData(EnergyPlusData &state, bool &ErrorsFound); // If errors found in input void ProcessZoneData(EnergyPlusData &state, diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 650ce867729..a5d6c27fbec 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11605,6 +11605,11 @@ void WriteVeriSumTable(EnergyPlusData &state) } rowHead.allocate(state.dataGlobal->NumOfZones + 4); + Array1D_string rowHeadSpaces; + rowHeadSpaces.allocate(state.dataGlobal->NumOfSpaces + 4); + Array1D_string rowHeadSpaceTypes; + rowHeadSpaceTypes.allocate(state.dataGlobal->NumSpaceTypes + 4); + NumOfCol = 12; columnHead.allocate(NumOfCol); columnWidth.allocate(NumOfCol); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 822a816fe33..dec2774067b 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -75,6 +75,7 @@ #include #include #include +#include #include #include #include @@ -2830,12 +2831,15 @@ namespace SurfaceGeometry { // Every zone has at least one space, created in HeatBalanceManager::GetSpaceData // If no surfaces have a space assigned, then the default space will be used, otherwise, create a new space if (thisZone.AnySurfacesWithSpace) { + // Add new space ++state.dataGlobal->NumOfSpaces; state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; // Add to zone's list of spaces thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-Remainder"; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceType = "GENERAL"; + state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceTypeNum = HeatBalanceManager::GetGeneralSpaceTypeNum(state); } } } From 585c477d959690616d0ecab6fe014fa66e60bc87 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sat, 31 Jul 2021 11:17:53 -0500 Subject: [PATCH 51/98] Space - NumOfSpaces -> numSpaces --- src/EnergyPlus/DataGlobals.hh | 8 ++-- src/EnergyPlus/HeatBalanceManager.cc | 34 ++++++++-------- src/EnergyPlus/InternalHeatGains.cc | 34 ++++++++-------- src/EnergyPlus/OutputReportTabular.cc | 4 +- src/EnergyPlus/SurfaceGeometry.cc | 28 ++++++------- .../unit/HeatBalanceIntRadExchange.unit.cc | 40 +++++++++---------- .../unit/OutputReportTabular.unit.cc | 8 ++-- .../unit/RoomAirflowNetwork.unit.cc | 6 +-- 8 files changed, 81 insertions(+), 81 deletions(-) diff --git a/src/EnergyPlus/DataGlobals.hh b/src/EnergyPlus/DataGlobals.hh index 60cbf5de984..f050dbcf694 100644 --- a/src/EnergyPlus/DataGlobals.hh +++ b/src/EnergyPlus/DataGlobals.hh @@ -104,8 +104,8 @@ struct DataGlobal : BaseGlobalStruct int NumOfDayInEnvrn = 0; // Number of days in the simulation for a particular environment int NumOfTimeStepInHour = 0; // Number of time steps in each hour of the simulation int NumOfZones = 0; // Total number of Zones for simulation - int NumOfSpaces = 0; // Total number of Spaces for simulation - int NumSpaceTypes = 0; // Number of space types + int numSpaces = 0; // Total number of Spaces for simulation + int numSpaceTypes = 0; // Number of unique space types int TimeStep = 0; // Counter for time steps (fractional hours) Real64 TimeStepZone = 0.0; // Zone time step in fractional hours bool WarmupFlag = false; // True during the warmup portion of a simulation @@ -210,8 +210,8 @@ struct DataGlobal : BaseGlobalStruct this->NumOfDayInEnvrn = 0; this->NumOfTimeStepInHour = 0; this->NumOfZones = 0; - this->NumOfSpaces = 0; - this->NumSpaceTypes = 0; + this->numSpaces = 0; + this->numSpaceTypes = 0; this->TimeStep = 0; this->TimeStepZone = 0.0; this->WarmupFlag = false; diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 925f3fbd072..bb983bd0946 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5490,7 +5490,7 @@ namespace HeatBalanceManager { } thisSpace.SpaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); bool spaceTypeFound = false; - for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->NumSpaceTypes; ++spaceTypePtr) { + for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->numSpaceTypes; ++spaceTypePtr) { if (UtilityRoutines::SameString(thisSpace.SpaceType, state.dataHeatBal->spaceTypes(spaceTypePtr))) { thisSpace.SpaceTypeNum = spaceTypePtr; spaceTypeFound = true; @@ -5498,9 +5498,9 @@ namespace HeatBalanceManager { } } if (!spaceTypeFound) { - ++state.dataGlobal->NumSpaceTypes; - state.dataHeatBal->spaceTypes(state.dataGlobal->NumSpaceTypes) = thisSpace.SpaceType; - thisSpace.SpaceTypeNum = state.dataGlobal->NumSpaceTypes; + ++state.dataGlobal->numSpaceTypes; + state.dataHeatBal->spaceTypes(state.dataGlobal->numSpaceTypes) = thisSpace.SpaceType; + thisSpace.SpaceTypeNum = state.dataGlobal->numSpaceTypes; } auto extensibles = objectFields.find("tags"); @@ -5512,7 +5512,7 @@ namespace HeatBalanceManager { } } } - state.dataGlobal->NumOfSpaces = spaceNum; + state.dataGlobal->numSpaces = spaceNum; } else { // If no Spaces are defined, then allow for one Space per zone state.dataHeatBal->Space.allocate(state.dataGlobal->NumOfZones); @@ -5576,13 +5576,13 @@ namespace HeatBalanceManager { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { auto &thisZone = state.dataHeatBal->Zone(zoneNum); if (thisZone.Spaces.empty()) { - ++state.dataGlobal->NumOfSpaces; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceType = "GENERAL"; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceTypeNum = GetGeneralSpaceTypeNum(state); + ++state.dataGlobal->numSpaces; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).ZoneNum = zoneNum; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).Name = thisZone.Name; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceType = "GENERAL"; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceTypeNum = GetGeneralSpaceTypeNum(state); // Add to zone's list of spaces - thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + thisZone.Spaces.emplace_back(state.dataGlobal->numSpaces); } } } @@ -5592,7 +5592,7 @@ namespace HeatBalanceManager { // If "General" exists as a space type return the index bool generalSpaceTypeExists = false; int generalSpaceTypeNum = 0; - for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->NumSpaceTypes; ++spaceTypePtr) { + for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->numSpaceTypes; ++spaceTypePtr) { if (UtilityRoutines::SameString(state.dataHeatBal->spaceTypes(spaceTypePtr), "GENERAL")) { generalSpaceTypeNum = spaceTypePtr; generalSpaceTypeExists = true; @@ -5601,9 +5601,9 @@ namespace HeatBalanceManager { } // Add General space type if it doesn't exist yet if (!generalSpaceTypeExists) { - ++state.dataGlobal->NumSpaceTypes; - state.dataHeatBal->spaceTypes(state.dataGlobal->NumSpaceTypes) = "GENERAL"; - generalSpaceTypeNum = state.dataGlobal->NumSpaceTypes; + ++state.dataGlobal->numSpaceTypes; + state.dataHeatBal->spaceTypes(state.dataGlobal->numSpaceTypes) = "GENERAL"; + generalSpaceTypeNum = state.dataGlobal->numSpaceTypes; } return generalSpaceTypeNum; } @@ -5852,8 +5852,8 @@ namespace HeatBalanceManager { // TODO MJW: Punt for now, sometimes unit test will get here and need these to be allocated, but simulations need them sooner if (!state.dataHeatBal->ZoneIntGain.allocated()) { state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); - state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->numSpaces); } state.dataHeatBal->ZoneMRT.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->ZoneSolAbsFirstCalc.allocate(state.dataGlobal->NumOfZones); diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index a92585c32ef..dc3168d9af0 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -262,22 +262,22 @@ namespace InternalHeatGains { // TODO MJW: Punt for now, sometimes unit test need these to be allocated in AllocateZoneHeatBalArrays, but simulations need them here if (!state.dataHeatBal->ZoneIntGain.allocated()) { state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->NumOfSpaces); - state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->numSpaces); } state.dataHeatBal->ZnRpt.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceRpt.allocate(state.dataGlobal->NumOfSpaces); + state.dataHeatBal->SpaceRpt.allocate(state.dataGlobal->numSpaces); state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); Array1D_bool RepVarSet; Array1D_bool SpaceRepVarSet; RepVarSet.allocate(state.dataGlobal->NumOfZones); - SpaceRepVarSet.allocate(state.dataGlobal->NumOfSpaces); + SpaceRepVarSet.allocate(state.dataGlobal->numSpaces); for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } @@ -404,7 +404,7 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(Loop).Name); } - // for (int Loop = 1; Loop <= state.dataGlobal->NumOfSpaces; ++Loop) { + // for (int Loop = 1; Loop <= state.dataGlobal->numSpaces; ++Loop) { // // Overall Space Variables // SetupOutputVariable(state, // "Space Total Internal Radiant Heating Energy", @@ -1643,7 +1643,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "Lights"; @@ -2249,7 +2249,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ElectricEquipment"; @@ -2746,7 +2746,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "GasEquipment"; @@ -3281,7 +3281,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "HotWaterEquipment"; @@ -3778,7 +3778,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "SteamEquipment"; @@ -4275,7 +4275,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "OtherEquipment"; @@ -4798,7 +4798,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; @@ -5717,7 +5717,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; @@ -5992,7 +5992,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { SpaceRepVarSet(spaceNum) = true; } CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; @@ -7897,7 +7897,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(ZoneLoop).TotTotalHeatGainRate * state.dataGlobal->TimeStepZoneSec; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { // People state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc = state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC; state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain = @@ -8212,7 +8212,7 @@ namespace InternalHeatGains { } // store pointer values to hold generic internal gain values constant for entire timestep - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { auto &thisIntGain = state.dataHeatBal->SpaceIntGainDevices(spaceNum); for (int Loop = 1; Loop <= thisIntGain.NumberOfDevices; ++Loop) { thisIntGain.Device(Loop).ConvectGainRate = *thisIntGain.Device(Loop).PtrConvectGainRate * thisIntGain.Device(Loop).SpaceGainFrac; diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index a5d6c27fbec..3c7c691612a 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11606,9 +11606,9 @@ void WriteVeriSumTable(EnergyPlusData &state) rowHead.allocate(state.dataGlobal->NumOfZones + 4); Array1D_string rowHeadSpaces; - rowHeadSpaces.allocate(state.dataGlobal->NumOfSpaces + 4); + rowHeadSpaces.allocate(state.dataGlobal->numSpaces + 4); Array1D_string rowHeadSpaceTypes; - rowHeadSpaceTypes.allocate(state.dataGlobal->NumSpaceTypes + 4); + rowHeadSpaceTypes.allocate(state.dataGlobal->numSpaceTypes + 4); NumOfCol = 12; columnHead.allocate(NumOfCol); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index dec2774067b..cfece441ff9 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2432,7 +2432,7 @@ namespace SurfaceGeometry { } } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { state.dataHeatBal->Space(spaceNum).CalcFloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; if (state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea != DataGlobalConstants::AutoCalculate) { // Check entered vs calculated @@ -2832,14 +2832,14 @@ namespace SurfaceGeometry { // If no surfaces have a space assigned, then the default space will be used, otherwise, create a new space if (thisZone.AnySurfacesWithSpace) { // Add new space - ++state.dataGlobal->NumOfSpaces; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).ZoneNum = zoneNum; + ++state.dataGlobal->numSpaces; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).ZoneNum = zoneNum; // Add to zone's list of spaces - thisZone.Spaces.emplace_back(state.dataGlobal->NumOfSpaces); + thisZone.Spaces.emplace_back(state.dataGlobal->numSpaces); // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).Name = thisZone.Name + "-Remainder"; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceType = "GENERAL"; - state.dataHeatBal->Space(state.dataGlobal->NumOfSpaces).SpaceTypeNum = HeatBalanceManager::GetGeneralSpaceTypeNum(state); + state.dataHeatBal->Space(state.dataGlobal->numSpaces).Name = thisZone.Name + "-Remainder"; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceType = "GENERAL"; + state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceTypeNum = HeatBalanceManager::GetGeneralSpaceTypeNum(state); } } } @@ -2858,7 +2858,7 @@ namespace SurfaceGeometry { } // TODO MJW: Is this necessary? Check that all Spaces have at least one Surface - for (int spaceNum = 1; spaceNum < state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum < state.dataGlobal->numSpaces; ++spaceNum) { if (int(state.dataHeatBal->Space(spaceNum).Surfaces.size()) == 0) { ShowSevereError(state, std::string(RoutineName) + "Space = " + state.dataHeatBal->Space(spaceNum).Name + " has no surfaces."); ErrorsFound = true; @@ -14664,11 +14664,11 @@ namespace SurfaceGeometry { if (EnclosureType == RadiantEnclosures) { radiantSetup = true; RadiantOrSolar = "Radiant"; - state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->NumOfSpaces); + state.dataViewFactor->EnclRadInfo.allocate(state.dataGlobal->numSpaces); } else if (EnclosureType == SolarEnclosures) { solarSetup = true; RadiantOrSolar = "Solar"; - state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->NumOfSpaces); + state.dataViewFactor->EnclSolInfo.allocate(state.dataGlobal->numSpaces); } else { ShowFatalError(state, std::string{RoutineName} + @@ -14862,7 +14862,7 @@ namespace SurfaceGeometry { } if (anyGroupedSpaces) { // All grouped spaces have been assigned to an enclosure, now assign remaining spaces - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { int spaceEnclosureNum = 0; if (radiantSetup) { spaceEnclosureNum = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; @@ -14892,7 +14892,7 @@ namespace SurfaceGeometry { } } else { // There are no grouped radiant air boundaries, assign each space to it's own radiant enclosure - for (int spaceNum = 1; spaceNum <= state.dataGlobal->NumOfSpaces; ++spaceNum) { + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { auto &thisEnclosure(Enclosures(spaceNum)); thisEnclosure.Name = state.dataHeatBal->Space(spaceNum).Name; thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(spaceNum).Name); @@ -14907,9 +14907,9 @@ namespace SurfaceGeometry { } } if (radiantSetup) { - state.dataViewFactor->NumOfRadiantEnclosures = state.dataGlobal->NumOfSpaces; + state.dataViewFactor->NumOfRadiantEnclosures = state.dataGlobal->numSpaces; } else { - state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->NumOfSpaces; + state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->numSpaces; } } diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index 8cb1754e5a1..1703c3409a5 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -503,17 +503,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) state->dataViewFactor->EnclRadInfo.allocate(3); state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -604,17 +604,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) state->dataViewFactor->EnclSolInfo.allocate(3); state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -702,17 +702,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) state->dataViewFactor->EnclSolInfo.allocate(3); state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -803,17 +803,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) state->dataViewFactor->EnclRadInfo.allocate(3); state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->NumOfSpaces)); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 6966c44f91b..b54ca228fca 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6861,8 +6861,8 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesTwice_test) state->dataGlobal->NumOfZones = 4; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); - state->dataGlobal->NumOfSpaces = 4; - state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); + state->dataGlobal->numSpaces = 4; + state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 1; @@ -8244,8 +8244,8 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataGlobal->NumOfZones = 1; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); - state->dataGlobal->NumOfSpaces = 1; - state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); + state->dataGlobal->numSpaces = 1; + state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 4; diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index 270bde727b3..da89f47ad10 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -100,17 +100,17 @@ class RoomAirflowNetworkTest : public EnergyPlusFixture state->dataSize->CurSysNum = 0; state->dataSize->CurOASysNum = 0; state->dataGlobal->NumOfZones = 1; - state->dataGlobal->NumOfSpaces = 1; + state->dataGlobal->numSpaces = 1; state->dataLoopNodes->NumOfNodes = 5; state->dataGlobal->BeginEnvrnFlag = true; int NumOfSurfaces = 2; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); - state->dataHeatBal->Space.allocate(state->dataGlobal->NumOfSpaces); + state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); state->dataZoneEquip->ZoneEquipConfig.allocate(state->dataGlobal->NumOfZones); state->dataZoneEquip->ZoneEquipList.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->ZoneIntGain.allocate(state->dataGlobal->NumOfZones); - state->dataHeatBal->SpaceIntGainDevices.allocate(state->dataGlobal->NumOfSpaces); + state->dataHeatBal->SpaceIntGainDevices.allocate(state->dataGlobal->numSpaces); state->dataLoopNodes->NodeID.allocate(state->dataLoopNodes->NumOfNodes); state->dataLoopNodes->Node.allocate(state->dataLoopNodes->NumOfNodes); state->dataSurface->Surface.allocate(NumOfSurfaces); From d4d3074f170c4f6c02d7aa388428c550ea254060 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sat, 31 Jul 2021 11:49:24 -0500 Subject: [PATCH 52/98] Space - fix spaceTypes allocation --- src/EnergyPlus/HeatBalanceManager.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index bb983bd0946..e17fa6d788b 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5514,8 +5514,9 @@ namespace HeatBalanceManager { } state.dataGlobal->numSpaces = spaceNum; } else { - // If no Spaces are defined, then allow for one Space per zone + // If no Spaces are defined, then allow for one Space per zone, and one spaceType state.dataHeatBal->Space.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->spaceTypes.allocate(1); } cCurrentModuleObject = "SpaceList"; From 5a2eba46e4a8809755e5167dbec1e80e799fb022 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sun, 1 Aug 2021 15:57:06 -0500 Subject: [PATCH 53/98] Space - InputVerificationandResultsSummary --- src/EnergyPlus/OutputReportTabular.cc | 406 +++++++++++++++++++++++++- src/EnergyPlus/OutputReportTabular.hh | 6 + 2 files changed, 408 insertions(+), 4 deletions(-) diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 3c7c691612a..6f4abce1d2e 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11605,10 +11605,6 @@ void WriteVeriSumTable(EnergyPlusData &state) } rowHead.allocate(state.dataGlobal->NumOfZones + 4); - Array1D_string rowHeadSpaces; - rowHeadSpaces.allocate(state.dataGlobal->numSpaces + 4); - Array1D_string rowHeadSpaceTypes; - rowHeadSpaceTypes.allocate(state.dataGlobal->numSpaceTypes + 4); NumOfCol = 12; columnHead.allocate(NumOfCol); @@ -11827,8 +11823,410 @@ void WriteVeriSumTable(EnergyPlusData &state) tableBody, rowHead, columnHead, "Input Verification and Results Summary", "Entire Facility", "Zone Summary"); } } + + // Space and SpaceType sub-tables + Array1D_string spaceRowHead; + spaceRowHead.allocate(state.dataGlobal->numSpaces + 4); + int spaceNumOfCol = 9; + Array1D_string spaceColumnHead; + spaceColumnHead.allocate(spaceNumOfCol); + Array1D_int spaceColumnWidth; + spaceColumnWidth.allocate(spaceNumOfCol); + spaceColumnWidth = 14; // array assignment - same for all columns + Array2D_string spaceTableBody; + spaceTableBody.allocate(spaceNumOfCol, state.dataGlobal->numSpaces + 4); + + spaceColumnHead(1) = "Area " + state.dataOutRptTab->m2_unitName; + spaceColumnHead(2) = "Conditioned (Y/N)"; + spaceColumnHead(3) = "Part of Total Floor Area (Y/N)"; + spaceColumnHead(4) = "Multipliers"; + spaceColumnHead(5) = "Zone Name"; + spaceColumnHead(6) = "Space Type"; + spaceColumnHead(7) = "Lighting " + state.dataOutRptTab->Wm2_unitName; + spaceColumnHead(8) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; + spaceColumnHead(9) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; + + spaceRowHead = ""; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->grandTotal) = "Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->condTotal) = "Conditioned Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->uncondTotal) = "Unconditioned Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->notpartTotal) = "Not Part of Total"; + + Array1D_string spaceTypeRowHead; + spaceTypeRowHead.allocate(state.dataGlobal->numSpaceTypes + 1); + int spaceTypeNumOfCol = 7; + Array1D_string spaceTypeColumnHead; + spaceTypeColumnHead.allocate(spaceTypeNumOfCol); + Array1D_int spaceTypeColumnWidth; + spaceTypeColumnWidth.allocate(spaceTypeNumOfCol); + spaceTypeColumnWidth = 14; // array assignment - same for all columns + Array2D_string spaceTypeTableBody; + spaceTypeTableBody.allocate(spaceTypeNumOfCol, state.dataGlobal->numSpaceTypes + 1); + + spaceTypeColumnHead(1) = "Total Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(2) = "Conditioned Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(3) = "Unconditioned Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(4) = "Not Part of Total Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(5) = "Lighting " + state.dataOutRptTab->Wm2_unitName; + spaceTypeColumnHead(6) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + + " per person" + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; + spaceTypeColumnHead(7) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; + + spaceTypeRowHead = ""; + spaceTypeRowHead(state.dataGlobal->numSpaceTypes + state.dataOutRptTab->grandTotal) = "Total"; + + gatherSpaceTables(state, spaceRowHead, spaceTypeRowHead, spaceTableBody, spaceTypeTableBody); + + tableBody = ""; + if (produceTabular) { + WriteSubtitle(state, "Space Summary"); + WriteTable(state, spaceTableBody, spaceRowHead, spaceColumnHead, spaceColumnWidth); + } + if (produceSQLite) { + if (state.dataSQLiteProcedures->sqlite) { + state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords( + spaceTableBody, spaceRowHead, spaceColumnHead, "InputVerificationandResultsSummary", "Entire Facility", "Space Summary"); + } + } + if (produceTabular) { + if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { + state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable( + spaceTableBody, spaceRowHead, spaceColumnHead, "Input Verification and Results Summary", "Entire Facility", "Space Summary"); + } + } + if (produceTabular) { + WriteSubtitle(state, "Space Type Summary"); + WriteTable(state, spaceTypeTableBody, spaceTypeRowHead, spaceTypeColumnHead, spaceTypeColumnWidth); + } + if (produceSQLite) { + if (state.dataSQLiteProcedures->sqlite) { + state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords(spaceTypeTableBody, + spaceTypeRowHead, + spaceTypeColumnHead, + "InputVerificationandResultsSummary", + "Entire Facility", + "Space Type Summary"); + } + } + if (produceTabular) { + if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { + state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable(spaceTypeTableBody, + spaceTypeRowHead, + spaceTypeColumnHead, + "Input Verification and Results Summary", + "Entire Facility", + "Space Type Summary"); + } + } + } + } +} + +void gatherSpaceTables(EnergyPlusData &state, + Array1D_string &spaceRowHead, + Array1D_string &spaceTypeRowHead, + Array2D_string &spaceTableBody, + Array2D_string &spaceTypeTableBody) +{ + + // spaceColumnHead(1) = "Area " + // spaceColumnHead(2) = "Conditioned (Y/N)"; + // spaceColumnHead(3) = "Part of Total Floor Area (Y/N)"; + // spaceColumnHead(4) = "Multipliers"; + // spaceColumnHead(5) = "Zone Name"; + // spaceColumnHead(6) = "Space Type " + // spaceColumnHead(7) = "Lighting " + // spaceColumnHead(8) = "People " + // spaceColumnHead(9) = "Plug and Process " + int constexpr colSpaceArea(1); + int constexpr colConditioned(2); + int constexpr colPartOfTotal(3); + int constexpr colMultipliers(4); + int constexpr colZoneName(5); + int constexpr colSpaceType(6); + int constexpr colSpaceLighting(7); + int constexpr colSpacePeople(8); + int constexpr colSpacePlugProcess(9); + EPVector spaceTotLighting; + EPVector spaceTotPeople; + EPVector spaceTotPlugProcess; + spaceTotLighting.allocate(state.dataGlobal->numSpaces); + spaceTotPeople.allocate(state.dataGlobal->numSpaces); + spaceTotPlugProcess.allocate(state.dataGlobal->numSpaces); + for (int iSpace = 1; iSpace <= state.dataGlobal->numSpaces; ++iSpace) { + spaceTotLighting(iSpace) = 0.0; + spaceTotPeople(iSpace) = 0.0; + spaceTotPlugProcess(iSpace) = 0.0; + } + + // spaceTypeColumnHead(1) = "Total Area " + // spaceTypeColumnHead(2) = "Conditioned Area " + // spaceTypeColumnHead(3) = "Unconditioned Area " + // spaceTypeColumnHead(4) = "Not Part of Total Area " + // spaceTypeColumnHead(5) = "Lighting " + // spaceTypeColumnHead(6) = "People " + // spaceTypeColumnHead(7) = "Plug and Process " + int constexpr colSpaceTypeTotArea(1); + int constexpr colSpaceTypeCondArea(2); + int constexpr colSpaceTypeUncondArea(3); + int constexpr colSpaceTypeNotTotArea(4); + int constexpr colSpaceTypeLighting(5); + int constexpr colSpaceTypePeople(6); + int constexpr colSpaceTypePlugProcess(7); + EPVector spaceTypeTotArea; + EPVector spaceTypeCondArea; + EPVector spaceTypeUncondArea; + EPVector spaceTypeNotTotArea; + EPVector spaceTypeTotLighting; + EPVector spaceTypeTotPeople; + EPVector spaceTypeTotPlugProcess; + spaceTypeTotArea.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeCondArea.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeUncondArea.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeNotTotArea.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeTotLighting.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeTotPeople.allocate(state.dataGlobal->numSpaceTypes); + spaceTypeTotPlugProcess.allocate(state.dataGlobal->numSpaceTypes); + for (int iSpaceType = 1; iSpaceType <= state.dataGlobal->numSpaceTypes; ++iSpaceType) { + spaceTypeTotArea(iSpaceType) = 0.0; + spaceTypeCondArea(iSpaceType) = 0.0; + spaceTypeUncondArea(iSpaceType) = 0.0; + spaceTypeNotTotArea(iSpaceType) = 0.0; + spaceTypeTotLighting(iSpaceType) = 0.0; + spaceTypeTotPeople(iSpaceType) = 0.0; + spaceTypeTotPlugProcess(iSpaceType) = 0.0; + } + + // Accumulate internal gain totals by space and space type + for (int iPeople = 1; iPeople <= state.dataHeatBal->TotPeople; ++iPeople) { + auto curPeople = state.dataHeatBal->People(iPeople); + for (int iSpace = 1; iSpace <= int(curPeople.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curPeople.SpacePtrs(iSpace); + Real64 const people = curPeople.NumberOfPeople * curPeople.SpaceFracs(iSpace); + spaceTotPeople(spaceNum) += people; + spaceTypeTotPeople(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += people; + } + } + for (int iLights = 1; iLights <= state.dataHeatBal->TotLights; ++iLights) { + auto curLighting = state.dataHeatBal->Lights(iLights); + for (int iSpace = 1; iSpace <= int(curLighting.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curLighting.SpacePtrs(iSpace); + Real64 const lighting = curLighting.DesignLevel * curLighting.SpaceFracs(iSpace); + spaceTotLighting(spaceNum) += lighting; + spaceTypeTotLighting(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += lighting; + } + } + for (int iElecEquip = 1; iElecEquip <= state.dataHeatBal->TotElecEquip; ++iElecEquip) { + auto curElecEquip = state.dataHeatBal->ZoneElectric(iElecEquip); + for (int iSpace = 1; iSpace <= int(curElecEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curElecEquip.SpacePtrs(iSpace); + Real64 const elecEquip = curElecEquip.DesignLevel * curElecEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += elecEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += elecEquip; + } + } + for (int iGasEquip = 1; iGasEquip <= state.dataHeatBal->TotGasEquip; ++iGasEquip) { + auto curGasEquip = state.dataHeatBal->ZoneGas(iGasEquip); + for (int iSpace = 1; iSpace <= int(curGasEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curGasEquip.SpacePtrs(iSpace); + Real64 const gasEquip = curGasEquip.DesignLevel * curGasEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += gasEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += gasEquip; + } + } + for (int iOthEquip = 1; iOthEquip <= state.dataHeatBal->TotOthEquip; ++iOthEquip) { + auto curOthEquip = state.dataHeatBal->ZoneOtherEq(iOthEquip); + for (int iSpace = 1; iSpace <= int(curOthEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curOthEquip.SpacePtrs(iSpace); + Real64 const othEquip = curOthEquip.DesignLevel * curOthEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += othEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += othEquip; + } + } + for (int iHWEquip = 1; iHWEquip <= state.dataHeatBal->TotHWEquip; ++iHWEquip) { + auto curHWEquip = state.dataHeatBal->ZoneHWEq(iHWEquip); + for (int iSpace = 1; iSpace <= int(curHWEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curHWEquip.SpacePtrs(iSpace); + Real64 const hwEquip = curHWEquip.DesignLevel * curHWEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += hwEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += hwEquip; + } + } + for (int iSteamEquip = 1; iSteamEquip <= state.dataHeatBal->TotStmEquip; ++iSteamEquip) { + auto curSteamEquip = state.dataHeatBal->ZoneSteamEq(iSteamEquip); + for (int iSpace = 1; iSpace <= int(curSteamEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curSteamEquip.SpacePtrs(iSpace); + Real64 const steamEquip = curSteamEquip.DesignLevel * curSteamEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += steamEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += steamEquip; + } + } + for (int iITEquip = 1; iITEquip <= state.dataHeatBal->NumZoneITEqStatements; ++iITEquip) { + auto curITEquip = state.dataHeatBal->ZoneITEq(iITEquip); + for (int iSpace = 1; iSpace <= int(curITEquip.SpacePtrs.size()); ++iSpace) { + int const spaceNum = curITEquip.SpacePtrs(iSpace); + Real64 const itEquip = curITEquip.DesignTotalPower * curITEquip.SpaceFracs(iSpace); + spaceTotPlugProcess(spaceNum) += itEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += itEquip; + } + } + + for (int iTotal = 1; iTotal <= 4; ++iTotal) { + state.dataOutRptTab->zstArea(iTotal) = 0.0; + state.dataOutRptTab->zstLight(iTotal) = 0.0; + state.dataOutRptTab->zstPlug(iTotal) = 0.0; + state.dataOutRptTab->zstArea(iTotal) = 0.0; + } + + int spaceTableRowNum = 0; + for (int iZone = 1; iZone <= state.dataGlobal->NumOfZones; ++iZone) { + auto curZone = state.dataHeatBal->Zone(iZone); + Real64 const mult = Real64(curZone.Multiplier * curZone.ListMultiplier); + for (int const spaceNum : curZone.Spaces) { + auto curSpace = state.dataHeatBal->Space(spaceNum); + bool spaceIsCond = false; + bool useSpaceFloorArea = false; + ++spaceTableRowNum; + spaceRowHead(spaceTableRowNum) = curSpace.Name; + spaceTableBody(colZoneName, spaceTableRowNum) = curZone.Name; + spaceTableBody(colSpaceType, spaceTableRowNum) = curSpace.SpaceType; + spaceTableBody(colSpaceArea, spaceTableRowNum) = RealToStr(curSpace.FloorArea * state.dataOutRptTab->m2_unitConvWVST, 2); + // Conditioned or not + if (curZone.SystemZoneNodeNumber > 0) { + spaceTableBody(colConditioned, spaceTableRowNum) = "Yes"; + spaceIsCond = true; + } else { + spaceTableBody(colConditioned, spaceTableRowNum) = "No"; + spaceIsCond = false; + } + // Part of Total Floor Area or not + if (curZone.isPartOfTotalArea) { + spaceTableBody(colPartOfTotal, spaceTableRowNum) = "Yes"; + useSpaceFloorArea = true; + } else { + spaceTableBody(colPartOfTotal, spaceTableRowNum) = "No"; + useSpaceFloorArea = false; + } + // lighting density + spaceTableBody(colMultipliers, spaceTableRowNum) = RealToStr(mult, 2); + if (curSpace.FloorArea > 0) { + spaceTableBody(colSpaceLighting, spaceTableRowNum) = + RealToStr(state.dataOutRptTab->Wm2_unitConv * spaceTotLighting(spaceNum) / curSpace.FloorArea, 4); + } else { + spaceTableBody(colSpaceLighting, spaceTableRowNum) = RealToStr(0.0, 4); + } + // people density + if (spaceTotPeople(spaceNum) > 0) { + spaceTableBody(colSpacePeople, spaceTableRowNum) = + RealToStr(curSpace.FloorArea * state.dataOutRptTab->m2_unitConvWVST / spaceTotPeople(spaceNum), 2); + } else { + spaceTableBody(colSpacePeople, spaceTableRowNum) = RealToStr(0.0, 2); + } + // plug and process density + if (curSpace.FloorArea > 0) { + spaceTableBody(colSpacePlugProcess, spaceTableRowNum) = + RealToStr(spaceTotPlugProcess(spaceNum) * state.dataOutRptTab->Wm2_unitConv / curSpace.FloorArea, 4); + } else { + spaceTableBody(colSpacePlugProcess, spaceTableRowNum) = RealToStr(0.0, 4); + } + + // If not part of total, goes directly to this row + if (!useSpaceFloorArea) { + spaceTypeNotTotArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->notpartTotal) += mult * curSpace.FloorArea; + state.dataOutRptTab->zstLight(state.dataOutRptTab->notpartTotal) += mult * spaceTotLighting(spaceNum); + state.dataOutRptTab->zstPeople(state.dataOutRptTab->notpartTotal) += mult * spaceTotPeople(spaceNum); + state.dataOutRptTab->zstPlug(state.dataOutRptTab->notpartTotal) += mult * spaceTotPlugProcess(spaceNum); + } else { + // Add it to the 'Total' + spaceTypeTotArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->grandTotal) += mult * curSpace.FloorArea; + state.dataOutRptTab->zstLight(state.dataOutRptTab->grandTotal) += mult * spaceTotLighting(spaceNum); + state.dataOutRptTab->zstPeople(state.dataOutRptTab->grandTotal) += mult * spaceTotPeople(spaceNum); + state.dataOutRptTab->zstPlug(state.dataOutRptTab->grandTotal) += mult * spaceTotPlugProcess(spaceNum); + + // Subtotal between cond/unconditioned + if (spaceIsCond) { + spaceTypeCondArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->condTotal) += mult * curSpace.FloorArea; + state.dataOutRptTab->zstLight(state.dataOutRptTab->condTotal) += mult * spaceTotLighting(spaceNum); + state.dataOutRptTab->zstPeople(state.dataOutRptTab->condTotal) += mult * spaceTotPeople(spaceNum); + state.dataOutRptTab->zstPlug(state.dataOutRptTab->condTotal) += mult * spaceTotPlugProcess(spaceNum); + } else if (!spaceIsCond) { + spaceTypeUncondArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->uncondTotal) += mult * curSpace.FloorArea; + state.dataOutRptTab->zstLight(state.dataOutRptTab->uncondTotal) += mult * spaceTotLighting(spaceNum); + state.dataOutRptTab->zstPeople(state.dataOutRptTab->uncondTotal) += mult * spaceTotPeople(spaceNum); + state.dataOutRptTab->zstPlug(state.dataOutRptTab->uncondTotal) += mult * spaceTotPlugProcess(spaceNum); + } + } + } + } + // total rows for Total / Not Part of Total + // In "Total": break between conditioned/unconditioned + for (int iTotal = 1; iTotal <= 4; ++iTotal) { + spaceTableBody(colSpaceArea, state.dataGlobal->numSpaces + iTotal) = + RealToStr(state.dataOutRptTab->zstArea(iTotal) * state.dataOutRptTab->m2_unitConvWVST, 2); + if (state.dataOutRptTab->zstArea(iTotal) != 0) { + spaceTableBody(colSpaceLighting, state.dataGlobal->numSpaces + iTotal) = + RealToStr(state.dataOutRptTab->zstLight(iTotal) * state.dataOutRptTab->Wm2_unitConv / state.dataOutRptTab->zstArea(iTotal), 4); + spaceTableBody(colSpacePlugProcess, state.dataGlobal->numSpaces + iTotal) = + RealToStr(state.dataOutRptTab->zstPlug(iTotal) * state.dataOutRptTab->Wm2_unitConv / state.dataOutRptTab->zstArea(iTotal), 4); + } else { + spaceTableBody(colSpaceLighting, state.dataGlobal->numSpaces + iTotal) = RealToStr(0.0, 4); + spaceTableBody(colSpacePlugProcess, state.dataGlobal->numSpaces + iTotal) = RealToStr(0.0, 4); + } + if (state.dataOutRptTab->zstPeople(iTotal) != 0) { + spaceTableBody(colSpacePeople, state.dataGlobal->numSpaces + iTotal) = + RealToStr(state.dataOutRptTab->zstArea(iTotal) * state.dataOutRptTab->m2_unitConvWVST / state.dataOutRptTab->zstPeople(iTotal), 2); + } else { + spaceTableBody(colSpacePeople, state.dataGlobal->numSpaces + iTotal) = RealToStr(0.0, 2); + } + } + + Real64 totalArea = 0.0; + Real64 condArea = 0.0; + Real64 uncondArea = 0.0; + Real64 notTotalArea = 0.0; + for (int iSpaceType = 1; iSpaceType <= state.dataGlobal->numSpaceTypes; ++iSpaceType) { + spaceTypeRowHead(iSpaceType) = state.dataHeatBal->spaceTypes(iSpaceType); + spaceTypeTableBody(colSpaceTypeTotArea, iSpaceType) = RealToStr(spaceTypeTotArea(iSpaceType) * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeCondArea, iSpaceType) = RealToStr(spaceTypeCondArea(iSpaceType) * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeUncondArea, iSpaceType) = RealToStr(spaceTypeUncondArea(iSpaceType) * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeNotTotArea, iSpaceType) = RealToStr(spaceTypeNotTotArea(iSpaceType) * state.dataOutRptTab->m2_unitConvWVST, 2); + totalArea += spaceTypeTotArea(iSpaceType); + condArea += spaceTypeCondArea(iSpaceType); + uncondArea += spaceTypeUncondArea(iSpaceType); + notTotalArea += spaceTypeNotTotArea(iSpaceType); + // lighting density + if (spaceTypeTotArea(iSpaceType) > 0) { + spaceTypeTableBody(colSpaceTypeLighting, iSpaceType) = + RealToStr(state.dataOutRptTab->Wm2_unitConv * spaceTypeTotLighting(iSpaceType) / spaceTypeTotArea(iSpaceType), 4); + } else { + spaceTypeTableBody(colSpaceTypeLighting, iSpaceType) = RealToStr(0.0, 4); + } + // people density + if (spaceTypeTotPeople(iSpaceType) > 0) { + spaceTypeTableBody(colSpaceTypePeople, iSpaceType) = + RealToStr(spaceTypeTotArea(iSpaceType) * state.dataOutRptTab->m2_unitConvWVST / spaceTypeTotPeople(iSpaceType), 2); + } else { + spaceTypeTableBody(colSpaceTypePeople, iSpaceType) = RealToStr(0.0, 2); + } + // plug and process density + if (spaceTypeTotArea(iSpaceType) > 0) { + spaceTypeTableBody(colSpaceTypePlugProcess, iSpaceType) = + RealToStr(spaceTypeTotPlugProcess(iSpaceType) * state.dataOutRptTab->Wm2_unitConv / spaceTypeTotArea(iSpaceType), 4); + } else { + spaceTypeTableBody(colSpaceTypePlugProcess, iSpaceType) = RealToStr(0.0, 4); } } + // Total Area + spaceTypeTableBody(colSpaceTypeTotArea, state.dataGlobal->numSpaceTypes + 1) = RealToStr(totalArea * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeCondArea, state.dataGlobal->numSpaceTypes + 1) = RealToStr(condArea * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeUncondArea, state.dataGlobal->numSpaceTypes + 1) = RealToStr(uncondArea * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTypeTableBody(colSpaceTypeNotTotArea, state.dataGlobal->numSpaceTypes + 1) = + RealToStr(notTotalArea * state.dataOutRptTab->m2_unitConvWVST, 2); } void WriteAdaptiveComfortTable(EnergyPlusData &state) diff --git a/src/EnergyPlus/OutputReportTabular.hh b/src/EnergyPlus/OutputReportTabular.hh index 6e7a5a1e57f..4b39c464ab5 100644 --- a/src/EnergyPlus/OutputReportTabular.hh +++ b/src/EnergyPlus/OutputReportTabular.hh @@ -603,6 +603,12 @@ namespace OutputReportTabular { void WriteVeriSumTable(EnergyPlusData &state); + void gatherSpaceTables(EnergyPlusData &state, + Array1D_string &spaceRowHead, + Array1D_string &spaceTypeRowHead, + Array2D_string &spaceTableBody, + Array2D_string &spaceTypeTableBody); + void WriteAdaptiveComfortTable(EnergyPlusData &state); void WriteThermalResilienceTables(EnergyPlusData &state); From 9301c0a03fe364218191b8a29f5757d59e1ecc4e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sun, 1 Aug 2021 15:57:42 -0500 Subject: [PATCH 54/98] Space - example file --- testfiles/5ZoneAirCooledWithSimpleSpaces.idf | 3466 ++++++++++++++++++ testfiles/CMakeLists.txt | 1 + 2 files changed, 3467 insertions(+) create mode 100644 testfiles/5ZoneAirCooledWithSimpleSpaces.idf diff --git a/testfiles/5ZoneAirCooledWithSimpleSpaces.idf b/testfiles/5ZoneAirCooledWithSimpleSpaces.idf new file mode 100644 index 00000000000..4c3b831f813 --- /dev/null +++ b/testfiles/5ZoneAirCooledWithSimpleSpaces.idf @@ -0,0 +1,3466 @@ +!-Generator IDFEditor 1.51 +!-Option OriginalOrderTop UseSpecialFormat + +!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. +!- Use '!' comments if they need to be retained when using the IDFEditor. + +! 5ZoneAirCooled.idf +! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones and return plenum. +! +! Highlights: Electric chiller with air cooled condenser; autosized preheating and precooling water coils in the +! outside air stream controlled to preheat and precool setpoints. +! +! Simulation Location/Run: CHICAGO_IL_USA TMY2-94846, 2 design days, 2 run periods, +! Run Control executes the run periods using the weather file +! +! Location: Chicago, IL +! +! Design Days: CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C +! +! Run Period (Weather File): 1/1 through 12/31, CHICAGO_IL_USA TMY2-94846 +! +! Run Control: Zone and System sizing with weather file run control (no design days run) +! +! Building: Single floor rectangular building 100 ft x 50 ft. 5 zones - 4 exterior, 1 interior, zone height 8 feet. +! Exterior zone depth is 12 feet. There is a 2 foot high return plenum: the overall building height is +! 10 feet. There are windows on all 4 facades; the south and north facades have glass doors. +! The south facing glass is shaded by overhangs. The walls are woodshingle over plywood, R11 insulation, +! and gypboard. The roof is a gravel built up roof with R-3 mineral board insulation and plywood sheathing. +! The windows are of various single and double pane construction with 3mm and 6mm glass and either 6mm or +! 13mm argon or air gap. The window to wall ratio is approximately 0.29. +! The south wall and door have overhangs. +! +! The building is oriented 30 degrees east of north. +! +! Floor Area: 463.6 m2 (5000 ft2) +! Number of Stories: 1 +! +! Zone Description Details: +! +! (0,15.2,0) (30.5,15.2,0) +! _____ ________ ____ +! |\ *** **************** /| +! | \ / | +! | \ (26.8,11.6,0) / | +! * \_____________________________/ * +! * |(3.7,11.6,0) | * +! * | | * +! * | | * +! * | (26.8,3.7,0)| * +! * |___________________________| * +! * / (3.7,3.7,0) \ * +! | / \ | +! | / \ | +! |/___******************___***________\| +! | Overhang | | +! |_______________________| | window/door = * +! |___| +! +! (0,0,0) (30.5,0,0) +! +! Internal gains description: lighting is 1.5 watts/ft2, office equip is 1.0 watts/ft2. There is 1 occupant +! per 100 ft2 of floor area. The infiltration is 0.25 air changes per hour. +! +! Interzone Surfaces: 6 interzone surfaces (see diagram) +! Internal Mass: None +! People: 50 +! Lights: 7500 W +! Windows: 4 ea.: 1) Double pane clear, 3mm glass, 13mm air gap +! 2) Double pane clear, 3mm glass, 13mm argon gap +! 3) Double pane clear, 6mm glass, 6mm air gap +! 4) Double pane lowE, 6mm lowE glass outside, 6mm air gap, 6mm clear glass +! +! Doors: 2 ea.: Single pane grey, 3mm glass +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Compact Schedules: Yes +! +! HVAC: Standard VAV system with outside air, hot water reheat coils, +! central chilled water cooling coil. Central Plant is single hot water +! boiler, electric compression chiller with air cooled condenser. +! All equipment is autosized. HW and ChW coils are used in the outside air +! stream to precondition the outside air. +! +! Zonal Equipment: AirTerminal:SingleDuct:VAV:Reheat +! Central Air Handling Equipment: Yes +! System Equipment Autosize: Yes +! Purchased Cooling: None +! Purchased Heating: None +! Coils: Coil:Cooling:Water, Coil:Heating:Water +! Pumps: Pump:VariableSpeed +! Boilers: Boiler:HotWater +! Chillers: Chiller:Electric +! +! Results: +! Standard Reports: None +! Timestep or Hourly Variables: Hourly +! Time bins Report: None +! HTML Report: None +! Environmental Emissions: None +! Utility Tariffs: None +Version,9.6; + +Building, + Building, !- Name + 30., !- North Axis {deg} + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value {W} + 0.4, !- Temperature Convergence Tolerance Value {deltaC} + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +Timestep,4; +SurfaceConvectionAlgorithm:Inside,Simple; +SurfaceConvectionAlgorithm:Outside,SimpleCombined; +HeatBalanceAlgorithm,ConductionTransferFunction; + +GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + Relative; !- Coordinate System + +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 + Temperature; !- Unit Type + +ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + FlowRate, !- Name + 0.0, !- Lower Limit Value + 10, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +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 + Tuesday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +Site:Location, + CHICAGO_IL_USA TMY2-94846, !- Name + 41.78, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190.00; !- Elevation {m} + +SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + No, !- Run Simulation for Weather File Run Periods + No, !- Do HVAC Sizing Simulation for Sizing Periods + 1; !- Maximum Number of HVAC Sizing Simulation Passes + +! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C +SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.0; !- Sky Clearness + +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C +SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.5, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.0, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + +Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; + +Material, + WD10, !- Name + MediumSmooth, !- Roughness + 0.667, !- Thickness {m} + 0.115, !- Conductivity {W/m-K} + 513, !- Density {kg/m3} + 1381, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + +Material, + RG01, !- Name + Rough, !- Roughness + 1.2700000E-02, !- Thickness {m} + 1.442000, !- Conductivity {W/m-K} + 881.0000, !- Density {kg/m3} + 1674.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + +Material, + BR01, !- Name + VeryRough, !- Roughness + 9.4999997E-03, !- Thickness {m} + 0.1620000, !- Conductivity {W/m-K} + 1121.000, !- Density {kg/m3} + 1464.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + +Material, + IN46, !- Name + VeryRough, !- Roughness + 7.6200001E-02, !- Thickness {m} + 2.3000000E-02, !- Conductivity {W/m-K} + 24.00000, !- Density {kg/m3} + 1590.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.5000000, !- Solar Absorptance + 0.5000000; !- Visible Absorptance + +Material, + WD01, !- Name + MediumSmooth, !- Roughness + 1.9099999E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 513.0000, !- Density {kg/m3} + 1381.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + +Material, + PW03, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 545.0000, !- Density {kg/m3} + 1213.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + +Material, + IN02, !- Name + Rough, !- Roughness + 9.0099998E-02, !- Thickness {m} + 4.3000001E-02, !- Conductivity {W/m-K} + 10.00000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + +Material, + GP01, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + +Material, + GP02, !- Name + MediumSmooth, !- Roughness + 1.5900001E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + +Material, + CC03, !- Name + MediumRough, !- Roughness + 0.1016000, !- Thickness {m} + 1.310000, !- Conductivity {W/m-K} + 2243.000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + +Material:NoMass, + CP01, !- Name + Rough, !- Roughness + 0.3670000, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + +Material:NoMass, + MAT-CLNG-1, !- Name + Rough, !- Roughness + 0.652259290, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + +Material:AirGap, + AL21, !- Name + 0.1570000; !- Thermal Resistance {m2-K/W} + +Material:AirGap, + AL23, !- Name + 0.1530000; !- Thermal Resistance {m2-K/W} + +Construction, + ROOF-1, !- Name + RG01, !- Outside Layer + BR01, !- Layer 2 + IN46, !- Layer 3 + WD01; !- Layer 4 + +Construction, + WALL-1, !- Name + WD01, !- Outside Layer + PW03, !- Layer 2 + IN02, !- Layer 3 + GP01; !- Layer 4 + +Construction, + CLNG-1, !- Name + MAT-CLNG-1; !- Outside Layer + +Construction, + FLOOR-SLAB-1, !- Name + CC03; !- Outside Layer + +Construction, + INT-WALL-1, !- Name + GP02, !- Outside Layer + AL21, !- Layer 2 + GP02; !- Layer 3 + +WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + +WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- 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 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.626, !- Solar Transmittance at Normal Incidence + 0.061, !- Front Side Solar Reflectance at Normal Incidence + 0.061, !- Back Side Solar Reflectance at Normal Incidence + 0.611, !- Visible Transmittance at Normal Incidence + 0.061, !- Front Side Visible Reflectance at Normal Incidence + 0.061, !- 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} + +Construction, + Dbl Clr 3mm/13mm Air, !- Name + CLEAR 3MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +Construction, + Sgl Grey 3mm, !- Name + GREY 3MM; !- Outside Layer + +Schedule:Compact, + OCCUPY-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00, 0.0, !- Field 4 + Until: 11:00, 1.00, !- Field 6 + Until: 12:00, 0.80, !- Field 8 + Until: 13:00, 0.40, !- Field 10 + Until: 14:00, 0.80, !- Field 12 + Until: 18:00, 1.00, !- Field 14 + Until: 19:00, 0.50, !- Field 16 + Until: 24:00, 0.0, !- Field 18 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00, 0.0; !- Field 21 + +Schedule:Compact, + LIGHTS-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00, 0.05, !- Field 4 + Until: 9:00, 0.9, !- Field 6 + Until: 10:00, 0.95, !- Field 8 + Until: 11:00, 1.00, !- Field 10 + Until: 12:00, 0.95, !- Field 12 + Until: 13:00, 0.8, !- Field 14 + Until: 14:00, 0.9, !- Field 16 + Until: 18:00, 1.00, !- Field 18 + Until: 19:00, 0.60, !- Field 20 + Until: 21:00, 0.20, !- Field 22 + Until: 24:00, 0.05, !- Field 24 + For: Weekends WinterDesignDay Holiday, !- Field 25 + Until: 24:00, 0.05; !- Field 27 + +Schedule:Compact, + EQUIP-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00, 0.02, !- Field 4 + Until: 9:00, 0.4, !- Field 6 + Until: 14:00, 0.9, !- Field 8 + Until: 15:00, 0.8, !- Field 10 + Until: 16:00, 0.7, !- Field 12 + Until: 18:00, 0.5, !- Field 14 + Until: 20:00, 0.3, !- Field 16 + Until: 24:00, 0.02, !- Field 18 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00, 0.2; !- Field 21 + +Schedule:Compact, + INFIL-SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 1.0, !- Field 4 + Through: 10/31, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00, 0.0, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, 1.0; !- Field 12 + +Schedule:Compact, + ActSchd, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 117.239997864; + !- Field 4 + +Schedule:Compact, + ShadeTransSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 0.0; !- Field 4 + +Space, + Space 1, !- Name + SPACE1-1, !- Zone Name + , !- Floor Area {m2} + Office, !- Space Type + Abc, !- Tag 1 + 123; !- Tag 2 + +Space, + Space 2, !- Name + SPACE2-1, !- Zone Name + , !- Floor Area {m2} + Reception, !- Space Type + 456, !- Tag 1 + DEF, !- Tag 2 + Nonsense; !- Tag 3 + +Space, + Space 3, !- Name + SPACE3-1, !- Zone Name + , !- Floor Area {m2} + Office; !- Space Type + +Space, + Space 4, !- Name + SPACE4-1, !- Zone Name + , !- Floor Area {m2} + Office; !- Space Type + +Space, + Space 5, !- Name + SPACE5-1, !- Zone Name + , !- Floor Area {m2} + Office; !- Space Type + +SpaceList, + AllConditionedSpaces, !- Name + Space 1, !- Space 1 Name + Space 2, !- Space 2 Name + Space 3, !- Space 3 Name + Space 4, !- Space 4 Name + Space 5; !- Space 5 Name + +Zone, + PLENUM-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 0.609600067, !- Ceiling Height {m} + 283.2, !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +BuildingSurface:Detailed, + WALL-1PF, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 0.0, 3.0, !- X,Y,Z 1 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 2 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 3 {m} + 30.5, 0.0, 3.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + WALL-1PR, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 0.0, 3.0, !- X,Y,Z 1 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 2 {m} + 30.5, 15.2, 2.4, !- X,Y,Z 3 {m} + 30.5, 15.2, 3.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + WALL-1PB, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 15.2, 3.0, !- X,Y,Z 1 {m} + 30.5, 15.2, 2.4, !- X,Y,Z 2 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 3 {m} + 0.0, 15.2, 3.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + WALL-1PL, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 15.2, 3.0, !- X,Y,Z 1 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 2 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 3 {m} + 0.0, 0.0, 3.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + TOP-1, !- Name + ROOF, !- Surface Type + ROOF-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.00000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 15.2, 3.0, !- X,Y,Z 1 {m} + 0.0, 0.0, 3.0, !- X,Y,Z 2 {m} + 30.5, 0.0, 3.0, !- X,Y,Z 3 {m} + 30.5, 15.2, 3.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C1-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C1-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 2.4, !- X,Y,Z 1 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 2 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 3 {m} + 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C2-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C2-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 30.5, 15.2, 2.4, !- X,Y,Z 2 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 3 {m} + 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C3-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C3-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 3.7, 11.6, 2.4, !- X,Y,Z 2 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 3 {m} + 30.5, 15.2, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C4-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C4-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 2.4, !- X,Y,Z 1 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 2 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 3 {m} + 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C5-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C5-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 26.8, 3.7, 2.4, !- X,Y,Z 2 {m} + 3.7, 3.7, 2.4, !- X,Y,Z 3 {m} + 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} + +Zone, + SPACE1-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + +ZoneInfiltration:DesignFlowRate, + SPACE1-1 Infil 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- 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} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +People, + SPACE1-1 People 1, !- Name + SPACE1-1, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + +Lights, + SPACE1-1 Lights 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + +ElectricEquipment, + SPACE1-1 ElecEq 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + +BuildingSurface:Detailed, + FRONT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 0.0, 2.4, !- X,Y,Z 1 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 2 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 3 {m} + 30.5, 0.0, 2.4; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + WF-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 3.0, 0.0, 2.1, !- X,Y,Z 1 {m} + 3.0, 0.0, 0.9, !- X,Y,Z 2 {m} + 16.8, 0.0, 0.9, !- X,Y,Z 3 {m} + 16.8, 0.0, 2.1; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + DF-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.3, 0.0, 2.1, !- X,Y,Z 1 {m} + 21.3, 0.0, 0.0, !- X,Y,Z 2 {m} + 23.8, 0.0, 0.0, !- X,Y,Z 3 {m} + 23.8, 0.0, 2.1; !- X,Y,Z 4 {m} + +Shading:Zone:Detailed, + Main South Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 0.0, -1.3, 2.2, !- X,Y,Z 1 {m} + 0.0, 0.0, 2.2, !- X,Y,Z 2 {m} + 19.8, 0.0, 2.2, !- X,Y,Z 3 {m} + 19.8, -1.3, 2.2; !- X,Y,Z 4 {m} + +Shading:Zone:Detailed, + South Door Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 21.0, -2.0, 2.6, !- X,Y,Z 1 {m} + 21.0, 0.0, 2.6, !- X,Y,Z 2 {m} + 24.1, 0.0, 2.6, !- X,Y,Z 3 {m} + 24.1, -2.0, 2.6; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C1-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C1-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 2.4, !- X,Y,Z 1 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 2 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 3 {m} + 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F1-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 0.0, !- X,Y,Z 1 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 2 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 3 {m} + 3.7, 3.7, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB12, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB21, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 0.0, 2.4, !- X,Y,Z 1 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 2 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 3 {m} + 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB14, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB41, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 2.4, !- X,Y,Z 1 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 2 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 3 {m} + 0.0, 0.0, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB15, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB51, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 2.4, !- X,Y,Z 1 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 2 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 3 {m} + 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} + +Zone, + SPACE2-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + +ZoneInfiltration:DesignFlowRate, + SPACE2-1 Infil 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- 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} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +People, + SPACE2-1 People 1, !- Name + SPACE2-1, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + +Lights, + SPACE2-1 Lights 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + +ElectricEquipment, + SPACE2-1 ElecEq 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + +BuildingSurface:Detailed, + RIGHT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 0.0, 2.4, !- X,Y,Z 1 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 2 {m} + 30.5, 15.2, 0.0, !- X,Y,Z 3 {m} + 30.5, 15.2, 2.4; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + WR-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + RIGHT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 30.5, 3.8, 2.1, !- X,Y,Z 1 {m} + 30.5, 3.8, 0.9, !- X,Y,Z 2 {m} + 30.5, 11.4, 0.9, !- X,Y,Z 3 {m} + 30.5, 11.4, 2.1; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C2-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C2-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 2.4, !- X,Y,Z 1 {m} + 30.5, 0.0, 2.4, !- X,Y,Z 2 {m} + 30.5, 15.2, 2.4, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F2-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 0.0, !- X,Y,Z 1 {m} + 30.5, 15.2, 0.0, !- X,Y,Z 2 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 3 {m} + 26.8, 3.7, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB21, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 2.4, !- X,Y,Z 1 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 2 {m} + 30.5, 0.0, 0.0, !- X,Y,Z 3 {m} + 30.5, 0.0, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB23, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB32, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 15.2, 2.4, !- X,Y,Z 1 {m} + 30.5, 15.2, 0.0, !- X,Y,Z 2 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB25, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB52, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 2 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 3 {m} + 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} + +Zone, + SPACE3-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + +ZoneInfiltration:DesignFlowRate, + SPACE3-1 Infil 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- 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} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +People, + SPACE3-1 People 1, !- Name + SPACE3-1, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + +Lights, + SPACE3-1 Lights 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + +ElectricEquipment, + SPACE3-1 ElecEq 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + +BuildingSurface:Detailed, + BACK-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 15.2, 2.4, !- X,Y,Z 1 {m} + 30.5, 15.2, 0.0, !- X,Y,Z 2 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 3 {m} + 0.0, 15.2, 2.4; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + WB-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.4, 15.2, 2.1, !- X,Y,Z 1 {m} + 27.4, 15.2, 0.9, !- X,Y,Z 2 {m} + 13.7, 15.2, 0.9, !- X,Y,Z 3 {m} + 13.7, 15.2, 2.1; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + DB-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 9.1, 15.2, 2.1, !- X,Y,Z 1 {m} + 9.1, 15.2, 0.0, !- X,Y,Z 2 {m} + 7.0, 15.2, 0.0, !- X,Y,Z 3 {m} + 7.0, 15.2, 2.1; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C3-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C3-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5, 15.2, 2.4, !- X,Y,Z 1 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 2 {m} + 3.7, 11.6, 2.4, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F3-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 0.0, !- X,Y,Z 1 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 2 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 3 {m} + 30.5, 15.2, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB32, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB23, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 2 {m} + 30.5, 15.2, 0.0, !- X,Y,Z 3 {m} + 30.5, 15.2, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB34, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB43, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 15.2, 2.4, !- X,Y,Z 1 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 2 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 3 {m} + 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB35, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB53, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 11.6, 2.4, !- X,Y,Z 1 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 2 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +Zone, + SPACE4-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + +ZoneInfiltration:DesignFlowRate, + SPACE4-1 Infil 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- 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} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +People, + SPACE4-1 People 1, !- Name + SPACE4-1, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + +Lights, + SPACE4-1 Lights 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + +ElectricEquipment, + SPACE4-1 ElecEq 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + +BuildingSurface:Detailed, + LEFT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 15.2, 2.4, !- X,Y,Z 1 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 2 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 3 {m} + 0.0, 0.0, 2.4; !- X,Y,Z 4 {m} + +FenestrationSurface:Detailed, + WL-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + LEFT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 0.0, 11.4, 2.1, !- X,Y,Z 1 {m} + 0.0, 11.4, 0.9, !- X,Y,Z 2 {m} + 0.0, 3.8, 0.9, !- X,Y,Z 3 {m} + 0.0, 3.8, 2.1; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + C4-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C4-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 11.6, 2.4, !- X,Y,Z 1 {m} + 0.0, 15.2, 2.4, !- X,Y,Z 2 {m} + 0.0, 0.0, 2.4, !- X,Y,Z 3 {m} + 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F4-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 0.0, !- X,Y,Z 1 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 2 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 3 {m} + 3.7, 11.6, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB41, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB14, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0, 0.0, 2.4, !- X,Y,Z 1 {m} + 0.0, 0.0, 0.0, !- X,Y,Z 2 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 3 {m} + 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB43, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB34, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 11.6, 2.4, !- X,Y,Z 1 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 2 {m} + 0.0, 15.2, 0.0, !- X,Y,Z 3 {m} + 0.0, 15.2, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB45, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB54, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 2.4, !- X,Y,Z 1 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 2 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 3 {m} + 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} + +Zone, + SPACE5-1, !- Name + 0, !- Direction of Relative North {deg} + 0, 0, 0, !- X,Y,Z {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 447.682556152; !- Volume {m3} + +ZoneInfiltration:DesignFlowRate, + SPACE5-1 Infil 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.062, !- 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} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +People, + SPACE5-1 People 1, !- Name + SPACE5-1, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 20, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + +Lights, + SPACE5-1 Lights 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 2964, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + +ElectricEquipment, + SPACE5-1 ElecEq 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1976, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + +BuildingSurface:Detailed, + C5-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + C5-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 11.6, 2.4, !- X,Y,Z 1 {m} + 3.7, 3.7, 2.4, !- X,Y,Z 2 {m} + 26.8, 3.7, 2.4, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F5-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 0.0, !- X,Y,Z 1 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 2 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 3 {m} + 3.7, 11.6, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB51, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB15, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 3.7, 2.4, !- X,Y,Z 1 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 2 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 3 {m} + 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB52, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB25, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 3.7, 2.4, !- X,Y,Z 1 {m} + 26.8, 3.7, 0.0, !- X,Y,Z 2 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 3 {m} + 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB53, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB35, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8, 11.6, 2.4, !- X,Y,Z 1 {m} + 26.8, 11.6, 0.0, !- X,Y,Z 2 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 3 {m} + 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + SB54, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + SB45, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7, 11.6, 2.4, !- X,Y,Z 1 {m} + 3.7, 11.6, 0.0, !- X,Y,Z 2 {m} + 3.7, 3.7, 0.0, !- X,Y,Z 3 {m} + 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} + +Sizing:Parameters, + 1.0, !- Heating Sizing Factor + 1.0; !- Cooling Sizing Factor + +Sizing:Zone, + SPACE1-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE1-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 + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- 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 SPACE1-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +Sizing:Zone, + SPACE2-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE2-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 + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- 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 SPACE2-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +Sizing:Zone, + SPACE3-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE3-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 + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- 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 SPACE3-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +Sizing:Zone, + SPACE4-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE4-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 + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- 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 SPACE4-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +Sizing:Zone, + SPACE5-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE5-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 + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- 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 SPACE5-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +Sizing:System, + VAV Sys 1, !- AirLoop Name + sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 4.5, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 11.0, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + noncoincident, !- Type of Zone Sum to Use + no, !- 100% Outdoor Air in Cooling + no, !- 100% Outdoor Air in Heating + 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate {m3/s} + , !- 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, !- 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} + , !- 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 + VAV; !- Central Cooling Capacity Control Method + +Sizing:Plant, + Hot Water Loop, !- Plant or Condenser Loop Name + heating, !- Loop Type + 82., !- Design Loop Exit Temperature {C} + 11; !- Loop Design Temperature Difference {deltaC} + +Sizing:Plant, + Chilled Water Loop, !- Plant or Condenser Loop Name + cooling, !- Loop Type + 7.00, !- Design Loop Exit Temperature {C} + 4.00; !- Loop Design Temperature Difference {deltaC} + +Schedule:Compact, + Htg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00, 16.7, !- Field 4 + For: WinterDesignDay, !- Field 5 + Until: 24:00, 22.2, !- Field 7 + For: WeekDays, !- Field 8 + Until: 6:00, 16.7, !- Field 10 + Until: 20:00, 22.2, !- Field 12 + Until: 24:00, 16.7, !- Field 14 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00, 16.7, !- Field 17 + For: AllOtherDays, !- Field 18 + Until: 24:00, 16.7; !- Field 20 + +Schedule:Compact, + PlenumHtg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 12.8; !- Field 4 + +Schedule:Compact, + Clg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00, 23.9, !- Field 4 + For: WinterDesignDay, !- Field 5 + Until: 24:00, 29.4, !- Field 7 + For: WeekDays, !- Field 8 + Until: 6:00, 29.4, !- Field 10 + Until: 20:00, 23.9, !- Field 12 + Until: 24:00, 29.4, !- Field 14 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00, 29.4, !- Field 17 + For: AllOtherDays, !- Field 18 + Until: 24:00, 29.4; !- Field 20 + +Schedule:Compact, + PlenumClg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 40.0; !- Field 4 + +Schedule:Compact, + Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00, 2, !- Field 4 + For: WinterDesignDay, !- Field 5 + Until: 24:00, 1, !- Field 7 + For: AllOtherDays, !- Field 8 + Until: 24:00, 4; !- Field 10 + +Schedule:Compact, + Min OA Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 6:00, 0.02, !- Field 4 + Until: 20:00, 1.0, !- Field 6 + Until: 24:00, 0.02, !- Field 8 + For: AllOtherDays, !- Field 9 + Until: 24:00, 0.02; !- Field 11 + +Schedule:Compact, + FanAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 1.0, !- Field 4 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00, 0.0, !- Field 8 + Until: 20:00, 1.0, !- Field 10 + Until: 24:00, 0.0, !- Field 12 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00, 1.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, 0.0, !- Field 18 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00, 1.0; !- Field 22 + +Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays, !- Field 2 + Until: 6:00, 0.0, !- Field 4 + Until: 20:00, 1.0, !- Field 6 + Until: 24:00, 0.0, !- Field 8 + For: SummerDesignDay WinterDesignDay, !- Field 9 + Until: 24:00, 1.0, !- Field 11 + For: AllOtherDays, !- Field 12 + Until: 24:00, 0.0; !- Field 14 + +Schedule:Compact, + CoolingPumpAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 1.0; !- Field 4 + +Schedule:Compact, + ReheatCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 1.0, !- Field 4 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00, 0.0, !- Field 8 + Until: 20:00, 1.0, !- Field 10 + Until: 24:00, 0.0, !- Field 12 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00, 1.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, 0.0, !- Field 18 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00, 1.0; !- Field 22 + +Schedule:Compact, + CW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 7.22; !- Field 4 + +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 4 + +Schedule:Compact, + PlantOnSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 1.0; !- Field 4 + +Schedule:Compact, + Seasonal Reset Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 16.0, !- Field 4 + Through: 9/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00, 13.0, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, 16.0; !- Field 12 + +Schedule:Compact, + OA Cooling Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 11.5; !- Field 4 + +Schedule:Compact, + OA Heating Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, 4.5; !- Field 4 + +OutdoorAir:NodeList, + OutsideAirInletNodes; !- Node or NodeList Name 1 + +NodeList, + OutsideAirInletNodes, !- Name + Outside Air Inlet Node 1;!- Node 1 Name + +ZoneHVAC:EquipmentConnections, + SPACE1-1, !- Zone Name + SPACE1-1 Eq, !- Zone Conditioning Equipment List Name + SPACE1-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE1-1 Node, !- Zone Air Node Name + SPACE1-1 Out Node; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + SPACE2-1, !- Zone Name + SPACE2-1 Eq, !- Zone Conditioning Equipment List Name + SPACE2-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE2-1 Node, !- Zone Air Node Name + SPACE2-1 Out Node; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + SPACE3-1, !- Zone Name + SPACE3-1 Eq, !- Zone Conditioning Equipment List Name + SPACE3-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE3-1 Node, !- Zone Air Node Name + SPACE3-1 Out Node; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + SPACE4-1, !- Zone Name + SPACE4-1 Eq, !- Zone Conditioning Equipment List Name + SPACE4-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE4-1 Node, !- Zone Air Node Name + SPACE4-1 Out Node; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + SPACE5-1, !- Zone Name + SPACE5-1 Eq, !- Zone Conditioning Equipment List Name + SPACE5-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE5-1 Node, !- Zone Air Node Name + SPACE5-1 Out Node; !- Zone Return Air Node or NodeList Name + +ZoneControl:Thermostat, + SPACE1-1 Control, !- Name + SPACE1-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + +ZoneControl:Thermostat, + SPACE2-1 Control, !- Name + SPACE2-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + +ZoneControl:Thermostat, + SPACE3-1 Control, !- Name + SPACE3-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + +ZoneControl:Thermostat, + SPACE4-1 Control, !- Name + SPACE4-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + +ZoneControl:Thermostat, + SPACE5-1 Control, !- Name + SPACE5-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + +ThermostatSetpoint:SingleHeating, + HeatingSetpoint, !- Name + Htg-SetP-Sch; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + CoolingSetpoint, !- Name + Clg-SetP-Sch; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleHeating, + PlenumHeatingSetpoint, !- Name + PlenumHtg-SetP-Sch; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + PlenumCoolingSetpoint, !- Name + PlenumClg-SetP-Sch; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + DualSetPoint, !- Name + Htg-SetP-Sch, !- Heating Setpoint Temperature Schedule Name + Clg-SetP-Sch; !- Cooling Setpoint Temperature Schedule Name + +ZoneHVAC:EquipmentList, + SPACE1-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE1-1 ATU, !- 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, + SPACE2-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE2-1 ATU, !- 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, + SPACE3-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE3-1 ATU, !- 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, + SPACE4-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE4-1 ATU, !- 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, + SPACE5-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE5-1 ATU, !- 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, + SPACE1-1 ATU, !- Name + SPACE1-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE1-1 VAV Reheat; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + SPACE2-1 ATU, !- Name + SPACE2-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE2-1 VAV Reheat; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + SPACE3-1 ATU, !- Name + SPACE3-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE3-1 VAV Reheat; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + SPACE4-1 ATU, !- Name + SPACE4-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE4-1 VAV Reheat; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + SPACE5-1 ATU, !- Name + SPACE5-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE5-1 VAV Reheat; !- Air Terminal Name + +AirTerminal:SingleDuct:VAV:Reheat, + SPACE1-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE1-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE1-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE1-1 Zone 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} + SPACE1-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + SPACE2-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE2-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE2-1 Zone 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} + SPACE2-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + SPACE3-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE3-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE3-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE3-1 Zone 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} + SPACE3-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + SPACE4-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE4-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE4-1 Zone 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} + SPACE4-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + SPACE5-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE5-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE5-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE5-1 Zone 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} + SPACE5-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + +Coil:Heating:Water, + SPACE1-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE1-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE1-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE1-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE1-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Coil:Heating:Water, + SPACE2-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE2-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE2-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE2-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Coil:Heating:Water, + SPACE3-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE3-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE3-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE3-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE3-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Coil:Heating:Water, + SPACE4-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE4-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE4-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE4-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Coil:Heating:Water, + SPACE5-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE5-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE5-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE5-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE5-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +AirLoopHVAC:ReturnPath, + ReturnAirPath1, !- Name + PLENUM-1 Out Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + Return-Plenum-1; !- Component 1 Name + +AirLoopHVAC:ReturnPlenum, + Return-Plenum-1, !- Name + PLENUM-1, !- Zone Name + PLENUM-1 Node, !- Zone Node Name + PLENUM-1 Out Node, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + SPACE1-1 Out Node, !- Inlet 1 Node Name + SPACE2-1 Out Node, !- Inlet 2 Node Name + SPACE3-1 Out Node, !- Inlet 3 Node Name + SPACE4-1 Out Node, !- Inlet 4 Node Name + SPACE5-1 Out Node; !- Inlet 5 Node Name + +AirLoopHVAC:SupplyPath, + Zone Supply Air Path 1, !- Name + Zone Eq In Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Zone Supply Air Splitter 1; !- Component 1 Name + +AirLoopHVAC:ZoneSplitter, + Zone Supply Air Splitter 1, !- Name + Zone Eq In Node, !- Inlet Node Name + SPACE1-1 ATU In Node, !- Outlet 1 Node Name + SPACE2-1 ATU In Node, !- Outlet 2 Node Name + SPACE3-1 ATU In Node, !- Outlet 3 Node Name + SPACE4-1 ATU In Node, !- Outlet 4 Node Name + SPACE5-1 ATU In Node; !- Outlet 5 Node Name + +AirLoopHVAC, + VAV Sys 1, !- Name + VAV Sys 1 Controllers, !- Controller List Name + VAV Sys 1 Avail List, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + VAV Sys 1 Branches, !- Branch List Name + , !- Connector List Name + VAV Sys 1 Inlet Node, !- Supply Side Inlet Node Name + PLENUM-1 Out Node, !- Demand Side Outlet Node Name + Zone Eq In Node, !- Demand Side Inlet Node Names + VAV Sys 1 Outlet Node; !- Supply Side Outlet Node Names + +AirLoopHVAC:ControllerList, + VAV Sys 1 Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + Central Cooling Coil Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + Central Heating Coil Controller 1; !- Controller 2 Name + +AvailabilityManagerAssignmentList, + VAV Sys 1 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + VAV Sys 1 Avail; !- Availability Manager 1 Name + +AvailabilityManager:Scheduled, + VAV Sys 1 Avail, !- Name + FanAvailSched; !- Schedule Name + +BranchList, + VAV Sys 1 Branches, !- Name + VAV Sys 1 Main Branch; !- Branch 1 Name + +Branch, + VAV Sys 1 Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 1, !- Component 1 Name + VAV Sys 1 Inlet Node, !- Component 1 Inlet Node Name + Mixed Air Node 1, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + Main Cooling Coil 1, !- Component 2 Name + Mixed Air Node 1, !- Component 2 Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + Main Heating Coil 1, !- Component 3 Name + Main Cooling Coil 1 Outlet Node, !- Component 3 Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + Supply Fan 1, !- Component 4 Name + Main Heating Coil 1 Outlet Node, !- Component 4 Inlet Node Name + VAV Sys 1 Outlet Node; !- Component 4 Outlet Node Name + +AirLoopHVAC:OutdoorAirSystem, + OA Sys 1, !- Name + OA Sys 1 Controllers, !- Controller List Name + OA Sys 1 Equipment; !- Outdoor Air Equipment List Name + +AirLoopHVAC:ControllerList, + OA Sys 1 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + OA CC Controller 1, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + OA HC Controller 1; !- Controller 3 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 1 Equipment, !- Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + Coil:Cooling:Water, !- Component 2 Object Type + OA Cooling Coil 1, !- Component 2 Name + OutdoorAir:Mixer, !- Component 3 Object Type + OA Mixing Box 1; !- Component 3 Name + +Coil:Heating:Water, + OA Heating Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + OA Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Outside Air Inlet Node 1,!- Air Inlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Coil:Cooling:Water, + OA Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- 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} + OA Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Inlet Node Name + OA Mixing Box 1 Inlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + +OutdoorAir:Mixer, + OA Mixing Box 1, !- Name + Mixed Air Node 1, !- Mixed Air Node Name + OA Mixing Box 1 Inlet Node, !- Outdoor Air Stream Node Name + Relief Air Outlet Node 1,!- Relief Air Stream Node Name + VAV Sys 1 Inlet Node; !- Return Air Stream Node Name + +Coil:Cooling:Water, + Main Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- 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} + Main Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + Mixed Air Node 1, !- Air Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + +Coil:Heating:Water, + Main Heating Coil 1, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + Main Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + +Fan:VariableVolume, + Supply Fan 1, !- Name + FanAvailSched, !- Availability Schedule Name + 0.7, !- Fan Total Efficiency + 600.0, !- 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.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.35071223, !- Fan Power Coefficient 1 + 0.30850535, !- Fan Power Coefficient 2 + -0.54137364, !- Fan Power Coefficient 3 + 0.87198823, !- Fan Power Coefficient 4 + 0.000, !- Fan Power Coefficient 5 + Main Heating Coil 1 Outlet Node, !- Air Inlet Node Name + VAV Sys 1 Outlet Node; !- Air Outlet Node Name + +Controller:WaterCoil, + OA HC Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + OA Heating Coil 1 Air Outlet Node, !- Sensor Node Name + OA Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +Controller:WaterCoil, + OA CC Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + OA Mixing Box 1 Inlet Node, !- Sensor Node Name + OA Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +Controller:WaterCoil, + Central Cooling Coil Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + Main Cooling Coil 1 Outlet Node, !- Sensor Node Name + Main Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +Controller:OutdoorAir, + OA Controller 1, !- Name + Relief Air Outlet Node 1,!- Relief Air Outlet Node Name + VAV Sys 1 Inlet Node, !- Return Air Node Name + Mixed Air Node 1, !- Mixed Air Node Name + Outside Air Inlet Node 1,!- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 19., !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + 4.6, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Min OA Sched; !- Minimum Outdoor Air Schedule Name + +Controller:WaterCoil, + Central Heating Coil Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + Main Heating Coil 1 Outlet Node, !- Sensor Node Name + Main Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +SetpointManager:Scheduled, + Supply Air Temp Manager 1, !- Name + Temperature, !- Control Variable + Seasonal Reset Supply Air Temp Sch, !- Schedule Name + VAV Sys 1 Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + OA Air Temp Manager 1, !- Name + Temperature, !- Control Variable + OA Cooling Supply Air Temp Sch, !- Schedule Name + OA Mixing Box 1 Inlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + OA Air Temp Manager 2, !- Name + Temperature, !- Control Variable + OA Heating Supply Air Temp Sch, !- Schedule Name + OA Heating Coil 1 Air Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Mixed Air Temp Manager 1,!- Name + Temperature, !- Control Variable + VAV Sys 1 Outlet Node, !- Reference Setpoint Node Name + Main Heating Coil 1 Outlet Node, !- Fan Inlet Node Name + VAV Sys 1 Outlet Node, !- Fan Outlet Node Name + Main Branch SetPoint Node List; !- Setpoint Node or NodeList Name + +NodeList, + Main Branch SetPoint Node List, !- Name + Mixed Air Node 1, !- Node 1 Name + Main Cooling Coil 1 Outlet Node, !- Node 2 Name + Main Heating Coil 1 Outlet Node; !- Node 3 Name + +PlantLoop, + Hot Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Hot Loop Operation, !- Plant Equipment Operation Scheme Name + HW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + HW Supply Inlet Node, !- Plant Side Inlet Node Name + HW Supply Outlet Node, !- Plant Side Outlet Node Name + Heating Supply Side Branches, !- Plant Side Branch List Name + Heating Supply Side Connectors, !- Plant Side Connector List Name + HW Demand Inlet Node, !- Demand Side Inlet Node Name + HW Demand Outlet Node, !- Demand Side Outlet Node Name + Heating Demand Side Branches, !- Demand Side Branch List Name + Heating Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + +SetpointManager:Scheduled, + Hot Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + HW Supply Outlet Node; !- Setpoint Node or NodeList Name + +BranchList, + Heating Supply Side Branches, !- Name + Heating Supply Inlet Branch, !- Branch 1 Name + Central Boiler Branch, !- Branch 2 Name + Heating Supply Bypass Branch, !- Branch 3 Name + Heating Supply Outlet Branch; !- Branch 4 Name + +ConnectorList, + Heating Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Supply Mixer; !- Connector 2 Name + +Branch, + Heating Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HW Circ Pump, !- Component 1 Name + HW Supply Inlet Node, !- Component 1 Inlet Node Name + HW Pump Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Central Boiler Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + Central Boiler, !- Component 1 Name + Central Boiler Inlet Node, !- Component 1 Inlet Node Name + Central Boiler Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Heating Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Side Bypass, !- Component 1 Name + Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Heating Supply Side Bypass, !- Name + Heating Supply Bypass Inlet Node, !- Inlet Node Name + Heating Supply Bypass Outlet Node; !- Outlet Node Name + +Branch, + Heating Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Outlet, !- Component 1 Name + Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Supply Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Heating Supply Outlet, !- Name + Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name + HW Supply Outlet Node; !- Outlet Node Name + +BranchList, + Heating Demand Side Branches, !- Name + Heating Demand Inlet Branch, !- Branch 1 Name + SPACE1-1 Reheat Branch, !- Branch 2 Name + SPACE2-1 Reheat Branch, !- Branch 3 Name + SPACE3-1 Reheat Branch, !- Branch 4 Name + SPACE4-1 Reheat Branch, !- Branch 5 Name + SPACE5-1 Reheat Branch, !- Branch 6 Name + OA Heating Coil Branch, !- Branch 7 Name + Main Heating Coil 1 Branch, !- Branch 8 Name + Heating Demand Bypass Branch, !- Branch 9 Name + Heating Demand Outlet Branch; !- Branch 10 Name + +ConnectorList, + Heating Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Demand Mixer; !- Connector 2 Name + +Branch, + Heating Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Inlet Pipe, !- Component 1 Name + HW Demand Inlet Node, !- Component 1 Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Heating Demand Inlet Pipe, !- Name + HW Demand Inlet Node, !- Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + +Branch, + Heating Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Outlet Pipe, !- Component 1 Name + HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Demand Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Heating Demand Outlet Pipe, !- Name + HW Demand Exit Pipe Inlet Node, !- Inlet Node Name + HW Demand Outlet Node; !- Outlet Node Name + +Branch, + SPACE1-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE1-1 Zone Coil, !- Component 1 Name + SPACE1-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE1-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + +Branch, + SPACE2-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE2-1 Zone Coil, !- Component 1 Name + SPACE2-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE2-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + +Branch, + SPACE3-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE3-1 Zone Coil, !- Component 1 Name + SPACE3-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE3-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + +Branch, + SPACE4-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE4-1 Zone Coil, !- Component 1 Name + SPACE4-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE4-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + +Branch, + SPACE5-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE5-1 Zone Coil, !- Component 1 Name + SPACE5-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE5-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + +Branch, + OA Heating Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + OA Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Main Heating Coil 1 Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Main Heating Coil 1, !- Component 1 Name + Main Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Heating Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Bypass, !- Component 1 Name + Heating Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Heating Demand Bypass, !- Name + Heating Demand Bypass Inlet Node, !- Inlet Node Name + Heating Demand Bypass Outlet Node; !- Outlet Node Name + +Connector:Splitter, + Heating Demand Splitter, !- Name + Heating Demand Inlet Branch, !- Inlet Branch Name + SPACE1-1 Reheat Branch, !- Outlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Outlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Outlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Outlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Outlet Branch 5 Name + OA Heating Coil Branch, !- Outlet Branch 6 Name + Main Heating Coil 1 Branch, !- Outlet Branch 7 Name + Heating Demand Bypass Branch; !- Outlet Branch 8 Name + +Connector:Mixer, + Heating Demand Mixer, !- Name + Heating Demand Outlet Branch, !- Outlet Branch Name + SPACE1-1 Reheat Branch, !- Inlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Inlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Inlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Inlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Inlet Branch 5 Name + OA Heating Coil Branch, !- Inlet Branch 6 Name + Main Heating Coil 1 Branch, !- Inlet Branch 7 Name + Heating Demand Bypass Branch; !- Inlet Branch 8 Name + +Connector:Splitter, + Heating Supply Splitter, !- Name + Heating Supply Inlet Branch, !- Inlet Branch Name + Central Boiler Branch, !- Outlet Branch 1 Name + Heating Supply Bypass Branch; !- Outlet Branch 2 Name + +Connector:Mixer, + Heating Supply Mixer, !- Name + Heating Supply Outlet Branch, !- Outlet Branch Name + Central Boiler Branch, !- Inlet Branch 1 Name + Heating Supply Bypass Branch; !- Inlet Branch 2 Name + +PlantEquipmentOperationSchemes, + Hot Loop Operation, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Central Boiler Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + +PlantEquipmentOperation:HeatingLoad, + Central Boiler Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000, !- Load Range 1 Upper Limit {W} + heating plant; !- Range 1 Equipment List Name + +PlantEquipmentList, + heating plant, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + Central Boiler; !- Equipment 1 Name + +Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + autosize, !- Nominal Capacity {W} + 0.8, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + BoilerEfficiency, !- 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 + Central Boiler Inlet Node, !- Boiler Water Inlet Node Name + Central Boiler Outlet Node, !- Boiler Water Outlet Node Name + 100., !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated;!- Boiler Flow Mode + +SetpointManager:Scheduled, + Central Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + Central Boiler Outlet Node; !- Setpoint Node or NodeList Name + +Curve:Quadratic, + BoilerEfficiency, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Pump:VariableSpeed, + HW Circ Pump, !- Name + HW Supply Inlet Node, !- Inlet Node Name + HW Pump Outlet Node, !- 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 + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT; !- Pump Control Type + +PlantLoop, + Chilled Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CW Loop Operation, !- Plant Equipment Operation Scheme Name + CW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + CW Supply Inlet Node, !- Plant Side Inlet Node Name + CW Supply Outlet Node, !- Plant Side Outlet Node Name + Cooling Supply Side Branches, !- Plant Side Branch List Name + Cooling Supply Side Connectors, !- Plant Side Connector List Name + CW Demand Inlet Node, !- Demand Side Inlet Node Name + CW Demand Outlet Node, !- Demand Side Outlet Node Name + Cooling Demand Side Branches, !- Demand Side Branch List Name + Cooling Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + CW Avail List; !- Availability Manager List Name + +AvailabilityManagerAssignmentList, + CW Avail List, !- Name + AvailabilityManager:LowTemperatureTurnOff, !- Availability Manager 1 Object Type + CW Low Temp Limit; !- Availability Manager 1 Name + +AvailabilityManager:LowTemperatureTurnOff, + CW Low Temp Limit, !- Name + Outside Air Inlet Node 1,!- Sensor Node Name + 2.0, !- Temperature {C} + CoolingPumpAvailSched; !- Applicability Schedule Name + +SetpointManager:Scheduled, + Chilled Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + CW Supply Outlet Node; !- Setpoint Node or NodeList Name + +BranchList, + Cooling Supply Side Branches, !- Name + CW Pump Branch, !- Branch 1 Name + Central Chiller Branch, !- Branch 2 Name + Cooling Supply Bypass Branch, !- Branch 3 Name + Cooling Supply Outlet; !- Branch 4 Name + +BranchList, + Cooling Demand Side Branches, !- Name + Cooling Demand Inlet, !- Branch 1 Name + Cooling Coil Branch, !- Branch 2 Name + OA Cooling Coil Branch, !- Branch 3 Name + Cooling Demand Bypass Branch, !- Branch 4 Name + Cooling Demand Outlet; !- Branch 5 Name + +ConnectorList, + Cooling Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Loop Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Loop Mixer; !- Connector 2 Name + +ConnectorList, + Cooling Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Demand Mixer; !- Connector 2 Name + +Branch, + Cooling Demand Inlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Inlet Pipe, !- Component 1 Name + CW Demand Inlet Node, !- Component 1 Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Cooling Demand Side Inlet Pipe, !- Name + CW Demand Inlet Node, !- Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + +Branch, + Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + Main Cooling Coil 1, !- Component 1 Name + Main Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + +Branch, + OA Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + OA Cooling Coil 1, !- Component 1 Name + OA Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Cooling Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Bypass, !- Component 1 Name + CW Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Cooling Demand Side Bypass, !- Name + CW Demand Bypass Inlet Node, !- Inlet Node Name + CW Demand Bypass Outlet Node; !- Outlet Node Name + +Branch, + Cooling Demand Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CW Demand Side Outlet Pipe, !- Component 1 Name + CW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Demand Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + CW Demand Side Outlet Pipe, !- Name + CW Demand Exit Pipe Inlet Node, !- Inlet Node Name + CW Demand Outlet Node; !- Outlet Node Name + +Branch, + Cooling Supply Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Outlet Pipe, !- Component 1 Name + Supply Side Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Supply Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Supply Side Outlet Pipe, !- Name + Supply Side Exit Pipe Inlet Node, !- Inlet Node Name + CW Supply Outlet Node; !- Outlet Node Name + +Branch, + CW Pump Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CW Circ Pump, !- Component 1 Name + CW Supply Inlet Node, !- Component 1 Inlet Node Name + CW Pump Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Central Chiller Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric, !- Component 1 Object Type + Central Chiller, !- Component 1 Name + Central Chiller Inlet Node, !- Component 1 Inlet Node Name + Central Chiller Outlet Node; !- Component 1 Outlet Node Name + +Branch, + Cooling Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Bypass, !- Component 1 Name + CW Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + +Pipe:Adiabatic, + Supply Side Bypass, !- Name + CW Supply Bypass Inlet Node, !- Inlet Node Name + CW Supply Bypass Outlet Node; !- Outlet Node Name + +Connector:Splitter, + CW Loop Splitter, !- Name + CW Pump Branch, !- Inlet Branch Name + Central Chiller Branch, !- Outlet Branch 1 Name + Cooling Supply Bypass Branch; !- Outlet Branch 2 Name + +Connector:Mixer, + CW Loop Mixer, !- Name + Cooling Supply Outlet, !- Outlet Branch Name + Central Chiller Branch, !- Inlet Branch 1 Name + Cooling Supply Bypass Branch; !- Inlet Branch 2 Name + +Connector:Splitter, + CW Demand Splitter, !- Name + Cooling Demand Inlet, !- Inlet Branch Name + Cooling Coil Branch, !- Outlet Branch 1 Name + OA Cooling Coil Branch, !- Outlet Branch 2 Name + Cooling Demand Bypass Branch; !- Outlet Branch 3 Name + +Connector:Mixer, + CW Demand Mixer, !- Name + Cooling Demand Outlet, !- Outlet Branch Name + Cooling Coil Branch, !- Inlet Branch 1 Name + OA Cooling Coil Branch, !- Inlet Branch 2 Name + Cooling Demand Bypass Branch; !- Inlet Branch 3 Name + +PlantEquipmentOperationSchemes, + CW Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Central Chiller Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + +PlantEquipmentOperation:CoolingLoad, + Central Chiller Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 900000, !- Load Range 1 Upper Limit {W} + Cooling Plant; !- Range 1 Equipment List Name + +PlantEquipmentList, + Cooling Plant, !- Name + Chiller:Electric, !- Equipment 1 Object Type + Central Chiller; !- Equipment 1 Name + +Chiller:Electric, + Central Chiller, !- Name + AirCooled, !- Condenser Type + autosize, !- Nominal Capacity {W} + 3.2, !- Nominal COP {W/W} + Central Chiller Inlet Node, !- Chilled Water Inlet Node Name + Central Chiller Outlet Node, !- Chilled Water Outlet Node Name + Central Chiller Condenser Inlet Node, !- Condenser Inlet Node Name + Central Chiller Condenser Outlet Node, !- Condenser Outlet Node Name + 0.0, !- Minimum Part Load Ratio + 1.0, !- Maximum Part Load Ratio + 0.65, !- Optimum Part Load Ratio + 35.0, !- Design Condenser Inlet Temperature {C} + 2.778, !- Temperature Rise Coefficient + 6.67, !- Design Chilled Water Outlet Temperature {C} + autosize, !- Design Chilled Water Flow Rate {m3/s} + autosize, !- Design Condenser Fluid Flow Rate {m3/s} + 0.9949, !- Coefficient 1 of Capacity Ratio Curve + -0.045954, !- Coefficient 2 of Capacity Ratio Curve + -0.0013543, !- Coefficient 3 of Capacity Ratio Curve + 2.333, !- Coefficient 1 of Power Ratio Curve + -1.975, !- Coefficient 2 of Power Ratio Curve + 0.6121, !- Coefficient 3 of Power Ratio Curve + 0.03303, !- Coefficient 1 of Full Load Ratio Curve + 0.6852, !- Coefficient 2 of Full Load Ratio Curve + 0.2818, !- Coefficient 3 of Full Load Ratio Curve + 5, !- Chilled Water Outlet Temperature Lower Limit {C} + LeavingSetpointModulated;!- Chiller Flow Mode + +SetpointManager:Scheduled, + Central Chiller Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + Central Chiller Outlet Node; !- Setpoint Node or NodeList Name + +OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1.0; !- Height Above Ground {m} + +Pump:VariableSpeed, + CW Circ Pump, !- Name + CW Supply Inlet Node, !- Inlet Node Name + CW Pump Outlet Node, !- 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 + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT, !- Pump Control Type + CoolingPumpAvailSched; !- Pump Flow Rate Schedule Name + +Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; +Output:Variable,*,Zone Air Temperature,hourly; +Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; +Output:Variable,*,Zone Air System Sensible Cooling Rate,hourly; +Output:Variable,*,Zone Air System Sensible Heating Rate,hourly; +Output:Variable,OA Mixing Box 1 Inlet Node,System Node Temperature,hourly; +Output:Variable,OA Mixing Box 1 Inlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,OA Mixing Box 1 Inlet Node,System Node Setpoint Temperature,hourly; +Output:Variable,OA Mixing Box 1 Inlet Node,System Node Humidity Ratio,hourly; +Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Temperature,hourly; +Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Setpoint Temperature,hourly; +Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Humidity Ratio,hourly; +Output:Variable,Mixed Air Node 1,System Node Temperature,hourly; +Output:Variable,Mixed Air Node 1,System Node Humidity Ratio,hourly; +Output:Variable,Mixed Air Node 1,System Node Dewpoint Temperature,hourly; +Output:Variable,VAV Sys 1 Outlet Node,System Node Temperature,hourly; +Output:Variable,VAV Sys 1 Outlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,VAV Sys 1 Outlet Node,System Node Humidity Ratio,hourly; +Output:Variable,VAV Sys 1 Outlet Node,System Node Setpoint Temperature,hourly; +Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Temperature,hourly; +Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,Main Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Temperature,hourly; +Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,Main Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; +Output:Variable,*,Heating Coil Heating Rate,hourly; +Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; +Output:Variable,*,Cooling Coil Sensible Cooling Rate,hourly; +Output:Variable,*,Plant Supply Side Cooling Demand Rate,hourly; +Output:Variable,*,Plant Supply Side Heating Demand Rate,hourly; +Output:Variable,*,Boiler NaturalGas Rate,hourly; +Output:Variable,*,Boiler Heating Rate,hourly; +Output:Variable,*,Chiller Electricity Rate,hourly; +Output:Variable,*,Chiller Evaporator Cooling Rate,hourly; +Output:Variable,*,Chiller Evaporator Inlet Temperature,hourly; +Output:Variable,*,Chiller Evaporator Outlet Temperature,hourly; +Output:Variable,*,Chiller Evaporator Mass Flow Rate,hourly; +Output:Variable,*,Chiller Condenser Heat Transfer Rate,hourly; +Output:Variable,*,Pump Mass Flow Rate,hourly; +Output:Variable,*,Pump Outlet Temperature,hourly; +Output:VariableDictionary,Regular; +Output:Meter:MeterFileOnly,Electricity:Facility,monthly; +Output:Meter:MeterFileOnly,Electricity:Building,monthly; +Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; +Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; +Output:Meter:MeterFileOnly,Electricity:Plant,monthly; +Output:Meter:MeterFileOnly,NaturalGas:Facility,monthly; +Output:Meter:MeterFileOnly,NaturalGas:Plant,monthly; +Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; +Output:Meter:MeterFileOnly,Electricity:Building,runperiod; +Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; +Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; +Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; +Output:Meter:MeterFileOnly,NaturalGas:Facility,runperiod; +Output:Meter:MeterFileOnly,NaturalGas:Plant,runperiod; +Output:Meter:MeterFileOnly,MyGeneralLights,monthly; +Output:Meter:MeterFileOnly,MyGeneralLights,runperiod; +Output:Meter:MeterFileOnly,MyBuildingElectric,monthly; +Output:Meter:MeterFileOnly,MyBuildingElectric,runperiod; +Output:Meter:MeterFileOnly,MyBuildingOther,monthly; +Output:Meter:MeterFileOnly,MyBuildingOther,runperiod; + +! The following custom meters are set up to illustrate the capabilities +! of custom meters. +! Custom Meter "MyGeneralLights" duplicates the InteriorLights:Electricity meter. +! Custom Meter "MyBuildingElectric" duplicates the Electricity:Building meter (by specifying that meter). +! Custom Meter (Decrement) "MyBuildingOther" uses Electricity:Building as its source meter +! and subtracts out the values for MyGeneralLights (aka InteriorLights:Electricity). The +! resultant value for MyBuildingOther should be equal to the value for the meters +! Electricity:Building - InteriorLights:Electricity (aka MyGeneralLights) +Meter:Custom, + MyGeneralLights, !- Name + Electricity, !- Resource Type + SPACE1-1 Lights 1, !- Key Name 1 + Lights Electricity Energy, !- Output Variable or Meter Name 1 + SPACE2-1 Lights 1, !- Key Name 2 + Lights Electricity Energy, !- Output Variable or Meter Name 2 + SPACE3-1 Lights 1, !- Key Name 3 + Lights Electricity Energy, !- Output Variable or Meter Name 3 + SPACE4-1 Lights 1, !- Key Name 4 + Lights Electricity Energy, !- Output Variable or Meter Name 4 + SPACE5-1 Lights 1, !- Key Name 5 + Lights Electricity Energy; !- Output Variable or Meter Name 5 + +Meter:Custom, + MyBuildingElectric, !- Name + Electricity, !- Resource Type + , !- Key Name 1 + Electricity:Building; !- Output Variable or Meter Name 1 + +Meter:CustomDecrement, + MyBuildingOther, !- Name + Electricity, !- Resource Type + Electricity:Building, !- Source Meter Name + , !- Key Name 1 + MyGeneralLights; !- Output Variable or Meter Name 1 + +Output:Surfaces:Drawing,VRML; + +OutputControl:Table:Style, + HTML; !- Column Separator + +Output:Table:SummaryReports, + AllSummary, !- Report 1 Name + ZoneComponentLoadSummary;!- Report 2 Name + +Output:Surfaces:List,Details; +Output:Surfaces:List,DecayCurvesFromComponentLoadsSummary; diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt index a9f250ffffc..081d005de30 100644 --- a/testfiles/CMakeLists.txt +++ b/testfiles/CMakeLists.txt @@ -39,6 +39,7 @@ add_simulation_test(IDF_FILE 4ZoneWithShading_Simple_1.idf EPW_FILE USA_CO_Golde add_simulation_test(IDF_FILE 4ZoneWithShading_Simple_2.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooled.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledConvCoef.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) +add_simulation_test(IDF_FILE 5ZoneAirCooledWithSimpleSpaces.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) From 0e8bc5900a096970e4f1c2249c65caaad29f15f7 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 2 Aug 2021 10:47:52 -0500 Subject: [PATCH 55/98] Space - InputVerificationandResultsSummary cleanup add tags --- src/EnergyPlus/OutputReportTabular.cc | 231 +++++++++++++------------- src/EnergyPlus/OutputReportTabular.hh | 6 +- 2 files changed, 115 insertions(+), 122 deletions(-) diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 6f4abce1d2e..403a79d1f1e 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11824,121 +11824,40 @@ void WriteVeriSumTable(EnergyPlusData &state) } } - // Space and SpaceType sub-tables - Array1D_string spaceRowHead; - spaceRowHead.allocate(state.dataGlobal->numSpaces + 4); - int spaceNumOfCol = 9; - Array1D_string spaceColumnHead; - spaceColumnHead.allocate(spaceNumOfCol); - Array1D_int spaceColumnWidth; - spaceColumnWidth.allocate(spaceNumOfCol); - spaceColumnWidth = 14; // array assignment - same for all columns - Array2D_string spaceTableBody; - spaceTableBody.allocate(spaceNumOfCol, state.dataGlobal->numSpaces + 4); - - spaceColumnHead(1) = "Area " + state.dataOutRptTab->m2_unitName; - spaceColumnHead(2) = "Conditioned (Y/N)"; - spaceColumnHead(3) = "Part of Total Floor Area (Y/N)"; - spaceColumnHead(4) = "Multipliers"; - spaceColumnHead(5) = "Zone Name"; - spaceColumnHead(6) = "Space Type"; - spaceColumnHead(7) = "Lighting " + state.dataOutRptTab->Wm2_unitName; - spaceColumnHead(8) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + - state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; - spaceColumnHead(9) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; - - spaceRowHead = ""; - spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->grandTotal) = "Total"; - spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->condTotal) = "Conditioned Total"; - spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->uncondTotal) = "Unconditioned Total"; - spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->notpartTotal) = "Not Part of Total"; - - Array1D_string spaceTypeRowHead; - spaceTypeRowHead.allocate(state.dataGlobal->numSpaceTypes + 1); - int spaceTypeNumOfCol = 7; - Array1D_string spaceTypeColumnHead; - spaceTypeColumnHead.allocate(spaceTypeNumOfCol); - Array1D_int spaceTypeColumnWidth; - spaceTypeColumnWidth.allocate(spaceTypeNumOfCol); - spaceTypeColumnWidth = 14; // array assignment - same for all columns - Array2D_string spaceTypeTableBody; - spaceTypeTableBody.allocate(spaceTypeNumOfCol, state.dataGlobal->numSpaceTypes + 1); - - spaceTypeColumnHead(1) = "Total Area " + state.dataOutRptTab->m2_unitName; - spaceTypeColumnHead(2) = "Conditioned Area " + state.dataOutRptTab->m2_unitName; - spaceTypeColumnHead(3) = "Unconditioned Area " + state.dataOutRptTab->m2_unitName; - spaceTypeColumnHead(4) = "Not Part of Total Area " + state.dataOutRptTab->m2_unitName; - spaceTypeColumnHead(5) = "Lighting " + state.dataOutRptTab->Wm2_unitName; - spaceTypeColumnHead(6) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + - " per person" + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; - spaceTypeColumnHead(7) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; - - spaceTypeRowHead = ""; - spaceTypeRowHead(state.dataGlobal->numSpaceTypes + state.dataOutRptTab->grandTotal) = "Total"; - - gatherSpaceTables(state, spaceRowHead, spaceTypeRowHead, spaceTableBody, spaceTypeTableBody); - - tableBody = ""; - if (produceTabular) { - WriteSubtitle(state, "Space Summary"); - WriteTable(state, spaceTableBody, spaceRowHead, spaceColumnHead, spaceColumnWidth); - } - if (produceSQLite) { - if (state.dataSQLiteProcedures->sqlite) { - state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords( - spaceTableBody, spaceRowHead, spaceColumnHead, "InputVerificationandResultsSummary", "Entire Facility", "Space Summary"); - } - } - if (produceTabular) { - if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { - state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable( - spaceTableBody, spaceRowHead, spaceColumnHead, "Input Verification and Results Summary", "Entire Facility", "Space Summary"); - } - } - if (produceTabular) { - WriteSubtitle(state, "Space Type Summary"); - WriteTable(state, spaceTypeTableBody, spaceTypeRowHead, spaceTypeColumnHead, spaceTypeColumnWidth); - } - if (produceSQLite) { - if (state.dataSQLiteProcedures->sqlite) { - state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords(spaceTypeTableBody, - spaceTypeRowHead, - spaceTypeColumnHead, - "InputVerificationandResultsSummary", - "Entire Facility", - "Space Type Summary"); - } - } - if (produceTabular) { - if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { - state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable(spaceTypeTableBody, - spaceTypeRowHead, - spaceTypeColumnHead, - "Input Verification and Results Summary", - "Entire Facility", - "Space Type Summary"); - } - } + writeVeriSumSpaceTables(state, produceTabular, produceSQLite); } } } -void gatherSpaceTables(EnergyPlusData &state, - Array1D_string &spaceRowHead, - Array1D_string &spaceTypeRowHead, - Array2D_string &spaceTableBody, - Array2D_string &spaceTypeTableBody) +void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool produceSQLite) { - // spaceColumnHead(1) = "Area " - // spaceColumnHead(2) = "Conditioned (Y/N)"; - // spaceColumnHead(3) = "Part of Total Floor Area (Y/N)"; - // spaceColumnHead(4) = "Multipliers"; - // spaceColumnHead(5) = "Zone Name"; - // spaceColumnHead(6) = "Space Type " - // spaceColumnHead(7) = "Lighting " - // spaceColumnHead(8) = "People " - // spaceColumnHead(9) = "Plug and Process " + // Write Space and SpaceType sub-tables for Input Verification and Results Summary + Array1D_string spaceRowHead; + Array1D_string spaceColumnHead; + Array1D_int spaceColumnWidth; + Array2D_string spaceTableBody; + int spaceNumCol = 10; + spaceRowHead.allocate(state.dataGlobal->numSpaces + 4); // Extra rows for totals + spaceColumnHead.allocate(spaceNumCol); + spaceColumnWidth.allocate(spaceNumCol); + spaceTableBody.allocate(spaceNumCol, state.dataGlobal->numSpaces + 4); // Extra rows for totals + for (int iCol = 1; iCol <= spaceNumCol; ++iCol) { + spaceColumnWidth = 14; + } + + spaceColumnHead(1) = "Area " + state.dataOutRptTab->m2_unitName; + spaceColumnHead(2) = "Conditioned (Y/N)"; + spaceColumnHead(3) = "Part of Total Floor Area (Y/N)"; + spaceColumnHead(4) = "Multipliers"; + spaceColumnHead(5) = "Zone Name"; + spaceColumnHead(6) = "Space Type"; + spaceColumnHead(7) = "Lighting " + state.dataOutRptTab->Wm2_unitName; + spaceColumnHead(8) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; + spaceColumnHead(9) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; + spaceColumnHead(10) = "Tags"; + int constexpr colSpaceArea(1); int constexpr colConditioned(2); int constexpr colPartOfTotal(3); @@ -11948,6 +11867,13 @@ void gatherSpaceTables(EnergyPlusData &state, int constexpr colSpaceLighting(7); int constexpr colSpacePeople(8); int constexpr colSpacePlugProcess(9); + int constexpr colSpaceTags(10); + + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->grandTotal) = "Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->condTotal) = "Conditioned Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->uncondTotal) = "Unconditioned Total"; + spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->notpartTotal) = "Not Part of Total"; + EPVector spaceTotLighting; EPVector spaceTotPeople; EPVector spaceTotPlugProcess; @@ -11960,13 +11886,27 @@ void gatherSpaceTables(EnergyPlusData &state, spaceTotPlugProcess(iSpace) = 0.0; } - // spaceTypeColumnHead(1) = "Total Area " - // spaceTypeColumnHead(2) = "Conditioned Area " - // spaceTypeColumnHead(3) = "Unconditioned Area " - // spaceTypeColumnHead(4) = "Not Part of Total Area " - // spaceTypeColumnHead(5) = "Lighting " - // spaceTypeColumnHead(6) = "People " - // spaceTypeColumnHead(7) = "Plug and Process " + Array1D_string spaceTypeRowHead; + Array1D_string spaceTypeColumnHead; + Array1D_int spaceTypeColumnWidth; + Array2D_string spaceTypeTableBody; + int spaceTypeNumCol = 7; + spaceTypeRowHead.allocate(state.dataGlobal->numSpaceTypes + 1); // Extra row for total + spaceTypeColumnHead.allocate(spaceTypeNumCol); + spaceTypeColumnWidth.allocate(spaceTypeNumCol); + spaceTypeTableBody.allocate(spaceTypeNumCol, state.dataGlobal->numSpaceTypes + 1); // Extra row for total + for (int iCol = 1; iCol <= spaceTypeNumCol; ++iCol) { + spaceTypeColumnWidth = 14; + } + spaceTypeColumnHead(1) = "Total Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(2) = "Conditioned Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(3) = "Unconditioned Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(4) = "Not Part of Total Area " + state.dataOutRptTab->m2_unitName; + spaceTypeColumnHead(5) = "Lighting " + state.dataOutRptTab->Wm2_unitName; + spaceTypeColumnHead(6) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; + spaceTypeColumnHead(7) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; + int constexpr colSpaceTypeTotArea(1); int constexpr colSpaceTypeCondArea(2); int constexpr colSpaceTypeUncondArea(3); @@ -11974,6 +11914,9 @@ void gatherSpaceTables(EnergyPlusData &state, int constexpr colSpaceTypeLighting(5); int constexpr colSpaceTypePeople(6); int constexpr colSpaceTypePlugProcess(7); + + spaceTypeRowHead(state.dataGlobal->numSpaceTypes + state.dataOutRptTab->grandTotal) = "Total"; + EPVector spaceTypeTotArea; EPVector spaceTypeCondArea; EPVector spaceTypeUncondArea; @@ -12072,6 +12015,7 @@ void gatherSpaceTables(EnergyPlusData &state, } } + // re-use existing zone total variables for (int iTotal = 1; iTotal <= 4; ++iTotal) { state.dataOutRptTab->zstArea(iTotal) = 0.0; state.dataOutRptTab->zstLight(iTotal) = 0.0; @@ -12082,7 +12026,7 @@ void gatherSpaceTables(EnergyPlusData &state, int spaceTableRowNum = 0; for (int iZone = 1; iZone <= state.dataGlobal->NumOfZones; ++iZone) { auto curZone = state.dataHeatBal->Zone(iZone); - Real64 const mult = Real64(curZone.Multiplier * curZone.ListMultiplier); + Real64 const mult = Real64(curZone.Multiplier) * Real64(curZone.ListMultiplier); for (int const spaceNum : curZone.Spaces) { auto curSpace = state.dataHeatBal->Space(spaceNum); bool spaceIsCond = false; @@ -12131,6 +12075,18 @@ void gatherSpaceTables(EnergyPlusData &state, spaceTableBody(colSpacePlugProcess, spaceTableRowNum) = RealToStr(0.0, 4); } + std::string tags; + bool firstTag = true; + for (std::string const tag : curSpace.Tags) { + if (firstTag) { + tags += tag; + firstTag = false; + } else { + tags += ", " + tag; + } + } + spaceTableBody(colSpaceTags, spaceTableRowNum) = tags; + // If not part of total, goes directly to this row if (!useSpaceFloorArea) { spaceTypeNotTotArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; @@ -12227,6 +12183,47 @@ void gatherSpaceTables(EnergyPlusData &state, spaceTypeTableBody(colSpaceTypeUncondArea, state.dataGlobal->numSpaceTypes + 1) = RealToStr(uncondArea * state.dataOutRptTab->m2_unitConvWVST, 2); spaceTypeTableBody(colSpaceTypeNotTotArea, state.dataGlobal->numSpaceTypes + 1) = RealToStr(notTotalArea * state.dataOutRptTab->m2_unitConvWVST, 2); + + if (produceTabular) { + WriteSubtitle(state, "Space Summary"); + WriteTable(state, spaceTableBody, spaceRowHead, spaceColumnHead, spaceColumnWidth); + } + if (produceSQLite) { + if (state.dataSQLiteProcedures->sqlite) { + state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords( + spaceTableBody, spaceRowHead, spaceColumnHead, "InputVerificationandResultsSummary", "Entire Facility", "Space Summary"); + } + } + if (produceTabular) { + if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { + state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable( + spaceTableBody, spaceRowHead, spaceColumnHead, "Input Verification and Results Summary", "Entire Facility", "Space Summary"); + } + } + if (produceTabular) { + WriteSubtitle(state, "Space Type Summary"); + WriteTable(state, spaceTypeTableBody, spaceTypeRowHead, spaceTypeColumnHead, spaceTypeColumnWidth); + } + if (produceSQLite) { + if (state.dataSQLiteProcedures->sqlite) { + state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords(spaceTypeTableBody, + spaceTypeRowHead, + spaceTypeColumnHead, + "InputVerificationandResultsSummary", + "Entire Facility", + "Space Type Summary"); + } + } + if (produceTabular) { + if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { + state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable(spaceTypeTableBody, + spaceTypeRowHead, + spaceTypeColumnHead, + "Input Verification and Results Summary", + "Entire Facility", + "Space Type Summary"); + } + } } void WriteAdaptiveComfortTable(EnergyPlusData &state) diff --git a/src/EnergyPlus/OutputReportTabular.hh b/src/EnergyPlus/OutputReportTabular.hh index 4b39c464ab5..bcf27265a06 100644 --- a/src/EnergyPlus/OutputReportTabular.hh +++ b/src/EnergyPlus/OutputReportTabular.hh @@ -603,11 +603,7 @@ namespace OutputReportTabular { void WriteVeriSumTable(EnergyPlusData &state); - void gatherSpaceTables(EnergyPlusData &state, - Array1D_string &spaceRowHead, - Array1D_string &spaceTypeRowHead, - Array2D_string &spaceTableBody, - Array2D_string &spaceTypeTableBody); + void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool produceSQLite); void WriteAdaptiveComfortTable(EnergyPlusData &state); From df66277a3930604999f012ad61e6812fb3f3fbf2 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 2 Aug 2021 13:09:55 -0500 Subject: [PATCH 56/98] Space - naming cleanup --- src/EnergyPlus/DataDaylighting.hh | 8 +- src/EnergyPlus/DataHeatBalance.hh | 98 +- src/EnergyPlus/DataSurfaces.hh | 20 +- src/EnergyPlus/DataViewFactorInformation.hh | 4 +- src/EnergyPlus/DaylightingManager.cc | 86 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 42 +- .../HeatBalanceInternalHeatGains.cc | 70 +- src/EnergyPlus/HeatBalanceManager.cc | 56 +- src/EnergyPlus/HeatBalanceSurfaceManager.cc | 8 +- src/EnergyPlus/InternalHeatGains.cc | 958 +++++++++--------- src/EnergyPlus/OutputReportTabular.cc | 100 +- src/EnergyPlus/RoomAirModelManager.cc | 4 +- src/EnergyPlus/SurfaceGeometry.cc | 244 ++--- .../unit/HeatBalanceIntRadExchange.unit.cc | 102 +- .../unit/OutputReportTabular.unit.cc | 8 +- .../unit/PurchasedAirManager.unit.cc | 4 +- .../unit/RoomAirflowNetwork.unit.cc | 20 +- tst/EnergyPlus/unit/SurfaceGeometry.unit.cc | 112 +- 18 files changed, 973 insertions(+), 971 deletions(-) diff --git a/src/EnergyPlus/DataDaylighting.hh b/src/EnergyPlus/DataDaylighting.hh index 9b94606372c..bfb6825526c 100644 --- a/src/EnergyPlus/DataDaylighting.hh +++ b/src/EnergyPlus/DataDaylighting.hh @@ -119,9 +119,9 @@ namespace DataDaylighting { struct EnclDaylightCalc { - Real64 AveVisDiffReflect = 0.0; // Area-weighted average inside surface visible reflectance of zone - Real64 TotInsSurfArea = 0.0; // Total inside surface area of a daylit zone (m2) - Real64 FloorVisRefl = 0.0; // Area-weighted visible reflectance of floor of a daylit zone + Real64 aveVisDiffReflect = 0.0; // Area-weighted average inside surface visible reflectance of zone + Real64 totInsSurfArea = 0.0; // Total inside surface area of a daylit zone (m2) + Real64 floorVisRefl = 0.0; // Area-weighted visible reflectance of floor of a daylit zone }; struct ZoneDaylightCalc @@ -333,7 +333,7 @@ struct DaylightingData : BaseGlobalStruct bool DFSReportAllShadowCalculationDays = false; int TotDElightCFS = 0; - Array1D EnclDaylight; + Array1D enclDaylight; Array1D ZoneDaylight; Array1D IllumMap; Array1D IllumMapCalc; diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 398c2184354..c54cb71a80c 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -339,27 +339,27 @@ namespace DataHeatBalance { struct SpaceData { std::string Name = ""; // Space name - int ZoneNum = 0; // Pointer to Zone wich contains this space - Real64 UserEnteredFloorArea = 0.0; // User input floor area for this space - std::string SpaceType = "General"; // Space type tag - int SpaceTypeNum = 0; // Points to spaceType for this space - EPVector Tags; // Optional tags for reporting - EPVector Surfaces; // Pointers to surfaces in this space - Real64 CalcFloorArea = 0.0; // Calculated floor area used for this space - Real64 FloorArea = 0.0; // Floor area used for this space - bool HasFloor = false; // Has "Floor" surface - Real64 ExtWindowArea = 0.0; // Exterior Window Area for Zone - Real64 TotalSurfArea = 0.0; // Total surface area for Zone - int RadiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to - int SolarEnclosureNum = 0; // Solar distribution enclosure this space belongs to + int zoneNum = 0; // Pointer to Zone wich contains this space + Real64 userEnteredFloorArea = 0.0; // User input floor area for this space + std::string spaceType = "General"; // Space type tag + int spaceTypeNum = 0; // Points to spaceType for this space + EPVector tags; // Optional tags for reporting + EPVector surfaces; // Pointers to surfaces in this space + Real64 calcFloorArea = 0.0; // Calculated floor area used for this space + Real64 floorArea = 0.0; // Floor area used for this space + bool hasFloor = false; // Has "Floor" surface + Real64 extWindowArea = 0.0; // Exterior Window Area for Zone + Real64 totalSurfArea = 0.0; // Total surface area for Zone + int radiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to + int solarEnclosureNum = 0; // Solar distribution enclosure this space belongs to }; struct SpaceListData { std::string Name = ""; // Space List name - int NumOfSpaces = 0; // Number of spaces in the list - std::string::size_type MaxSpaceNameLength = 0u; // Max Name length of Spaces in the list - EPVector Spaces; // Pointers to Spaces in the list + int numOfSpaces = 0; // Number of spaces in the list + std::string::size_type maxSpaceNameLength = 0u; // Max Name length of Spaces in the list + EPVector spaces; // Pointers to Spaces in the list }; struct ZoneData @@ -505,9 +505,9 @@ namespace DataHeatBalance { Real64 delta_HumRat; // Indoor and outdoor humidity ratio delta // Spaces - bool AnySurfacesWithoutSpace; // True if any surfaces in a zone do not have a space assigned in input - bool AnySurfacesWithSpace; // True if any surfaces in a zone have a space assigned in input - EPVector Spaces; // Pointers to spaces in this zone + bool anySurfacesWithoutSpace; // True if any surfaces in a zone do not have a space assigned in input + bool anySurfacesWithSpace; // True if any surfaces in a zone have a space assigned in input + EPVector spaces; // Pointers to spaces in this zone // Default Constructor ZoneData() @@ -539,7 +539,7 @@ namespace DataHeatBalance { ZonePeopleActivityLevel(0.0), ZonePeopleSensibleHeatFraction(0.0), ZonePeopleRadiantHeatFraction(0.0), ZoneVolCapMultpSens(1.0), ZoneVolCapMultpMoist(1.0), ZoneVolCapMultpCO2(1.0), ZoneVolCapMultpGenContam(1.0), ZoneVolCapMultpSensHM(1.0), ZoneVolCapMultpSensHMSum(0.0), ZoneVolCapMultpSensHMCountSum(0.0), ZoneVolCapMultpSensHMAverage(1.0), MCPIHM(0.0), - InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0), AnySurfacesWithoutSpace(false), AnySurfacesWithSpace(false) + InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0), anySurfacesWithoutSpace(false), anySurfacesWithSpace(false) { } @@ -585,10 +585,10 @@ namespace DataHeatBalance { int NumOfZones = 0; int StartPtr = 0; bool ZoneListActive = false; - int SpaceOrSpaceListPtr = 0; - int NumOfSpaces = 0; - int SpaceStartPtr = 0; - bool SpaceListActive = false; + int spaceOrSpaceListPtr = 0; + int numOfSpaces = 0; + int spaceStartPtr = 0; + bool spaceListActive = false; }; struct PeopleData @@ -596,8 +596,8 @@ namespace DataHeatBalance { // Members std::string Name; // PEOPLE object name int ZonePtr; // Pointer to the zone number for this people statement - EPVector SpacePtrs; // Pointers to space numbers for this people statement - EPVector SpaceFracs; // Fraction of total gains applied to each space + EPVector spacePtrs; // Pointers to space numbers for this people statement + EPVector spaceFracs; // Fraction of total gains applied to each space Real64 NumberOfPeople; // Maximum number of people for this statement int NumberOfPeoplePtr; // Pointer to schedule for number of people bool EMSPeopleOn; // EMS actuating number of people if .TRUE. @@ -677,8 +677,8 @@ namespace DataHeatBalance { // Members std::string Name; // LIGHTS object name int ZonePtr; // Which zone lights are in - EPVector SpacePtrs; // Pointers to space numbers for this object - EPVector SpaceFracs; // Fraction of total gains applied to each space + EPVector spacePtrs; // Pointers to space numbers for this object + EPVector spaceFracs; // Fraction of total gains applied to each space int SchedPtr; // Schedule for lights Real64 DesignLevel; // design level for lights [W] bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. @@ -730,8 +730,8 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in - EPVector SpacePtrs; // Pointers to space numbers for this object - EPVector SpaceFracs; // Fraction of total gains applied to each space + EPVector spacePtrs; // Pointers to space numbers for this object + EPVector spaceFracs; // Fraction of total gains applied to each space int SchedPtr; // Schedule for internal gain Real64 DesignLevel; // design level for internal gain [W] bool EMSZoneEquipOverrideOn; // EMS actuating equipment power if .TRUE. @@ -779,8 +779,8 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in - EPVector SpacePtrs; // Pointers to space numbers for this object - EPVector SpaceFracs; // Fraction of total gains applied to each space + EPVector spacePtrs; // Pointers to space numbers for this object + EPVector spaceFracs; // Fraction of total gains applied to each space bool FlowControlWithApproachTemps; // True if using supply and return approach temperature for ITE object. Real64 DesignTotalPower; // Design level for internal gain [W] Real64 NomMinDesignLevel; // Nominal Minimum Design Level (min sch X design level) @@ -883,8 +883,8 @@ namespace DataHeatBalance { // Members std::string Name; // BASEBOARD HEAT object name int ZonePtr; - EPVector SpacePtrs; // Pointers to space numbers for this object - EPVector SpaceFracs; // Fraction of total gains applied to each space + EPVector spacePtrs; // Pointers to space numbers for this object + EPVector spaceFracs; // Fraction of total gains applied to each space int SchedPtr; Real64 CapatLowTemperature; Real64 LowTemperature; @@ -1159,7 +1159,7 @@ namespace DataHeatBalance { std::string CompObjectType; // device object class name std::string CompObjectName; // device user unique name int CompTypeOfNum; // type of internal gain device identifier - Real64 SpaceGainFrac; // Fraction of gain value assigned to this Space (because gain rate might be for an entire zone) + Real64 spaceGainFrac; // Fraction of gain value assigned to this Space (because gain rate might be for an entire zone) Real64 *PtrConvectGainRate; // POINTER to value of convection heat gain rate for device, watts Real64 ConvectGainRate; // current timestep value of convection heat gain rate for device, watts Real64 *PtrReturnAirConvGainRate; // POINTER to value of return air convection heat gain rate for device, W @@ -1178,7 +1178,7 @@ namespace DataHeatBalance { // Default Constructor GenericComponentZoneIntGainStruct() - : CompTypeOfNum(0), SpaceGainFrac(1.0), PtrConvectGainRate(nullptr), ConvectGainRate(0.0), PtrReturnAirConvGainRate(nullptr), + : CompTypeOfNum(0), spaceGainFrac(1.0), PtrConvectGainRate(nullptr), ConvectGainRate(0.0), PtrReturnAirConvGainRate(nullptr), ReturnAirConvGainRate(0.0), PtrRadiantGainRate(nullptr), RadiantGainRate(0.0), PtrLatentGainRate(nullptr), LatentGainRate(0.0), PtrReturnAirLatentGainRate(nullptr), ReturnAirLatentGainRate(0.0), PtrCarbonDioxideGainRate(nullptr), CarbonDioxideGainRate(0.0), PtrGenericContamGainRate(nullptr), GenericContamGainRate(0.0), ReturnAirNodeNum(0) @@ -1235,9 +1235,9 @@ namespace DataHeatBalance { struct SpaceIntGainDeviceData { - int NumberOfDevices = 0; - int MaxNumberOfDevices = 0; - Array1D Device; + int numberOfDevices = 0; + int maxNumberOfDevices = 0; + Array1D device; }; struct WindowBlindProperties @@ -2242,13 +2242,13 @@ struct HeatBalanceData : BaseGlobalStruct EPVector ZonePreDefRep; DataHeatBalance::ZonePreDefRepType BuildingPreDefRep; EPVector ZoneIntGain; - EPVector SpaceIntGain; - EPVector SpaceIntGainDevices; + EPVector spaceIntGain; + EPVector spaceIntGainDevices; EPVector SupportPillar; EPVector DeflectionState; EPVector SpectralData; - EPVector Space; - EPVector SpaceList; + EPVector space; + EPVector spaceList; EPVector Zone; EPVector ZoneList; EPVector ZoneGroup; @@ -2292,7 +2292,7 @@ struct HeatBalanceData : BaseGlobalStruct EPVector InfiltrationObjects; EPVector VentilationObjects; EPVector ZnRpt; - EPVector SpaceRpt; + EPVector spaceRpt; EPVector MassConservation; DataHeatBalance::ZoneAirMassFlowConservation ZoneAirMassFlow; EPVector ZoneLocalEnvironment; @@ -2516,13 +2516,13 @@ struct HeatBalanceData : BaseGlobalStruct this->ZonePreDefRep.deallocate(); this->BuildingPreDefRep = DataHeatBalance::ZonePreDefRepType(); this->ZoneIntGain.deallocate(); - this->SpaceIntGain.deallocate(); - this->SpaceIntGainDevices.deallocate(); + this->spaceIntGain.deallocate(); + this->spaceIntGainDevices.deallocate(); this->SupportPillar.deallocate(); this->DeflectionState.deallocate(); this->SpectralData.deallocate(); - this->Space.deallocate(); - this->SpaceList.deallocate(); + this->space.deallocate(); + this->spaceList.deallocate(); this->Zone.deallocate(); this->ZoneList.deallocate(); this->ZoneGroup.deallocate(); @@ -2566,7 +2566,7 @@ struct HeatBalanceData : BaseGlobalStruct this->InfiltrationObjects.deallocate(); this->VentilationObjects.deallocate(); this->ZnRpt.deallocate(); - this->SpaceRpt.deallocate(); + this->spaceRpt.deallocate(); this->MassConservation.deallocate(); this->ZoneAirMassFlow = DataHeatBalance::ZoneAirMassFlowConservation(); this->ZoneLocalEnvironment.deallocate(); diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 84589438b29..42be6fa30ff 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -627,7 +627,7 @@ namespace DataSurfaces { int Zone; // Interior environment or zone the surface is a part of // Note that though attached shading surfaces are part of a zone, this // value is 0 there to facilitate using them as detached surfaces (more accurate shading. - int Space; // Space the surface is part of + int spaceNum; // Space the surface is part of std::string ExtBoundCondName; // Name for the Outside Environment Object int ExtBoundCond; // For an "interzone" surface, this is the adjacent surface number. // for an internal/adiabatic surface this is the current surface number. @@ -681,9 +681,9 @@ namespace DataSurfaces { CosAzim(0.0), SinTilt(0.0), CosTilt(0.0), IsConvex(true), IsDegenerate(false), VerticesProcessed(false), XShift(0.0), YShift(0.0), HeatTransSurf(false), OutsideHeatSourceTermSchedule(0), InsideHeatSourceTermSchedule(0), - HeatTransferAlgorithm(iHeatTransferModel::NotSet), BaseSurf(0), NumSubSurfaces(0), Zone(0), Space(0), ExtBoundCond(0), ExtSolar(false), - ExtWind(false), ViewFactorGround(0.0), ViewFactorSky(0.0), ViewFactorGroundIR(0.0), ViewFactorSkyIR(0.0), OSCPtr(0), OSCMPtr(0), - MirroredSurf(false), IsShadowing(false), IsShadowPossibleObstruction(false), SchedShadowSurfIndex(0), IsTransparent(false), + HeatTransferAlgorithm(iHeatTransferModel::NotSet), BaseSurf(0), NumSubSurfaces(0), Zone(0), spaceNum(0), ExtBoundCond(0), + ExtSolar(false), ExtWind(false), ViewFactorGround(0.0), ViewFactorSky(0.0), ViewFactorGroundIR(0.0), ViewFactorSkyIR(0.0), OSCPtr(0), + OSCMPtr(0), MirroredSurf(false), IsShadowing(false), IsShadowPossibleObstruction(false), SchedShadowSurfIndex(0), IsTransparent(false), SchedMinValue(0.0), activeWindowShadingControl(0), HasShadeControl(false), activeShadedConstruction(0), activeShadedConstructionPrev(0), FrameDivider(0), Multiplier(1.0), SolarEnclIndex(0), SolarEnclSurfIndex(0), IsAirBoundarySurf(false) { @@ -1155,15 +1155,15 @@ namespace DataSurfaces { int Construction; // pointer to contruction object Real64 GrossArea; // internal surface area, [m2] bool ZoneListActive; // flag to a list - std::string SpaceOrSpaceListName; // Space or Space list name - int SpaceOrSpaceListPtr; // pointer to a Space list - int NumOfSpaces; // number of Spaces in a Space list - bool SpaceListActive; // flag to a list + std::string spaceOrSpaceListName; // Space or Space list name + int spaceOrSpaceListPtr; // pointer to a Space list + int numOfSpaces; // number of Spaces in a Space list + bool spaceListActive; // flag to a list // Default Constructor IntMassObject() - : ZoneOrZoneListPtr(0), NumOfZones(0), Construction(0), GrossArea(0.0), ZoneListActive(false), SpaceOrSpaceListPtr(0), NumOfSpaces(0), - SpaceListActive(false) + : ZoneOrZoneListPtr(0), NumOfZones(0), Construction(0), GrossArea(0.0), ZoneListActive(false), spaceOrSpaceListPtr(0), numOfSpaces(0), + spaceListActive(false) { } }; diff --git a/src/EnergyPlus/DataViewFactorInformation.hh b/src/EnergyPlus/DataViewFactorInformation.hh index 0c405bd70c8..4d2fac73635 100644 --- a/src/EnergyPlus/DataViewFactorInformation.hh +++ b/src/EnergyPlus/DataViewFactorInformation.hh @@ -65,8 +65,8 @@ namespace DataViewFactorInformation { { // Members std::string Name; // Enclosure name - std::vector SpaceNames; // Space names which are part of this enclosure - std::vector SpaceNums; // Spaces which are part of this enclosure + std::vector spaceNames; // Space names which are part of this enclosure + std::vector spaceNums; // Spaces which are part of this enclosure int NumOfSurfaces; // Number of surfaces in the enclosure Array2D F; // View Factors Array2D ScriptF; // Hottel's Script F //Tuned Transposed diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index 60140810afe..0110b6dd9f8 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -155,7 +155,7 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum) // E // DATE WRITTEN July 1997 // MODIFIED Mar 2004, FCW: add calculation of following SurfaceWindow variables: // EnclAreaMinusThisSurf, EnclAreaReflProdMinusThisSurf, RhoCeilingWall, - // RhoFloorWall, FractionUpgoing. Add calculation of ZoneDaylight%FloorVisRefl. + // RhoFloorWall, FractionUpgoing. Add calculation of ZoneDaylight%floorVisRefl. // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: @@ -246,11 +246,11 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum) // E ShowSevereError(state, "DayltgAveInteriorReflectance: Total opaque surface area is <=0.0 in solar enclosure=" + thisEnclosure.Name); ShowFatalError(state, "Program terminates due to preceding conditions."); } - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect = ARHTOT / AInsTot; + state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect = ARHTOT / AInsTot; // Total inside surface area of enclosure - state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea = AInsTot; + state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea = AInsTot; // Average floor visible reflectance - state.dataDaylightingData->EnclDaylight(enclNum).FloorVisRefl = + state.dataDaylightingData->enclDaylight(enclNum).floorVisRefl = state.dataDaylightingManager->ARH(3) / (state.dataDaylightingManager->AR(3) + 1.e-6); for (int ISurf : thisEnclosure.SurfacePtr) { @@ -3989,7 +3989,7 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylSourceFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = state.dataDaylightingManager->AVWLSK(iHour, JSH, ISky) / (NWX * NWY * state.dataDaylightingManager->GILSK(iHour, ISky)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * state.dataDaylightingManager->GILSK(iHour, ISky)); } else { state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylIllFacSky(iHour, JSH, ISky, iRefPoint, loopwin) = 0.0; @@ -4012,10 +4012,10 @@ void FigureRefPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingManager->AVWLSUdisk(iHour, JSH) / (NWX * NWY * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSun(iHour, JSH, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylBackFacSunDisk(iHour, JSH, iRefPoint, loopwin) = - state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); } else { state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylIllFacSun(iHour, JSH, iRefPoint, loopwin) = 0.0; @@ -4127,7 +4127,7 @@ void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingData->IllumMapCalc(MapNum).DaylSourceFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = state.dataDaylightingManager->AVWLSK(iHour, JSH, ISky) / (NWX * NWY * state.dataDaylightingManager->GILSK(iHour, ISky)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSK(iHour, JSH, ISky) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * state.dataDaylightingManager->GILSK(iHour, ISky)); } else { state.dataDaylightingData->IllumMapCalc(MapNum).DaylIllFacSky(iHour, JSH, ISky, iMapPoint, loopwin) = 0.0; @@ -4150,10 +4150,10 @@ void FigureMapPointDayltgFactorsToAddIllums(EnergyPlusData &state, state.dataDaylightingManager->AVWLSUdisk(iHour, JSH) / (NWX * NWY * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSun(iHour, JSH, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSU(iHour, JSH) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); state.dataDaylightingData->IllumMapCalc(MapNum).DaylBackFacSunDisk(iHour, JSH, iMapPoint, loopwin) = - state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / + state.dataDaylightingManager->EINTSUdisk(iHour, JSH) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / (DataGlobalConstants::Pi * (state.dataDaylightingManager->GILSU(iHour) + 0.0001)); } else { state.dataDaylightingData->IllumMapCalc(MapNum).DaylIllFacSun(iHour, JSH, iMapPoint, loopwin) = 0.0; @@ -4229,7 +4229,7 @@ void GetDaylightingParametersInput(EnergyPlusData &state) cCurrentModuleObject = "Daylighting:Controls"; TotDaylightingControls = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject); if (TotDaylightingControls > 0) { - state.dataDaylightingData->EnclDaylight.allocate(state.dataViewFactor->NumOfSolarEnclosures); + state.dataDaylightingData->enclDaylight.allocate(state.dataViewFactor->NumOfSolarEnclosures); GetInputDayliteRefPt(state, ErrorsFound); GetDaylightingControls(state, TotDaylightingControls, ErrorsFound); GeometryTransformForDaylighting(state); @@ -4244,8 +4244,8 @@ void GetDaylightingParametersInput(EnergyPlusData &state) for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { // Loop through all spaces in the same enclosure to find total reference points int numEnclRefPoints = 0; - for (int const spaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { - int zoneNum = state.dataHeatBal->Space(spaceNum).ZoneNum; + for (int const spaceNum : state.dataViewFactor->EnclSolInfo(enclNum).spaceNums) { + int zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; // TODO MJW: Reference points will be double-counted for zone with more than one space int numRefPoints = state.dataDaylightingData->ZoneDaylight(zoneNum).TotalDaylRefPoints; numEnclRefPoints += numRefPoints; @@ -4400,8 +4400,8 @@ void GetDaylightingParametersInput(EnergyPlusData &state) if (state.dataSurface->Surface(enclSurfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(enclSurfNum).ExtSolar) { int refPtCount = 0; // TODO: This enclosure/zone mapping is a mess, punting for now - for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { - int const enclZoneNum = state.dataHeatBal->Space(enclSpaceNum).ZoneNum; + for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).spaceNums) { + int const enclZoneNum = state.dataHeatBal->space(enclSpaceNum).zoneNum; if (state.dataViewFactor->EnclSolInfo(enclNum).TotalEnclosureDaylRefPoints > 0 && !Zone(enclZoneNum).HasInterZoneWindow && state.dataDaylightingData->ZoneDaylight(enclZoneNum).DaylightMethod == DataDaylighting::iDaylightingMethod::SplitFluxDaylighting) { @@ -5733,9 +5733,9 @@ void DayltgGlareWithIntWins(EnergyPlusData &state, for (int IL = 1; IL <= RefPoints; ++IL) { Real64 BackgroundLum = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins * - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi; + state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi; BackgroundLum = max(state.dataDaylightingData->ZoneDaylight(ZoneNum).IllumSetPoint(IL) * - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, + state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, BackgroundLum); // Loop over exterior windows associated with zone @@ -6798,7 +6798,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number // met at both reference points, either by daylight or electric lights int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; for (int IL = 1; IL <= NREFPT; ++IL) { - BACL = max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, + BACL = max(SetPnt(IL) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL)); // DayltgGlare uses ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,1,loop) for unshaded windows, and // ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,2,loop) for shaded windows @@ -6938,7 +6938,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number // Re-calc daylight and glare at shaded state. For switchable glazings, it is the fully dark state. for (int IL = 1; IL <= NREFPT; ++IL) { - BACL = max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, + BACL = max(SetPnt(IL) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // DayltgGlare uses ZoneDaylight(ZoneNum)%SourceLumFromWinAtRefPt(IL,2,loop) for shaded state DayltgGlare(state, IL, BACL, GLRNEW(IL), ZoneNum); @@ -7089,7 +7089,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number RBACLU(IL, igroup) = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + (WBACLU(1, IL, igroup) - WBACLU(2, IL, igroup)) * (1.0 - tmpSWFactor); BACL = - max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, + max(SetPnt(IL) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // needs to update SourceLumFromWinAtRefPt(IL,2,loop) before re-calc DayltgGlare tmpMult = (TVIS1(igroup) - (TVIS1(igroup) - TVIS2(igroup)) * tmpSWFactor) / TVIS2(igroup); @@ -7139,7 +7139,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number RBACLU(IL, igroup) = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + (WBACLU(1, IL, igroup) - WBACLU(2, IL, igroup)) * (1.0 - tmpSWFactor); BACL = - max(SetPnt(IL) * state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect / DataGlobalConstants::Pi, + max(SetPnt(IL) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, RBACLU(IL, igroup)); // needs to update SourceLumFromWinAtRefPt(IL,2,IWin) before re-calc DayltgGlare @@ -7228,8 +7228,8 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number IS = 2; if (state.dataDaylightingData->ZoneDaylight(ZoneNum).DaylightMethod == DataDaylighting::iDaylightingMethod::SplitFluxDaylighting) { int refPtCount = 0; - for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).SpaceNums) { - int enclZoneNum = state.dataHeatBal->Space(enclSpaceNum).ZoneNum; + for (int const enclSpaceNum : state.dataViewFactor->EnclSolInfo(enclNum).spaceNums) { + int enclZoneNum = state.dataHeatBal->space(enclSpaceNum).zoneNum; // TODO MJW: Reference points will be double-counted for zone with more than one space for (int refPtNum = 1; refPtNum <= state.dataDaylightingData->ZoneDaylight(enclZoneNum).TotalDaylRefPoints; ++refPtNum) { ++refPtCount; // Count reference points across each zone in the same enclosure @@ -7706,18 +7706,18 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, ZoneNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).Zone; int const enclNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex; int const enclNumThisZone = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; - // The inside surface area, ZoneDaylight(ZoneNum)%TotInsSurfArea was calculated in subr DayltgAveInteriorReflectance + // The inside surface area, ZoneDaylight(ZoneNum)%totInsSurfArea was calculated in subr DayltgAveInteriorReflectance if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { ExtWinType = DataDaylighting::iExtWinType::InZoneExtWin; - EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNumThisWin).TotInsSurfArea; + EnclInsideSurfArea = state.dataDaylightingData->enclDaylight(enclNumThisWin).totInsSurfArea; IntWinAdjZoneExtWinNum = 0; } else { ExtWinType = DataDaylighting::iExtWinType::AdjZoneExtWin; // If window is exterior window in adjacent zone, then use areas of both zones - EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNumThisZone).TotInsSurfArea + - state.dataDaylightingData->EnclDaylight(enclNumThisWin).TotInsSurfArea; + EnclInsideSurfArea = state.dataDaylightingData->enclDaylight(enclNumThisZone).totInsSurfArea + + state.dataDaylightingData->enclDaylight(enclNumThisWin).totInsSurfArea; // find index in IntWinAdjZoneExtWin for (AdjExtWinLoop = 1; AdjExtWinLoop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZoneExtWins; ++AdjExtWinLoop) { if (IWin == state.dataDaylightingData->ZoneDaylight(ZoneNum).IntWinAdjZoneExtWin(AdjExtWinLoop).SurfNum) { // found it @@ -8225,7 +8225,7 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, } // Sky-related portion of internally reflected illuminance. - // The inside surface area, ZoneDaylight(ZoneNum)%TotInsSurfArea, and ZoneDaylight(ZoneNum)%AveVisDiffReflect, + // The inside surface area, ZoneDaylight(ZoneNum)%totInsSurfArea, and ZoneDaylight(ZoneNum)%aveVisDiffReflect, // were calculated in subr DayltgAveInteriorReflectance. for (ISky = 1; ISky <= 4; ++ISky) { @@ -8237,7 +8237,7 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, (FLFWSK(JSH, ISky) * state.dataSurface->SurfWinRhoFloorWall(IWin) + FLCWSK(JSH, ISky) * state.dataSurface->SurfWinRhoCeilingWall(IWin)) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNumThisZone).aveVisDiffReflect)); } // JSH } // ISKY @@ -8484,12 +8484,12 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, state.dataDaylightingManager->EINTSU(IHR, JSH) = (FLFWSU(JSH) * state.dataSurface->SurfWinRhoFloorWall(IWin) + FLCWSU(JSH) * state.dataSurface->SurfWinRhoCeilingWall(IWin)) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNumThisZone).aveVisDiffReflect)); state.dataDaylightingManager->EINTSUdisk(IHR, JSH) = FLFWSUdisk(JSH) * state.dataSurface->SurfWinRhoFloorWall(IWin) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNumThisZone).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNumThisZone).aveVisDiffReflect)); } } @@ -8803,17 +8803,17 @@ void DayltgInterReflectedIllumComplexFenestration(EnergyPlusData &state, } int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; - Real64 EnclInsideSurfArea = state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea; + Real64 EnclInsideSurfArea = state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea; for (iSky = 1; iSky <= 4; ++iSky) { state.dataDaylightingManager->EINTSK(IHR, 1, iSky) = FFSKTot(iSky) * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect)); } state.dataDaylightingManager->EINTSU(IHR, 1) = FFSUTot * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect)); state.dataDaylightingManager->EINTSUdisk(IHR, 1) = FFSUdiskTot * (state.dataSurface->Surface(IWin).Area / state.dataSurface->SurfWinGlazedFrac(IWin)) / - (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); + (EnclInsideSurfArea * (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect)); if (allocated(FLSK)) FLSK.deallocate(); if (allocated(FLSU)) FLSU.deallocate(); @@ -10672,13 +10672,13 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu state.dataSurface->Surface(IWin).Area * state.dataEnvrn->PDIFLW; QDifTransUp = QDifTrans * state.dataSurface->SurfWinFractionUpgoing(IWin); QDifTransDn = QDifTrans * (1.0 - state.dataSurface->SurfWinFractionUpgoing(IWin)); - if (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect) != + if (state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea * + (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect) != 0.0) { DifInterReflIllThisWin = (QDifTransDn * state.dataSurface->SurfWinRhoFloorWall(IWin) + QDifTransUp * state.dataSurface->SurfWinRhoCeilingWall(IWin)) / - (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); + (state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea * + (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect)); } else { DifInterReflIllThisWin = 0.0; } @@ -10689,11 +10689,11 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu // Add inter-reflected illuminance from beam solar entering ZoneNum through interior windows // TH, CR 7873, 9/17/2009 BmInterReflIll = 0.0; - if (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea > 0) { + if (state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea > 0) { BmInterReflIll = (state.dataHeatBal->EnclSolDBIntWin(ZoneNum) * state.dataEnvrn->BeamSolarRad * state.dataEnvrn->PDIRLW * - state.dataDaylightingData->EnclDaylight(enclNum).FloorVisRefl) / - (state.dataDaylightingData->EnclDaylight(enclNum).TotInsSurfArea * - (1.0 - state.dataDaylightingData->EnclDaylight(enclNum).AveVisDiffReflect)); + state.dataDaylightingData->enclDaylight(enclNum).floorVisRefl) / + (state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea * + (1.0 - state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect)); } state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins += BmInterReflIll; diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 557345d458d..41a8caa8040 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -507,10 +507,10 @@ namespace HeatBalanceIntRadExchange { } } int numEnclosureSurfaces = 0; - for (int spaceNum : thisEnclosure.SpaceNums) { + for (int spaceNum : thisEnclosure.spaceNums) { // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces // But it also includes air boundary surfaces which need to be excluded here - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++numEnclosureSurfaces; } @@ -533,15 +533,15 @@ namespace HeatBalanceIntRadExchange { // Initialize the surface pointer array int enclosureSurfNum = 0; - for (int const spaceNum : thisEnclosure.SpaceNums) { + for (int const spaceNum : thisEnclosure.spaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; } // Store SurfaceReportNums to maintain original reporting order - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[surfNum - 1]) { thisEnclosure.SurfaceReportNums.push_back(enclSNum); @@ -621,7 +621,7 @@ namespace HeatBalanceIntRadExchange { thisEnclosure.Area, thisEnclosure.F, thisEnclosure.Name, - thisEnclosure.SpaceNums, + thisEnclosure.spaceNums, CheckValue1, CheckValue2, FinalCheckValue, @@ -819,10 +819,10 @@ namespace HeatBalanceIntRadExchange { "Convergence"); } int numEnclosureSurfaces = 0; - for (int spaceNum : thisEnclosure.SpaceNums) { + for (int spaceNum : thisEnclosure.spaceNums) { // Note that Space.Surfaces only includes HT surfs, see SurfaceGeometry::CreateMissingSpaces // But it also includes air boundary surfaces which need to be excluded here - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++numEnclosureSurfaces; } @@ -840,9 +840,9 @@ namespace HeatBalanceIntRadExchange { // Initialize the surface pointer array int enclosureSurfNum = 0; - for (int const spaceNum : thisEnclosure.SpaceNums) { + for (int const spaceNum : thisEnclosure.spaceNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { if (state.dataSurface->Surface(surfNum).IsAirBoundarySurf) continue; ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; @@ -852,7 +852,7 @@ namespace HeatBalanceIntRadExchange { state.dataSurface->Surface(surfNum).RadEnclIndex = enclosureNum; // Radiant and Solar enclosures are parallel for now } // Store SurfaceReportNums to maintain original reporting order - for (int surfNum : state.dataHeatBal->Space(spaceNum).Surfaces) { + for (int surfNum : state.dataHeatBal->space(spaceNum).surfaces) { for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[surfNum - 1]) { thisEnclosure.SurfaceReportNums.push_back(enclSNum); @@ -922,7 +922,7 @@ namespace HeatBalanceIntRadExchange { thisEnclosure.Area, thisEnclosure.F, thisEnclosure.Name, - thisEnclosure.SpaceNums, + thisEnclosure.spaceNums, CheckValue1, CheckValue2, FinalCheckValue, @@ -1167,19 +1167,19 @@ namespace HeatBalanceIntRadExchange { if (enclMatchFound) continue; // We're done with this instance // Find matching SpaceList name int spaceListNum = - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase(thisSpaceOrSpaceListName), state.dataHeatBal->SpaceList); + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase(thisSpaceOrSpaceListName), state.dataHeatBal->spaceList); if (spaceListNum > 0) { // Look for radiant enclosure with same list of spaces - auto &thisSpaceList(state.dataHeatBal->SpaceList(spaceListNum)); + auto &thisSpaceList(state.dataHeatBal->spaceList(spaceListNum)); for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); bool anySpaceNotFound = false; // If the number of enclosure spaces is not the same as the number of spacelist space, go to the next enclosure - if (thisSpaceList.Spaces.size() != thisEnclosure.SpaceNums.size()) continue; - for (int sListSpaceNum : thisSpaceList.Spaces) { + if (thisSpaceList.spaces.size() != thisEnclosure.spaceNums.size()) continue; + for (int sListSpaceNum : thisSpaceList.spaces) { // Search for matching spaces bool thisSpaceFound = false; - for (int enclSpaceNum : thisEnclosure.SpaceNums) { + for (int enclSpaceNum : thisEnclosure.spaceNums) { if (enclSpaceNum == sListSpaceNum) { thisSpaceFound = true; break; @@ -1205,11 +1205,11 @@ namespace HeatBalanceIntRadExchange { auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclosureNum)); bool anySpaceNotFound = false; // If the number of enclosure spaces is not the same as the number of spacelist space, go to the next enclosure - if (thisSpaceList.Spaces.size() != thisEnclosure.SpaceNums.size()) continue; - for (int sListSpaceNum : thisSpaceList.Spaces) { + if (thisSpaceList.spaces.size() != thisEnclosure.spaceNums.size()) continue; + for (int sListSpaceNum : thisSpaceList.spaces) { // Search for matching spaces bool thisSpaceFound = false; - for (int enclSpaceNum : thisEnclosure.SpaceNums) { + for (int enclSpaceNum : thisEnclosure.spaceNums) { if (enclSpaceNum == sListSpaceNum) { thisSpaceFound = true; break; @@ -1641,7 +1641,7 @@ namespace HeatBalanceIntRadExchange { FinalCheckValue = FixedCheckValue = std::abs(RowSum - N); F = FixedF; for (int spaceNum : spaceNums) { - state.dataHeatBal->Zone(state.dataHeatBal->Space(spaceNum).ZoneNum).EnforcedReciprocity = true; + state.dataHeatBal->Zone(state.dataHeatBal->space(spaceNum).zoneNum).EnforcedReciprocity = true; } return; // Do not iterate, stop with reciprocity satisfied. diff --git a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc index 4442e906d0f..12eb50b2177 100644 --- a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc +++ b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc @@ -73,9 +73,9 @@ void SetupZoneInternalGain(EnergyPlusData &state, { // Distribute zone internal gain across all spaces in the zone weighted by floor area Real64 gainFrac = 1.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->Zone(ZoneNum).Spaces.size() > 1) { - gainFrac = state.dataHeatBal->Space(spaceNum).FloorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->Zone(ZoneNum).spaces.size() > 1) { + gainFrac = state.dataHeatBal->space(spaceNum).floorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; } SetupSpaceInternalGain(state, spaceNum, @@ -94,8 +94,8 @@ void SetupZoneInternalGain(EnergyPlusData &state, } } void SetupSpaceInternalGain(EnergyPlusData &state, - int const SpaceNum, - Real64 SpaceGainFraction, // Fraction of gain value assigned to this space + int const spaceNum, + Real64 spaceGainFraction, // Fraction of gain value assigned to this space std::string const &cComponentObject, // object class name for device contributing internal gain std::string const &cComponentName, // user unique name for device int const IntGainComp_TypeOfNum, @@ -148,12 +148,12 @@ void SetupSpaceInternalGain(EnergyPlusData &state, return; } - auto &thisIntGain = state.dataHeatBal->SpaceIntGainDevices(SpaceNum); - for (IntGainsNum = 1; IntGainsNum <= thisIntGain.NumberOfDevices; ++IntGainsNum) { - if ((thisIntGain.Device(IntGainsNum).CompObjectType == UpperCaseObjectType) && - (thisIntGain.Device(IntGainsNum).CompTypeOfNum == IntGainComp_TypeOfNum)) { + auto &thisIntGain = state.dataHeatBal->spaceIntGainDevices(spaceNum); + for (IntGainsNum = 1; IntGainsNum <= thisIntGain.numberOfDevices; ++IntGainsNum) { + if ((thisIntGain.device(IntGainsNum).CompObjectType == UpperCaseObjectType) && + (thisIntGain.device(IntGainsNum).CompTypeOfNum == IntGainComp_TypeOfNum)) { FoundIntGainsType = true; - if (thisIntGain.Device(IntGainsNum).CompObjectName == UpperCaseObjectName) { + if (thisIntGain.device(IntGainsNum).CompObjectName == UpperCaseObjectName) { FoundDuplicate = true; break; } @@ -168,58 +168,58 @@ void SetupSpaceInternalGain(EnergyPlusData &state, return; } - if (thisIntGain.NumberOfDevices == 0) { - thisIntGain.Device.allocate(DeviceAllocInc); - thisIntGain.MaxNumberOfDevices = DeviceAllocInc; + if (thisIntGain.numberOfDevices == 0) { + thisIntGain.device.allocate(DeviceAllocInc); + thisIntGain.maxNumberOfDevices = DeviceAllocInc; } else { - if (thisIntGain.NumberOfDevices + 1 > thisIntGain.MaxNumberOfDevices) { - thisIntGain.Device.redimension(thisIntGain.MaxNumberOfDevices += DeviceAllocInc); + if (thisIntGain.numberOfDevices + 1 > thisIntGain.maxNumberOfDevices) { + thisIntGain.device.redimension(thisIntGain.maxNumberOfDevices += DeviceAllocInc); } } - ++thisIntGain.NumberOfDevices; + ++thisIntGain.numberOfDevices; - thisIntGain.Device(thisIntGain.NumberOfDevices).CompObjectType = UpperCaseObjectType; - thisIntGain.Device(thisIntGain.NumberOfDevices).CompObjectName = UpperCaseObjectName; - thisIntGain.Device(thisIntGain.NumberOfDevices).CompTypeOfNum = IntGainComp_TypeOfNum; - thisIntGain.Device(thisIntGain.NumberOfDevices).SpaceGainFrac = SpaceGainFraction; + thisIntGain.device(thisIntGain.numberOfDevices).CompObjectType = UpperCaseObjectType; + thisIntGain.device(thisIntGain.numberOfDevices).CompObjectName = UpperCaseObjectName; + thisIntGain.device(thisIntGain.numberOfDevices).CompTypeOfNum = IntGainComp_TypeOfNum; + thisIntGain.device(thisIntGain.numberOfDevices).spaceGainFrac = spaceGainFraction; // note pointer assignments in code below! if (ConvectionGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrConvectGainRate = ConvectionGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrConvectGainRate = ConvectionGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrConvectGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrConvectGainRate = &state.dataHeatBal->zeroPointerVal; } if (ReturnAirConvectionGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirConvGainRate = ReturnAirConvectionGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrReturnAirConvGainRate = ReturnAirConvectionGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirConvGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrReturnAirConvGainRate = &state.dataHeatBal->zeroPointerVal; } if (ThermalRadiationGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrRadiantGainRate = ThermalRadiationGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrRadiantGainRate = ThermalRadiationGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrRadiantGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrRadiantGainRate = &state.dataHeatBal->zeroPointerVal; } if (LatentGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrLatentGainRate = LatentGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrLatentGainRate = LatentGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrLatentGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrLatentGainRate = &state.dataHeatBal->zeroPointerVal; } if (ReturnAirLatentGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirLatentGainRate = ReturnAirLatentGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrReturnAirLatentGainRate = ReturnAirLatentGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrReturnAirLatentGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrReturnAirLatentGainRate = &state.dataHeatBal->zeroPointerVal; } if (CarbonDioxideGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrCarbonDioxideGainRate = CarbonDioxideGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrCarbonDioxideGainRate = CarbonDioxideGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrCarbonDioxideGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrCarbonDioxideGainRate = &state.dataHeatBal->zeroPointerVal; } if (GenericContamGainRate) { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrGenericContamGainRate = GenericContamGainRate; + thisIntGain.device(thisIntGain.numberOfDevices).PtrGenericContamGainRate = GenericContamGainRate; } else { - thisIntGain.Device(thisIntGain.NumberOfDevices).PtrGenericContamGainRate = &state.dataHeatBal->zeroPointerVal; + thisIntGain.device(thisIntGain.numberOfDevices).PtrGenericContamGainRate = &state.dataHeatBal->zeroPointerVal; } - thisIntGain.Device(thisIntGain.NumberOfDevices).ReturnAirNodeNum = RetNodeNum; + thisIntGain.device(thisIntGain.numberOfDevices).ReturnAirNodeNum = RetNodeNum; } } // namespace EnergyPlus diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index e17fa6d788b..2e442bfaae4 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5467,40 +5467,40 @@ namespace HeatBalanceManager { int numSpaces = instancesValue.size(); int spaceNum = 0; // Allow for one additional Space per zone if some surfaces do not have a Space assigned in input - state.dataHeatBal->Space.allocate(size_t(numSpaces + state.dataGlobal->NumOfZones)); + state.dataHeatBal->space.allocate(size_t(numSpaces + state.dataGlobal->NumOfZones)); // Allow for one additional "General" space type for auto-generated spaces state.dataHeatBal->spaceTypes.allocate(size_t(numSpaces + 1)); for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { ++spaceNum; auto const &objectFields = instance.value(); - auto &thisSpace = state.dataHeatBal->Space(spaceNum); + auto &thisSpace = state.dataHeatBal->space(spaceNum); thisSpace.Name = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); std::string zoneName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_name"); - thisSpace.UserEnteredFloorArea = ip->getRealFieldValue(objectFields, objectSchemaProps, "floor_area"); + thisSpace.userEnteredFloorArea = ip->getRealFieldValue(objectFields, objectSchemaProps, "floor_area"); int zoneNum = UtilityRoutines::FindItemInList(zoneName, state.dataHeatBal->Zone); if (zoneNum > 0) { - thisSpace.ZoneNum = zoneNum; - state.dataHeatBal->Zone(zoneNum).Spaces.emplace_back(spaceNum); + thisSpace.zoneNum = zoneNum; + state.dataHeatBal->Zone(zoneNum).spaces.emplace_back(spaceNum); } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); ShowContinueError(state, "Zone Name =" + zoneName + "not found."); ErrorsFound = true; } - thisSpace.SpaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); + thisSpace.spaceType = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "space_type"); bool spaceTypeFound = false; for (int spaceTypePtr = 1; spaceTypePtr <= state.dataGlobal->numSpaceTypes; ++spaceTypePtr) { - if (UtilityRoutines::SameString(thisSpace.SpaceType, state.dataHeatBal->spaceTypes(spaceTypePtr))) { - thisSpace.SpaceTypeNum = spaceTypePtr; + if (UtilityRoutines::SameString(thisSpace.spaceType, state.dataHeatBal->spaceTypes(spaceTypePtr))) { + thisSpace.spaceTypeNum = spaceTypePtr; spaceTypeFound = true; break; } } if (!spaceTypeFound) { ++state.dataGlobal->numSpaceTypes; - state.dataHeatBal->spaceTypes(state.dataGlobal->numSpaceTypes) = thisSpace.SpaceType; - thisSpace.SpaceTypeNum = state.dataGlobal->numSpaceTypes; + state.dataHeatBal->spaceTypes(state.dataGlobal->numSpaceTypes) = thisSpace.spaceType; + thisSpace.spaceTypeNum = state.dataGlobal->numSpaceTypes; } auto extensibles = objectFields.find("tags"); @@ -5508,14 +5508,14 @@ namespace HeatBalanceManager { if (extensibles != objectFields.end()) { auto extensiblesArray = extensibles.value(); for (auto extensibleInstance : extensiblesArray) { - thisSpace.Tags.emplace_back(ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "tag")); + thisSpace.tags.emplace_back(ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "tag")); } } } state.dataGlobal->numSpaces = spaceNum; } else { // If no Spaces are defined, then allow for one Space per zone, and one spaceType - state.dataHeatBal->Space.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->space.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->spaceTypes.allocate(1); } @@ -5526,11 +5526,11 @@ namespace HeatBalanceManager { auto &instancesValue = instances2.value(); int numSpaceLists = instancesValue.size(); int spaceListNum = 0; - state.dataHeatBal->SpaceList.allocate(numSpaceLists); + state.dataHeatBal->spaceList.allocate(numSpaceLists); for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { ++spaceListNum; auto const &objectFields = instance.value(); - auto &thisSpaceList = state.dataHeatBal->SpaceList(spaceListNum); + auto &thisSpaceList = state.dataHeatBal->spaceList(spaceListNum); thisSpaceList.Name = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(cCurrentModuleObject, instance.key()); @@ -5538,7 +5538,7 @@ namespace HeatBalanceManager { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": is a duplicate of a zone name."); ErrorsFound = true; } - if (UtilityRoutines::FindItemInList(thisSpaceList.Name, state.dataHeatBal->Space) > 0) { + if (UtilityRoutines::FindItemInList(thisSpaceList.Name, state.dataHeatBal->space) > 0) { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": is a duplicate of a space name."); ErrorsFound = true; } @@ -5550,18 +5550,18 @@ namespace HeatBalanceManager { auto extensiblesArray = extensibles.value(); for (auto extensibleInstance : extensiblesArray) { std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_name"); - int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->Space); + int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); if (thisSpaceNum > 0) { - thisSpaceList.Spaces.emplace_back(thisSpaceNum); + thisSpaceList.spaces.emplace_back(thisSpaceNum); } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpaceList.Name); ShowContinueError(state, "Space Name =" + thisSpaceName + "not found."); ErrorsFound = true; } - thisSpaceList.MaxSpaceNameLength = max(thisSpaceList.MaxSpaceNameLength, len(thisSpaceName)); + thisSpaceList.maxSpaceNameLength = max(thisSpaceList.maxSpaceNameLength, len(thisSpaceName)); // Check for duplicate spaces - for (int loop = 1; loop <= int(thisSpaceList.Spaces.size()) - 1; ++loop) { - if (thisSpaceNum == thisSpaceList.Spaces(loop)) { + for (int loop = 1; loop <= int(thisSpaceList.spaces.size()) - 1; ++loop) { + if (thisSpaceNum == thisSpaceList.spaces(loop)) { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=\"" + thisSpaceList.Name + "\": Space Name " + thisSpaceName + " appears more than once in list."); @@ -5576,14 +5576,14 @@ namespace HeatBalanceManager { // Make sure every zone has at least one space for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { auto &thisZone = state.dataHeatBal->Zone(zoneNum); - if (thisZone.Spaces.empty()) { + if (thisZone.spaces.empty()) { ++state.dataGlobal->numSpaces; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).ZoneNum = zoneNum; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).Name = thisZone.Name; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceType = "GENERAL"; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceTypeNum = GetGeneralSpaceTypeNum(state); + state.dataHeatBal->space(state.dataGlobal->numSpaces).zoneNum = zoneNum; + state.dataHeatBal->space(state.dataGlobal->numSpaces).Name = thisZone.Name; + state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceType = "GENERAL"; + state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceTypeNum = GetGeneralSpaceTypeNum(state); // Add to zone's list of spaces - thisZone.Spaces.emplace_back(state.dataGlobal->numSpaces); + thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); } } } @@ -5853,8 +5853,8 @@ namespace HeatBalanceManager { // TODO MJW: Punt for now, sometimes unit test will get here and need these to be allocated, but simulations need them sooner if (!state.dataHeatBal->ZoneIntGain.allocated()) { state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->numSpaces); - state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceIntGain.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceIntGainDevices.allocate(state.dataGlobal->numSpaces); } state.dataHeatBal->ZoneMRT.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->ZoneSolAbsFirstCalc.allocate(state.dataGlobal->NumOfZones); diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index 16716abfeea..2ecc28c7c68 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -3534,8 +3534,8 @@ void InitIntSolarDistribution(EnergyPlusData &state) // Note: If sun is not up, QS is only internal gains for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { Real64 sumSpaceQLTSW = 0.0; - for (int spaceNum : state.dataViewFactor->EnclSolInfo(enclosureNum).SpaceNums) { - sumSpaceQLTSW += state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; + for (int spaceNum : state.dataViewFactor->EnclSolInfo(enclosureNum).spaceNums) { + sumSpaceQLTSW += state.dataHeatBal->spaceIntGain(spaceNum).QLTSW; } state.dataHeatBal->EnclSolQSWRad(enclosureNum) = state.dataHeatBal->EnclSolQD(enclosureNum) + sumSpaceQLTSW; state.dataHeatBal->EnclSolQSWRadLights(enclosureNum) = sumSpaceQLTSW; @@ -3551,8 +3551,8 @@ void InitIntSolarDistribution(EnergyPlusData &state) if ((OtherenclosureNum != enclosureNum) && (state.dataHeatBalSurf->EnclSolRecDifShortFromZ(OtherenclosureNum))) { Real64 sumSpaceQLTSW = 0.0; - for (int spaceNum : state.dataViewFactor->EnclSolInfo(OtherenclosureNum).SpaceNums) { - sumSpaceQLTSW += state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; + for (int spaceNum : state.dataViewFactor->EnclSolInfo(OtherenclosureNum).spaceNums) { + sumSpaceQLTSW += state.dataHeatBal->spaceIntGain(spaceNum).QLTSW; } state.dataHeatBal->EnclSolQSWRad(enclosureNum) += state.dataHeatBalSurf->ZoneFractDifShortZtoZ(enclosureNum, OtherenclosureNum) * diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index dc3168d9af0..b4281dd5d2d 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -262,11 +262,11 @@ namespace InternalHeatGains { // TODO MJW: Punt for now, sometimes unit test need these to be allocated in AllocateZoneHeatBalArrays, but simulations need them here if (!state.dataHeatBal->ZoneIntGain.allocated()) { state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceIntGain.allocate(state.dataGlobal->numSpaces); - state.dataHeatBal->SpaceIntGainDevices.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceIntGain.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceIntGainDevices.allocate(state.dataGlobal->numSpaces); } state.dataHeatBal->ZnRpt.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->SpaceRpt.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceRpt.allocate(state.dataGlobal->numSpaces); state.dataHeatBal->ZoneIntEEuse.allocate(state.dataGlobal->NumOfZones); state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); @@ -409,73 +409,73 @@ namespace InternalHeatGains { // SetupOutputVariable(state, // "Space Total Internal Radiant Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(Loop).TotRadiantGain, + // state.dataHeatBal->spaceRpt(Loop).TotRadiantGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Radiant Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(Loop).TotRadiantGainRate, + // state.dataHeatBal->spaceRpt(Loop).TotRadiantGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Visible Radiation Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGain, + // state.dataHeatBal->spaceRpt(Loop).TotVisHeatGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Visible Radiation Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(Loop).TotVisHeatGainRate, + // state.dataHeatBal->spaceRpt(Loop).TotVisHeatGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Convective Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGain, + // state.dataHeatBal->spaceRpt(Loop).TotConvectiveGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Convective Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(Loop).TotConvectiveGainRate, + // state.dataHeatBal->spaceRpt(Loop).TotConvectiveGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Latent Gain Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(Loop).TotLatentGain, + // state.dataHeatBal->spaceRpt(Loop).TotLatentGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Latent Gain Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(Loop).TotLatentGainRate, + // state.dataHeatBal->spaceRpt(Loop).TotLatentGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Total Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGain, + // state.dataHeatBal->spaceRpt(Loop).TotTotalHeatGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); // SetupOutputVariable(state, // "Space Total Internal Total Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(Loop).TotTotalHeatGainRate, + // state.dataHeatBal->spaceRpt(Loop).TotTotalHeatGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(Loop).Name); + // state.dataHeatBal->space(Loop).Name); //} // PEOPLE: Includes both information related to the heat balance and thermal comfort @@ -512,13 +512,13 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; continue; } - int spaceNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Space); + int spaceNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->space); if (spaceNum > 0) { state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; ++state.dataHeatBal->TotPeople; - state.dataHeatBal->PeopleObjects(Item).NumOfSpaces = 1; - state.dataHeatBal->PeopleObjects(Item).SpaceListActive = false; - state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr = spaceNum; + state.dataHeatBal->PeopleObjects(Item).numOfSpaces = 1; + state.dataHeatBal->PeopleObjects(Item).spaceListActive = false; + state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceNum; state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; continue; } @@ -530,12 +530,12 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneListNum; continue; } - int spaceListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->SpaceList); + int spaceListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->spaceList); if (spaceListNum > 0) { - state.dataHeatBal->TotPeople += state.dataHeatBal->SpaceList(spaceListNum).NumOfSpaces; - state.dataHeatBal->PeopleObjects(Item).NumOfSpaces = state.dataHeatBal->SpaceList(spaceListNum).NumOfSpaces; - state.dataHeatBal->PeopleObjects(Item).SpaceListActive = true; - state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr = spaceListNum; + state.dataHeatBal->TotPeople += state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + state.dataHeatBal->PeopleObjects(Item).numOfSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + state.dataHeatBal->PeopleObjects(Item).spaceListActive = true; + state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceListNum; continue; } ShowSevereError(state, @@ -573,7 +573,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cNumericFieldNames); int const numZones = state.dataHeatBal->PeopleObjects(Item).NumOfZones; - int const numSpaces = state.dataHeatBal->PeopleObjects(Item).NumOfSpaces; + int const numSpaces = state.dataHeatBal->PeopleObjects(Item).numOfSpaces; // At this point, one or both of these should be zero assert((numZones == 0) || (numSpaces == 0)); @@ -585,8 +585,8 @@ namespace InternalHeatGains { int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->People(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); } } } else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { @@ -605,48 +605,48 @@ namespace InternalHeatGains { int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->People(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; - } else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { + } else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).spaceListActive) { state.dataHeatBal->People(Loop).Name = AlphaName(1); - int const spaceNum = state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr; + int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr; if (spaceNum > 0) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; } - } else if (state.dataHeatBal->PeopleObjects(Item).SpaceListActive) { - int const spaceNum = state.dataHeatBal->SpaceList(state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr).Spaces(Item1); + } else if (state.dataHeatBal->PeopleObjects(Item).spaceListActive) { + int const spaceNum = state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).spaces(Item1); CheckCreatedZoneItemName( state, RoutineName, CurrentModuleObject, - state.dataHeatBal->Space(spaceNum).Name, - state.dataHeatBal->SpaceList(state.dataHeatBal->PeopleObjects(Item).SpaceOrSpaceListPtr).MaxSpaceNameLength, + state.dataHeatBal->space(spaceNum).Name, + state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).maxSpaceNameLength, state.dataHeatBal->PeopleObjects(Item).Name, state.dataHeatBal->People, Loop - 1, state.dataHeatBal->People(Loop).Name, errFlag); if (spaceNum > 0) { - state.dataHeatBal->People(Loop).SpacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->Space(spaceNum).ZoneNum; + state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; } if (errFlag) ErrorsFound = true; } // Set space load fractions - if (int(state.dataHeatBal->People(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->People(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->People(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->People(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->People(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->People(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->People(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); @@ -1462,87 +1462,87 @@ namespace InternalHeatGains { } //// Space total report variables - // for (int spaceNum : state.dataHeatBal->People(Loop).SpacePtrs) { + // for (int spaceNum : state.dataHeatBal->People(Loop).spacePtrs) { // if (SpaceRepVarSet(spaceNum)) { // SpaceRepVarSet(spaceNum) = false; // SetupOutputVariable(state, // "Space People Occupant Count", // OutputProcessor::Unit::None, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Radiant Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Radiant Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Convective Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Convective Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Sensible Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Sensible Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Latent Gain Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Latent Gain Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Total Heating Energy", // OutputProcessor::Unit::J, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // SetupOutputVariable(state, // "Space People Total Heating Rate", // OutputProcessor::Unit::W, - // state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate, + // state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate, // OutputProcessor::SOVTimeStepType::Zone, // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->Space(spaceNum).Name); + // state.dataHeatBal->space(spaceNum).Name); // } //} @@ -1728,8 +1728,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->Lights(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -1748,8 +1748,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->Lights(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -1799,15 +1799,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->Lights(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->Lights(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->Lights(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->Lights(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->Lights(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->Lights(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->Lights(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->Lights(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->Lights(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating Lights loads to Spaces."); @@ -2334,8 +2334,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -2355,8 +2355,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -2400,15 +2400,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneElectric(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneElectric(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneElectric(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneElectric(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneElectric(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneElectric(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneElectric(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError( @@ -2831,8 +2831,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneGas(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -2852,8 +2852,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneGas(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -2903,15 +2903,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->ZoneGas(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneGas(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneGas(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneGas(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneGas(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneGas(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneGas(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneGas(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneGas(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, @@ -3366,8 +3366,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -3387,8 +3387,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -3432,15 +3432,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneHWEq(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneHWEq(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneHWEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError( @@ -3863,8 +3863,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -3884,8 +3884,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -3929,15 +3929,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, @@ -4360,8 +4360,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); } } } else { @@ -4381,8 +4381,8 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); } } if (errFlag) ErrorsFound = true; @@ -4430,15 +4430,15 @@ namespace InternalHeatGains { } // Set space load fractions - if (int(state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, @@ -4830,21 +4830,21 @@ namespace InternalHeatGains { int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); state.dataHeatBal->ZoneITEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneITEq(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneITEq(Loop).spacePtrs.emplace_back(spaceNum); } } // Set space load fractions - if (int(state.dataHeatBal->ZoneITEq(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneITEq(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneITEq(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneITEq(Loop).spaceFracs.emplace_back(1.0); } else { if (state.dataHeatBal->ZoneITEq(Loop).ZonePtr > 0) { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneITEq(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneITEq(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneITEq(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneITEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, @@ -5751,19 +5751,19 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); ErrorsFound = true; } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { - state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.emplace_back(spaceNum); + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.emplace_back(spaceNum); } // Set space load fractions - if (int(state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs.emplace_back(1.0); + if (int(state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.size()) <= 1) { + state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs.emplace_back(1.0); } else { Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).FloorArea; if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs) { - Real64 const spaceArea = state.dataHeatBal->Space(spaceNum).FloorArea; - state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs.emplace_back(spaceArea / zoneArea); + for (int const spaceNum : state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs) { + Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); } } else { ShowSevereError(state, @@ -6702,7 +6702,7 @@ namespace InternalHeatGains { e.QSELost = 0.0; } - for (auto &e : state.dataHeatBal->SpaceIntGain) { + for (auto &e : state.dataHeatBal->spaceIntGain) { e.NOFOCC = 0.0; e.QOCTOT = 0.0; e.QOCSEN = 0.0; @@ -6829,15 +6829,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; - for (int index = 1; index <= int(state.dataHeatBal->People(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->People(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->People(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->People(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->People(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->People(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate * spaceFrac; } } @@ -6903,14 +6903,14 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate; state.dataHeatBal->ZoneIntGain(NZ).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate; - for (int index = 1; index <= int(state.dataHeatBal->Lights(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->Lights(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->Lights(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->Lights(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->Lights(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->Lights(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate * spaceFrac; } } @@ -6938,13 +6938,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneElectric(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneElectric(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneElectric(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneElectric(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneElectric(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneElectric(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate * spaceFrac; } } @@ -6969,13 +6969,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneGas(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneGas(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneGas(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneGas(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneGas(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneGas(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate * spaceFrac; } } @@ -6998,13 +6998,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneOtherEq(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate * spaceFrac; } } @@ -7028,13 +7028,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneHWEq(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneHWEq(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate * spaceFrac; } } @@ -7058,13 +7058,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneSteamEq(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate * spaceFrac; } } @@ -7095,11 +7095,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate; state.dataHeatBal->ZoneIntGain(NZ).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).SpacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneBBHeat(Loop).SpaceFracs(index); - state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate * spaceFrac; + for (int index = 1; index <= int(state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.size()); ++index) { + int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs(index); + Real64 spaceFrac = state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs(index); + state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate * spaceFrac; + state.dataHeatBal->spaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate * spaceFrac; } } @@ -7137,7 +7137,7 @@ namespace InternalHeatGains { for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfRadiantEnclosures; ++enclosureNum) { auto &thisEnclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); state.dataHeatBal->EnclRadQThermalRad(enclosureNum) = 0.0; - for (int const spaceNum : thisEnclosure.SpaceNums) { + for (int const spaceNum : thisEnclosure.spaceNums) { Real64 spaceQL; InternalHeatGains::SumAllSpaceInternalRadiationGains(state, spaceNum, spaceQL); state.dataHeatBal->EnclRadQThermalRad(enclosureNum) += spaceQL; @@ -7155,7 +7155,7 @@ namespace InternalHeatGains { int const lastSurf = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; if (firstSurf <= 0) continue; for (int SurfNum = firstSurf; SurfNum <= lastSurf; ++SurfNum) { - int const radEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(SurfNum).Space).RadiantEnclosureNum; + int const radEnclosureNum = state.dataHeatBal->space(state.dataSurface->Surface(SurfNum).spaceNum).radiantEnclosureNum; if (!state.dataGlobal->doLoadComponentPulseNow) { state.dataHeatBal->SurfQRadThermInAbs(SurfNum) = state.dataHeatBal->EnclRadQThermalRad(radEnclosureNum) * state.dataHeatBal->EnclRadThermAbsMult(radEnclosureNum) * @@ -7899,170 +7899,170 @@ namespace InternalHeatGains { for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { // People - state.dataHeatBal->SpaceRpt(spaceNum).PeopleNumOcc = state.dataHeatBal->SpaceIntGain(spaceNum).NOFOCC; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCRAD; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCCON; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleSenGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCSEN; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCLAT; - state.dataHeatBal->SpaceRpt(spaceNum).PeopleTotGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOCTOT; + state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc = state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC; + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain = + state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain = + state.dataHeatBal->spaceIntGain(spaceNum).QOCCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain = + state.dataHeatBal->spaceIntGain(spaceNum).QOCSEN * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain = + state.dataHeatBal->spaceIntGain(spaceNum).QOCLAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain = + state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD; + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOCCON; + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOCSEN; + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOCLAT; + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT; // General Lights - state.dataHeatBal->SpaceRpt(spaceNum).LtsRetAirGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).LtsRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).LtsConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGain = state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).LtsRetAirGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCRA; - state.dataHeatBal->SpaceRpt(spaceNum).LtsRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTRAD; - state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTTOT; - state.dataHeatBal->SpaceRpt(spaceNum).LtsConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTCON; - state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QLTSW; - state.dataHeatBal->SpaceRpt(spaceNum).LtsElecConsump = state.dataHeatBal->SpaceRpt(spaceNum).LtsTotGain; + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGain = + state.dataHeatBal->spaceIntGain(spaceNum).QLTCRA * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGain = state.dataHeatBal->spaceIntGain(spaceNum).QLTTOT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).LtsConGain = state.dataHeatBal->spaceIntGain(spaceNum).QLTCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain = state.dataHeatBal->spaceIntGain(spaceNum).QLTSW * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QLTCRA; + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD; + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QLTTOT; + state.dataHeatBal->spaceRpt(spaceNum).LtsConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QLTCON; + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QLTSW; + state.dataHeatBal->spaceRpt(spaceNum).LtsElecConsump = state.dataHeatBal->spaceRpt(spaceNum).LtsTotGain; // Electric Equipment - state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEECON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).ElecLost = state.dataHeatBal->SpaceIntGain(spaceNum).QEELost * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).ElecConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEECON; - state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEERAD; - state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEELAT; - state.dataHeatBal->SpaceRpt(spaceNum).ElecLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QEELost; - state.dataHeatBal->SpaceRpt(spaceNum).ElecConsump = - state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain + state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain + state.dataHeatBal->SpaceRpt(spaceNum).ElecLost; - state.dataHeatBal->SpaceRpt(spaceNum).ElecTotGain = state.dataHeatBal->SpaceRpt(spaceNum).ElecConGain + - state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGain; - state.dataHeatBal->SpaceRpt(spaceNum).ElecTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).ElecConGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).ElecRadGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).ElecLatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).ElecConGain = state.dataHeatBal->spaceIntGain(spaceNum).QEECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QEERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGain = state.dataHeatBal->spaceIntGain(spaceNum).QEELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).ElecLost = state.dataHeatBal->spaceIntGain(spaceNum).QEELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).ElecConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QEECON; + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QEERAD; + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QEELAT; + state.dataHeatBal->spaceRpt(spaceNum).ElecLostRate = state.dataHeatBal->spaceIntGain(spaceNum).QEELost; + state.dataHeatBal->spaceRpt(spaceNum).ElecConsump = + state.dataHeatBal->spaceRpt(spaceNum).ElecConGain + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGain + + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGain + state.dataHeatBal->spaceRpt(spaceNum).ElecLost; + state.dataHeatBal->spaceRpt(spaceNum).ElecTotGain = state.dataHeatBal->spaceRpt(spaceNum).ElecConGain + + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGain + + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGain; + state.dataHeatBal->spaceRpt(spaceNum).ElecTotGainRate = state.dataHeatBal->spaceRpt(spaceNum).ElecConGainRate + + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGainRate + + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGainRate; // Gas Equipment - state.dataHeatBal->SpaceRpt(spaceNum).GasConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGECON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).GasLost = state.dataHeatBal->SpaceIntGain(spaceNum).QGELost * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).GasConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGECON; - state.dataHeatBal->SpaceRpt(spaceNum).GasRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGERAD; - state.dataHeatBal->SpaceRpt(spaceNum).GasLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGELAT; - state.dataHeatBal->SpaceRpt(spaceNum).GasLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QGELost; - state.dataHeatBal->SpaceRpt(spaceNum).GasConsump = - state.dataHeatBal->SpaceRpt(spaceNum).GasConGain + state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain + state.dataHeatBal->SpaceRpt(spaceNum).GasLost; - state.dataHeatBal->SpaceRpt(spaceNum).GasTotGain = state.dataHeatBal->SpaceRpt(spaceNum).GasConGain + - state.dataHeatBal->SpaceRpt(spaceNum).GasRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).GasLatGain; - state.dataHeatBal->SpaceRpt(spaceNum).GasTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).GasConGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).GasRadGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).GasLatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).GasConGain = state.dataHeatBal->spaceIntGain(spaceNum).QGECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).GasRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QGERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).GasLatGain = state.dataHeatBal->spaceIntGain(spaceNum).QGELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).GasLost = state.dataHeatBal->spaceIntGain(spaceNum).QGELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).GasConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QGECON; + state.dataHeatBal->spaceRpt(spaceNum).GasRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QGERAD; + state.dataHeatBal->spaceRpt(spaceNum).GasLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QGELAT; + state.dataHeatBal->spaceRpt(spaceNum).GasLostRate = state.dataHeatBal->spaceIntGain(spaceNum).QGELost; + state.dataHeatBal->spaceRpt(spaceNum).GasConsump = + state.dataHeatBal->spaceRpt(spaceNum).GasConGain + state.dataHeatBal->spaceRpt(spaceNum).GasRadGain + + state.dataHeatBal->spaceRpt(spaceNum).GasLatGain + state.dataHeatBal->spaceRpt(spaceNum).GasLost; + state.dataHeatBal->spaceRpt(spaceNum).GasTotGain = state.dataHeatBal->spaceRpt(spaceNum).GasConGain + + state.dataHeatBal->spaceRpt(spaceNum).GasRadGain + + state.dataHeatBal->spaceRpt(spaceNum).GasLatGain; + state.dataHeatBal->spaceRpt(spaceNum).GasTotGainRate = state.dataHeatBal->spaceRpt(spaceNum).GasConGainRate + + state.dataHeatBal->spaceRpt(spaceNum).GasRadGainRate + + state.dataHeatBal->spaceRpt(spaceNum).GasLatGainRate; // Hot Water Equipment - state.dataHeatBal->SpaceRpt(spaceNum).HWConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).HWLost = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).HWConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWCON; - state.dataHeatBal->SpaceRpt(spaceNum).HWRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWRAD; - state.dataHeatBal->SpaceRpt(spaceNum).HWLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLAT; - state.dataHeatBal->SpaceRpt(spaceNum).HWLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QHWLost; - state.dataHeatBal->SpaceRpt(spaceNum).HWConsump = - state.dataHeatBal->SpaceRpt(spaceNum).HWConGain + state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain + state.dataHeatBal->SpaceRpt(spaceNum).HWLost; - state.dataHeatBal->SpaceRpt(spaceNum).HWTotGain = state.dataHeatBal->SpaceRpt(spaceNum).HWConGain + - state.dataHeatBal->SpaceRpt(spaceNum).HWRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).HWLatGain; - state.dataHeatBal->SpaceRpt(spaceNum).HWTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).HWConGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).HWRadGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).HWLatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).HWConGain = state.dataHeatBal->spaceIntGain(spaceNum).QHWCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).HWRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).HWLatGain = state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).HWLost = state.dataHeatBal->spaceIntGain(spaceNum).QHWLost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).HWConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QHWCON; + state.dataHeatBal->spaceRpt(spaceNum).HWRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD; + state.dataHeatBal->spaceRpt(spaceNum).HWLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT; + state.dataHeatBal->spaceRpt(spaceNum).HWLostRate = state.dataHeatBal->spaceIntGain(spaceNum).QHWLost; + state.dataHeatBal->spaceRpt(spaceNum).HWConsump = + state.dataHeatBal->spaceRpt(spaceNum).HWConGain + state.dataHeatBal->spaceRpt(spaceNum).HWRadGain + + state.dataHeatBal->spaceRpt(spaceNum).HWLatGain + state.dataHeatBal->spaceRpt(spaceNum).HWLost; + state.dataHeatBal->spaceRpt(spaceNum).HWTotGain = state.dataHeatBal->spaceRpt(spaceNum).HWConGain + + state.dataHeatBal->spaceRpt(spaceNum).HWRadGain + + state.dataHeatBal->spaceRpt(spaceNum).HWLatGain; + state.dataHeatBal->spaceRpt(spaceNum).HWTotGainRate = state.dataHeatBal->spaceRpt(spaceNum).HWConGainRate + + state.dataHeatBal->spaceRpt(spaceNum).HWRadGainRate + + state.dataHeatBal->spaceRpt(spaceNum).HWLatGainRate; // Steam Equipment - state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSECON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).SteamLost = state.dataHeatBal->SpaceIntGain(spaceNum).QSELost * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).SteamConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSECON; - state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSERAD; - state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSELAT; - state.dataHeatBal->SpaceRpt(spaceNum).SteamLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QSELost; - state.dataHeatBal->SpaceRpt(spaceNum).SteamConsump = - state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain + state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain + state.dataHeatBal->SpaceRpt(spaceNum).SteamLost; - state.dataHeatBal->SpaceRpt(spaceNum).SteamTotGain = state.dataHeatBal->SpaceRpt(spaceNum).SteamConGain + - state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGain; - state.dataHeatBal->SpaceRpt(spaceNum).SteamTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).SteamConGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).SteamRadGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).SteamLatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).SteamConGain = state.dataHeatBal->spaceIntGain(spaceNum).QSECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QSERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGain = state.dataHeatBal->spaceIntGain(spaceNum).QSELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).SteamLost = state.dataHeatBal->spaceIntGain(spaceNum).QSELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).SteamConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QSECON; + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QSERAD; + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QSELAT; + state.dataHeatBal->spaceRpt(spaceNum).SteamLostRate = state.dataHeatBal->spaceIntGain(spaceNum).QSELost; + state.dataHeatBal->spaceRpt(spaceNum).SteamConsump = + state.dataHeatBal->spaceRpt(spaceNum).SteamConGain + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGain + + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGain + state.dataHeatBal->spaceRpt(spaceNum).SteamLost; + state.dataHeatBal->spaceRpt(spaceNum).SteamTotGain = state.dataHeatBal->spaceRpt(spaceNum).SteamConGain + + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGain + + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGain; + state.dataHeatBal->spaceRpt(spaceNum).SteamTotGainRate = state.dataHeatBal->spaceRpt(spaceNum).SteamConGainRate + + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGainRate + + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGainRate; // Other Equipment - state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOECON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain = state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).OtherLost = state.dataHeatBal->SpaceIntGain(spaceNum).QOELost * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).OtherConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOECON; - state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOERAD; - state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOELAT; - state.dataHeatBal->SpaceRpt(spaceNum).OtherLostRate = state.dataHeatBal->SpaceIntGain(spaceNum).QOELost; - state.dataHeatBal->SpaceRpt(spaceNum).OtherConsump = - state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain + state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain + state.dataHeatBal->SpaceRpt(spaceNum).OtherLost; - state.dataHeatBal->SpaceRpt(spaceNum).OtherTotGain = state.dataHeatBal->SpaceRpt(spaceNum).OtherConGain + - state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGain + - state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGain; - state.dataHeatBal->SpaceRpt(spaceNum).OtherTotGainRate = state.dataHeatBal->SpaceRpt(spaceNum).OtherConGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).OtherRadGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).OtherLatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).OtherConGain = state.dataHeatBal->spaceIntGain(spaceNum).QOECON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGain = state.dataHeatBal->spaceIntGain(spaceNum).QOERAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGain = state.dataHeatBal->spaceIntGain(spaceNum).QOELAT * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).OtherLost = state.dataHeatBal->spaceIntGain(spaceNum).QOELost * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).OtherConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOECON; + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOERAD; + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QOELAT; + state.dataHeatBal->spaceRpt(spaceNum).OtherLostRate = state.dataHeatBal->spaceIntGain(spaceNum).QOELost; + state.dataHeatBal->spaceRpt(spaceNum).OtherConsump = + state.dataHeatBal->spaceRpt(spaceNum).OtherConGain + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGain + + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGain + state.dataHeatBal->spaceRpt(spaceNum).OtherLost; + state.dataHeatBal->spaceRpt(spaceNum).OtherTotGain = state.dataHeatBal->spaceRpt(spaceNum).OtherConGain + + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGain + + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGain; + state.dataHeatBal->spaceRpt(spaceNum).OtherTotGainRate = state.dataHeatBal->spaceRpt(spaceNum).OtherConGainRate + + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGainRate + + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGainRate; // Baseboard Heat - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGain = - state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QBBCON; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGainRate = state.dataHeatBal->SpaceIntGain(spaceNum).QBBRAD; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGain = - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGain + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGain; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGainRate = - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatConGainRate + state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatRadGainRate; - state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatElecCons = state.dataHeatBal->SpaceRpt(spaceNum).BaseHeatTotGain; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGain = + state.dataHeatBal->spaceIntGain(spaceNum).QBBCON * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGain = + state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QBBCON; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGainRate = state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatTotGain = + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGain + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGain; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatTotGainRate = + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGainRate + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGainRate; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatElecCons = state.dataHeatBal->spaceRpt(spaceNum).BaseHeatTotGain; // Overall Space Variables // these overalls include component gains from devices like water heater, water use, and generators // working vars QFCConv QGenConv QFCRad QGenRad WaterUseLatentGain WaterThermalTankGain WaterUseSensibleGain - state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGain = state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGain; - state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGainRate = state.dataHeatBal->SpaceRpt(spaceNum).LtsVisGainRate; + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGain = state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain; + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate = state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate; - SumInternalRadiationGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate); - state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGain = - state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate * state.dataGlobal->TimeStepZoneSec; + SumInternalRadiationGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate); + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGain = + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate * state.dataGlobal->TimeStepZoneSec; - SumInternalConvectionGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate); - state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGain = - state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate * state.dataGlobal->TimeStepZoneSec; + SumInternalConvectionGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate); + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGain = + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate * state.dataGlobal->TimeStepZoneSec; - SumInternalLatentGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate); - state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGain = - state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate * state.dataGlobal->TimeStepZoneSec; + SumInternalLatentGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate); + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGain = + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate * state.dataGlobal->TimeStepZoneSec; - state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGainRate = - state.dataHeatBal->SpaceRpt(spaceNum).TotLatentGainRate + state.dataHeatBal->SpaceRpt(spaceNum).TotRadiantGainRate + - state.dataHeatBal->SpaceRpt(spaceNum).TotConvectiveGainRate + state.dataHeatBal->SpaceRpt(spaceNum).TotVisHeatGainRate; - state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGain = - state.dataHeatBal->SpaceRpt(spaceNum).TotTotalHeatGainRate * state.dataGlobal->TimeStepZoneSec; + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGainRate = + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate + + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate; + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGain = + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGainRate * state.dataGlobal->TimeStepZoneSec; } } @@ -8213,20 +8213,20 @@ namespace InternalHeatGains { // store pointer values to hold generic internal gain values constant for entire timestep for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - auto &thisIntGain = state.dataHeatBal->SpaceIntGainDevices(spaceNum); - for (int Loop = 1; Loop <= thisIntGain.NumberOfDevices; ++Loop) { - thisIntGain.Device(Loop).ConvectGainRate = *thisIntGain.Device(Loop).PtrConvectGainRate * thisIntGain.Device(Loop).SpaceGainFrac; - thisIntGain.Device(Loop).ReturnAirConvGainRate = - *thisIntGain.Device(Loop).PtrReturnAirConvGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + auto &thisIntGain = state.dataHeatBal->spaceIntGainDevices(spaceNum); + for (int Loop = 1; Loop <= thisIntGain.numberOfDevices; ++Loop) { + thisIntGain.device(Loop).ConvectGainRate = *thisIntGain.device(Loop).PtrConvectGainRate * thisIntGain.device(Loop).spaceGainFrac; + thisIntGain.device(Loop).ReturnAirConvGainRate = + *thisIntGain.device(Loop).PtrReturnAirConvGainRate * thisIntGain.device(Loop).spaceGainFrac; if (DoRadiationUpdate) - thisIntGain.Device(Loop).RadiantGainRate = *thisIntGain.Device(Loop).PtrRadiantGainRate * thisIntGain.Device(Loop).SpaceGainFrac; - thisIntGain.Device(Loop).LatentGainRate = *thisIntGain.Device(Loop).PtrLatentGainRate * thisIntGain.Device(Loop).SpaceGainFrac; - thisIntGain.Device(Loop).ReturnAirLatentGainRate = - *thisIntGain.Device(Loop).PtrReturnAirLatentGainRate * thisIntGain.Device(Loop).SpaceGainFrac; - thisIntGain.Device(Loop).CarbonDioxideGainRate = - *thisIntGain.Device(Loop).PtrCarbonDioxideGainRate * thisIntGain.Device(Loop).SpaceGainFrac; - thisIntGain.Device(Loop).GenericContamGainRate = - *thisIntGain.Device(Loop).PtrGenericContamGainRate * thisIntGain.Device(Loop).SpaceGainFrac; + thisIntGain.device(Loop).RadiantGainRate = *thisIntGain.device(Loop).PtrRadiantGainRate * thisIntGain.device(Loop).spaceGainFrac; + thisIntGain.device(Loop).LatentGainRate = *thisIntGain.device(Loop).PtrLatentGainRate * thisIntGain.device(Loop).spaceGainFrac; + thisIntGain.device(Loop).ReturnAirLatentGainRate = + *thisIntGain.device(Loop).PtrReturnAirLatentGainRate * thisIntGain.device(Loop).spaceGainFrac; + thisIntGain.device(Loop).CarbonDioxideGainRate = + *thisIntGain.device(Loop).PtrCarbonDioxideGainRate * thisIntGain.device(Loop).spaceGainFrac; + thisIntGain.device(Loop).GenericContamGainRate = + *thisIntGain.device(Loop).PtrGenericContamGainRate * thisIntGain.device(Loop).spaceGainFrac; } } if (ReSumLatentGains) { @@ -8261,13 +8261,13 @@ namespace InternalHeatGains { Real64 tmpSumConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ConvectGainRate; } } @@ -8280,14 +8280,14 @@ namespace InternalHeatGains { Real64 tmpSumConvGainRateExceptPeople = 0.0; std::string str_people = "PEOPLE"; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompObjectType != str_people) { - tmpSumConvGainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompObjectType != str_people) { + tmpSumConvGainRateExceptPeople += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ConvectGainRate; } } } @@ -8311,16 +8311,16 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ConvectGainRate; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ConvectGainRate; } } } @@ -8345,15 +8345,15 @@ namespace InternalHeatGains { Real64 tmpSumRetAirGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum - if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirNodeNum)) { - tmpSumRetAirGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirConvGainRate; + if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ReturnAirNodeNum)) { + tmpSumRetAirGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ReturnAirConvGainRate; } } } @@ -8377,16 +8377,16 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumRetAirConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRetAirConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirConvGainRate; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRetAirConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ReturnAirConvGainRate; } } } @@ -8396,8 +8396,8 @@ namespace InternalHeatGains { } void SumAllSpaceInternalRadiationGains(EnergyPlusData &state, - int const SpaceNum, // space index pointer for which space to sum gains for - Real64 &SumRadGainRate) + int const spaceNum, // space index pointer for which space to sum gains for + Real64 &sumRadGainRate) { // SUBROUTINE INFORMATION: @@ -8409,16 +8409,16 @@ namespace InternalHeatGains { Real64 tmpSumRadGainRate = 0.0; - if (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices == 0) { - SumRadGainRate = 0.0; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { + sumRadGainRate = 0.0; return; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices; ++DeviceNum) { - tmpSumRadGainRate += state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).RadiantGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + tmpSumRadGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).RadiantGainRate; } - SumRadGainRate = tmpSumRadGainRate; + sumRadGainRate = tmpSumRadGainRate; } void SumInternalRadiationGainsByTypes(EnergyPlusData &state, @@ -8437,15 +8437,15 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumRadiationGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRadiationGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).RadiantGainRate; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).RadiantGainRate; } } } @@ -8468,13 +8468,13 @@ namespace InternalHeatGains { Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).LatentGainRate; } SumLatentGainRate = tmpSumLatentGainRate; @@ -8488,14 +8488,14 @@ namespace InternalHeatGains { { Real64 tmpSumLatentGainRateExceptPeople = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { - tmpSumLatentGainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { + tmpSumLatentGainRateExceptPeople += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).LatentGainRate; } } } @@ -8519,16 +8519,16 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).LatentGainRate; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).LatentGainRate; } } } @@ -8553,15 +8553,15 @@ namespace InternalHeatGains { Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { // If ReturnNodeNum is zero, sum for entire zone, otherwise sum only for specified ReturnNodeNum - if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirNodeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).ReturnAirLatentGainRate; + if ((ReturnNodeNum == 0) || (ReturnNodeNum == state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ReturnAirNodeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ReturnAirLatentGainRate; } } } @@ -8583,13 +8583,13 @@ namespace InternalHeatGains { Real64 tmpSumCO2GainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - tmpSumCO2GainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + tmpSumCO2GainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CarbonDioxideGainRate; } } @@ -8603,14 +8603,14 @@ namespace InternalHeatGains { { Real64 tmpSumCO2GainRateExceptPeople = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { - tmpSumCO2GainRateExceptPeople += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum != IntGainTypeOf_People) { + tmpSumCO2GainRateExceptPeople += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CarbonDioxideGainRate; } } } @@ -8634,16 +8634,16 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumCO2GainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumCO2GainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).CarbonDioxideGainRate; + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumCO2GainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CarbonDioxideGainRate; } } } @@ -8666,13 +8666,13 @@ namespace InternalHeatGains { Real64 tmpSumGCGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { - if (state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices == 0) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(spaceNum).NumberOfDevices; ++DeviceNum) { - tmpSumGCGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(DeviceNum).GenericContamGainRate; + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + tmpSumGCGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).GenericContamGainRate; } } @@ -8810,9 +8810,9 @@ namespace InternalHeatGains { } int GetInternalGainDeviceIndex(EnergyPlusData &state, - int const SpaceNum, // space index pointer for which space to sum gains for - int const IntGainTypeOfNum, // space internal gain type number - std::string_view const &IntGainName) // Internal gain name + int const spaceNum, // space index pointer for which space to sum gains for + int const intGainTypeOfNum, // space internal gain type number + std::string_view const &intGainName) // Internal gain name { // SUBROUTINE INFORMATION: @@ -8825,14 +8825,14 @@ namespace InternalHeatGains { int DeviceNum; int DeviceIndex; - if (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices == 0) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { DeviceIndex = -1; return DeviceIndex; } - for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->SpaceIntGainDevices(SpaceNum).NumberOfDevices; ++DeviceNum) { - if ((UtilityRoutines::SameString(state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).CompObjectName, - IntGainName.data())) && - (state.dataHeatBal->SpaceIntGainDevices(SpaceNum).Device(DeviceNum).CompTypeOfNum == IntGainTypeOfNum)) { + for (DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + if ((UtilityRoutines::SameString(state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompObjectName, + intGainName.data())) && + (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == intGainTypeOfNum)) { DeviceIndex = DeviceNum; break; } else { @@ -8844,11 +8844,11 @@ namespace InternalHeatGains { void SumInternalConvectionGainsByIndices( EnergyPlusData &state, - int const NumGains, // number of device gains to sum - const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation - const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation - const Array1D &FractionARR, // array of fractional multipliers to apply to devices - Real64 &SumConvGainRate) + int const numGains, // number of device gains to sum + const Array1D_int &deviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation + const Array1D_int &deviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation + const Array1D &fractionARR, // array of fractional multipliers to apply to devices + Real64 &sumConvGainRate) { // SUBROUTINE INFORMATION: @@ -8858,28 +8858,28 @@ namespace InternalHeatGains { // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - assert(NumGains <= isize(DeviceSpaceARR)); - assert(NumGains <= isize(DeviceIndexARR)); - assert(NumGains <= isize(FractionARR)); + assert(numGains <= isize(deviceSpaceARR)); + assert(numGains <= isize(deviceIndexARR)); + assert(numGains <= isize(fractionARR)); Real64 tmpSumConvGainRate = 0.0; - for (int loop = 1; loop <= NumGains; ++loop) { - int spaceNum = DeviceSpaceARR(loop); - int deviceNum = DeviceIndexARR(loop); - Real64 deviceFraction = FractionARR(loop); - tmpSumConvGainRate += state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).ConvectGainRate * deviceFraction; + for (int loop = 1; loop <= numGains; ++loop) { + int spaceNum = deviceSpaceARR(loop); + int deviceNum = deviceIndexARR(loop); + Real64 deviceFraction = fractionARR(loop); + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(deviceNum).ConvectGainRate * deviceFraction; } - SumConvGainRate = tmpSumConvGainRate; + sumConvGainRate = tmpSumConvGainRate; } void SumInternalLatentGainsByIndices( EnergyPlusData &state, - int const NumGains, // number of device gains to sum - const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation - const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation - const Array1D &FractionARR, // array of fractional multipliers to apply to devices - Real64 &SumLatentGainRate) + int const numGains, // number of device gains to sum + const Array1D_int &deviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation + const Array1D_int &deviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation + const Array1D &fractionARR, // array of fractional multipliers to apply to devices + Real64 &sumLatentGainRate) { // SUBROUTINE INFORMATION: @@ -8889,29 +8889,29 @@ namespace InternalHeatGains { // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - assert(NumGains <= isize(DeviceSpaceARR)); - assert(NumGains <= isize(DeviceIndexARR)); - assert(NumGains <= isize(FractionARR)); + assert(numGains <= isize(deviceSpaceARR)); + assert(numGains <= isize(deviceIndexARR)); + assert(numGains <= isize(fractionARR)); Real64 tmpSumLatentGainRate = 0.0; - for (int loop = 1; loop <= NumGains; ++loop) { - int spaceNum = DeviceSpaceARR(loop); - int deviceNum = DeviceIndexARR(loop); - Real64 deviceFraction = FractionARR(loop); + for (int loop = 1; loop <= numGains; ++loop) { + int spaceNum = deviceSpaceARR(loop); + int deviceNum = deviceIndexARR(loop); + Real64 deviceFraction = fractionARR(loop); tmpSumLatentGainRate = - tmpSumLatentGainRate + state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).LatentGainRate * deviceFraction; + tmpSumLatentGainRate + state.dataHeatBal->spaceIntGainDevices(spaceNum).device(deviceNum).LatentGainRate * deviceFraction; } - SumLatentGainRate = tmpSumLatentGainRate; + sumLatentGainRate = tmpSumLatentGainRate; } void SumReturnAirConvectionGainsByIndices( EnergyPlusData &state, - int const NumGains, // number of device gains to sum - const Array1D_int &DeviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation - const Array1D_int &DeviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation - const Array1D &FractionARR, // array of fractional multipliers to apply to devices - Real64 &SumReturnAirGainRate) + int const numGains, // number of device gains to sum + const Array1D_int &deviceSpaceARR, // variable length 1-d array of integer space index pointers to include in summation + const Array1D_int &deviceIndexARR, // variable length 1-d array of integer device index pointers to include in summation + const Array1D &fractionARR, // array of fractional multipliers to apply to devices + Real64 &sumReturnAirGainRate) { // SUBROUTINE INFORMATION: @@ -8921,20 +8921,20 @@ namespace InternalHeatGains { // PURPOSE OF THIS SUBROUTINE: // worker routine for summing a subset of the internal gains by index - assert(NumGains <= isize(DeviceSpaceARR)); - assert(NumGains <= isize(DeviceIndexARR)); - assert(NumGains <= isize(FractionARR)); + assert(numGains <= isize(deviceSpaceARR)); + assert(numGains <= isize(deviceIndexARR)); + assert(numGains <= isize(fractionARR)); Real64 tmpSumReturnAirGainRate = 0.0; - for (int loop = 1; loop <= NumGains; ++loop) { - int spaceNum = DeviceSpaceARR(loop); - int deviceNum = DeviceIndexARR(loop); - Real64 deviceFraction = FractionARR(loop); + for (int loop = 1; loop <= numGains; ++loop) { + int spaceNum = deviceSpaceARR(loop); + int deviceNum = deviceIndexARR(loop); + Real64 deviceFraction = fractionARR(loop); tmpSumReturnAirGainRate = - tmpSumReturnAirGainRate + state.dataHeatBal->SpaceIntGainDevices(spaceNum).Device(deviceNum).ReturnAirConvGainRate * deviceFraction; + tmpSumReturnAirGainRate + state.dataHeatBal->spaceIntGainDevices(spaceNum).device(deviceNum).ReturnAirConvGainRate * deviceFraction; } - SumReturnAirGainRate = tmpSumReturnAirGainRate; + sumReturnAirGainRate = tmpSumReturnAirGainRate; } } // namespace InternalHeatGains diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 403a79d1f1e..69a0c58d8a0 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11944,74 +11944,74 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr // Accumulate internal gain totals by space and space type for (int iPeople = 1; iPeople <= state.dataHeatBal->TotPeople; ++iPeople) { auto curPeople = state.dataHeatBal->People(iPeople); - for (int iSpace = 1; iSpace <= int(curPeople.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curPeople.SpacePtrs(iSpace); - Real64 const people = curPeople.NumberOfPeople * curPeople.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curPeople.spacePtrs.size()); ++iSpace) { + int const spaceNum = curPeople.spacePtrs(iSpace); + Real64 const people = curPeople.NumberOfPeople * curPeople.spaceFracs(iSpace); spaceTotPeople(spaceNum) += people; - spaceTypeTotPeople(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += people; + spaceTypeTotPeople(state.dataHeatBal->space(spaceNum).spaceTypeNum) += people; } } for (int iLights = 1; iLights <= state.dataHeatBal->TotLights; ++iLights) { auto curLighting = state.dataHeatBal->Lights(iLights); - for (int iSpace = 1; iSpace <= int(curLighting.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curLighting.SpacePtrs(iSpace); - Real64 const lighting = curLighting.DesignLevel * curLighting.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curLighting.spacePtrs.size()); ++iSpace) { + int const spaceNum = curLighting.spacePtrs(iSpace); + Real64 const lighting = curLighting.DesignLevel * curLighting.spaceFracs(iSpace); spaceTotLighting(spaceNum) += lighting; - spaceTypeTotLighting(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += lighting; + spaceTypeTotLighting(state.dataHeatBal->space(spaceNum).spaceTypeNum) += lighting; } } for (int iElecEquip = 1; iElecEquip <= state.dataHeatBal->TotElecEquip; ++iElecEquip) { auto curElecEquip = state.dataHeatBal->ZoneElectric(iElecEquip); - for (int iSpace = 1; iSpace <= int(curElecEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curElecEquip.SpacePtrs(iSpace); - Real64 const elecEquip = curElecEquip.DesignLevel * curElecEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curElecEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curElecEquip.spacePtrs(iSpace); + Real64 const elecEquip = curElecEquip.DesignLevel * curElecEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += elecEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += elecEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += elecEquip; } } for (int iGasEquip = 1; iGasEquip <= state.dataHeatBal->TotGasEquip; ++iGasEquip) { auto curGasEquip = state.dataHeatBal->ZoneGas(iGasEquip); - for (int iSpace = 1; iSpace <= int(curGasEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curGasEquip.SpacePtrs(iSpace); - Real64 const gasEquip = curGasEquip.DesignLevel * curGasEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curGasEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curGasEquip.spacePtrs(iSpace); + Real64 const gasEquip = curGasEquip.DesignLevel * curGasEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += gasEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += gasEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += gasEquip; } } for (int iOthEquip = 1; iOthEquip <= state.dataHeatBal->TotOthEquip; ++iOthEquip) { auto curOthEquip = state.dataHeatBal->ZoneOtherEq(iOthEquip); - for (int iSpace = 1; iSpace <= int(curOthEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curOthEquip.SpacePtrs(iSpace); - Real64 const othEquip = curOthEquip.DesignLevel * curOthEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curOthEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curOthEquip.spacePtrs(iSpace); + Real64 const othEquip = curOthEquip.DesignLevel * curOthEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += othEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += othEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += othEquip; } } for (int iHWEquip = 1; iHWEquip <= state.dataHeatBal->TotHWEquip; ++iHWEquip) { auto curHWEquip = state.dataHeatBal->ZoneHWEq(iHWEquip); - for (int iSpace = 1; iSpace <= int(curHWEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curHWEquip.SpacePtrs(iSpace); - Real64 const hwEquip = curHWEquip.DesignLevel * curHWEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curHWEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curHWEquip.spacePtrs(iSpace); + Real64 const hwEquip = curHWEquip.DesignLevel * curHWEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += hwEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += hwEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += hwEquip; } } for (int iSteamEquip = 1; iSteamEquip <= state.dataHeatBal->TotStmEquip; ++iSteamEquip) { auto curSteamEquip = state.dataHeatBal->ZoneSteamEq(iSteamEquip); - for (int iSpace = 1; iSpace <= int(curSteamEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curSteamEquip.SpacePtrs(iSpace); - Real64 const steamEquip = curSteamEquip.DesignLevel * curSteamEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curSteamEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curSteamEquip.spacePtrs(iSpace); + Real64 const steamEquip = curSteamEquip.DesignLevel * curSteamEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += steamEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += steamEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += steamEquip; } } for (int iITEquip = 1; iITEquip <= state.dataHeatBal->NumZoneITEqStatements; ++iITEquip) { auto curITEquip = state.dataHeatBal->ZoneITEq(iITEquip); - for (int iSpace = 1; iSpace <= int(curITEquip.SpacePtrs.size()); ++iSpace) { - int const spaceNum = curITEquip.SpacePtrs(iSpace); - Real64 const itEquip = curITEquip.DesignTotalPower * curITEquip.SpaceFracs(iSpace); + for (int iSpace = 1; iSpace <= int(curITEquip.spacePtrs.size()); ++iSpace) { + int const spaceNum = curITEquip.spacePtrs(iSpace); + Real64 const itEquip = curITEquip.DesignTotalPower * curITEquip.spaceFracs(iSpace); spaceTotPlugProcess(spaceNum) += itEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->Space(spaceNum).SpaceTypeNum) += itEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += itEquip; } } @@ -12027,15 +12027,15 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr for (int iZone = 1; iZone <= state.dataGlobal->NumOfZones; ++iZone) { auto curZone = state.dataHeatBal->Zone(iZone); Real64 const mult = Real64(curZone.Multiplier) * Real64(curZone.ListMultiplier); - for (int const spaceNum : curZone.Spaces) { - auto curSpace = state.dataHeatBal->Space(spaceNum); + for (int const spaceNum : curZone.spaces) { + auto curSpace = state.dataHeatBal->space(spaceNum); bool spaceIsCond = false; bool useSpaceFloorArea = false; ++spaceTableRowNum; spaceRowHead(spaceTableRowNum) = curSpace.Name; spaceTableBody(colZoneName, spaceTableRowNum) = curZone.Name; - spaceTableBody(colSpaceType, spaceTableRowNum) = curSpace.SpaceType; - spaceTableBody(colSpaceArea, spaceTableRowNum) = RealToStr(curSpace.FloorArea * state.dataOutRptTab->m2_unitConvWVST, 2); + spaceTableBody(colSpaceType, spaceTableRowNum) = curSpace.spaceType; + spaceTableBody(colSpaceArea, spaceTableRowNum) = RealToStr(curSpace.floorArea * state.dataOutRptTab->m2_unitConvWVST, 2); // Conditioned or not if (curZone.SystemZoneNodeNumber > 0) { spaceTableBody(colConditioned, spaceTableRowNum) = "Yes"; @@ -12054,30 +12054,30 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr } // lighting density spaceTableBody(colMultipliers, spaceTableRowNum) = RealToStr(mult, 2); - if (curSpace.FloorArea > 0) { + if (curSpace.floorArea > 0) { spaceTableBody(colSpaceLighting, spaceTableRowNum) = - RealToStr(state.dataOutRptTab->Wm2_unitConv * spaceTotLighting(spaceNum) / curSpace.FloorArea, 4); + RealToStr(state.dataOutRptTab->Wm2_unitConv * spaceTotLighting(spaceNum) / curSpace.floorArea, 4); } else { spaceTableBody(colSpaceLighting, spaceTableRowNum) = RealToStr(0.0, 4); } // people density if (spaceTotPeople(spaceNum) > 0) { spaceTableBody(colSpacePeople, spaceTableRowNum) = - RealToStr(curSpace.FloorArea * state.dataOutRptTab->m2_unitConvWVST / spaceTotPeople(spaceNum), 2); + RealToStr(curSpace.floorArea * state.dataOutRptTab->m2_unitConvWVST / spaceTotPeople(spaceNum), 2); } else { spaceTableBody(colSpacePeople, spaceTableRowNum) = RealToStr(0.0, 2); } // plug and process density - if (curSpace.FloorArea > 0) { + if (curSpace.floorArea > 0) { spaceTableBody(colSpacePlugProcess, spaceTableRowNum) = - RealToStr(spaceTotPlugProcess(spaceNum) * state.dataOutRptTab->Wm2_unitConv / curSpace.FloorArea, 4); + RealToStr(spaceTotPlugProcess(spaceNum) * state.dataOutRptTab->Wm2_unitConv / curSpace.floorArea, 4); } else { spaceTableBody(colSpacePlugProcess, spaceTableRowNum) = RealToStr(0.0, 4); } 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; @@ -12089,29 +12089,29 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr // If not part of total, goes directly to this row if (!useSpaceFloorArea) { - spaceTypeNotTotArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; - state.dataOutRptTab->zstArea(state.dataOutRptTab->notpartTotal) += mult * curSpace.FloorArea; + spaceTypeNotTotArea(curSpace.spaceTypeNum) += curSpace.floorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->notpartTotal) += mult * curSpace.floorArea; state.dataOutRptTab->zstLight(state.dataOutRptTab->notpartTotal) += mult * spaceTotLighting(spaceNum); state.dataOutRptTab->zstPeople(state.dataOutRptTab->notpartTotal) += mult * spaceTotPeople(spaceNum); state.dataOutRptTab->zstPlug(state.dataOutRptTab->notpartTotal) += mult * spaceTotPlugProcess(spaceNum); } else { // Add it to the 'Total' - spaceTypeTotArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; - state.dataOutRptTab->zstArea(state.dataOutRptTab->grandTotal) += mult * curSpace.FloorArea; + spaceTypeTotArea(curSpace.spaceTypeNum) += curSpace.floorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->grandTotal) += mult * curSpace.floorArea; state.dataOutRptTab->zstLight(state.dataOutRptTab->grandTotal) += mult * spaceTotLighting(spaceNum); state.dataOutRptTab->zstPeople(state.dataOutRptTab->grandTotal) += mult * spaceTotPeople(spaceNum); state.dataOutRptTab->zstPlug(state.dataOutRptTab->grandTotal) += mult * spaceTotPlugProcess(spaceNum); // Subtotal between cond/unconditioned if (spaceIsCond) { - spaceTypeCondArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; - state.dataOutRptTab->zstArea(state.dataOutRptTab->condTotal) += mult * curSpace.FloorArea; + spaceTypeCondArea(curSpace.spaceTypeNum) += curSpace.floorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->condTotal) += mult * curSpace.floorArea; state.dataOutRptTab->zstLight(state.dataOutRptTab->condTotal) += mult * spaceTotLighting(spaceNum); state.dataOutRptTab->zstPeople(state.dataOutRptTab->condTotal) += mult * spaceTotPeople(spaceNum); state.dataOutRptTab->zstPlug(state.dataOutRptTab->condTotal) += mult * spaceTotPlugProcess(spaceNum); } else if (!spaceIsCond) { - spaceTypeUncondArea(curSpace.SpaceTypeNum) += curSpace.FloorArea * mult; - state.dataOutRptTab->zstArea(state.dataOutRptTab->uncondTotal) += mult * curSpace.FloorArea; + spaceTypeUncondArea(curSpace.spaceTypeNum) += curSpace.floorArea * mult; + state.dataOutRptTab->zstArea(state.dataOutRptTab->uncondTotal) += mult * curSpace.floorArea; state.dataOutRptTab->zstLight(state.dataOutRptTab->uncondTotal) += mult * spaceTotLighting(spaceNum); state.dataOutRptTab->zstPeople(state.dataOutRptTab->uncondTotal) += mult * spaceTotPeople(spaceNum); state.dataOutRptTab->zstPlug(state.dataOutRptTab->uncondTotal) += mult * spaceTotPlugProcess(spaceNum); diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 3e02cd1d8e0..258513eaa3d 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1666,7 +1666,7 @@ namespace RoomAirModelManager { if (RAFNNodeNum > 0) { // found it foundList = true; int numInputGains = (NumAlphas + NumNumbers - 1) / 3; - int numSpacesInZone = int(state.dataHeatBal->Zone(ZoneNum).Spaces.size()); + int numSpacesInZone = int(state.dataHeatBal->Zone(ZoneNum).spaces.size()); int maxNumGains = numInputGains * numSpacesInZone; if (allocated(state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain)) { ShowSevereError(state, @@ -1701,7 +1701,7 @@ namespace RoomAirModelManager { bool gainFound = false; // check all spaces in this zone for matching gains - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).Spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { // verify type and name and get pointer to device in internal gains structure array int intGainIndex = GetInternalGainDeviceIndex( state, diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index cfece441ff9..9f947e75e14 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -398,9 +398,9 @@ namespace SurfaceGeometry { e.TotalSurfArea = 0.0; } - for (auto &s : state.dataHeatBal->Space) { - s.ExtWindowArea = 0.0; - s.TotalSurfArea = 0.0; + for (auto &s : state.dataHeatBal->space) { + s.extWindowArea = 0.0; + s.totalSurfArea = 0.0; } DetailedWWR = (state.dataInputProcessing->inputProcessor->getNumSectionsFound("DETAILEDWWR_DEBUG") > 0); if (DetailedWWR) { @@ -413,13 +413,13 @@ namespace SurfaceGeometry { if (!state.dataSurface->Surface(SurfNum).HeatTransSurf && !state.dataSurface->Surface(SurfNum).IsAirBoundarySurf) continue; // Skip shadowing (sub)surfaces int const ZoneNum = state.dataSurface->Surface(SurfNum).Zone; - int const spaceNum = state.dataSurface->Surface(SurfNum).Space; + int const spaceNum = state.dataSurface->Surface(SurfNum).spaceNum; state.dataHeatBal->Zone(ZoneNum).TotalSurfArea += state.dataSurface->Surface(SurfNum).Area; - state.dataHeatBal->Space(spaceNum).TotalSurfArea += state.dataSurface->Surface(SurfNum).Area; + state.dataHeatBal->space(spaceNum).totalSurfArea += state.dataSurface->Surface(SurfNum).Area; if (state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).TypeIsWindow) { state.dataHeatBal->Zone(ZoneNum).TotalSurfArea += state.dataSurface->SurfWinFrameArea(SurfNum); state.dataHeatBal->Zone(ZoneNum).HasWindow = true; - state.dataHeatBal->Space(spaceNum).TotalSurfArea += state.dataSurface->SurfWinFrameArea(SurfNum); + state.dataHeatBal->space(spaceNum).totalSurfArea += state.dataSurface->SurfWinFrameArea(SurfNum); } if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Roof) ZoneCeilingArea(ZoneNum) += state.dataSurface->Surface(SurfNum).GrossArea; @@ -472,7 +472,7 @@ namespace SurfaceGeometry { (state.dataSurface->Surface(SurfNum).ExtBoundCond == OtherSideCondModeledExt)) && (state.dataSurface->Surface(SurfNum).Class != SurfaceClass::TDD_Dome)) { state.dataHeatBal->Zone(ZoneNum).ExtWindowArea += state.dataSurface->Surface(SurfNum).GrossArea; - state.dataHeatBal->Space(spaceNum).ExtWindowArea += state.dataSurface->Surface(SurfNum).GrossArea; + state.dataHeatBal->space(spaceNum).extWindowArea += state.dataSurface->Surface(SurfNum).GrossArea; state.dataHeatBal->Zone(ZoneNum).ExtWindowArea_Multiplied = state.dataHeatBal->Zone(ZoneNum).ExtWindowArea + state.dataSurface->Surface(SurfNum).GrossArea * state.dataSurface->Surface(SurfNum).Multiplier * @@ -2383,8 +2383,8 @@ namespace SurfaceGeometry { if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Floor) { state.dataHeatBal->Zone(ZoneNum).FloorArea += state.dataSurface->Surface(SurfNum).Area; state.dataHeatBal->Zone(ZoneNum).HasFloor = true; - int spaceNum = state.dataSurface->Surface(SurfNum).Space; - state.dataHeatBal->Space(spaceNum).FloorArea += state.dataSurface->Surface(SurfNum).Area; + int spaceNum = state.dataSurface->Surface(SurfNum).spaceNum; + state.dataHeatBal->space(spaceNum).floorArea += state.dataSurface->Surface(SurfNum).Area; } if (state.dataSurface->Surface(SurfNum).Class == SurfaceClass::Roof) { state.dataHeatBal->Zone(ZoneNum).CeilingArea += state.dataSurface->Surface(SurfNum).Area; @@ -2433,15 +2433,15 @@ namespace SurfaceGeometry { } for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - state.dataHeatBal->Space(spaceNum).CalcFloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; - if (state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea != DataGlobalConstants::AutoCalculate) { + state.dataHeatBal->space(spaceNum).calcFloorArea = state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).userEnteredFloorArea != DataGlobalConstants::AutoCalculate) { // Check entered vs calculated - if (state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea > 0.0) { // User entered Space floor area, + if (state.dataHeatBal->space(spaceNum).userEnteredFloorArea > 0.0) { // User entered Space floor area, // produce message if not near calculated - if (state.dataHeatBal->Space(spaceNum).CalcFloorArea > 0.0) { + if (state.dataHeatBal->space(spaceNum).calcFloorArea > 0.0) { diffp = - std::abs(state.dataHeatBal->Space(spaceNum).CalcFloorArea - state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea) / - state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea; + std::abs(state.dataHeatBal->space(spaceNum).calcFloorArea - state.dataHeatBal->space(spaceNum).userEnteredFloorArea) / + state.dataHeatBal->space(spaceNum).userEnteredFloorArea; if (diffp > 0.05) { ++ErrCount; if (ErrCount == 1 && !state.dataGlobal->DisplayExtraWarnings) { @@ -2454,22 +2454,22 @@ namespace SurfaceGeometry { // Warn user of using specified Space Floor Area ShowWarningError(state, std::string(RoutineName) + "Entered Floor Area entered for Space=\"" + - state.dataHeatBal->Space(spaceNum).Name + + state.dataHeatBal->space(spaceNum).Name + "\" significantly different from calculated Floor Area"); ShowContinueError( state, format("Entered Space Floor Area value={:.2R}, Calculated Space Floor Area value={:.2R}, entered " "Floor Area will be used in calculations.", - state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea, - state.dataHeatBal->Space(spaceNum).CalcFloorArea)); + state.dataHeatBal->space(spaceNum).userEnteredFloorArea, + state.dataHeatBal->space(spaceNum).calcFloorArea)); } } } - state.dataHeatBal->Space(spaceNum).FloorArea = state.dataHeatBal->Space(spaceNum).UserEnteredFloorArea; - state.dataHeatBal->Space(spaceNum).HasFloor = true; + state.dataHeatBal->space(spaceNum).floorArea = state.dataHeatBal->space(spaceNum).userEnteredFloorArea; + state.dataHeatBal->space(spaceNum).hasFloor = true; } } else { - state.dataHeatBal->Space(spaceNum).FloorArea = state.dataHeatBal->Space(spaceNum).CalcFloorArea; // redundant, already done. + state.dataHeatBal->space(spaceNum).floorArea = state.dataHeatBal->space(spaceNum).calcFloorArea; // redundant, already done. } } } @@ -2816,30 +2816,30 @@ namespace SurfaceGeometry { for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { auto &thisSurf = state.dataSurface->Surface(surfNum); if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces - if (thisSurf.Space > 0) { - state.dataHeatBal->Zone(thisSurf.Zone).AnySurfacesWithSpace = true; + if (thisSurf.spaceNum > 0) { + state.dataHeatBal->Zone(thisSurf.Zone).anySurfacesWithSpace = true; } else { - state.dataHeatBal->Zone(thisSurf.Zone).AnySurfacesWithoutSpace = true; + state.dataHeatBal->Zone(thisSurf.Zone).anySurfacesWithoutSpace = true; } } // Create any missing Spaces for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { auto &thisZone = state.dataHeatBal->Zone(zoneNum); - if (thisZone.AnySurfacesWithoutSpace) { + if (thisZone.anySurfacesWithoutSpace) { // If any surfaces in the zone are not assigned to a space, may need to create a new space // Every zone has at least one space, created in HeatBalanceManager::GetSpaceData // If no surfaces have a space assigned, then the default space will be used, otherwise, create a new space - if (thisZone.AnySurfacesWithSpace) { + if (thisZone.anySurfacesWithSpace) { // Add new space ++state.dataGlobal->numSpaces; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).ZoneNum = zoneNum; + state.dataHeatBal->space(state.dataGlobal->numSpaces).zoneNum = zoneNum; // Add to zone's list of spaces - thisZone.Spaces.emplace_back(state.dataGlobal->numSpaces); + thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone - state.dataHeatBal->Space(state.dataGlobal->numSpaces).Name = thisZone.Name + "-Remainder"; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceType = "GENERAL"; - state.dataHeatBal->Space(state.dataGlobal->numSpaces).SpaceTypeNum = HeatBalanceManager::GetGeneralSpaceTypeNum(state); + state.dataHeatBal->space(state.dataGlobal->numSpaces).Name = thisZone.Name + "-Remainder"; + state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceType = "GENERAL"; + state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceTypeNum = HeatBalanceManager::GetGeneralSpaceTypeNum(state); } } } @@ -2848,19 +2848,19 @@ namespace SurfaceGeometry { for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { auto &thisSurf = state.dataSurface->Surface(surfNum); if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces - if (thisSurf.Space == 0) { - int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).Spaces.size(); - int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).Spaces(numSpaces); - thisSurf.Space = lastSpaceForZone; + if (thisSurf.spaceNum == 0) { + int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).spaces.size(); + int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).spaces(numSpaces); + thisSurf.spaceNum = lastSpaceForZone; // Add to Space's list of surfaces - state.dataHeatBal->Space(lastSpaceForZone).Surfaces.emplace_back(surfNum); + state.dataHeatBal->space(lastSpaceForZone).surfaces.emplace_back(surfNum); } } // TODO MJW: Is this necessary? Check that all Spaces have at least one Surface for (int spaceNum = 1; spaceNum < state.dataGlobal->numSpaces; ++spaceNum) { - if (int(state.dataHeatBal->Space(spaceNum).Surfaces.size()) == 0) { - ShowSevereError(state, std::string(RoutineName) + "Space = " + state.dataHeatBal->Space(spaceNum).Name + " has no surfaces."); + if (int(state.dataHeatBal->space(spaceNum).surfaces.size()) == 0) { + ShowSevereError(state, std::string(RoutineName) + "Space = " + state.dataHeatBal->space(spaceNum).Name + " has no surfaces."); ErrorsFound = true; } } @@ -3815,12 +3815,12 @@ namespace SurfaceGeometry { ++ArgPointer; if (!state.dataIPShortCut->lAlphaFieldBlanks(ArgPointer)) { - int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(ArgPointer), state.dataHeatBal->Space); + int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(ArgPointer), state.dataHeatBal->space); if (spaceNum != 0) { - state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; - state.dataHeatBal->Space(spaceNum).Surfaces.emplace_back(SurfNum); - if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Zone != state.dataHeatBal->Space(spaceNum).ZoneNum) { + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).spaceNum = spaceNum; + state.dataHeatBal->space(spaceNum).surfaces.emplace_back(SurfNum); + if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Zone != state.dataHeatBal->space(spaceNum).zoneNum) { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(ArgPointer) + "=\"" + @@ -4417,11 +4417,11 @@ namespace SurfaceGeometry { } if (!state.dataIPShortCut->lAlphaFieldBlanks(4)) { - int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->Space); + int spaceNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->space); if (spaceNum != 0) { - state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Space = spaceNum; - state.dataHeatBal->Space(spaceNum).Surfaces.emplace_back(SurfNum); + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).spaceNum = spaceNum; + state.dataHeatBal->space(spaceNum).surfaces.emplace_back(SurfNum); } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + @@ -7026,22 +7026,22 @@ namespace SurfaceGeometry { } if (!state.dataIPShortCut->lAlphaFieldBlanks(4)) { - state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListName = state.dataIPShortCut->cAlphaArgs(4); - int Item1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->Space); + state.dataSurface->IntMassObjects(Item).spaceOrSpaceListName = state.dataIPShortCut->cAlphaArgs(4); + int Item1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->space); int SLItem = 0; - if (Item1 == 0 && int(state.dataHeatBal->SpaceList.size()) > 0) - SLItem = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->SpaceList); + if (Item1 == 0 && int(state.dataHeatBal->spaceList.size()) > 0) + SLItem = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(4), state.dataHeatBal->spaceList); if (Item1 > 0) { ++NumIntMassSurfaces; - state.dataSurface->IntMassObjects(Item).NumOfSpaces = 1; - state.dataSurface->IntMassObjects(Item).SpaceListActive = false; - state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListPtr = Item1; + state.dataSurface->IntMassObjects(Item).numOfSpaces = 1; + state.dataSurface->IntMassObjects(Item).spaceListActive = false; + state.dataSurface->IntMassObjects(Item).spaceOrSpaceListPtr = Item1; } else if (SLItem > 0) { - int numOfSpaces = int(state.dataHeatBal->SpaceList(SLItem).Spaces.size()); + int numOfSpaces = int(state.dataHeatBal->spaceList(SLItem).spaces.size()); NumIntMassSurfaces += numOfSpaces; - state.dataSurface->IntMassObjects(Item).NumOfSpaces = numOfSpaces; - state.dataSurface->IntMassObjects(Item).SpaceListActive = true; - state.dataSurface->IntMassObjects(Item).SpaceOrSpaceListPtr = SLItem; + state.dataSurface->IntMassObjects(Item).numOfSpaces = numOfSpaces; + state.dataSurface->IntMassObjects(Item).spaceListActive = true; + state.dataSurface->IntMassObjects(Item).spaceOrSpaceListPtr = SLItem; } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataIPShortCut->cAlphaArgs(1) + "\" invalid " + @@ -14709,12 +14709,14 @@ namespace SurfaceGeometry { constr.IsUsedCTF = false; surf.HeatTransSurf = false; surf.HeatTransferAlgorithm = DataSurfaces::iHeatTransferModel::AirBoundaryNoHT; - thisSideEnclosureNum = state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum; - otherSideEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum; + thisSideEnclosureNum = state.dataHeatBal->space(surf.spaceNum).radiantEnclosureNum; + otherSideEnclosureNum = + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).radiantEnclosureNum; } else { // Solar enclosure setup - thisSideEnclosureNum = state.dataHeatBal->Space(surf.Space).SolarEnclosureNum; - otherSideEnclosureNum = state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum; + thisSideEnclosureNum = state.dataHeatBal->space(surf.spaceNum).solarEnclosureNum; + otherSideEnclosureNum = + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).solarEnclosureNum; } anyGroupedSpaces = true; if ((thisSideEnclosureNum == 0) && (otherSideEnclosureNum == 0)) { @@ -14723,73 +14725,73 @@ namespace SurfaceGeometry { auto &thisEnclosure(Enclosures(enclosureNum)); thisSideEnclosureNum = enclosureNum; thisEnclosure.Name = format("{} Enclosure {}", RadiantOrSolar, enclosureNum); - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(surf.Space).Name); - thisEnclosure.SpaceNums.push_back(surf.Space); - thisEnclosure.FloorArea += state.dataHeatBal->Space(surf.Space).FloorArea; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(surf.spaceNum).Name); + thisEnclosure.spaceNums.push_back(surf.spaceNum); + thisEnclosure.FloorArea += state.dataHeatBal->space(surf.spaceNum).floorArea; otherSideEnclosureNum = enclosureNum; - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).Name); - thisEnclosure.SpaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Space); + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).Name); + thisEnclosure.spaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum); thisEnclosure.FloorArea += state.dataHeatBal->Zone(state.dataSurface->Surface(surf.ExtBoundCond).Zone).FloorArea; if (radiantSetup) { - state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum = thisSideEnclosureNum; - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum = + state.dataHeatBal->space(surf.spaceNum).radiantEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).radiantEnclosureNum = otherSideEnclosureNum; } else { - thisEnclosure.ExtWindowArea += state.dataHeatBal->Space(surf.Space).ExtWindowArea; - thisEnclosure.TotalSurfArea += state.dataHeatBal->Space(surf.Space).TotalSurfArea; + thisEnclosure.ExtWindowArea += state.dataHeatBal->space(surf.spaceNum).extWindowArea; + thisEnclosure.TotalSurfArea += state.dataHeatBal->space(surf.spaceNum).totalSurfArea; thisEnclosure.ExtWindowArea += - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).ExtWindowArea; + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).extWindowArea; thisEnclosure.TotalSurfArea += - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).TotalSurfArea; - state.dataHeatBal->Space(surf.Space).SolarEnclosureNum = thisSideEnclosureNum; - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).totalSurfArea; + state.dataHeatBal->space(surf.spaceNum).solarEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).solarEnclosureNum = otherSideEnclosureNum; } } else if (thisSideEnclosureNum == 0) { // Other side is assigned, so use that one for both thisSideEnclosureNum = otherSideEnclosureNum; auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(surf.Space).Name); - thisEnclosure.SpaceNums.push_back(surf.Space); - thisEnclosure.FloorArea += state.dataHeatBal->Space(surf.Space).FloorArea; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(surf.spaceNum).Name); + thisEnclosure.spaceNums.push_back(surf.spaceNum); + thisEnclosure.FloorArea += state.dataHeatBal->space(surf.spaceNum).floorArea; if (radiantSetup) { - state.dataHeatBal->Space(surf.Space).RadiantEnclosureNum = thisSideEnclosureNum; + state.dataHeatBal->space(surf.spaceNum).radiantEnclosureNum = thisSideEnclosureNum; } else { - thisEnclosure.ExtWindowArea += state.dataHeatBal->Space(surf.Space).ExtWindowArea; - thisEnclosure.TotalSurfArea += state.dataHeatBal->Space(surf.Space).TotalSurfArea; - state.dataHeatBal->Space(surf.Space).SolarEnclosureNum = thisSideEnclosureNum; + thisEnclosure.ExtWindowArea += state.dataHeatBal->space(surf.spaceNum).extWindowArea; + thisEnclosure.TotalSurfArea += state.dataHeatBal->space(surf.spaceNum).totalSurfArea; + state.dataHeatBal->space(surf.spaceNum).solarEnclosureNum = thisSideEnclosureNum; } } else if (otherSideEnclosureNum == 0) { // This side is assigned, so use that one for both otherSideEnclosureNum = thisSideEnclosureNum; auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).Name); - thisEnclosure.SpaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).Space); - thisEnclosure.FloorArea += state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).FloorArea; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).Name); + thisEnclosure.spaceNums.push_back(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum); + thisEnclosure.FloorArea += state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).floorArea; if (radiantSetup) { - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).RadiantEnclosureNum = + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).radiantEnclosureNum = otherSideEnclosureNum; } else { thisEnclosure.ExtWindowArea += - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).ExtWindowArea; + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).extWindowArea; thisEnclosure.TotalSurfArea += - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).TotalSurfArea; - state.dataHeatBal->Space(state.dataSurface->Surface(surf.ExtBoundCond).Space).SolarEnclosureNum = + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).totalSurfArea; + state.dataHeatBal->space(state.dataSurface->Surface(surf.ExtBoundCond).spaceNum).solarEnclosureNum = otherSideEnclosureNum; } } else if (thisSideEnclosureNum != otherSideEnclosureNum) { // If both sides are already assigned to an enclosure, then merge the two enclosures auto &thisEnclosure(Enclosures(thisSideEnclosureNum)); auto &otherEnclosure(Enclosures(otherSideEnclosureNum)); - for (const auto &zName : thisEnclosure.SpaceNames) { - otherEnclosure.SpaceNames.push_back(zName); + for (const auto &zName : thisEnclosure.spaceNames) { + otherEnclosure.spaceNames.push_back(zName); } - for (const auto &zNum : thisEnclosure.SpaceNums) { - otherEnclosure.SpaceNums.push_back(zNum); + for (const auto &zNum : thisEnclosure.spaceNums) { + otherEnclosure.spaceNums.push_back(zNum); if (radiantSetup) { - state.dataHeatBal->Space(zNum).RadiantEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->space(zNum).radiantEnclosureNum = otherSideEnclosureNum; } else { - state.dataHeatBal->Space(zNum).SolarEnclosureNum = otherSideEnclosureNum; + state.dataHeatBal->space(zNum).solarEnclosureNum = otherSideEnclosureNum; } } otherEnclosure.FloorArea += thisEnclosure.FloorArea; @@ -14800,18 +14802,18 @@ namespace SurfaceGeometry { std::string saveName = Enclosures(enclNum).Name; Enclosures(enclNum) = Enclosures(enclNum + 1); Enclosures(enclNum).Name = saveName; - for (auto zNum : thisEnclosure.SpaceNums) { + for (auto zNum : thisEnclosure.spaceNums) { if (radiantSetup) { - state.dataHeatBal->Space(zNum).RadiantEnclosureNum = enclNum; + state.dataHeatBal->space(zNum).radiantEnclosureNum = enclNum; } else { - state.dataHeatBal->Space(zNum).SolarEnclosureNum = enclNum; + state.dataHeatBal->space(zNum).solarEnclosureNum = enclNum; } } } // Clear the last rad enclosure and reduce the total number of enclosures by 1 Enclosures(enclosureNum).Name.clear(); - Enclosures(enclosureNum).SpaceNames.clear(); - Enclosures(enclosureNum).SpaceNums.clear(); + Enclosures(enclosureNum).spaceNames.clear(); + Enclosures(enclosureNum).spaceNums.clear(); Enclosures(enclosureNum).FloorArea = 0; Enclosures(enclosureNum).ExtWindowArea = 0; Enclosures(enclosureNum).TotalSurfArea = 0; @@ -14865,24 +14867,24 @@ namespace SurfaceGeometry { for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { int spaceEnclosureNum = 0; if (radiantSetup) { - spaceEnclosureNum = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; + spaceEnclosureNum = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; } else { - spaceEnclosureNum = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; + spaceEnclosureNum = state.dataHeatBal->space(spaceNum).solarEnclosureNum; } if (spaceEnclosureNum == 0) { ++enclosureNum; if (radiantSetup) { - state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum = enclosureNum; + state.dataHeatBal->space(spaceNum).radiantEnclosureNum = enclosureNum; } else { - state.dataHeatBal->Space(spaceNum).SolarEnclosureNum = enclosureNum; + state.dataHeatBal->space(spaceNum).solarEnclosureNum = enclosureNum; } auto &thisEnclosure(Enclosures(enclosureNum)); - thisEnclosure.Name = state.dataHeatBal->Space(spaceNum).Name; - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(spaceNum).Name); - thisEnclosure.SpaceNums.push_back(spaceNum); - thisEnclosure.FloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; - thisEnclosure.ExtWindowArea = state.dataHeatBal->Space(spaceNum).ExtWindowArea; - thisEnclosure.TotalSurfArea = state.dataHeatBal->Space(spaceNum).TotalSurfArea; + thisEnclosure.Name = state.dataHeatBal->space(spaceNum).Name; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(spaceNum).Name); + thisEnclosure.spaceNums.push_back(spaceNum); + thisEnclosure.FloorArea = state.dataHeatBal->space(spaceNum).floorArea; + thisEnclosure.ExtWindowArea = state.dataHeatBal->space(spaceNum).extWindowArea; + thisEnclosure.TotalSurfArea = state.dataHeatBal->space(spaceNum).totalSurfArea; } } if (radiantSetup) { @@ -14894,16 +14896,16 @@ namespace SurfaceGeometry { // There are no grouped radiant air boundaries, assign each space to it's own radiant enclosure for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { auto &thisEnclosure(Enclosures(spaceNum)); - thisEnclosure.Name = state.dataHeatBal->Space(spaceNum).Name; - thisEnclosure.SpaceNames.push_back(state.dataHeatBal->Space(spaceNum).Name); - thisEnclosure.SpaceNums.push_back(spaceNum); - thisEnclosure.FloorArea = state.dataHeatBal->Space(spaceNum).FloorArea; + thisEnclosure.Name = state.dataHeatBal->space(spaceNum).Name; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(spaceNum).Name); + thisEnclosure.spaceNums.push_back(spaceNum); + thisEnclosure.FloorArea = state.dataHeatBal->space(spaceNum).floorArea; if (radiantSetup) { - state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum = spaceNum; + state.dataHeatBal->space(spaceNum).radiantEnclosureNum = spaceNum; } else { - state.dataHeatBal->Space(spaceNum).SolarEnclosureNum = spaceNum; - thisEnclosure.ExtWindowArea = state.dataHeatBal->Space(spaceNum).ExtWindowArea; - thisEnclosure.TotalSurfArea = state.dataHeatBal->Space(spaceNum).TotalSurfArea; + state.dataHeatBal->space(spaceNum).solarEnclosureNum = spaceNum; + thisEnclosure.ExtWindowArea = state.dataHeatBal->space(spaceNum).extWindowArea; + thisEnclosure.TotalSurfArea = state.dataHeatBal->space(spaceNum).totalSurfArea; } } if (radiantSetup) { @@ -14915,18 +14917,18 @@ namespace SurfaceGeometry { // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - for (int spaceNum : state.dataHeatBal->Zone(zoneNum).Spaces) { + for (int spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == -1) { // initial value - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum; + state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; } else { state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = - min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); } state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = - max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->Space(spaceNum).RadiantEnclosureNum); + max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); // TODO: For daylighting, set the zone solar enclosure number to the first space's number if (state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure == 0) { - state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->Space(spaceNum).SolarEnclosureNum; + state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->space(spaceNum).solarEnclosureNum; } } assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index 1703c3409a5..2f71110985a 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -168,20 +168,20 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) state->dataHeatBal->Zone.allocate(spaceNum); state->dataHeatBal->Zone(spaceNum).Name = "Test"; - state->dataHeatBal->Zone(spaceNum).Spaces.emplace_back(spaceNum); - state->dataHeatBal->Space.allocate(spaceNum); - state->dataHeatBal->Space(spaceNum).Name = "Test"; - state->dataHeatBal->Space(spaceNum).ZoneNum = spaceNum; + state->dataHeatBal->Zone(spaceNum).spaces.emplace_back(spaceNum); + state->dataHeatBal->space.allocate(spaceNum); + state->dataHeatBal->space(spaceNum).Name = "Test"; + state->dataHeatBal->space(spaceNum).zoneNum = spaceNum; state->dataViewFactor->EnclRadInfo.allocate(spaceNum); - state->dataViewFactor->EnclRadInfo(spaceNum).Name = state->dataHeatBal->Space(spaceNum).Name; - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums.push_back(spaceNum); + state->dataViewFactor->EnclRadInfo(spaceNum).Name = state->dataHeatBal->space(spaceNum).Name; + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums.push_back(spaceNum); FixViewFactors(*state, N, A, F, state->dataViewFactor->EnclRadInfo(spaceNum).Name, - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -221,7 +221,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) A, F, state->dataViewFactor->EnclRadInfo(spaceNum).Name, - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -251,7 +251,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) A, F, state->dataViewFactor->EnclRadInfo(spaceNum).Name, - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -281,7 +281,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) A, F, state->dataViewFactor->EnclRadInfo(spaceNum).Name, - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -334,7 +334,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) A, F, state->dataViewFactor->EnclRadInfo(spaceNum).Name, - state->dataViewFactor->EnclRadInfo(spaceNum).SpaceNums, + state->dataViewFactor->EnclRadInfo(spaceNum).spaceNums, OriginalCheckValue, FixedCheckValue, FinalCheckValue, @@ -502,18 +502,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) state->dataViewFactor->NumOfRadiantEnclosures = 3; state->dataViewFactor->EnclRadInfo.allocate(3); state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; - state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(3).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -603,18 +603,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) state->dataViewFactor->NumOfSolarEnclosures = 3; state->dataViewFactor->EnclSolInfo.allocate(3); state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; - state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(3).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -701,18 +701,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest3) state->dataViewFactor->NumOfSolarEnclosures = 3; state->dataViewFactor->EnclSolInfo.allocate(3); state->dataViewFactor->EnclSolInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclSolInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 2"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 1"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclSolInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 4"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclSolInfo(3).Name = "Space 3"; - state->dataViewFactor->EnclSolInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclSolInfo(3).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone 3"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); @@ -802,18 +802,18 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest4) state->dataViewFactor->NumOfRadiantEnclosures = 3; state->dataViewFactor->EnclRadInfo.allocate(3); state->dataViewFactor->EnclRadInfo(1).Name = "Enclosure 1"; - state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclRadInfo(1).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 2"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(1).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(2).Name = "Enclosure 2"; - state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); - state->dataViewFactor->EnclRadInfo(2).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 4"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(2).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 5"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); state->dataViewFactor->EnclRadInfo(3).Name = "Space 3"; - state->dataViewFactor->EnclRadInfo(3).SpaceNums.push_back( - UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->Space, state->dataGlobal->numSpaces)); + state->dataViewFactor->EnclRadInfo(3).spaceNums.push_back( + UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Space 3"), state->dataHeatBal->space, state->dataGlobal->numSpaces)); ErrorsFound = false; HeatBalanceIntRadExchange::AlignInputViewFactors(*state, "ZoneProperty:UserViewFactors:BySurfaceName", ErrorsFound); diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index b54ca228fca..06189b33ce0 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6862,11 +6862,11 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesTwice_test) state->dataGlobal->NumOfZones = 4; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); state->dataGlobal->numSpaces = 4; - state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); + state->dataHeatBal->space.allocate(state->dataGlobal->numSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 1; - state->dataHeatBal->Space(iZone).RadiantEnclosureNum = 1; + state->dataHeatBal->space(iZone).radiantEnclosureNum = 1; state->dataSurface->TotSurfaces = 4; state->dataSurface->Surface.allocate(state->dataSurface->TotSurfaces); @@ -8245,11 +8245,11 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataGlobal->NumOfZones = 1; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); state->dataGlobal->numSpaces = 1; - state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); + state->dataHeatBal->space.allocate(state->dataGlobal->numSpaces); state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 4; - state->dataHeatBal->Space(iZone).RadiantEnclosureNum = 1; + state->dataHeatBal->space(iZone).radiantEnclosureNum = 1; int radEnclosureNum = 1; state->dataSurface->TotSurfaces = 4; diff --git a/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc b/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc index 320102da276..735ad98ae57 100644 --- a/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc +++ b/tst/EnergyPlus/unit/PurchasedAirManager.unit.cc @@ -121,8 +121,8 @@ class ZoneIdealLoadsTest : public EnergyPlusFixture state->dataHeatBalFanSys->SysDepZoneLoads.allocate(1); state->dataHeatBal->MassConservation.allocate(1); state->dataHeatBal->ZoneIntGain.allocate(1); - state->dataHeatBal->SpaceIntGain.allocate(1); - state->dataHeatBal->SpaceIntGainDevices.allocate(1); + state->dataHeatBal->spaceIntGain.allocate(1); + state->dataHeatBal->spaceIntGainDevices.allocate(1); state->dataSurface->SurfaceWindow.allocate(1); state->dataHeatBal->RefrigCaseCredit.allocate(1); state->dataHeatBalFanSys->ZoneLatentGain.allocate(1); diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index da89f47ad10..c291a3c61b7 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -106,11 +106,11 @@ class RoomAirflowNetworkTest : public EnergyPlusFixture int NumOfSurfaces = 2; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); - state->dataHeatBal->Space.allocate(state->dataGlobal->numSpaces); + state->dataHeatBal->space.allocate(state->dataGlobal->numSpaces); state->dataZoneEquip->ZoneEquipConfig.allocate(state->dataGlobal->NumOfZones); state->dataZoneEquip->ZoneEquipList.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->ZoneIntGain.allocate(state->dataGlobal->NumOfZones); - state->dataHeatBal->SpaceIntGainDevices.allocate(state->dataGlobal->numSpaces); + state->dataHeatBal->spaceIntGainDevices.allocate(state->dataGlobal->numSpaces); state->dataLoopNodes->NodeID.allocate(state->dataLoopNodes->NumOfNodes); state->dataLoopNodes->Node.allocate(state->dataLoopNodes->NumOfNodes); state->dataSurface->Surface.allocate(NumOfSurfaces); @@ -264,14 +264,14 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataHeatBal->Zone(ZoneNum).HTSurfaceFirst = 1; state->dataHeatBal->Zone(ZoneNum).HTSurfaceLast = 2; state->dataHeatBal->Zone(ZoneNum).ZoneVolCapMultpMoist = 0; - state->dataHeatBal->Zone(ZoneNum).Spaces.emplace_back(1); - - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).NumberOfDevices = 1; - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device.allocate(state->dataHeatBal->SpaceIntGainDevices(1).NumberOfDevices); - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).CompObjectName = "PEOPLE"; - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).CompTypeOfNum = IntGainTypeOf_People; - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).ConvectGainRate = 300.0; - state->dataHeatBal->SpaceIntGainDevices(ZoneNum).Device(1).LatentGainRate = 200.0; + state->dataHeatBal->Zone(ZoneNum).spaces.emplace_back(1); + + state->dataHeatBal->spaceIntGainDevices(ZoneNum).numberOfDevices = 1; + state->dataHeatBal->spaceIntGainDevices(ZoneNum).device.allocate(state->dataHeatBal->spaceIntGainDevices(1).numberOfDevices); + state->dataHeatBal->spaceIntGainDevices(ZoneNum).device(1).CompObjectName = "PEOPLE"; + state->dataHeatBal->spaceIntGainDevices(ZoneNum).device(1).CompTypeOfNum = IntGainTypeOf_People; + state->dataHeatBal->spaceIntGainDevices(ZoneNum).device(1).ConvectGainRate = 300.0; + state->dataHeatBal->spaceIntGainDevices(ZoneNum).device(1).LatentGainRate = 200.0; state->dataSurface->Surface(1).HeatTransSurf = true; state->dataSurface->Surface(2).HeatTransSurf = true; diff --git a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc index 402a18fd417..c5ca0540f52 100644 --- a/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc +++ b/tst/EnergyPlus/unit/SurfaceGeometry.unit.cc @@ -5169,23 +5169,23 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresNoAirBoundari EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Space 1")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).Name, "Space 2")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(3).Name, "Space 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).SpaceNames[0], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(3).SpaceNames[0], "Space 3")); - EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 3); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).spaceNames[0], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(3).spaceNames[0], "Space 3")); + EXPECT_EQ(state->dataHeatBal->space(1).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).radiantEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->space(3).radiantEnclosureNum, 3); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 3); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Space 1")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).Name, "Space 2")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(3).Name, "Space 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).SpaceNames[0], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(3).SpaceNames[0], "Space 3")); - EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 3); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).spaceNames[0], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(3).spaceNames[0], "Space 3")); + EXPECT_EQ(state->dataHeatBal->space(1).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).solarEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->space(3).solarEnclosureNum, 3); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBoundaries1) @@ -5370,21 +5370,21 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 1); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[2], "Space 3")); - EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[2], "Space 3")); + EXPECT_EQ(state->dataHeatBal->space(1).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(3).radiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 1); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[2], "Space 3")); - EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[2], "Space 3")); + EXPECT_EQ(state->dataHeatBal->space(1).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(3).solarEnclosureNum, 1); } TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBoundaries2) @@ -5580,23 +5580,23 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 2); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[1], "Space 3")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).Name, "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).SpaceNames[0], "Space 2")); - EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(2).spaceNames[0], "Space 2")); + EXPECT_EQ(state->dataHeatBal->space(1).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).radiantEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->space(3).radiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 2); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[1], "Space 3")); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).Name, "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).SpaceNames[0], "Space 2")); - EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 2); - EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(2).spaceNames[0], "Space 2")); + EXPECT_EQ(state->dataHeatBal->space(1).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).solarEnclosureNum, 2); + EXPECT_EQ(state->dataHeatBal->space(3).solarEnclosureNum, 1); // Check surface order int Zone1Surface1 = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Zone1-Surface1"), state->dataSurface->Surface); @@ -5962,29 +5962,29 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_SetupEnclosuresWithAirBounda EXPECT_EQ(state->dataViewFactor->NumOfRadiantEnclosures, 1); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).Name, "Radiant Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[1], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[2], "Space 5")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[3], "Space 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).SpaceNames[4], "Space 4")); - EXPECT_EQ(state->dataHeatBal->Space(1).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(3).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(4).RadiantEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(5).RadiantEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[2], "Space 5")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[3], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclRadInfo(1).spaceNames[4], "Space 4")); + EXPECT_EQ(state->dataHeatBal->space(1).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(3).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(4).radiantEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(5).radiantEnclosureNum, 1); EXPECT_EQ(state->dataViewFactor->NumOfSolarEnclosures, 1); EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).Name, "Solar Enclosure 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[0], "Space 1")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[1], "Space 2")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[2], "Space 5")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[3], "Space 3")); - EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).SpaceNames[4], "Space 4")); - EXPECT_EQ(state->dataHeatBal->Space(1).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(2).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(3).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(4).SolarEnclosureNum, 1); - EXPECT_EQ(state->dataHeatBal->Space(5).SolarEnclosureNum, 1); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[0], "Space 1")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[1], "Space 2")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[2], "Space 5")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[3], "Space 3")); + EXPECT_TRUE(UtilityRoutines::SameString(state->dataViewFactor->EnclSolInfo(1).spaceNames[4], "Space 4")); + EXPECT_EQ(state->dataHeatBal->space(1).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(2).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(3).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(4).solarEnclosureNum, 1); + EXPECT_EQ(state->dataHeatBal->space(5).solarEnclosureNum, 1); } TEST_F(EnergyPlusFixture, GetSurfaceData_SurfaceOrder) From b828a7108876ca88c81164b578c79418757b5388 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 2 Aug 2021 13:38:23 -0500 Subject: [PATCH 57/98] Space - naming cleanup 2nd pass --- src/EnergyPlus/DataHeatBalance.hh | 12 +++--- src/EnergyPlus/DataRoomAirModel.hh | 2 +- src/EnergyPlus/DaylightingManager.cc | 38 +++++++++---------- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 4 +- src/EnergyPlus/RoomAirModelAirflowNetwork.cc | 6 +-- src/EnergyPlus/RoomAirModelManager.cc | 4 +- src/EnergyPlus/SurfaceGeometry.cc | 22 +++++------ .../unit/RoomAirflowNetwork.unit.cc | 8 ++-- 8 files changed, 48 insertions(+), 48 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index c54cb71a80c..29fe0964f77 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -435,9 +435,9 @@ namespace DataHeatBalance { std::vector ZoneHTNonWindowSurfaceList; // List of non-window HT surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneHTWindowSurfaceList; // List of window surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneExtSolarSurfaceList; // List of exterior solar surfaces in a zone - int ZoneRadEnclosureFirst; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange - int ZoneRadEnclosureLast; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange - int ZoneFirstSpaceSolEnclosure; // TODO: For daylighting, this is a punt, it's the solar enclosure number of the first space in the zone + int zoneRadEnclosureFirst; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange + int zoneRadEnclosureLast; // For Zone resimulation, need a range of enclosures for CalcInteriorRadExchange + int zoneFirstSpaceSolEnclosure; // TODO: For daylighting, this is a punt, it's the solar enclosure number of the first space in the zone Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp @@ -522,8 +522,8 @@ namespace DataHeatBalance { OpaqOrIntMassSurfaceLast(-1), WindowSurfaceFirst(0), WindowSurfaceLast(-1), OpaqOrWinSurfaceFirst(0), OpaqOrWinSurfaceLast(-1), TDDDomeFirst(0), TDDDomeLast(-1), InsideConvectionAlgo(ConvectionConstants::HcInt_ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ConvectionConstants::HcExt_ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), - MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), ZoneRadEnclosureFirst(-1), ZoneRadEnclosureLast(-1), - ZoneFirstSpaceSolEnclosure(0), + MaximumX(0.0), MinimumY(0.0), MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), zoneRadEnclosureFirst(-1), zoneRadEnclosureLast(-1), + zoneFirstSpaceSolEnclosure(0), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), @@ -1189,7 +1189,7 @@ namespace DataHeatBalance { struct SpaceZoneSimData // Calculated data by Space or Zone during each time step/hour { // Members - Real64 NOFOCC; // Number of Occupants, space total + Real64 NOFOCC; // Number of Occupants Real64 QOCTOT; // Total Energy from Occupants Real64 QOCSEN; // Sensible Energy from Occupants Real64 QOCCON; // ENERGY CONVECTED FROM OCCUPANTS (WH) diff --git a/src/EnergyPlus/DataRoomAirModel.hh b/src/EnergyPlus/DataRoomAirModel.hh index d6f62ea179c..a53c4ae96e2 100644 --- a/src/EnergyPlus/DataRoomAirModel.hh +++ b/src/EnergyPlus/DataRoomAirModel.hh @@ -535,7 +535,7 @@ namespace DataRoomAirModel { std::string NodeIntGainsListName; // name of node's internal gains list bool HasIntGainsAssigned; // True if this node has internal gain assigned int NumIntGains; // Number of matching internal gain objects for all spaces in the zone - Array1D IntGainsDeviceSpaces; // index pointers to space struct + Array1D intGainsDeviceSpaces; // index pointers to space struct Array1D IntGainsDeviceIndices; // index pointers to internal gains struct Array1D IntGainsFractions; // gain fractions to this node Array1D IntGain; // Internal gain struct diff --git a/src/EnergyPlus/DaylightingManager.cc b/src/EnergyPlus/DaylightingManager.cc index 0110b6dd9f8..b92a8c52e09 100644 --- a/src/EnergyPlus/DaylightingManager.cc +++ b/src/EnergyPlus/DaylightingManager.cc @@ -195,7 +195,7 @@ void DayltgAveInteriorReflectance(EnergyPlusData &state, int const ZoneNum) // E state.dataDaylightingManager->ARH = 0.0; // Loop over surfaces in the zone's enclosure - int const enclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNum = Zone(ZoneNum).zoneFirstSpaceSolEnclosure; auto &thisEnclosure(state.dataViewFactor->EnclSolInfo(enclNum)); for (int ISurf : thisEnclosure.SurfacePtr) { IType = state.dataSurface->Surface(ISurf).Class; @@ -602,7 +602,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) IWin = state.dataDaylightingData->ZoneDaylight(ZoneNum).DayltgExtWinSurfNums(loop); // For this report, do not include ext wins in zone adjacent to ZoneNum since the inter-reflected // component will not be calculated for these windows until the time-step loop. - if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).zoneFirstSpaceSolEnclosure) { // Output for each reference point, for each sky. Group by sky type first for (const DataDaylighting::SkyType &skyType : {DataDaylighting::SkyType::Clear, DataDaylighting::SkyType::ClearTurbid, @@ -687,7 +687,7 @@ void CalcDayltgCoefficients(EnergyPlusData &state) // For this report, do not include ext wins in zone/enclosure adjacent to ZoneNum since the inter-reflected // component will not be calculated for these windows until the time-step loop. - if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex == Zone(ZoneNum).zoneFirstSpaceSolEnclosure) { if (state.dataSurface->SurfWinMovableSlats(IWin)) { // variable slat angle - MaxSlatangle sets @@ -1742,7 +1742,7 @@ void FigureDayltgCoeffsAtPointsSetupForWindow( state.dataDaylightingData->IllumMapCalc(MapNum).SolidAngAtMapPt(loopwin, iRefPoint) = 0.0; state.dataDaylightingData->IllumMapCalc(MapNum).SolidAngAtMapPtWtd(loopwin, iRefPoint) = 0.0; } - if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { + if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == Zone(ZoneNum).zoneFirstSpaceSolEnclosure) { ExtWinType = DataDaylighting::iExtWinType::InZoneExtWin; } else { ExtWinType = DataDaylighting::iExtWinType::AdjZoneExtWin; @@ -3892,7 +3892,7 @@ void FigureDayltgCoeffsAtPointsForSunPosition( // Interior window visible transmittance multiplier for exterior window in adjacent zone TVisIntWinMult = 1.0; TVisIntWinDiskMult = 1.0; - if (state.dataSurface->Surface(IWin).SolarEnclIndex != Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { + if (state.dataSurface->Surface(IWin).SolarEnclIndex != Zone(ZoneNum).zoneFirstSpaceSolEnclosure) { TVisIntWinMult = TVISIntWin; TVisIntWinDiskMult = TVISIntWinDisk; } @@ -5729,7 +5729,7 @@ void DayltgGlareWithIntWins(EnergyPlusData &state, // entering zone through its interior windows int RefPoints = state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints; // Number of daylighting reference points in zone - int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNum = state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure; for (int IL = 1; IL <= RefPoints; ++IL) { Real64 BackgroundLum = state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL) + state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins * @@ -6796,7 +6796,7 @@ void DayltgInteriorIllum(EnergyPlusData &state, int &ZoneNum) // Zone number // Calculate glare index at each reference point assuming the daylight illuminance setpoint is // met at both reference points, either by daylight or electric lights - int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNum = state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure; for (int IL = 1; IL <= NREFPT; ++IL) { BACL = max(SetPnt(IL) * state.dataDaylightingData->enclDaylight(enclNum).aveVisDiffReflect / DataGlobalConstants::Pi, state.dataDaylightingData->ZoneDaylight(ZoneNum).BacLum(IL)); @@ -7705,11 +7705,11 @@ void DayltgInterReflectedIllum(EnergyPlusData &state, ZoneNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).Zone; int const enclNumThisWin = state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex; - int const enclNumThisZone = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNumThisZone = state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure; // The inside surface area, ZoneDaylight(ZoneNum)%totInsSurfArea was calculated in subr DayltgAveInteriorReflectance if (state.dataSurface->Surface(state.dataSurface->Surface(IWin).BaseSurf).SolarEnclIndex == - state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure) { + state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure) { ExtWinType = DataDaylighting::iExtWinType::InZoneExtWin; EnclInsideSurfArea = state.dataDaylightingData->enclDaylight(enclNumThisWin).totInsSurfArea; IntWinAdjZoneExtWinNum = 0; @@ -8802,7 +8802,7 @@ void DayltgInterReflectedIllumComplexFenestration(EnergyPlusData &state, FLSUdiskTot += FLSUdisk(iBackElem); } - int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNum = state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure; Real64 EnclInsideSurfArea = state.dataDaylightingData->enclDaylight(enclNum).totInsSurfArea; for (iSky = 1; iSky <= 4; ++iSky) { state.dataDaylightingManager->EINTSK(IHR, 1, iSky) = @@ -10221,7 +10221,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) // Count number of exterior Windows (use to allocate arrays) for (int ZoneNum = 1; ZoneNum <= state.dataGlobal->NumOfZones; ++ZoneNum) { // Count exterior windows in this zone or shared solar enclosure - for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).zoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10235,7 +10235,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints == 0) continue; // This is a Daylighting:Detailed zone // Find adjacent zones/enclosures - int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const thisZoneEnclNum = Zone(ZoneNum).zoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; // Require that adjEnclNum have a least one exterior window @@ -10270,7 +10270,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) if (state.dataDaylightingData->ZoneDaylight(ZoneNum).TotalDaylRefPoints == 0) continue; // This is a Daylighting:Detailed zone // Find adjacent enclosures - int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const thisZoneEnclNum = Zone(ZoneNum).zoneFirstSpaceSolEnclosure; for (int adjEnclNum = 1; adjEnclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++adjEnclNum) { if (adjEnclNum == thisZoneEnclNum) continue; // Require that adjEnclNum have a least one exterior window @@ -10309,7 +10309,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZoneExtWins = 0; continue; } - int const thisZoneEnclNum = Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const thisZoneEnclNum = Zone(ZoneNum).zoneFirstSpaceSolEnclosure; for (int ZoneAdjLoop = 1; ZoneAdjLoop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones; ++ZoneAdjLoop) { int ZoneNumAdj = state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(ZoneAdjLoop); for (int SurfNumAdj = Zone(ZoneNumAdj).WindowSurfaceFirst; SurfNumAdj <= Zone(ZoneNumAdj).WindowSurfaceLast; ++SurfNumAdj) { @@ -10369,7 +10369,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) // This is a Daylighting:Detailed zone // Get exterior windows in this zone or shared solar enclosure - for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).zoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10448,7 +10448,7 @@ void DayltgSetupAdjZoneListsAndPointers(EnergyPlusData &state) int ZoneExtWinCtr = 0; - for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).ZoneFirstSpaceSolEnclosure).SurfacePtr) { + for (int const surfNum : state.dataViewFactor->EnclSolInfo(Zone(ZoneNum).zoneFirstSpaceSolEnclosure).SurfacePtr) { if ((state.dataSurface->Surface(surfNum).Class == SurfaceClass::Window && state.dataSurface->Surface(surfNum).ExtBoundCond == ExternalEnvironment) || state.dataSurface->SurfWinOriginalClass(surfNum) == SurfaceClass::TDD_Diffuser) { @@ -10661,7 +10661,7 @@ void DayltgInterReflIllFrIntWins(EnergyPlusData &state, int &ZoneNum) // Zone nu state.dataDaylightingData->ZoneDaylight(ZoneNum).InterReflIllFrIntWins = 0.0; - int const enclNum = state.dataHeatBal->Zone(ZoneNum).ZoneFirstSpaceSolEnclosure; + int const enclNum = state.dataHeatBal->Zone(ZoneNum).zoneFirstSpaceSolEnclosure; auto &thisEnclSurfaces(state.dataViewFactor->EnclSolInfo(enclNum).SurfacePtr); for (int const IWin : thisEnclSurfaces) { if (state.dataSurface->Surface(IWin).Class == SurfaceClass::Window && state.dataSurface->Surface(IWin).ExtBoundCond >= 1) { @@ -10763,8 +10763,8 @@ void CalcMinIntWinSolidAngs(EnergyPlusData &state) ZoneNumAdj = state.dataSurface->Surface(state.dataSurface->Surface(IWin).ExtBoundCond).Zone; IntWinNextToIntWinAdjZone = false; for (loop = 1; loop <= state.dataDaylightingData->ZoneDaylight(ZoneNum).NumOfIntWinAdjZones; ++loop) { - if (Zone(ZoneNumAdj).ZoneFirstSpaceSolEnclosure == - Zone(state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(loop)).ZoneFirstSpaceSolEnclosure) { + if (Zone(ZoneNumAdj).zoneFirstSpaceSolEnclosure == + Zone(state.dataDaylightingData->ZoneDaylight(ZoneNum).AdjIntWinZoneNums(loop)).zoneFirstSpaceSolEnclosure) { IntWinNextToIntWinAdjZone = true; break; } diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 41a8caa8040..92601531c73 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -191,8 +191,8 @@ namespace HeatBalanceIntRadExchange { int endEnclosure = state.dataViewFactor->NumOfRadiantEnclosures; if (PartialResimulate) { // ToDo: For now, use min and max enclosure numbers associated with this zone, this could include unrelated enclosures - startEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).ZoneRadEnclosureFirst; - endEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).ZoneRadEnclosureLast; + startEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).zoneRadEnclosureFirst; + endEnclosure = state.dataHeatBal->Zone(ZoneToResimulate).zoneRadEnclosureLast; for (int enclosureNum = startEnclosure; enclosureNum <= endEnclosure; ++enclosureNum) { auto const &enclosure(state.dataViewFactor->EnclRadInfo(enclosureNum)); for (int i : enclosure.SurfacePtr) { diff --git a/src/EnergyPlus/RoomAirModelAirflowNetwork.cc b/src/EnergyPlus/RoomAirModelAirflowNetwork.cc index 677cbaf0a8c..318544487b5 100644 --- a/src/EnergyPlus/RoomAirModelAirflowNetwork.cc +++ b/src/EnergyPlus/RoomAirModelAirflowNetwork.cc @@ -884,14 +884,14 @@ namespace RoomAirModelAirflowNetwork { // Sum all convective internal gains: SumIntGain SumInternalConvectionGainsByIndices(state, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).intGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).SumIntSensibleGain); SumInternalLatentGainsByIndices(state, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).intGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).SumIntLatentGain); @@ -900,7 +900,7 @@ namespace RoomAirModelAirflowNetwork { // ******************************************* SumReturnAirConvectionGainsByIndices(state, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).NumIntGains, - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceSpaces, + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).intGainsDeviceSpaces, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsDeviceIndices, state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RoomAirNodeNum).IntGainsFractions, SumIntGain); diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 258513eaa3d..de97e25f3f6 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1678,7 +1678,7 @@ namespace RoomAirModelManager { } else { state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain.allocate(maxNumGains); state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices.allocate(maxNumGains); - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceSpaces.allocate(maxNumGains); + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).intGainsDeviceSpaces.allocate(maxNumGains); state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsFractions.allocate(maxNumGains); state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).HasIntGainsAssigned = true; int numGainsFound = 0; @@ -1711,7 +1711,7 @@ namespace RoomAirModelManager { if (intGainIndex >= 0) { gainFound = true; ++numGainsFound; - state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceSpaces(numGainsFound) = + state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).intGainsDeviceSpaces(numGainsFound) = spaceNum; state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGainsDeviceIndices(numGainsFound) = intGainIndex; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 9f947e75e14..07c0f38ddf3 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14918,22 +14918,22 @@ namespace SurfaceGeometry { // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { for (int spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { - if (state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst == -1) { // initial value - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; + if (state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst == -1) { // initial value + state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; } else { - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst = - min(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); + state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst = + min(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); } - state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast = - max(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); + state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureLast = + max(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureLast, state.dataHeatBal->space(spaceNum).radiantEnclosureNum); // TODO: For daylighting, set the zone solar enclosure number to the first space's number - if (state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure == 0) { - state.dataHeatBal->Zone(zoneNum).ZoneFirstSpaceSolEnclosure = state.dataHeatBal->space(spaceNum).solarEnclosureNum; + if (state.dataHeatBal->Zone(zoneNum).zoneFirstSpaceSolEnclosure == 0) { + state.dataHeatBal->Zone(zoneNum).zoneFirstSpaceSolEnclosure = state.dataHeatBal->space(spaceNum).solarEnclosureNum; } } - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst != -1); - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast != -1); - assert(state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureFirst <= state.dataHeatBal->Zone(zoneNum).ZoneRadEnclosureLast); + assert(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst != -1); + assert(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureLast != -1); + assert(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst <= state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureLast); } } diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index c291a3c61b7..b8755c2694d 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -174,14 +174,14 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).HVAC(1).Name = "ZoneHVAC"; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceIndices.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceIndices.allocate(1); - state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceSpaces.allocate(1); - state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceSpaces.allocate(1); + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).intGainsDeviceSpaces.allocate(1); + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).intGainsDeviceSpaces.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).NumIntGains = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).NumIntGains = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceIndices(1) = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceIndices(1) = 1; - state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsDeviceSpaces(1) = 1; - state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsDeviceSpaces(1) = 1; + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).intGainsDeviceSpaces(1) = 1; + state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).intGainsDeviceSpaces(1) = 1; state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsFractions.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(2).IntGainsFractions.allocate(1); state->dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(1).IntGainsFractions(1) = 0.4; From aa5e2cce947fd0b7c0e8f159a9b9b5deb7172627 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 2 Aug 2021 13:43:16 -0500 Subject: [PATCH 58/98] Space - fix sql unit test --- tst/EnergyPlus/unit/OutputReportTabular.unit.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 06189b33ce0..4ee3f0fa575 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6178,7 +6178,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTableAreasTest) auto stringTypes = queryResult("SELECT * FROM StringTypes;", "StringTypes"); state->dataSQLiteProcedures->sqlite->sqliteCommit(); - EXPECT_EQ(123ul, tabularData.size()); + EXPECT_EQ(170ul, tabularData.size()); // tabularDataIndex, reportNameIndex, reportForStringIndex, tableNameIndex, rowLabelIndex, columnLabelIndex, unitsIndex, simulationIndex, rowId, // columnId, value EXPECT_EQ(" 12.30", tabularData[3][10]); @@ -9178,7 +9178,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTableAreasTest_DualUnits) auto stringTypes = queryResult("SELECT * FROM StringTypes;", "StringTypes"); state->dataSQLiteProcedures->sqlite->sqliteCommit(); - EXPECT_EQ(123ul, tabularData.size()); + EXPECT_EQ(170ul, tabularData.size()); // tabularDataIndex, reportNameIndex, reportForStringIndex, tableNameIndex, rowLabelIndex, columnLabelIndex, unitsIndex, simulationIndex, rowId, // columnId, value EXPECT_EQ(" 12.30", tabularData[3][10]); From 5a961f3c8469228cf025e489b4448aafd40b5bcd Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 3 Aug 2021 23:21:32 -0500 Subject: [PATCH 59/98] Space - internal gains plan B - people --- src/EnergyPlus/DataHeatBalance.hh | 23 +-- src/EnergyPlus/HeatBalanceManager.cc | 2 + src/EnergyPlus/InternalHeatGains.cc | 239 ++++++++++++++------------ src/EnergyPlus/OutputReportTabular.cc | 10 +- src/EnergyPlus/RoomAirModelManager.cc | 2 +- src/EnergyPlus/SurfaceGeometry.cc | 4 +- 6 files changed, 153 insertions(+), 127 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 29fe0964f77..48ec9eaa18b 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -508,6 +508,7 @@ namespace DataHeatBalance { bool anySurfacesWithoutSpace; // True if any surfaces in a zone do not have a space assigned in input bool anySurfacesWithSpace; // True if any surfaces in a zone have a space assigned in input EPVector spaces; // Pointers to spaces in this zone + int numSpaces; // Number of spaces in this zone // Default Constructor ZoneData() @@ -539,7 +540,8 @@ namespace DataHeatBalance { ZonePeopleActivityLevel(0.0), ZonePeopleSensibleHeatFraction(0.0), ZonePeopleRadiantHeatFraction(0.0), ZoneVolCapMultpSens(1.0), ZoneVolCapMultpMoist(1.0), ZoneVolCapMultpCO2(1.0), ZoneVolCapMultpGenContam(1.0), ZoneVolCapMultpSensHM(1.0), ZoneVolCapMultpSensHMSum(0.0), ZoneVolCapMultpSensHMCountSum(0.0), ZoneVolCapMultpSensHMAverage(1.0), MCPIHM(0.0), - InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0), anySurfacesWithoutSpace(false), anySurfacesWithSpace(false) + InfilOAAirChangeRateHM(0.0), NumOccHM(0.0), delta_T(0.0), delta_HumRat(0.0), anySurfacesWithoutSpace(false), + anySurfacesWithSpace(false), numSpaces(0) { } @@ -589,19 +591,20 @@ namespace DataHeatBalance { int numOfSpaces = 0; int spaceStartPtr = 0; bool spaceListActive = false; + EPVector spaceNums; // Indexes to spaces associated with this input object + EPVector names; // Names for each instance created from this input object }; struct PeopleData { // Members - std::string Name; // PEOPLE object name - int ZonePtr; // Pointer to the zone number for this people statement - EPVector spacePtrs; // Pointers to space numbers for this people statement - EPVector spaceFracs; // Fraction of total gains applied to each space - Real64 NumberOfPeople; // Maximum number of people for this statement - int NumberOfPeoplePtr; // Pointer to schedule for number of people - bool EMSPeopleOn; // EMS actuating number of people if .TRUE. - Real64 EMSNumberOfPeople; // Value EMS is directing to use for override + std::string Name; // PEOPLE object name + int ZonePtr; // Zone index for this people statement + int spaceNum; // Space index for this people statement + Real64 NumberOfPeople; // Maximum number of people for this statement + int NumberOfPeoplePtr; // Pointer to schedule for number of people + bool EMSPeopleOn; // EMS actuating number of people if .TRUE. + Real64 EMSNumberOfPeople; // Value EMS is directing to use for override // Note that the schedule and maximum number was kept for people since it seemed likely that // users would want to assign the same schedule to multiple people statements. int ActivityLevelPtr; // Pointer to schedule for activity level @@ -659,7 +662,7 @@ namespace DataHeatBalance { // Default Constructor PeopleData() - : ZonePtr(0), NumberOfPeople(0.0), NumberOfPeoplePtr(-1), EMSPeopleOn(false), EMSNumberOfPeople(0.0), ActivityLevelPtr(-1), + : ZonePtr(0), spaceNum(0), NumberOfPeople(0.0), NumberOfPeoplePtr(-1), EMSPeopleOn(false), EMSNumberOfPeople(0.0), ActivityLevelPtr(-1), FractionRadiant(0.0), FractionConvected(0.0), NomMinNumberPeople(0.0), NomMaxNumberPeople(0.0), WorkEffPtr(-1), ClothingPtr(-1), ClothingMethodPtr(-1), ClothingType(-1), AirVelocityPtr(-1), AnkleAirVelocityPtr(-1), Fanger(false), Pierce(false), KSU(false), AdaptiveASH55(false), AdaptiveCEN15251(false), CoolingEffectASH55(false), AnkleDraftASH55(false), diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 2e442bfaae4..ae857128ee9 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5483,6 +5483,7 @@ namespace HeatBalanceManager { if (zoneNum > 0) { thisSpace.zoneNum = zoneNum; state.dataHeatBal->Zone(zoneNum).spaces.emplace_back(spaceNum); + ++state.dataHeatBal->Zone(zoneNum).numSpaces; } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); ShowContinueError(state, "Zone Name =" + zoneName + "not found."); @@ -5584,6 +5585,7 @@ namespace HeatBalanceManager { state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceTypeNum = GetGeneralSpaceTypeNum(state); // Add to zone's list of spaces thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); + ++state.dataHeatBal->Zone(zoneNum).numSpaces; } } } diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index b4281dd5d2d..9cb15b09555 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -506,10 +506,22 @@ namespace InternalHeatGains { int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); if (zoneNum > 0) { state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - ++state.dataHeatBal->TotPeople; + int numSpaces = state.dataHeatBal->Zone(zoneNum).numSpaces; + state.dataHeatBal->TotPeople += numSpaces; + state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; state.dataHeatBal->PeopleObjects(Item).NumOfZones = 1; state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; + if (numSpaces == 1) { + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaces(1)); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name); + } else { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + + state.dataHeatBal->space(spaceNum).Name); + } + } continue; } int spaceNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->space); @@ -519,12 +531,24 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).numOfSpaces = 1; state.dataHeatBal->PeopleObjects(Item).spaceListActive = false; state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceNum; - state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name); continue; } int zoneListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); if (zoneListNum > 0) { - state.dataHeatBal->TotPeople += state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; + state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; + int numSpaces = 0; + for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { + numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; + for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaces) { + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + + state.dataHeatBal->space(spaceNum).Name); + } + } + state.dataHeatBal->TotPeople += numSpaces; + state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; state.dataHeatBal->PeopleObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; state.dataHeatBal->PeopleObjects(Item).ZoneListActive = true; state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneListNum; @@ -532,10 +556,17 @@ namespace InternalHeatGains { } int spaceListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->spaceList); if (spaceListNum > 0) { - state.dataHeatBal->TotPeople += state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; - state.dataHeatBal->PeopleObjects(Item).numOfSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; + int numSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + state.dataHeatBal->TotPeople += numSpaces; + state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; state.dataHeatBal->PeopleObjects(Item).spaceListActive = true; state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceListNum; + for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + + state.dataHeatBal->space(spaceNum).Name); + } continue; } ShowSevereError(state, @@ -571,92 +602,72 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - - int const numZones = state.dataHeatBal->PeopleObjects(Item).NumOfZones; - int const numSpaces = state.dataHeatBal->PeopleObjects(Item).numOfSpaces; - // At this point, one or both of these should be zero - assert((numZones == 0) || (numSpaces == 0)); - - int const numItems = max(numZones, numSpaces); - for (int Item1 = 1; Item1 <= numItems; ++Item1) { + int numZones = state.dataHeatBal->PeopleObjects(Item).NumOfZones; + // Create one People instance for every space associated with this People input object + for (int Item1 = 1; Item1 <= state.dataHeatBal->PeopleObjects(Item).numOfSpaces; ++Item1) { ++Loop; - if ((numZones > 0) && !state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { - state.dataHeatBal->People(Loop).Name = AlphaName(1); - int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { - state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { - CheckCreatedZoneItemName( - state, - RoutineName, - CurrentModuleObject, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->PeopleObjects(Item).Name, - state.dataHeatBal->People, - Loop - 1, - state.dataHeatBal->People(Loop).Name, - errFlag); - int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { - state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).spaceListActive) { - state.dataHeatBal->People(Loop).Name = AlphaName(1); - int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr; - if (spaceNum > 0) { - state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; - } - } else if (state.dataHeatBal->PeopleObjects(Item).spaceListActive) { - int const spaceNum = state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).spaces(Item1); - CheckCreatedZoneItemName( - state, - RoutineName, - CurrentModuleObject, - state.dataHeatBal->space(spaceNum).Name, - state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).maxSpaceNameLength, - state.dataHeatBal->PeopleObjects(Item).Name, - state.dataHeatBal->People, - Loop - 1, - state.dataHeatBal->People(Loop).Name, - errFlag); - if (spaceNum > 0) { - state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; - } - if (errFlag) ErrorsFound = true; - } - - // Set space load fractions - if (int(state.dataHeatBal->People(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->People(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->People(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->People(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->People(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); - ShowContinueError(state, - "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } + int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + state.dataHeatBal->People(Loop).Name = state.dataHeatBal->PeopleObjects(Item).names(Item1); + state.dataHeatBal->People(Loop).spaceNum = spaceNum; + state.dataHeatBal->People(Loop).ZonePtr = zoneNum; + + // if ((numZones > 0) && !state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { + // state.dataHeatBal->People(Loop).Name = AlphaName(1); + // int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; + // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; + // if (zoneNum > 0) { + // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + // } + // } + //} else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { + // CheckCreatedZoneItemName( + // state, + // RoutineName, + // CurrentModuleObject, + // state.dataHeatBal->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) + // .Name, + // state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, + // state.dataHeatBal->PeopleObjects(Item).Name, + // state.dataHeatBal->People, + // Loop - 1, + // state.dataHeatBal->People(Loop).Name, + // errFlag); + // int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); + // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; + // if (zoneNum > 0) { + // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + // } + // } + // if (errFlag) ErrorsFound = true; + //} else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).spaceListActive) { + // state.dataHeatBal->People(Loop).Name = AlphaName(1); + // int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr; + // if (spaceNum > 0) { + // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + // state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; + // } + //} else if (state.dataHeatBal->PeopleObjects(Item).spaceListActive) { + // int const spaceNum = state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).spaces(Item1); + // CheckCreatedZoneItemName( + // state, + // RoutineName, + // CurrentModuleObject, + // state.dataHeatBal->space(spaceNum).Name, + // state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).maxSpaceNameLength, + // state.dataHeatBal->PeopleObjects(Item).Name, + // state.dataHeatBal->People, + // Loop - 1, + // state.dataHeatBal->People(Loop).Name, + // errFlag); + // if (spaceNum > 0) { + // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); + // state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; + // } + // if (errFlag) ErrorsFound = true; + //} state.dataHeatBal->People(Loop).NumberOfPeoplePtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; @@ -705,7 +716,22 @@ namespace InternalHeatGains { { auto const peopleMethod(AlphaName(4)); if (peopleMethod == "PEOPLE") { - state.dataHeatBal->People(Loop).NumberOfPeople = IHGNumbers(1); + // Set space load fraction + Real64 spaceFrac = 1.0; + if (numZones > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError(state, + std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); + ShowContinueError(state, + "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + state.dataHeatBal->People(Loop).NumberOfPeople = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + @@ -716,14 +742,13 @@ namespace InternalHeatGains { } else if (peopleMethod == "PEOPLE/AREA") { if (state.dataHeatBal->People(Loop).ZonePtr != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->People(Loop).NumberOfPeople = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea <= 0.0) { + state.dataHeatBal->People(Loop).NumberOfPeople = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 People will result."); + ", but Space Floor Area = 0. 0 People will result."); } } else { ShowSevereError(state, @@ -746,14 +771,13 @@ namespace InternalHeatGains { } else if (peopleMethod == "AREA/PERSON") { if (state.dataHeatBal->People(Loop).ZonePtr != 0) { if (IHGNumbers(3) > 0.0) { - state.dataHeatBal->People(Loop).NumberOfPeople = - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea / IHGNumbers(3); - if (state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).FloorArea <= 0.0) { + state.dataHeatBal->People(Loop).NumberOfPeople = state.dataHeatBal->space(spaceNum).floorArea / IHGNumbers(3); + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + - ", but Zone Floor Area = 0. 0 People will result."); + ", but Space Floor Area = 0. 0 People will result."); } } else { ShowSevereError(state, @@ -6829,16 +6853,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; - for (int index = 1; index <= int(state.dataHeatBal->People(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->People(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->People(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->People(Loop).spaceNum; + state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc; + state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOCSEN += state.dataHeatBal->People(Loop).SenGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; } for (Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 69a0c58d8a0..f653adbe21e 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11944,12 +11944,10 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr // Accumulate internal gain totals by space and space type for (int iPeople = 1; iPeople <= state.dataHeatBal->TotPeople; ++iPeople) { auto curPeople = state.dataHeatBal->People(iPeople); - for (int iSpace = 1; iSpace <= int(curPeople.spacePtrs.size()); ++iSpace) { - int const spaceNum = curPeople.spacePtrs(iSpace); - Real64 const people = curPeople.NumberOfPeople * curPeople.spaceFracs(iSpace); - spaceTotPeople(spaceNum) += people; - spaceTypeTotPeople(state.dataHeatBal->space(spaceNum).spaceTypeNum) += people; - } + int const spaceNum = curPeople.spaceNum; + Real64 const people = curPeople.NumberOfPeople; + spaceTotPeople(spaceNum) += people; + spaceTypeTotPeople(state.dataHeatBal->space(spaceNum).spaceTypeNum) += people; } for (int iLights = 1; iLights <= state.dataHeatBal->TotLights; ++iLights) { auto curLighting = state.dataHeatBal->Lights(iLights); diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index de97e25f3f6..9eecf829ad3 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1666,7 +1666,7 @@ namespace RoomAirModelManager { if (RAFNNodeNum > 0) { // found it foundList = true; int numInputGains = (NumAlphas + NumNumbers - 1) / 3; - int numSpacesInZone = int(state.dataHeatBal->Zone(ZoneNum).spaces.size()); + int numSpacesInZone = state.dataHeatBal->Zone(ZoneNum).numSpaces; int maxNumGains = numInputGains * numSpacesInZone; if (allocated(state.dataRoomAirMod->RoomAirflowNetworkZoneInfo(ZoneNum).Node(RAFNNodeNum).IntGain)) { ShowSevereError(state, diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 07c0f38ddf3..3320324c0d4 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2836,6 +2836,8 @@ namespace SurfaceGeometry { state.dataHeatBal->space(state.dataGlobal->numSpaces).zoneNum = zoneNum; // Add to zone's list of spaces thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); + ++state.dataHeatBal->Zone(zoneNum).numSpaces; + assert(state.dataHeatBal->Zone(zoneNum).numSpaces == int(state.dataHeatBal->Zone(zoneNum).spaces.size())); // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone state.dataHeatBal->space(state.dataGlobal->numSpaces).Name = thisZone.Name + "-Remainder"; state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceType = "GENERAL"; @@ -2849,7 +2851,7 @@ namespace SurfaceGeometry { auto &thisSurf = state.dataSurface->Surface(surfNum); if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces if (thisSurf.spaceNum == 0) { - int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).spaces.size(); + int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).numSpaces; int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).spaces(numSpaces); thisSurf.spaceNum = lastSpaceForZone; // Add to Space's list of surfaces From 9cb52edb466e3c8779bc56d0f9d777cefc6e36be Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 5 Aug 2021 15:01:34 -0500 Subject: [PATCH 60/98] Space - fix instance naming for People --- src/EnergyPlus/InternalHeatGains.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 9cb15b09555..8599e169986 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -518,8 +518,8 @@ namespace InternalHeatGains { } else { for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + + state.dataHeatBal->PeopleObjects(Item).Name); } } continue; @@ -543,8 +543,8 @@ namespace InternalHeatGains { numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaces) { state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + + state.dataHeatBal->PeopleObjects(Item).Name); } } state.dataHeatBal->TotPeople += numSpaces; @@ -564,8 +564,8 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceListNum; for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name + ' ' + - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + + state.dataHeatBal->PeopleObjects(Item).Name); } continue; } From d47aac479f124baf92d61c59bca9950a5a2a9ae3 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 5 Aug 2021 15:42:39 -0500 Subject: [PATCH 61/98] Space - lets go with spaceIndex(es) --- src/EnergyPlus/DataHeatBalance.hh | 6 +- .../HeatBalanceInternalHeatGains.cc | 4 +- src/EnergyPlus/HeatBalanceManager.cc | 6 +- src/EnergyPlus/InternalHeatGains.cc | 89 +++++++++---------- src/EnergyPlus/OutputReportTabular.cc | 4 +- src/EnergyPlus/RoomAirModelManager.cc | 2 +- src/EnergyPlus/SurfaceGeometry.cc | 8 +- 7 files changed, 59 insertions(+), 60 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index 48ec9eaa18b..b017dc3561d 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -507,7 +507,7 @@ namespace DataHeatBalance { // Spaces bool anySurfacesWithoutSpace; // True if any surfaces in a zone do not have a space assigned in input bool anySurfacesWithSpace; // True if any surfaces in a zone have a space assigned in input - EPVector spaces; // Pointers to spaces in this zone + EPVector spaceIndexes; // Indexes to spaces in this zone int numSpaces; // Number of spaces in this zone // Default Constructor @@ -600,7 +600,7 @@ namespace DataHeatBalance { // Members std::string Name; // PEOPLE object name int ZonePtr; // Zone index for this people statement - int spaceNum; // Space index for this people statement + int spaceIndex; // Space index for this people statement Real64 NumberOfPeople; // Maximum number of people for this statement int NumberOfPeoplePtr; // Pointer to schedule for number of people bool EMSPeopleOn; // EMS actuating number of people if .TRUE. @@ -662,7 +662,7 @@ namespace DataHeatBalance { // Default Constructor PeopleData() - : ZonePtr(0), spaceNum(0), NumberOfPeople(0.0), NumberOfPeoplePtr(-1), EMSPeopleOn(false), EMSNumberOfPeople(0.0), ActivityLevelPtr(-1), + : ZonePtr(0), spaceIndex(0), NumberOfPeople(0.0), NumberOfPeoplePtr(-1), EMSPeopleOn(false), EMSNumberOfPeople(0.0), ActivityLevelPtr(-1), FractionRadiant(0.0), FractionConvected(0.0), NomMinNumberPeople(0.0), NomMaxNumberPeople(0.0), WorkEffPtr(-1), ClothingPtr(-1), ClothingMethodPtr(-1), ClothingType(-1), AirVelocityPtr(-1), AnkleAirVelocityPtr(-1), Fanger(false), Pierce(false), KSU(false), AdaptiveASH55(false), AdaptiveCEN15251(false), CoolingEffectASH55(false), AnkleDraftASH55(false), diff --git a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc index 12eb50b2177..34b9bc28faa 100644 --- a/src/EnergyPlus/HeatBalanceInternalHeatGains.cc +++ b/src/EnergyPlus/HeatBalanceInternalHeatGains.cc @@ -73,8 +73,8 @@ void SetupZoneInternalGain(EnergyPlusData &state, { // Distribute zone internal gain across all spaces in the zone weighted by floor area Real64 gainFrac = 1.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { - if (state.dataHeatBal->Zone(ZoneNum).spaces.size() > 1) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { + if (state.dataHeatBal->Zone(ZoneNum).numSpaces > 1) { gainFrac = state.dataHeatBal->space(spaceNum).floorArea / state.dataHeatBal->Zone(ZoneNum).FloorArea; } SetupSpaceInternalGain(state, diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index ae857128ee9..02f4fef2206 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5482,7 +5482,7 @@ namespace HeatBalanceManager { int zoneNum = UtilityRoutines::FindItemInList(zoneName, state.dataHeatBal->Zone); if (zoneNum > 0) { thisSpace.zoneNum = zoneNum; - state.dataHeatBal->Zone(zoneNum).spaces.emplace_back(spaceNum); + state.dataHeatBal->Zone(zoneNum).spaceIndexes.emplace_back(spaceNum); ++state.dataHeatBal->Zone(zoneNum).numSpaces; } else { ShowSevereError(state, RoutineName + cCurrentModuleObject + "=" + thisSpace.Name); @@ -5577,14 +5577,14 @@ namespace HeatBalanceManager { // Make sure every zone has at least one space for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { auto &thisZone = state.dataHeatBal->Zone(zoneNum); - if (thisZone.spaces.empty()) { + if (thisZone.spaceIndexes.empty()) { ++state.dataGlobal->numSpaces; state.dataHeatBal->space(state.dataGlobal->numSpaces).zoneNum = zoneNum; state.dataHeatBal->space(state.dataGlobal->numSpaces).Name = thisZone.Name; state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceType = "GENERAL"; state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceTypeNum = GetGeneralSpaceTypeNum(state); // Add to zone's list of spaces - thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); + thisZone.spaceIndexes.emplace_back(state.dataGlobal->numSpaces); ++state.dataHeatBal->Zone(zoneNum).numSpaces; } } diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 8599e169986..3debedb3475 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -237,7 +237,6 @@ namespace InternalHeatGains { std::string liteName; int zonePt; Real64 mult; - int ZoneNum; Real64 maxOccupLoad; std::string CurrentModuleObject; bool errFlag; @@ -513,10 +512,10 @@ namespace InternalHeatGains { state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; if (numSpaces == 1) { - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaces(1)); + state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaceIndexes(1)); state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name); } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + state.dataHeatBal->PeopleObjects(Item).Name); @@ -541,7 +540,7 @@ namespace InternalHeatGains { int numSpaces = 0; for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; - for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaceIndexes) { state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + state.dataHeatBal->PeopleObjects(Item).Name); @@ -609,7 +608,7 @@ namespace InternalHeatGains { int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceNums(Item1); int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; state.dataHeatBal->People(Loop).Name = state.dataHeatBal->PeopleObjects(Item).names(Item1); - state.dataHeatBal->People(Loop).spaceNum = spaceNum; + state.dataHeatBal->People(Loop).spaceIndex = spaceNum; state.dataHeatBal->People(Loop).ZonePtr = zoneNum; // if ((numZones > 0) && !state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { @@ -617,7 +616,7 @@ namespace InternalHeatGains { // int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; // if (zoneNum > 0) { - // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); // } // } @@ -637,7 +636,7 @@ namespace InternalHeatGains { // int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; // if (zoneNum > 0) { - // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); // } // } @@ -1752,7 +1751,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -1772,7 +1771,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -2358,7 +2357,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -2379,7 +2378,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -2855,7 +2854,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -2876,7 +2875,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -3390,7 +3389,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -3411,7 +3410,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -3887,7 +3886,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -3908,7 +3907,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -4384,7 +4383,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr; state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -4405,7 +4404,7 @@ namespace InternalHeatGains { int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -4854,7 +4853,7 @@ namespace InternalHeatGains { int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); state.dataHeatBal->ZoneITEq(Loop).ZonePtr = zoneNum; if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneITEq(Loop).spacePtrs.emplace_back(spaceNum); } } @@ -5775,7 +5774,7 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); ErrorsFound = true; } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.emplace_back(spaceNum); } @@ -6225,7 +6224,7 @@ namespace InternalHeatGains { } } - ZoneNum = state.dataHeatBal->People(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->People(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "People-Illegal Zone specified", state.dataHeatBal->People(Loop).Name); @@ -6341,7 +6340,7 @@ namespace InternalHeatGains { "Category,Nominal Minimum Lighting Level {W},Nominal Maximum Lighting Level {W}\n"); } - ZoneNum = state.dataHeatBal->Lights(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->Lights(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, "Lights-Illegal Zone specified", state.dataHeatBal->Lights(Loop).Name); @@ -6379,7 +6378,7 @@ namespace InternalHeatGains { "Lost,Fraction Convected,End-Use SubCategory,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}\n"); } - ZoneNum = state.dataHeatBal->ZoneElectric(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneElectric(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "Electric Equipment-Illegal Zone specified", state.dataHeatBal->ZoneElectric(Loop).Name); @@ -6416,7 +6415,7 @@ namespace InternalHeatGains { "Lost,Fraction Convected,End-Use SubCategory,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}\n"); } - ZoneNum = state.dataHeatBal->ZoneGas(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneGas(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "Gas Equipment-Illegal Zone specified", state.dataHeatBal->ZoneGas(Loop).Name); @@ -6455,7 +6454,7 @@ namespace InternalHeatGains { "Lost,Fraction Convected,End-Use SubCategory,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}\n"); } - ZoneNum = state.dataHeatBal->ZoneHWEq(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneHWEq(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "Hot Water Equipment-Illegal Zone specified", state.dataHeatBal->ZoneHWEq(Loop).Name); @@ -6494,7 +6493,7 @@ namespace InternalHeatGains { "Lost,Fraction Convected,End-Use SubCategory,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}\n"); } - ZoneNum = state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "Steam Equipment-Illegal Zone specified", state.dataHeatBal->ZoneSteamEq(Loop).Name); @@ -6533,7 +6532,7 @@ namespace InternalHeatGains { "Lost,Fraction Convected,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}\n"); } - ZoneNum = state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "Other Equipment-Illegal Zone specified", state.dataHeatBal->ZoneOtherEq(Loop).Name); @@ -6573,7 +6572,7 @@ namespace InternalHeatGains { "Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}, Design Air Volume Flow Rate {m3/s}\n"); } - ZoneNum = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, Format_724, "ElectricEquipment:ITE:AirCooled-Illegal Zone specified", state.dataHeatBal->ZoneITEq(Loop).Name); @@ -6612,7 +6611,7 @@ namespace InternalHeatGains { "{W},High Temperature {C},Fraction Radiant,Fraction Convected,End-Use Subcategory\n"); } - ZoneNum = state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr; + int ZoneNum = state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr; if (ZoneNum == 0) { print(state.files.eio, @@ -6853,7 +6852,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOCLAT += state.dataHeatBal->People(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; - int spaceNum = state.dataHeatBal->People(Loop).spaceNum; + int spaceNum = state.dataHeatBal->People(Loop).spaceIndex; state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC += state.dataHeatBal->People(Loop).NumOcc; state.dataHeatBal->spaceIntGain(spaceNum).QOCRAD += state.dataHeatBal->People(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QOCCON += state.dataHeatBal->People(Loop).ConGainRate; @@ -8282,7 +8281,7 @@ namespace InternalHeatGains { Real64 tmpSumConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8301,7 +8300,7 @@ namespace InternalHeatGains { Real64 tmpSumConvGainRateExceptPeople = 0.0; std::string str_people = "PEOPLE"; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8332,7 +8331,7 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8366,7 +8365,7 @@ namespace InternalHeatGains { Real64 tmpSumRetAirGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8398,7 +8397,7 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumRetAirConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8458,7 +8457,7 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumRadiationGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8489,7 +8488,7 @@ namespace InternalHeatGains { Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8509,7 +8508,7 @@ namespace InternalHeatGains { { Real64 tmpSumLatentGainRateExceptPeople = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8540,7 +8539,7 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8574,7 +8573,7 @@ namespace InternalHeatGains { Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8604,7 +8603,7 @@ namespace InternalHeatGains { Real64 tmpSumCO2GainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8624,7 +8623,7 @@ namespace InternalHeatGains { { Real64 tmpSumCO2GainRateExceptPeople = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8655,7 +8654,7 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumCO2GainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } @@ -8687,7 +8686,7 @@ namespace InternalHeatGains { Real64 tmpSumGCGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { continue; } diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index f653adbe21e..9ad44935bfe 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11944,7 +11944,7 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr // Accumulate internal gain totals by space and space type for (int iPeople = 1; iPeople <= state.dataHeatBal->TotPeople; ++iPeople) { auto curPeople = state.dataHeatBal->People(iPeople); - int const spaceNum = curPeople.spaceNum; + int const spaceNum = curPeople.spaceIndex; Real64 const people = curPeople.NumberOfPeople; spaceTotPeople(spaceNum) += people; spaceTypeTotPeople(state.dataHeatBal->space(spaceNum).spaceTypeNum) += people; @@ -12025,7 +12025,7 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr for (int iZone = 1; iZone <= state.dataGlobal->NumOfZones; ++iZone) { auto curZone = state.dataHeatBal->Zone(iZone); Real64 const mult = Real64(curZone.Multiplier) * Real64(curZone.ListMultiplier); - for (int const spaceNum : curZone.spaces) { + for (int const spaceNum : curZone.spaceIndexes) { auto curSpace = state.dataHeatBal->space(spaceNum); bool spaceIsCond = false; bool useSpaceFloorArea = false; diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 9eecf829ad3..4eef9796797 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -1701,7 +1701,7 @@ namespace RoomAirModelManager { bool gainFound = false; // check all spaces in this zone for matching gains - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { // verify type and name and get pointer to device in internal gains structure array int intGainIndex = GetInternalGainDeviceIndex( state, diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 3320324c0d4..f7c2c595cdf 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2835,9 +2835,9 @@ namespace SurfaceGeometry { ++state.dataGlobal->numSpaces; state.dataHeatBal->space(state.dataGlobal->numSpaces).zoneNum = zoneNum; // Add to zone's list of spaces - thisZone.spaces.emplace_back(state.dataGlobal->numSpaces); + thisZone.spaceIndexes.emplace_back(state.dataGlobal->numSpaces); ++state.dataHeatBal->Zone(zoneNum).numSpaces; - assert(state.dataHeatBal->Zone(zoneNum).numSpaces == int(state.dataHeatBal->Zone(zoneNum).spaces.size())); + assert(state.dataHeatBal->Zone(zoneNum).numSpaces == int(state.dataHeatBal->Zone(zoneNum).spaceIndexes.size())); // If some surfaces in the zone are assigned to a space, the new space is the remainder of the zone state.dataHeatBal->space(state.dataGlobal->numSpaces).Name = thisZone.Name + "-Remainder"; state.dataHeatBal->space(state.dataGlobal->numSpaces).spaceType = "GENERAL"; @@ -2852,7 +2852,7 @@ namespace SurfaceGeometry { if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces if (thisSurf.spaceNum == 0) { int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).numSpaces; - int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).spaces(numSpaces); + int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).spaceIndexes(numSpaces); thisSurf.spaceNum = lastSpaceForZone; // Add to Space's list of surfaces state.dataHeatBal->space(lastSpaceForZone).surfaces.emplace_back(surfNum); @@ -14919,7 +14919,7 @@ namespace SurfaceGeometry { // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - for (int spaceNum : state.dataHeatBal->Zone(zoneNum).spaces) { + for (int spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { if (state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst == -1) { // initial value state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; } else { From 33f7a1e55945e90a9458a6aaac5defcdce4b3d16 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 6 Aug 2021 12:21:06 -0500 Subject: [PATCH 62/98] Space - DesignSpecification:OutdoorAir:SpaceList idd --- idd/Energy+.idd.in | 221 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 221 insertions(+) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 998d4ea6382..f12998303e4 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -32762,6 +32762,170 @@ DesignSpecification:OutdoorAir, \note This input is only used to calculate the minimum outdoor air flow rate when the field \note System Outdoor Air Method = ProportionalControlBasedOnDesignOARate in Controller:MechanicalVentilation. +DesignSpecification:OutdoorAir:SpaceList, + \memo Defines a list of DesignSpecification:OutdoorAir names which can be referenced as a group. + \memo The DesignSpecification:OutdoorAir:SpaceList name may be used in Sizing:Zone and + \memo Controller:MechanicalVentilation to specify space-by-space OA requirements. + \min-fields 3 + \extensible:2 + A1 , \field Name + \note Name of the List + \required-field + \type alpha + \reference DSOASpaceListNames + A2 , \field Space 1 Name + \begin-extensible + \required-field + \type object-list + \object-list SpaceNames + A3 , \field Space 1 Design Specification Outdoor Air Object Name + \required-field + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A4 , \field Space 2 Name + \type object-list + \object-list SpaceNames + A5 , \field Space 2 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A6 , \field Space 3 Name + \type object-list + \object-list SpaceNames + A7 , \field Space 3 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A8 , \field Space 4 Name + \type object-list + \object-list SpaceNames + A9 , \field Space 4 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A10, \field Space 5 Name + \type object-list + \object-list SpaceNames + A11, \field Space 5 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A12, \field Space 6 Name + \type object-list + \object-list SpaceNames + A13, \field Space 6 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A14, \field Space 7 Name + \type object-list + \object-list SpaceNames + A15, \field Space 7 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A16, \field Space 8 Name + \type object-list + \object-list SpaceNames + A17, \field Space 8 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A18, \field Space 9 Name + \type object-list + \object-list SpaceNames + A19, \field Space 9 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A20, \field Space 10 Name + \type object-list + \object-list SpaceNames + A21, \field Space 10 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A22, \field Space 11 Name + \type object-list + \object-list SpaceNames + A23, \field Space 11 Design Specification Outdoor Air Object Name + \type object-list + A24, \field Space 12 Name + \type object-list + \object-list SpaceNames + A25, \field Space 12 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A26, \field Space 13 Name + \type object-list + \object-list SpaceNames + A27, \field Space 13 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A28, \field Space 14 Name + \type object-list + \object-list SpaceNames + A29, \field Space 14 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A30, \field Space 15 Name + \type object-list + \object-list SpaceNames + A31, \field Space 15 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A32, \field Space 16 Name + \type object-list + \object-list SpaceNames + A33, \field Space 16 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A34, \field Space 17 Name + \type object-list + \object-list SpaceNames + A35, \field Space 17 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A36, \field Space 18 Name + \type object-list + \object-list SpaceNames + A37, \field Space 18 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A38, \field Space 19 Name + \type object-list + \object-list SpaceNames + A39, \field Space 19 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A40, \field Space 20 Name + \type object-list + \object-list SpaceNames + A41, \field Space 20 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A42, \field Space 21 Name + \type object-list + \object-list SpaceNames + A43, \field Space 21 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A44, \field Space 22 Name + \type object-list + \object-list SpaceNames + A45, \field Space 22 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A46, \field Space 23 Name + \type object-list + \object-list SpaceNames + A47, \field Space 23 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A48, \field Space 24 Name + \type object-list + \object-list SpaceNames + A49, \field Space 24 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + A50, \field Space 25 Name + \type object-list + \object-list SpaceNames + A51; \field Space 25 Design Specification Outdoor Air Object Name + \type object-list + \object-list DesignSpecificationOutdoorAirNames + DesignSpecification:ZoneAirDistribution, \min-fields 1 \memo This object is used to describe zone air distribution in terms of air distribution @@ -32877,8 +33041,12 @@ Sizing:Zone, \type real \units kgWater/kgDryAir A4, \field Design Specification Outdoor Air Object Name + \note Specify the name of a DesignSpecification:OutdoorAir object to specify one set of requirements for the Zone. + \note Use a DesignSpecification:OutdoorAir:SpaceList object name to specify different + \note requirements for Spaces within the Zone. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames N7, \field Zone Heating Sizing Factor \note if blank or zero, global heating sizing factor from Sizing:Parameters is used. \minimum 0 @@ -64020,10 +64188,14 @@ Controller:MechanicalVentilation, \object-list ZoneAndZoneListNames \note A zone name or a zone list name may be used here A6, \field Design Specification Outdoor Air Object Name 1 + \note Specify the name of a DesignSpecification:OutdoorAir object to specify one set of requirements for the Zone. + \note Use a DesignSpecification:OutdoorAir:SpaceList object name to specify different + \note requirements for Spaces within the Zone. \note If left blank, the name will be taken from the Sizing:Zone object for this zone. \note If no specification is found for this zone, then the default of 0.00944 m3/s-person will be used. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A7, \field Design Specification Zone Air Distribution Object Name 1 \note If left blank, the name will be taken from the Sizing:Zone object for this zone. \note If no specification is found for this zone, then effectivness will be 1.0 and @@ -64037,6 +64209,7 @@ Controller:MechanicalVentilation, A9, \field Design Specification Outdoor Air Object Name 2 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A10, \field Design Specification Zone Air Distribution Object Name 2 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64047,6 +64220,7 @@ Controller:MechanicalVentilation, A12, \field Design Specification Outdoor Air Object Name 3 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A13, \field Design Specification Zone Air Distribution Object Name 3 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64057,6 +64231,7 @@ Controller:MechanicalVentilation, A15, \field Design Specification Outdoor Air Object Name 4 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A16, \field Design Specification Zone Air Distribution Object Name 4 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64067,6 +64242,7 @@ Controller:MechanicalVentilation, A18, \field Design Specification Outdoor Air Object Name 5 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A19, \field Design Specification Zone Air Distribution Object Name 5 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64077,6 +64253,7 @@ Controller:MechanicalVentilation, A21, \field Design Specification Outdoor Air Object Name 6 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A22, \field Design Specification Zone Air Distribution Object Name 6 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64087,6 +64264,7 @@ Controller:MechanicalVentilation, A24, \field Design Specification Outdoor Air Object Name 7 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A25, \field Design Specification Zone Air Distribution Object Name 7 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64097,6 +64275,7 @@ Controller:MechanicalVentilation, A27, \field Design Specification Outdoor Air Object Name 8 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A28, \field Design Specification Zone Air Distribution Object Name 8 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64107,6 +64286,7 @@ Controller:MechanicalVentilation, A30, \field Design Specification Outdoor Air Object Name 9 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A31, \field Design Specification Zone Air Distribution Object Name 9 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64117,6 +64297,7 @@ Controller:MechanicalVentilation, A33, \field Design Specification Outdoor Air Object Name 10 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A34, \field Design Specification Zone Air Distribution Object Name 10 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64127,6 +64308,7 @@ Controller:MechanicalVentilation, A36, \field Design Specification Outdoor Air Object Name 11 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A37, \field Design Specification Zone Air Distribution Object Name 11 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64137,6 +64319,7 @@ Controller:MechanicalVentilation, A39, \field Design Specification Outdoor Air Object Name 12 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A40, \field Design Specification Zone Air Distribution Object Name 12 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64147,6 +64330,7 @@ Controller:MechanicalVentilation, A42, \field Design Specification Outdoor Air Object Name 13 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A43, \field Design Specification Zone Air Distribution Object Name 13 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64157,6 +64341,7 @@ Controller:MechanicalVentilation, A45, \field Design Specification Outdoor Air Object Name 14 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A46, \field Design Specification Zone Air Distribution Object Name 14 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64167,6 +64352,7 @@ Controller:MechanicalVentilation, A48, \field Design Specification Outdoor Air Object Name 15 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A49, \field Design Specification Zone Air Distribution Object Name 15 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64177,6 +64363,7 @@ Controller:MechanicalVentilation, A51, \field Design Specification Outdoor Air Object Name 16 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A52, \field Design Specification Zone Air Distribution Object Name 16 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64187,6 +64374,7 @@ Controller:MechanicalVentilation, A54, \field Design Specification Outdoor Air Object Name 17 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A55, \field Design Specification Zone Air Distribution Object Name 17 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64197,6 +64385,7 @@ Controller:MechanicalVentilation, A57, \field Design Specification Outdoor Air Object Name 18 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A58, \field Design Specification Zone Air Distribution Object Name 18 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64207,6 +64396,7 @@ Controller:MechanicalVentilation, A60, \field Design Specification Outdoor Air Object Name 19 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A61, \field Design Specification Zone Air Distribution Object Name 19 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64217,6 +64407,7 @@ Controller:MechanicalVentilation, A63, \field Design Specification Outdoor Air Object Name 20 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A64, \field Design Specification Zone Air Distribution Object Name 20 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64227,6 +64418,7 @@ Controller:MechanicalVentilation, A66, \field Design Specification Outdoor Air Object Name 21 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A67, \field Design Specification Zone Air Distribution Object Name 21 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64237,6 +64429,7 @@ Controller:MechanicalVentilation, A69, \field Design Specification Outdoor Air Object Name 22 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A70, \field Design Specification Zone Air Distribution Object Name 22 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64247,6 +64440,7 @@ Controller:MechanicalVentilation, A72, \field Design Specification Outdoor Air Object Name 23 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A73, \field Design Specification Zone Air Distribution Object Name 23 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64257,6 +64451,7 @@ Controller:MechanicalVentilation, A75, \field Design Specification Outdoor Air Object Name 24 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A76, \field Design Specification Zone Air Distribution Object Name 24 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64267,6 +64462,7 @@ Controller:MechanicalVentilation, A78, \field Design Specification Outdoor Air Object Name 25 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A79, \field Design Specification Zone Air Distribution Object Name 25 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64277,6 +64473,7 @@ Controller:MechanicalVentilation, A81, \field Design Specification Outdoor Air Object Name 26 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A82, \field Design Specification Zone Air Distribution Object Name 26 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64287,6 +64484,7 @@ Controller:MechanicalVentilation, A84, \field Design Specification Outdoor Air Object Name 27 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A85, \field Design Specification Zone Air Distribution Object Name 27 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64297,6 +64495,7 @@ Controller:MechanicalVentilation, A87, \field Design Specification Outdoor Air Object Name 28 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A88, \field Design Specification Zone Air Distribution Object Name 28 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64307,6 +64506,7 @@ Controller:MechanicalVentilation, A90, \field Design Specification Outdoor Air Object Name 29 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A91, \field Design Specification Zone Air Distribution Object Name 29 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64317,6 +64517,7 @@ Controller:MechanicalVentilation, A93, \field Design Specification Outdoor Air Object Name 30 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A94, \field Design Specification Zone Air Distribution Object Name 30 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64327,6 +64528,7 @@ Controller:MechanicalVentilation, A96, \field Design Specification Outdoor Air Object Name 31 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A97, \field Design Specification Zone Air Distribution Object Name 31 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64337,6 +64539,7 @@ Controller:MechanicalVentilation, A99, \field Design Specification Outdoor Air Object Name 32 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A100,\field Design Specification Zone Air Distribution Object Name 32 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64347,6 +64550,7 @@ Controller:MechanicalVentilation, A102,\field Design Specification Outdoor Air Object Name 33 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A103,\field Design Specification Zone Air Distribution Object Name 33 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64357,6 +64561,7 @@ Controller:MechanicalVentilation, A105,\field Design Specification Outdoor Air Object Name 34 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A106,\field Design Specification Zone Air Distribution Object Name 34 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64367,6 +64572,7 @@ Controller:MechanicalVentilation, A108,\field Design Specification Outdoor Air Object Name 35 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A109,\field Design Specification Zone Air Distribution Object Name 35 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64377,6 +64583,7 @@ Controller:MechanicalVentilation, A111,\field Design Specification Outdoor Air Object Name 36 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A112,\field Design Specification Zone Air Distribution Object Name 36 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64387,6 +64594,7 @@ Controller:MechanicalVentilation, A114,\field Design Specification Outdoor Air Object Name 37 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A115,\field Design Specification Zone Air Distribution Object Name 37 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64397,6 +64605,7 @@ Controller:MechanicalVentilation, A117,\field Design Specification Outdoor Air Object Name 38 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A118,\field Design Specification Zone Air Distribution Object Name 38 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64407,6 +64616,7 @@ Controller:MechanicalVentilation, A120,\field Design Specification Outdoor Air Object Name 39 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A121,\field Design Specification Zone Air Distribution Object Name 39 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64417,6 +64627,7 @@ Controller:MechanicalVentilation, A123,\field Design Specification Outdoor Air Object Name 40 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A124,\field Design Specification Zone Air Distribution Object Name 40 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64427,6 +64638,7 @@ Controller:MechanicalVentilation, A126,\field Design Specification Outdoor Air Object Name 41 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A127,\field Design Specification Zone Air Distribution Object Name 41 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64437,6 +64649,7 @@ Controller:MechanicalVentilation, A129,\field Design Specification Outdoor Air Object Name 42 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A130,\field Design Specification Zone Air Distribution Object Name 42 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64447,6 +64660,7 @@ Controller:MechanicalVentilation, A132,\field Design Specification Outdoor Air Object Name 43 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A133,\field Design Specification Zone Air Distribution Object Name 43 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64457,6 +64671,7 @@ Controller:MechanicalVentilation, A135,\field Design Specification Outdoor Air Object Name 44 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A136,\field Design Specification Zone Air Distribution Object Name 44 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64467,6 +64682,7 @@ Controller:MechanicalVentilation, A138,\field Design Specification Outdoor Air Object Name 45 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A139,\field Design Specification Zone Air Distribution Object Name 45 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64477,6 +64693,7 @@ Controller:MechanicalVentilation, A141,\field Design Specification Outdoor Air Object Name 46 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A142,\field Design Specification Zone Air Distribution Object Name 46 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64487,6 +64704,7 @@ Controller:MechanicalVentilation, A144,\field Design Specification Outdoor Air Object Name 47 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A145,\field Design Specification Zone Air Distribution Object Name 47 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64497,6 +64715,7 @@ Controller:MechanicalVentilation, A147,\field Design Specification Outdoor Air Object Name 48 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A148,\field Design Specification Zone Air Distribution Object Name 48 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64507,6 +64726,7 @@ Controller:MechanicalVentilation, A150,\field Design Specification Outdoor Air Object Name 49 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A151,\field Design Specification Zone Air Distribution Object Name 49 \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -64517,6 +64737,7 @@ Controller:MechanicalVentilation, A153,\field Design Specification Outdoor Air Object Name 50 \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A154;\field Design Specification Zone Air Distribution Object Name 50 \type object-list \object-list DesignSpecificationZoneAirDistributionNames From 7a4b9327ffc470ee911d7000d4a0fddfe1b470b6 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 6 Aug 2021 14:16:47 -0500 Subject: [PATCH 63/98] Space - Fix new and old unit tests --- src/EnergyPlus/InternalHeatGains.cc | 2 +- .../unit/HeatBalanceIntRadExchange.unit.cc | 2 +- .../unit/PackagedTerminalHeatPump.unit.cc | 62 +++++++++++++++---- .../unit/RoomAirflowNetwork.unit.cc | 2 +- .../unit/ZoneEquipmentManager.unit.cc | 18 +++--- 5 files changed, 65 insertions(+), 21 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index e9e9653118e..f97c9666a6d 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -1726,7 +1726,7 @@ namespace InternalHeatGains { state.dataHeatBal->Lights.allocate(state.dataHeatBal->TotLights); if (state.dataHeatBal->TotLights > 0) { - bool CheckSharedExhaustFlag = false; Loop = 0; + bool CheckSharedExhaustFlag = false; int Loop = 0; for (int Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { AlphaName = std::string{}; diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index 2f71110985a..ddf7f7117a3 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -168,7 +168,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) state->dataHeatBal->Zone.allocate(spaceNum); state->dataHeatBal->Zone(spaceNum).Name = "Test"; - state->dataHeatBal->Zone(spaceNum).spaces.emplace_back(spaceNum); + state->dataHeatBal->Zone(spaceNum).spaceIndexes.emplace_back(spaceNum); state->dataHeatBal->space.allocate(spaceNum); state->dataHeatBal->space(spaceNum).Name = "Test"; state->dataHeatBal->space(spaceNum).zoneNum = spaceNum; diff --git a/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc b/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc index 1ebb84269f4..0bb52a3ff97 100644 --- a/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc +++ b/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc @@ -1960,6 +1960,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1976,6 +1977,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -1992,6 +1994,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2008,6 +2011,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2024,6 +2028,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " ROOF, !- Surface Type", " ROOF-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2040,6 +2045,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2056,6 +2062,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2072,6 +2079,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2088,6 +2096,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2104,6 +2113,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " CLNG-1, !- Construction Name", " PLENUM-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2120,6 +2130,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2136,6 +2147,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C1-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2152,6 +2164,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2168,6 +2181,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB21, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2184,6 +2198,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB41, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2200,6 +2215,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE1-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB51, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2216,6 +2232,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2232,6 +2249,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C2-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2248,6 +2266,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2264,6 +2283,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB12, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2280,6 +2300,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB32, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2296,6 +2317,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE2-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB52, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2312,6 +2334,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2328,6 +2351,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C3-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2344,6 +2368,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2360,6 +2385,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB23, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2376,6 +2402,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB43, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2392,6 +2419,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE3-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB53, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2408,6 +2436,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -2424,6 +2453,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C4-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2440,6 +2470,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2456,6 +2487,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB14, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2472,6 +2504,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB34, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2488,6 +2521,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE4-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB54, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2504,6 +2538,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " CEILING, !- Surface Type", " CLNG-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " C5-1P, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2520,6 +2555,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " FLOOR, !- Surface Type", " FLOOR-SLAB-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Ground, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2536,6 +2572,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB15, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2552,6 +2589,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB25, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2568,6 +2606,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB35, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -2584,6 +2623,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) " WALL, !- Surface Type", " INT-WALL-1, !- Construction Name", " SPACE5-1, !- Zone Name", + " , !- Space Name", " Surface, !- Outside Boundary Condition", " SB45, !- Outside Boundary Condition Object", " NoSun, !- Sun Exposure", @@ -3810,16 +3850,16 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) state->dataGlobal->CurrentTime = 12.0; ProcessScheduleInput(*state); // read schedules - HeatBalanceManager::GetZoneData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - HeatBalanceManager::GetConstructData(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); - SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); - EXPECT_FALSE(ErrorsFound); + //HeatBalanceManager::GetZoneData(*state, ErrorsFound); + //EXPECT_FALSE(ErrorsFound); + //HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); + //EXPECT_FALSE(ErrorsFound); + //HeatBalanceManager::GetMaterialData(*state, ErrorsFound); + //EXPECT_FALSE(ErrorsFound); + //HeatBalanceManager::GetConstructData(*state, ErrorsFound); + //EXPECT_FALSE(ErrorsFound); + //SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); + //EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); @@ -3905,7 +3945,7 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) bool FirstHVACIteration = true; // re-simulate the zone HVAC equipment per the priority order InternalHeatGains::UpdateInternalGainValues(*state); - state->dataHeatBal->ZoneIntGain(2).Device(2).ReturnAirConvGainRate = 50.0; + state->dataHeatBal->spaceIntGainDevices(2).device(2).ReturnAirConvGainRate = 50.0; state->dataGlobal->BeginEnvrnFlag = true; ZoneEquipmentManager::ManageZoneEquipment(*state, FirstHVACIteration, SimZoneEquipment, SimAirLoops); SimAirServingZones::InitAirLoops(*state, FirstHVACIteration); diff --git a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc index b8755c2694d..55d0c73994e 100644 --- a/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc +++ b/tst/EnergyPlus/unit/RoomAirflowNetwork.unit.cc @@ -264,7 +264,7 @@ TEST_F(RoomAirflowNetworkTest, RAFNTest) state->dataHeatBal->Zone(ZoneNum).HTSurfaceFirst = 1; state->dataHeatBal->Zone(ZoneNum).HTSurfaceLast = 2; state->dataHeatBal->Zone(ZoneNum).ZoneVolCapMultpMoist = 0; - state->dataHeatBal->Zone(ZoneNum).spaces.emplace_back(1); + state->dataHeatBal->Zone(ZoneNum).spaceIndexes.emplace_back(1); state->dataHeatBal->spaceIntGainDevices(ZoneNum).numberOfDevices = 1; state->dataHeatBal->spaceIntGainDevices(ZoneNum).device.allocate(state->dataHeatBal->spaceIntGainDevices(1).numberOfDevices); diff --git a/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc b/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc index cc1cd084c5e..00b355fea97 100644 --- a/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc +++ b/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc @@ -4491,6 +4491,10 @@ TEST_F(EnergyPlusFixture, CZoeEquipmentManager_CalcZoneLeavingConditions_Test) state->dataGlobal->NumOfZones = 1; state->dataHeatBal->Zone.allocate(1); state->dataHeatBal->Zone(1).Name = "LIVING ZONE"; + state->dataGlobal->numSpaces = 1; + state->dataHeatBal->space.allocate(1); + state->dataHeatBal->space(1).Name = "LIVING ZONE"; + state->dataHeatBal->Zone(1).spaceIndexes.emplace_back(1); state->dataZoneEquip->ZoneEquipConfig.allocate(1); state->dataZoneEquip->ZoneEquipConfig(1).ActualZoneNum = 1; state->dataZoneEquip->ZoneEquipConfig(1).NumExhaustNodes = 1; @@ -4518,13 +4522,13 @@ TEST_F(EnergyPlusFixture, CZoeEquipmentManager_CalcZoneLeavingConditions_Test) state->dataZoneEquip->ZoneEquipConfig(1).SharedExhaustNode(1) = iLightReturnExhaustConfig::Multi; state->dataZoneEquip->ZoneEquipConfig(1).SharedExhaustNode(2) = iLightReturnExhaustConfig::Shared; - state->dataHeatBal->ZoneIntGain.allocate(1); - state->dataHeatBal->ZoneIntGain(1).NumberOfDevices = 2; - state->dataHeatBal->ZoneIntGain(1).Device.allocate(2); - state->dataHeatBal->ZoneIntGain(1).Device(1).ReturnAirNodeNum = 4; - state->dataHeatBal->ZoneIntGain(1).Device(2).ReturnAirNodeNum = 5; - state->dataHeatBal->ZoneIntGain(1).Device(1).ReturnAirConvGainRate = 50.0; - state->dataHeatBal->ZoneIntGain(1).Device(2).ReturnAirConvGainRate = 100.0; + state->dataHeatBal->spaceIntGainDevices.allocate(1); + state->dataHeatBal->spaceIntGainDevices(1).numberOfDevices = 2; + state->dataHeatBal->spaceIntGainDevices(1).device.allocate(2); + state->dataHeatBal->spaceIntGainDevices(1).device(1).ReturnAirNodeNum = 4; + state->dataHeatBal->spaceIntGainDevices(1).device(2).ReturnAirNodeNum = 5; + state->dataHeatBal->spaceIntGainDevices(1).device(1).ReturnAirConvGainRate = 50.0; + state->dataHeatBal->spaceIntGainDevices(1).device(2).ReturnAirConvGainRate = 100.0; for (int Nodecount = 1; Nodecount <= NumOfNodes; ++Nodecount) { state->dataLoopNodes->Node(Nodecount).Temp = 20.0; From aa0698b994f5bca6819c95adaf5fb9b3daec7e54 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sun, 8 Aug 2021 12:10:46 -0500 Subject: [PATCH 64/98] Space - DesignSpecification:OutdoorAir:SpaceList --- src/EnergyPlus/DataHeatBalance.hh | 22 +- src/EnergyPlus/DataSizing.cc | 69 ++++++ src/EnergyPlus/DataSizing.hh | 228 +++++++++--------- src/EnergyPlus/DataZoneEquipment.cc | 73 +++--- src/EnergyPlus/DataZoneEquipment.hh | 5 +- src/EnergyPlus/HVACFourPipeBeam.cc | 4 +- src/EnergyPlus/InternalHeatGains.cc | 14 +- src/EnergyPlus/SizingManager.cc | 10 +- src/EnergyPlus/ZoneEquipmentManager.cc | 50 +--- .../unit/ZoneEquipmentManager.unit.cc | 4 - 10 files changed, 264 insertions(+), 215 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index cdf5ed5eaff..f7a47bb24f6 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -352,6 +352,9 @@ namespace DataHeatBalance { Real64 totalSurfArea = 0.0; // Total surface area for Zone int radiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to int solarEnclosureNum = 0; // Solar distribution enclosure this space belongs to + Real64 totOccupants = 0.0; // total design occupancy (sum of NumberOfPeople for the space People objects, not multiplied) + Real64 minOccupants = 0.0; // minimum occupancy (sum of NomMinNumberPeople for the space People objects, not multiplied) + Real64 maxOccupants = 0.0; // maximum occupancy (sum of NomMaxNumberPeople for the space People objects, not multiplied) }; struct SpaceListData @@ -455,11 +458,12 @@ namespace DataHeatBalance { bool HasLinkedOutAirNode; // true if an OutdoorAir::Node is linked to the surface int LinkedOutAirNode; // Index of the an OutdoorAir:Node - bool isPartOfTotalArea; // Count the zone area when determining the building total floor area - bool isNominalOccupied; // has occupancy nominally specified - bool isNominalControlled; // has Controlled Zone Equip Configuration reference - Real64 TotOccupants; // total design occupancy - // (sum of NumberOfPeople for the zone from People object) + bool isPartOfTotalArea; // Count the zone area when determining the building total floor area + bool isNominalOccupied; // has occupancy nominally specified + bool isNominalControlled; // has Controlled Zone Equip Configuration reference + Real64 TotOccupants; // total design occupancy (sum of NumberOfPeople for the zone People objects, not multiplied) + Real64 minOccupants; // minimum occupancy (sum of NomMinNumberPeople for the zone People objects, not multiplied) + Real64 maxOccupants; // maximum occupancy (sum of NomMaxNumberPeople for the zone People objects, not multiplied) int AirHBimBalanceErrIndex; // error management counter bool NoHeatToReturnAir; // TRUE means that heat to return air should be added to the zone load bool RefrigCaseRA; // TRUE means there is potentially heat removal from return air @@ -530,10 +534,10 @@ namespace DataHeatBalance { OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), WindSpeedEMSOverrideValue(0.0), WindDir(0.0), WindDirEMSOverrideOn(false), WindDirEMSOverrideValue(0.0), HasLinkedOutAirNode(false), LinkedOutAirNode(0.0), isPartOfTotalArea(true), isNominalOccupied(false), isNominalControlled(false), TotOccupants(0.0), - AirHBimBalanceErrIndex(0), NoHeatToReturnAir(false), RefrigCaseRA(false), HasAdjustedReturnTempByITE(false), - AdjustedReturnTempByITE(0.0), HasLtsRetAirGain(false), HasAirFlowWindowReturn(false), InternalHeatGains(0.0), NominalInfilVent(0.0), - NominalMixing(0.0), TempOutOfBoundsReported(false), EnforcedReciprocity(false), ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), - ZoneContamControllerSchedIndex(0), FlagCustomizedZoneCap(false), + minOccupants(0.0), maxOccupants(0.0), AirHBimBalanceErrIndex(0), NoHeatToReturnAir(false), RefrigCaseRA(false), + HasAdjustedReturnTempByITE(false), AdjustedReturnTempByITE(0.0), HasLtsRetAirGain(false), HasAirFlowWindowReturn(false), + InternalHeatGains(0.0), NominalInfilVent(0.0), NominalMixing(0.0), TempOutOfBoundsReported(false), EnforcedReciprocity(false), + ZoneMinCO2SchedIndex(0), ZoneMaxCO2SchedIndex(0), ZoneContamControllerSchedIndex(0), FlagCustomizedZoneCap(false), // Hybrid Modeling ZoneMeasuredTemperature(0.0), ZoneMeasuredHumidityRatio(0.0), ZoneMeasuredCO2Concentration(0.0), ZoneMeasuredSupplyAirTemperature(0.0), ZoneMeasuredSupplyAirFlowRate(0.0), ZoneMeasuredSupplyAirHumidityRatio(0.0), ZoneMeasuredSupplyAirCO2Concentration(0.0), diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index 3def220451d..aee92c41753 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -48,8 +48,10 @@ // EnergyPlus Headers #include #include +#include #include #include +#include #include #include @@ -500,4 +502,71 @@ Real64 ZoneAirDistributionData::calculateEz(EnergyPlusData &state, int const Zon return zoneEz; } +Real64 OARequirementsData::calcOAFlowRate(EnergyPlusData &state, + int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object + int const ActualZoneNum, // Zone index + bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy + bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object + bool const PerPersonNotSet, // when calculation should not include occupants (e.g., dual duct) + bool const MaxOAVolFlowFlag, // TRUE when calculation uses occupancy schedule (e.g., dual duct) + int const spaceNum // Space index when calculating space-by-space +) +{ + if (this->numDSOA == 1) { + return DataZoneEquipment::CalcDesignSpecificationOutdoorAir( + state, DSOAPtr, ActualZoneNum, UseOccSchFlag, UseMinOASchFlag, PerPersonNotSet, MaxOAVolFlowFlag); + } else { + Real64 totOAFlowRate = 0.0; + for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { + totOAFlowRate += DataZoneEquipment::CalcDesignSpecificationOutdoorAir(state, + this->dsoaIndexes(dsoaCount), + ActualZoneNum, + UseOccSchFlag, + UseMinOASchFlag, + PerPersonNotSet, + MaxOAVolFlowFlag, + this->dsoaSpaces(dsoaCount)); + } + return totOAFlowRate; + } +} + +Real64 OARequirementsData::desFlowPerZoneArea(EnergyPlusData &state, + int const actualZoneNum // Zone index +) +{ + if (this->numDSOA == 1) { + return this->OAFlowPerArea; + } else { + Real64 sumAreaOA = 0.0; + for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { + if (this->OAFlowMethod != DataSizing::OAFlowPPer && this->OAFlowMethod != DataSizing::OAFlow && + this->OAFlowMethod != DataSizing::OAFlowACH) { + Real64 spaceArea = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).floorArea; + sumAreaOA += this->OAFlowPerArea * spaceArea; + } + } + return sumAreaOA / state.dataHeatBal->Zone(actualZoneNum).FloorArea; + } +} + +Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, + int const actualZoneNum // Zone index +) +{ + if (this->numDSOA == 1) { + return this->OAFlowPerPerson; + } else { + Real64 sumPeopleOA = 0.0; + for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { + if (this->OAFlowMethod != DataSizing::OAFlowPerArea && this->OAFlowMethod != DataSizing::OAFlow && + this->OAFlowMethod != DataSizing::OAFlowACH) { + Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).totOccupants; + sumPeopleOA += this->OAFlowPerPerson * spacePeople; + } + } + return sumPeopleOA / state.dataHeatBal->Zone(actualZoneNum).TotOccupants; + } +} + } // namespace EnergyPlus::DataSizing diff --git a/src/EnergyPlus/DataSizing.hh b/src/EnergyPlus/DataSizing.hh index 62486dd9ba7..13054b4b450 100644 --- a/src/EnergyPlus/DataSizing.hh +++ b/src/EnergyPlus/DataSizing.hh @@ -201,15 +201,8 @@ namespace DataSizing { Real64 HeatDesTempDiff; // zone design heating supply air temperature difference [deltaC] Real64 CoolDesHumRat; // zone design cooling supply air humidity ratio [kgWater/kgDryAir] Real64 HeatDesHumRat; // zone design heating supply air humidity ratio [kgWater/kgDryAir] - std::string DesignSpecOAObjName; // name of the design specification outdoor air object - int OADesMethod; // choice of how to calculate minimum outside air; - // 1 = m3/s per person; 2 = m3/s per zone; 3 = m3/s per zone area; - // 4 = sum of flow from 3 OA input fields; - // 5 = max of flow from 3 OA input fields - Real64 DesOAFlowPPer; // design outside air flow per person in zone [m3/s] - Real64 DesOAFlowPerArea; // design outside air flow per zone area [m3/s / m2] - Real64 DesOAFlow; // design outside air flow for the zone [m3/s] - int CoolAirDesMethod; // choice of how to get zone cooling design air flow rates; + std::string DesignSpecOAObjName; // name of the DesignSpecification:OutdoorAir or DesignSpecification:OutdoorAir:SpaceList object + int CoolAirDesMethod; // choice of how to get zone cooling design air flow rates; // 1 = calc from des day simulation; 2 = m3/s per zone, user input // 3 = apply limits to air flow rate from DD calc Real64 DesCoolAirFlow; // design zone supply air flow rate [m3/s] @@ -243,12 +236,11 @@ namespace DataSizing { // Default Constructor ZoneSizingInputData() : ZoneNum(0), ZnCoolDgnSAMethod(0), ZnHeatDgnSAMethod(0), CoolDesTemp(0.0), HeatDesTemp(0.0), CoolDesTempDiff(0.0), HeatDesTempDiff(0.0), - CoolDesHumRat(0.0), HeatDesHumRat(0.0), OADesMethod(0), DesOAFlowPPer(0.0), DesOAFlowPerArea(0.0), DesOAFlow(0.0), CoolAirDesMethod(0), - DesCoolAirFlow(0.0), DesCoolMinAirFlowPerArea(0.0), DesCoolMinAirFlow(0.0), DesCoolMinAirFlowFrac(0.0), HeatAirDesMethod(0), - DesHeatAirFlow(0.0), DesHeatMaxAirFlowPerArea(0.0), DesHeatMaxAirFlow(0.0), DesHeatMaxAirFlowFrac(0.0), HeatSizingFactor(0.0), - CoolSizingFactor(0.0), ZoneADEffCooling(1.0), ZoneADEffHeating(1.0), ZoneAirDistributionIndex(0), ZoneDesignSpecOAIndex(0), - ZoneSecondaryRecirculation(0.0), ZoneVentilationEff(0.0), AccountForDOAS(false), DOASControlStrategy(0), DOASLowSetpoint(0.0), - DOASHighSetpoint(0.0) + CoolDesHumRat(0.0), HeatDesHumRat(0.0), CoolAirDesMethod(0), DesCoolAirFlow(0.0), DesCoolMinAirFlowPerArea(0.0), DesCoolMinAirFlow(0.0), + DesCoolMinAirFlowFrac(0.0), HeatAirDesMethod(0), DesHeatAirFlow(0.0), DesHeatMaxAirFlowPerArea(0.0), DesHeatMaxAirFlow(0.0), + DesHeatMaxAirFlowFrac(0.0), HeatSizingFactor(0.0), CoolSizingFactor(0.0), ZoneADEffCooling(1.0), ZoneADEffHeating(1.0), + ZoneAirDistributionIndex(0), ZoneDesignSpecOAIndex(0), ZoneSecondaryRecirculation(0.0), ZoneVentilationEff(0.0), AccountForDOAS(false), + DOASControlStrategy(0), DOASLowSetpoint(0.0), DOASHighSetpoint(0.0) { } }; @@ -274,15 +266,9 @@ namespace DataSizing { Real64 HeatDesHumRat; // zone design heating supply air humidity ratio [kgWater/kgDryAir] int ZoneAirDistributionIndex; // index to DesignSpecification:ZoneAirDistribution object int ZoneDesignSpecOAIndex; // index to DesignSpecification:OutdoorAir object - - int OADesMethod; // choice of how to calculate minimum outside air; - // 1 = m3/s per person; 2 = m3/s per zone; 3 = m3/s per zone area; - // 4 = sum of flow from 3 OA input fields; - // 5 = max of flow from 3 OA input fields - Real64 DesOAFlowPPer; // design outside air flow per person in zone [m3/s] - Real64 DesOAFlowPerArea; // design outside air flow per zone area [m3/s / m2] - Real64 DesOAFlow; // design outside air flow for the zone [m3/s] - int CoolAirDesMethod; // choice of how to get zone cooling design air flow rates; + Real64 DesOAFlowPPer; // design outside air flow per person in zone [m3/s] (average for zone across spaces) + Real64 DesOAFlowPerArea; // design outside air flow per zone area [m3/s / m2] (average for zone across spaces) + int CoolAirDesMethod; // choice of how to get zone cooling design air flow rates; // 1 = calc from des day simulation; 2 = m3/s per zone, user input // 3 = apply limits to air flow rate from DD calc Real64 InpDesCoolAirFlow; // design zone supply air flow rate [m3/s] @@ -349,43 +335,41 @@ namespace DataSizing { // (supply air) [kg/kg] Real64 DesCoolCoilInHumRatTU; // zone cooling coil design air inlet humidity ratio // (supply air) [kg/kg] - Real64 HeatMassFlow; // current zone heating air mass flow rate (HVAC time step) - Real64 CoolMassFlow; // current zone cooling air mass flow rate (HVAC time step) - Real64 HeatLoad; // current zone heating load (HVAC time step) - Real64 CoolLoad; // current zone heating load (HVAC time step) - Real64 HeatZoneTemp; // current zone temperature (heating, time step) - Real64 HeatOutTemp; // current outdoor temperature (heating, time step) - Real64 HeatZoneRetTemp; // current zone return temperature (heating, time step) - Real64 HeatTstatTemp; // current zone thermostat temperature (heating, time step) - Real64 CoolZoneTemp; // current zone temperature (cooling, time step) - Real64 CoolOutTemp; // current Outdoor temperature (cooling, time step) - Real64 CoolZoneRetTemp; // current zone return temperature (cooling, time step) - Real64 CoolTstatTemp; // current zone thermostat temperature (cooling, time step) - Real64 HeatZoneHumRat; // current zone humidity ratio (heating, time step) - Real64 CoolZoneHumRat; // current zone humidity ratio (cooling, time step) - Real64 HeatOutHumRat; // current outdoor humidity ratio (heating, time step) - Real64 CoolOutHumRat; // current outdoor humidity ratio (cooling, time step) - Real64 ZoneTempAtHeatPeak; // zone temp at max heating [C] - Real64 ZoneRetTempAtHeatPeak; // zone return temp at max heating [C] - Real64 OutTempAtHeatPeak; // outdoor temperature at max heating [C] - Real64 ZoneTempAtCoolPeak; // zone temp at max cooling [C] - Real64 ZoneRetTempAtCoolPeak; // zone return temp at max cooling [C] - Real64 OutTempAtCoolPeak; // outdoor temperature at max cooling [C] - Real64 ZoneHumRatAtHeatPeak; // zone humidity ratio at max heating [kg/kg] - Real64 ZoneHumRatAtCoolPeak; // zone humidity ratio at max cooling [kg/kg] - Real64 OutHumRatAtHeatPeak; // outdoor humidity at max heating [kg/kg] - Real64 OutHumRatAtCoolPeak; // outdoor humidity at max cooling [kg/kg] - int TimeStepNumAtHeatMax; // time step number (in day) at Heating peak - int TimeStepNumAtCoolMax; // time step number (in day) at cooling peak - int HeatDDNum; // design day index of design day causing heating peak - int CoolDDNum; // design day index of design day causing cooling peak - std::string cHeatDDDate; // date of design day causing heating peak - std::string cCoolDDDate; // date of design day causing cooling peak - Real64 MinOA; // design minimum outside air in m3/s - Real64 DesCoolMinAirFlow2; // design cooling minimum air flow rate [m3/s] derived from - // DesCoolMinAirFlowPerArea - Real64 DesHeatMaxAirFlow2; // design heating maximum air flow rate [m3/s] derived from - // DesHeatMaxAirFlowPerArea + Real64 HeatMassFlow; // current zone heating air mass flow rate (HVAC time step) + Real64 CoolMassFlow; // current zone cooling air mass flow rate (HVAC time step) + Real64 HeatLoad; // current zone heating load (HVAC time step) + Real64 CoolLoad; // current zone heating load (HVAC time step) + Real64 HeatZoneTemp; // current zone temperature (heating, time step) + Real64 HeatOutTemp; // current outdoor temperature (heating, time step) + Real64 HeatZoneRetTemp; // current zone return temperature (heating, time step) + Real64 HeatTstatTemp; // current zone thermostat temperature (heating, time step) + Real64 CoolZoneTemp; // current zone temperature (cooling, time step) + Real64 CoolOutTemp; // current Outdoor temperature (cooling, time step) + Real64 CoolZoneRetTemp; // current zone return temperature (cooling, time step) + Real64 CoolTstatTemp; // current zone thermostat temperature (cooling, time step) + Real64 HeatZoneHumRat; // current zone humidity ratio (heating, time step) + Real64 CoolZoneHumRat; // current zone humidity ratio (cooling, time step) + Real64 HeatOutHumRat; // current outdoor humidity ratio (heating, time step) + Real64 CoolOutHumRat; // current outdoor humidity ratio (cooling, time step) + Real64 ZoneTempAtHeatPeak; // zone temp at max heating [C] + Real64 ZoneRetTempAtHeatPeak; // zone return temp at max heating [C] + Real64 OutTempAtHeatPeak; // outdoor temperature at max heating [C] + Real64 ZoneTempAtCoolPeak; // zone temp at max cooling [C] + Real64 ZoneRetTempAtCoolPeak; // zone return temp at max cooling [C] + Real64 OutTempAtCoolPeak; // outdoor temperature at max cooling [C] + Real64 ZoneHumRatAtHeatPeak; // zone humidity ratio at max heating [kg/kg] + Real64 ZoneHumRatAtCoolPeak; // zone humidity ratio at max cooling [kg/kg] + Real64 OutHumRatAtHeatPeak; // outdoor humidity at max heating [kg/kg] + Real64 OutHumRatAtCoolPeak; // outdoor humidity at max cooling [kg/kg] + int TimeStepNumAtHeatMax; // time step number (in day) at Heating peak + int TimeStepNumAtCoolMax; // time step number (in day) at cooling peak + int HeatDDNum; // design day index of design day causing heating peak + int CoolDDNum; // design day index of design day causing cooling peak + std::string cHeatDDDate; // date of design day causing heating peak + std::string cCoolDDDate; // date of design day causing cooling peak + Real64 MinOA; // design minimum outside air in m3/s + Real64 DesCoolMinAirFlow2; // design cooling minimum air flow rate [m3/s] derived from DesCoolMinAirFlowPerArea + Real64 DesHeatMaxAirFlow2; // design heating maximum air flow rate [m3/s] derived from DesHeatMaxAirFlowPerArea Array1D HeatFlowSeq; // daily sequence of zone heating air mass flow rate (zone time step) [kg/s] Array1D HeatFlowSeqNoOA; // daily sequence of zone heating air mass flow rate (zone time step) without MinOA limit [kg/s] Array1D CoolFlowSeq; // daily sequence of zone cooling air mass flow rate (zone time step) [kg/s] @@ -394,36 +378,34 @@ namespace DataSizing { Array1D CoolLoadSeq; // daily sequence of zone cooling load (zone time step) Array1D HeatZoneTempSeq; // daily sequence of zone temperatures (heating, zone time step) Array1D HeatOutTempSeq; // daily sequence of outdoor temperatures (heating, zone time step) - Array1D HeatZoneRetTempSeq; // daily sequence of zone return temperatures (heating, - // zone time step) + Array1D HeatZoneRetTempSeq; // daily sequence of zone return temperatures (heating, zone time step) Array1D HeatTstatTempSeq; // daily sequence of zone thermostat temperatures (heating, zone time step) Array1D DesHeatSetPtSeq; // daily sequence of indoor set point temperatures (zone time step) Array1D CoolZoneTempSeq; // daily sequence of zone temperatures (cooling, zone time step) Array1D CoolOutTempSeq; // daily sequence of outdoor temperatures (cooling, zone time step) - Array1D CoolZoneRetTempSeq; // daily sequence of zone return temperatures (cooling, - // zone time step) - Array1D CoolTstatTempSeq; // daily sequence of zone thermostat temperatures (cooling, zone time step) - Array1D DesCoolSetPtSeq; // daily sequence of indoor set point temperatures (zone time step) - Array1D HeatZoneHumRatSeq; // daily sequence of zone humidity ratios (heating, zone time step) - Array1D CoolZoneHumRatSeq; // daily sequence of zone humidity ratios (cooling, zone time step) - Array1D HeatOutHumRatSeq; // daily sequence of outdoor humidity ratios (heating, zone time step) - Array1D CoolOutHumRatSeq; // daily sequence of outdoor humidity ratios (cooling, zone time step) - Real64 ZoneADEffCooling; // the zone air distribution effectiveness in cooling mode - Real64 ZoneADEffHeating; // the zone air distribution effectiveness in heating mode - Real64 ZoneSecondaryRecirculation; // the zone secondary air recirculation fraction - Real64 ZoneVentilationEff; // zone ventilation efficiency - Real64 ZonePrimaryAirFraction; // the zone primary air fraction for cooling based calculations - Real64 ZonePrimaryAirFractionHtg; // the zone primary air fraction for heating based calculations - Real64 ZoneOAFracCooling; // OA fraction in cooling mode - Real64 ZoneOAFracHeating; // OA fraction in heating mode - Real64 TotalOAFromPeople; // Zone OA required due to people - Real64 TotalOAFromArea; // Zone OA required based on floor area - Real64 TotPeopleInZone; // total number of people in the zone - Real64 TotalZoneFloorArea; // total zone floor area - Real64 ZonePeakOccupancy; // zone peak occupancy based on max schedule value - Real64 SupplyAirAdjustFactor; // supply air adjustment factor for next time step if OA is capped - Real64 ZpzClgByZone; // OA Std 62.1 required fraction in cooling mode ? should this be ZdzClgByZone - Real64 ZpzHtgByZone; // OA Std 62.1 required fraction in heating mode ? should this be ZdzHtgByZone + Array1D CoolZoneRetTempSeq; // daily sequence of zone return temperatures (cooling, zone time step) + Array1D CoolTstatTempSeq; // daily sequence of zone thermostat temperatures (cooling, zone time step) + Array1D DesCoolSetPtSeq; // daily sequence of indoor set point temperatures (zone time step) + Array1D HeatZoneHumRatSeq; // daily sequence of zone humidity ratios (heating, zone time step) + Array1D CoolZoneHumRatSeq; // daily sequence of zone humidity ratios (cooling, zone time step) + Array1D HeatOutHumRatSeq; // daily sequence of outdoor humidity ratios (heating, zone time step) + Array1D CoolOutHumRatSeq; // daily sequence of outdoor humidity ratios (cooling, zone time step) + Real64 ZoneADEffCooling; // the zone air distribution effectiveness in cooling mode + Real64 ZoneADEffHeating; // the zone air distribution effectiveness in heating mode + Real64 ZoneSecondaryRecirculation; // the zone secondary air recirculation fraction + Real64 ZoneVentilationEff; // zone ventilation efficiency + Real64 ZonePrimaryAirFraction; // the zone primary air fraction for cooling based calculations + Real64 ZonePrimaryAirFractionHtg; // the zone primary air fraction for heating based calculations + Real64 ZoneOAFracCooling; // OA fraction in cooling mode + Real64 ZoneOAFracHeating; // OA fraction in heating mode + Real64 TotalOAFromPeople; // Zone OA required due to people + Real64 TotalOAFromArea; // Zone OA required based on floor area + Real64 TotPeopleInZone; // total number of people in the zone + Real64 TotalZoneFloorArea; // total zone floor area + Real64 ZonePeakOccupancy; // zone peak occupancy based on max schedule value + Real64 SupplyAirAdjustFactor; // supply air adjustment factor for next time step if OA is capped + Real64 ZpzClgByZone; // OA Std 62.1 required fraction in cooling mode ? should this be ZdzClgByZone + Real64 ZpzHtgByZone; // OA Std 62.1 required fraction in heating mode ? should this be ZdzHtgByZone Real64 VozClgByZone; // value of required cooling vent to zone, used in 62.1 tabular report, already includes people diversity term Real64 VozHtgByZone; // value of required heating vent to zone, used in 62.1 tabular report, already includes people diversity term Real64 DOASHeatLoad; // current heating load from DOAS supply air [W] @@ -446,13 +428,13 @@ namespace DataSizing { // Default Constructor ZoneSizingData() : ZnCoolDgnSAMethod(0), ZnHeatDgnSAMethod(0), CoolDesTemp(0.0), HeatDesTemp(0.0), CoolDesTempDiff(0.0), HeatDesTempDiff(0.0), - CoolDesHumRat(0.0), HeatDesHumRat(0.0), ZoneAirDistributionIndex(0), ZoneDesignSpecOAIndex(0), OADesMethod(0), DesOAFlowPPer(0.0), - DesOAFlowPerArea(0.0), DesOAFlow(0.0), CoolAirDesMethod(0), InpDesCoolAirFlow(0.0), DesCoolMinAirFlowPerArea(0.0), - DesCoolMinAirFlow(0.0), DesCoolMinAirFlowFrac(0.0), HeatAirDesMethod(0), InpDesHeatAirFlow(0.0), DesHeatMaxAirFlowPerArea(0.0), - DesHeatMaxAirFlow(0.0), DesHeatMaxAirFlowFrac(0.0), HeatSizingFactor(0.0), CoolSizingFactor(0.0), AccountForDOAS(false), - DOASControlStrategy(0), DOASLowSetpoint(0.0), DOASHighSetpoint(0.0), ActualZoneNum(0), DesHeatMassFlow(0.0), DesHeatMassFlowNoOA(0.0), - DesHeatOAFlowFrac(0.0), EMSOverrideDesHeatMassOn(false), EMSValueDesHeatMassFlow(0.0), DesCoolMassFlow(0.0), DesCoolMassFlowNoOA(0.0), - DesCoolOAFlowFrac(0.0), EMSOverrideDesCoolMassOn(false), EMSValueDesCoolMassFlow(0.0), DesHeatLoad(0.0), NonAirSysDesHeatLoad(0.0), + CoolDesHumRat(0.0), HeatDesHumRat(0.0), ZoneAirDistributionIndex(0), ZoneDesignSpecOAIndex(0), DesOAFlowPPer(0.0), + DesOAFlowPerArea(0.0), CoolAirDesMethod(0), InpDesCoolAirFlow(0.0), DesCoolMinAirFlowPerArea(0.0), DesCoolMinAirFlow(0.0), + DesCoolMinAirFlowFrac(0.0), HeatAirDesMethod(0), InpDesHeatAirFlow(0.0), DesHeatMaxAirFlowPerArea(0.0), DesHeatMaxAirFlow(0.0), + DesHeatMaxAirFlowFrac(0.0), HeatSizingFactor(0.0), CoolSizingFactor(0.0), AccountForDOAS(false), DOASControlStrategy(0), + DOASLowSetpoint(0.0), DOASHighSetpoint(0.0), ActualZoneNum(0), DesHeatMassFlow(0.0), DesHeatMassFlowNoOA(0.0), DesHeatOAFlowFrac(0.0), + EMSOverrideDesHeatMassOn(false), EMSValueDesHeatMassFlow(0.0), DesCoolMassFlow(0.0), DesCoolMassFlowNoOA(0.0), DesCoolOAFlowFrac(0.0), + EMSOverrideDesCoolMassOn(false), EMSValueDesCoolMassFlow(0.0), DesHeatLoad(0.0), NonAirSysDesHeatLoad(0.0), EMSOverrideDesHeatLoadOn(false), EMSValueDesHeatLoad(0.0), DesCoolLoad(0.0), NonAirSysDesCoolLoad(0.0), EMSOverrideDesCoolLoadOn(false), EMSValueDesCoolLoad(0.0), DesHeatDens(0.0), DesCoolDens(0.0), DesHeatVolFlow(0.0), DesHeatVolFlowNoOA(0.0), NonAirSysDesHeatVolFlow(0.0), EMSOverrideDesHeatVolOn(false), EMSValueDesHeatVolFlow(0.0), DesCoolVolFlow(0.0), DesCoolVolFlowNoOA(0.0), @@ -970,29 +952,43 @@ namespace DataSizing { struct OARequirementsData { - // Members - std::string Name; - int OAFlowMethod; // - Method for OA flow calculation - //- (Flow/Person, Flow/Zone, Flow/Area, FlowACH, Sum, Maximum) - Real64 OAFlowPerPerson; // - OA requirement per person - Real64 OAFlowPerArea; // - OA requirement per zone area - Real64 OAFlowPerZone; // - OA requirement per zone - Real64 OAFlowACH; // - OA requirement per zone per hour - int OAFlowFracSchPtr; // - Fraction schedule applied to total OA requirement - int OAPropCtlMinRateSchPtr; // - Fraction schedule applied to Proportional Control Minimum Outdoor Air Flow Rate - int CO2MaxMinLimitErrorCount; // Counter when max CO2 concentration < min CO2 concentration for SOAM_ProportionalControlSchOcc - int CO2MaxMinLimitErrorIndex; // Index for max CO2 concentration < min CO2 concentration recurring error message for - // SOAM_ProportionalControlSchOcc - int CO2GainErrorCount; // Counter when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc - int CO2GainErrorIndex; // Index for recurring error message when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc + // Holds complet data for a single DesignSpecification:OutdoorAir object or + // a list of indexes from a DesignSpecification:OutdoorAir:SpaceList object + std::string Name; // Name of DesignSpecification:OutdoorAir or DesignSpecification:OutdoorAir:SpaceList object + int numDSOA = 1; // Number of DesignSpecification:OutdoorAir objects for this instance + EPVector dsoaIndexes; // Indexes to DesignSpecification:OutdoorAir objects (if this is a DSOA:SpaceList object) + EPVector dsoaSpaceNames; // Names of spaces if this is a (if this is a DSOA:SpaceList object) + EPVector dsoaSpaces; // Indexes to Spaces (if this is a DSOA:SpaceList object) + int OAFlowMethod = 0; // - Method for OA flow calculation (Flow/Person, Flow/Zone, Flow/Area, FlowACH, Sum, Maximum) + Real64 OAFlowPerPerson = 0.0; // - OA requirement per person + Real64 OAFlowPerArea = 0.0; // - OA requirement per zone area + Real64 OAFlowPerZone = 0.0; // - OA requirement per zone + Real64 OAFlowACH = 0.0; // - OA requirement per zone per hour + int OAFlowFracSchPtr = 0; // - Fraction schedule applied to total OA requirement + int OAPropCtlMinRateSchPtr = 0; // - Fraction schedule applied to Proportional Control Minimum Outdoor Air Flow Rate + int CO2MaxMinLimitErrorCount = 0; // Counter when max CO2 concentration < min CO2 concentration for SOAM_ProportionalControlSchOcc + int CO2MaxMinLimitErrorIndex = 0; // Index for max CO2 concentration < min CO2 concentration recurring error message for + // SOAM_ProportionalControlSchOcc + int CO2GainErrorCount = 0; // Counter when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc + int CO2GainErrorIndex = 0; // Index for recurring error message when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc + + Real64 calcOAFlowRate(EnergyPlusData &state, + int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object + int const ActualZoneNum, // Zone index + bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy + bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object + bool const PerPersonNotSet = false, // when calculation should not include occupants (e.g., dual duct) + bool const MaxOAVolFlowFlag = false, // TRUE when calculation uses occupancy schedule (e.g., dual duct) + int const spaceNum = 0 // Space index when calculating space-by-space + ); - // Default Constructor - OARequirementsData() - : OAFlowMethod(0), OAFlowPerPerson(0.0), OAFlowPerArea(0.0), OAFlowPerZone(0.0), OAFlowACH(0.0), - OAFlowFracSchPtr(DataGlobalConstants::ScheduleAlwaysOn), OAPropCtlMinRateSchPtr(DataGlobalConstants::ScheduleAlwaysOn), - CO2MaxMinLimitErrorCount(0), CO2MaxMinLimitErrorIndex(0), CO2GainErrorCount(0), CO2GainErrorIndex(0) - { - } + Real64 desFlowPerZoneArea(EnergyPlusData &state, + int const actualZoneNum // Zone index + ); + + Real64 desFlowPerZonePerson(EnergyPlusData &state, + int const actualZoneNum // Zone index + ); }; struct ZoneAirDistributionData diff --git a/src/EnergyPlus/DataZoneEquipment.cc b/src/EnergyPlus/DataZoneEquipment.cc index 99f003c1323..3b0a42316bf 100644 --- a/src/EnergyPlus/DataZoneEquipment.cc +++ b/src/EnergyPlus/DataZoneEquipment.cc @@ -1357,8 +1357,9 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, int const ActualZoneNum, // Zone index bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object - Optional_bool_const PerPersonNotSet, // when calculation should not include occupants (e.g., dual duct) - Optional_bool_const MaxOAVolFlowFlag // TRUE when calculation uses occupancy schedule (e.g., dual duct) + Optional_bool_const PerPersonNotSet, // when calculation should not include occupants (e.g., dual duct) + Optional_bool_const MaxOAVolFlowFlag, // TRUE when calculation uses occupancy schedule (e.g., dual duct) + Optional_int_const spaceNum // Space index (if applicable) ) { @@ -1414,7 +1415,6 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, Real64 ZoneMinCO2; // Minimum CO2 concentration in zone Real64 ZoneContamControllerSched; // Schedule value for ZoneControl:ContaminantController Real64 CO2PeopleGeneration; // CO2 generation from people at design level - int PeopleNum; OAVolumeFlowRate = 0.0; if (DSOAPtr == 0) return OAVolumeFlowRate; @@ -1437,6 +1437,26 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, MaxOAFlag = false; } + Real64 floorArea = 0.0; + Real64 volume = 0.0; + Real64 nomTotOccupants = 0.0; + Real64 curNumOccupants = 0.0; + Real64 maxOccupants = 0.0; + if (present(spaceNum)) { + floorArea = state.dataHeatBal->space(spaceNum).floorArea; + // TODO MJW: For now just proportion space volume by floor area + volume = Zone(ActualZoneNum).Volume * state.dataHeatBal->space(spaceNum).floorArea / Zone(ActualZoneNum).FloorArea; + nomTotOccupants = state.dataHeatBal->space(spaceNum).totOccupants; + curNumOccupants = state.dataHeatBal->spaceIntGain(spaceNum).NOFOCC; + maxOccupants = state.dataHeatBal->space(spaceNum).maxOccupants; + } else { + floorArea = Zone(ActualZoneNum).FloorArea; + volume = Zone(ActualZoneNum).Volume; + nomTotOccupants = Zone(ActualZoneNum).TotOccupants; + curNumOccupants = state.dataHeatBal->ZoneIntGain(ActualZoneNum).NOFOCC; + maxOccupants = Zone(ActualZoneNum).maxOccupants; + } + if (OARequirements(DSOAPtr).OAFlowMethod == ZOAM_IAQP && state.dataZoneEquip->MyEnvrnFlag(DSOAPtr)) { if (!state.dataContaminantBalance->Contaminant.CO2Simulation) { ShowSevereError(state, @@ -1476,23 +1496,17 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, if (MaxOAFlag) { // OAPerPersonMode == PerPersonDCVByCurrentLevel (UseOccSchFlag = TRUE) // for dual duct, get max people according to max schedule value when requesting MaxOAFlow - PeopleCount = 0.0; - for (Loop = 1; Loop <= state.dataHeatBal->TotPeople; ++Loop) { - if (ActualZoneNum != state.dataHeatBal->People(Loop).ZonePtr) continue; - PeopleCount += state.dataHeatBal->People(Loop).NumberOfPeople * - GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).NumberOfPeoplePtr); - } - DSOAFlowPeople = PeopleCount * OARequirements(DSOAPtr).OAFlowPerPerson; + DSOAFlowPeople = maxOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; } else { - DSOAFlowPeople = state.dataHeatBal->ZoneIntGain(ActualZoneNum).NOFOCC * OARequirements(DSOAPtr).OAFlowPerPerson; + DSOAFlowPeople = curNumOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; } } else { if (MaxOAFlag) { // OAPerPersonMode == PerPersonByDesignLevel (UseOccSchFlag = FALSE) // use total people when requesting MaxOAFlow - DSOAFlowPeople = Zone(ActualZoneNum).TotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; + DSOAFlowPeople = nomTotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; } else { - DSOAFlowPeople = Zone(ActualZoneNum).TotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; + DSOAFlowPeople = nomTotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; } } if (PerPersonModeNotSet) DSOAFlowPeople = 0.0; // for Dual Duct if Per Person Ventilation Rate Mode is not entered @@ -1517,15 +1531,15 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, OAVolumeFlowRate = OARequirements(DSOAPtr).OAFlowPerZone; } else if (SELECT_CASE_var == OAFlowPerArea) { // Multiplied by zone floor area - OAVolumeFlowRate = OARequirements(DSOAPtr).OAFlowPerArea * Zone(ActualZoneNum).FloorArea; + OAVolumeFlowRate = OARequirements(DSOAPtr).OAFlowPerArea * floorArea; } else if (SELECT_CASE_var == OAFlowACH) { // Multiplied by zone volume - OAVolumeFlowRate = OARequirements(DSOAPtr).OAFlowACH * Zone(ActualZoneNum).Volume / 3600.0; + OAVolumeFlowRate = OARequirements(DSOAPtr).OAFlowACH * volume / 3600.0; } else if ((SELECT_CASE_var == OAFlowSum) || (SELECT_CASE_var == OAFlowMax)) { // Use sum or max of per person and the following DSOAFlowPerZone = OARequirements(DSOAPtr).OAFlowPerZone; - DSOAFlowPerArea = OARequirements(DSOAPtr).OAFlowPerArea * Zone(ActualZoneNum).FloorArea; - DSOAFlowACH = OARequirements(DSOAPtr).OAFlowACH * Zone(ActualZoneNum).Volume / 3600.0; + DSOAFlowPerArea = OARequirements(DSOAPtr).OAFlowPerArea * floorArea; + DSOAFlowACH = OARequirements(DSOAPtr).OAFlowACH * volume / 3600.0; if (OARequirements(DSOAPtr).OAFlowMethod == OAFlowMax) { OAVolumeFlowRate = max(DSOAFlowPeople, DSOAFlowPerZone, DSOAFlowPerArea, DSOAFlowACH); } else { @@ -1533,10 +1547,10 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, } } else if (SELECT_CASE_var == ZOAM_IAQP) { if (state.dataGlobal->DoingSizing) { - DSOAFlowPeople = Zone(ActualZoneNum).TotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; + DSOAFlowPeople = nomTotOccupants * OARequirements(DSOAPtr).OAFlowPerPerson; DSOAFlowPerZone = OARequirements(DSOAPtr).OAFlowPerZone; - DSOAFlowPerArea = OARequirements(DSOAPtr).OAFlowPerArea * Zone(ActualZoneNum).FloorArea; - DSOAFlowACH = OARequirements(DSOAPtr).OAFlowACH * Zone(ActualZoneNum).Volume / 3600.0; + DSOAFlowPerArea = OARequirements(DSOAPtr).OAFlowPerArea * floorArea; + DSOAFlowACH = OARequirements(DSOAPtr).OAFlowACH * volume / 3600.0; OAVolumeFlowRate = DSOAFlowPeople + DSOAFlowPerZone + DSOAFlowPerArea + DSOAFlowACH; } else { OAVolumeFlowRate = state.dataContaminantBalance->ZoneSysContDemand(ActualZoneNum).OutputRequiredToCO2SP / state.dataEnvrn->StdRhoAir; @@ -1545,24 +1559,27 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, } else if (SELECT_CASE_var == ZOAM_ProportionalControlSchOcc || SELECT_CASE_var == ZOAM_ProportionalControlDesOcc) { ZoneOAPeople = 0.0; if (OARequirements(DSOAPtr).OAFlowMethod != ZOAM_ProportionalControlDesOcc) { - ZoneOAPeople = state.dataHeatBal->ZoneIntGain(ActualZoneNum).NOFOCC * Zone(ActualZoneNum).Multiplier * - Zone(ActualZoneNum).ListMultiplier * OARequirements(DSOAPtr).OAFlowPerPerson; + ZoneOAPeople = + curNumOccupants * Zone(ActualZoneNum).Multiplier * Zone(ActualZoneNum).ListMultiplier * OARequirements(DSOAPtr).OAFlowPerPerson; } else { - ZoneOAPeople = Zone(ActualZoneNum).TotOccupants * Zone(ActualZoneNum).Multiplier * Zone(ActualZoneNum).ListMultiplier * - OARequirements(DSOAPtr).OAFlowPerPerson; + ZoneOAPeople = + nomTotOccupants * Zone(ActualZoneNum).Multiplier * Zone(ActualZoneNum).ListMultiplier * OARequirements(DSOAPtr).OAFlowPerPerson; CO2PeopleGeneration = 0.0; if (OARequirements(DSOAPtr).OAFlowMethod == ZOAM_ProportionalControlDesOcc) { // Accumulate CO2 generation from people at design occupancy and current activity level - for (PeopleNum = 1; PeopleNum <= state.dataHeatBal->TotPeople; ++PeopleNum) { - if (state.dataHeatBal->People(PeopleNum).ZonePtr != ActualZoneNum) continue; + for (int PeopleNum = 1; PeopleNum <= state.dataHeatBal->TotPeople; ++PeopleNum) { + if (present(spaceNum)) { + if (state.dataHeatBal->People(PeopleNum).spaceIndex != spaceNum) continue; + } else { + if (state.dataHeatBal->People(PeopleNum).ZonePtr != ActualZoneNum) continue; + } CO2PeopleGeneration += state.dataHeatBal->People(PeopleNum).NumberOfPeople * state.dataHeatBal->People(PeopleNum).CO2RateFactor * GetCurrentScheduleValue(state, state.dataHeatBal->People(PeopleNum).ActivityLevelPtr); } } } - ZoneOAArea = Zone(ActualZoneNum).FloorArea * Zone(ActualZoneNum).Multiplier * Zone(ActualZoneNum).ListMultiplier * - OARequirements(DSOAPtr).OAFlowPerArea; + ZoneOAArea = floorArea * Zone(ActualZoneNum).Multiplier * Zone(ActualZoneNum).ListMultiplier * OARequirements(DSOAPtr).OAFlowPerArea; ZoneOAMin = ZoneOAArea; ZoneOAMax = (ZoneOAArea + ZoneOAPeople); if (Zone(ActualZoneNum).ZoneContamControllerSchedIndex > 0.0) { diff --git a/src/EnergyPlus/DataZoneEquipment.hh b/src/EnergyPlus/DataZoneEquipment.hh index 1149647e29d..a9053476e36 100644 --- a/src/EnergyPlus/DataZoneEquipment.hh +++ b/src/EnergyPlus/DataZoneEquipment.hh @@ -474,8 +474,9 @@ namespace DataZoneEquipment { int ActualZoneNum, // Zone index bool UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy bool UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object - Optional_bool_const PerPersonNotSet = _, // when calculation should not include occupants (e.g., dual duct) - Optional_bool_const MaxOAVolFlowFlag = _ // TRUE when calculation uses occupancy schedule (e.g., dual duct) + Optional_bool_const PerPersonNotSet = _, // when calculation should not include occupants (e.g., dual duct) + Optional_bool_const MaxOAVolFlowFlag = _, // TRUE when calculation uses occupancy schedule (e.g., dual duct) + Optional_int_const spaceNum = _ // Space index (if applicable) ); int GetZoneEquipControlledZoneNum(EnergyPlusData &state, int const ZoneEquipTypeNum, std::string const &EquipmentName); diff --git a/src/EnergyPlus/HVACFourPipeBeam.cc b/src/EnergyPlus/HVACFourPipeBeam.cc index 5f89dfc1a0f..c07456d581d 100644 --- a/src/EnergyPlus/HVACFourPipeBeam.cc +++ b/src/EnergyPlus/HVACFourPipeBeam.cc @@ -855,7 +855,7 @@ namespace FourPipeBeam { Real64 minFlow(0.0); Real64 maxFlowCool(0.0); minFlow = std::min(state.dataEnvrn->StdRhoAir * originalTermUnitSizeMaxVDot, - state.dataSize->TermUnitFinalZoneSizing(state.dataSize->CurTermUnitSizingNum).DesOAFlow * state.dataEnvrn->StdRhoAir); + state.dataSize->TermUnitFinalZoneSizing(state.dataSize->CurTermUnitSizingNum).MinOA * state.dataEnvrn->StdRhoAir); minFlow = std::max(0.0, minFlow); // max flow is as if the air supply was sufficient to provide all the conditioning @@ -960,7 +960,7 @@ namespace FourPipeBeam { // make sure this is higher than the zone OA requirement this->mDotDesignPrimAir = std::max(this->mDotDesignPrimAir, - state.dataSize->TermUnitFinalZoneSizing(state.dataSize->CurTermUnitSizingNum).DesOAFlow * state.dataEnvrn->StdRhoAir); + state.dataSize->TermUnitFinalZoneSizing(state.dataSize->CurTermUnitSizingNum).MinOA * state.dataEnvrn->StdRhoAir); this->vDotDesignPrimAir = this->mDotDesignPrimAir / state.dataEnvrn->StdRhoAir; this->totBeamLength = this->vDotDesignPrimAir / this->vDotNormRatedPrimAir; if (this->vDotDesignCWWasAutosized) { diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index f97c9666a6d..fff88129354 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -811,11 +811,19 @@ namespace InternalHeatGains { state.dataHeatBal->People(Loop).NomMinNumberPeople = state.dataHeatBal->People(Loop).NumberOfPeople * SchMin; state.dataHeatBal->People(Loop).NomMaxNumberPeople = state.dataHeatBal->People(Loop).NumberOfPeople * SchMax; - if (state.dataHeatBal->People(Loop).ZonePtr > 0) { - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).TotOccupants += - state.dataHeatBal->People(Loop).NumberOfPeople; + if (zoneNum > 0) { + state.dataHeatBal->Zone(zoneNum).TotOccupants += state.dataHeatBal->People(Loop).NumberOfPeople; + // Note that min/max occupants are non-coincident + state.dataHeatBal->Zone(zoneNum).minOccupants += state.dataHeatBal->People(Loop).NomMinNumberPeople; + state.dataHeatBal->Zone(zoneNum).maxOccupants += state.dataHeatBal->People(Loop).NomMaxNumberPeople; } + if (spaceNum > 0) { + state.dataHeatBal->space(spaceNum).totOccupants += state.dataHeatBal->People(Loop).NumberOfPeople; + // Note that min/max occupants are non-coincident + state.dataHeatBal->space(spaceNum).minOccupants += state.dataHeatBal->People(Loop).NomMinNumberPeople; + state.dataHeatBal->space(spaceNum).maxOccupants += state.dataHeatBal->People(Loop).NomMaxNumberPeople; + } state.dataHeatBal->People(Loop).FractionRadiant = IHGNumbers(4); state.dataHeatBal->People(Loop).FractionConvected = 1.0 - state.dataHeatBal->People(Loop).FractionRadiant; if (Item1 == 1) { diff --git a/src/EnergyPlus/SizingManager.cc b/src/EnergyPlus/SizingManager.cc index 5309861aeaa..4eb0d77eaa9 100644 --- a/src/EnergyPlus/SizingManager.cc +++ b/src/EnergyPlus/SizingManager.cc @@ -3033,10 +3033,6 @@ void GetZoneSizingInput(EnergyPlusData &state) OAIndex = UtilityRoutines::FindItemInList(state.dataSize->ZoneSizingInput(ZoneSizIndex).DesignSpecOAObjName, state.dataSize->OARequirements); if (OAIndex > 0) { - state.dataSize->ZoneSizingInput(ZoneSizIndex).OADesMethod = state.dataSize->OARequirements(OAIndex).OAFlowMethod; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlowPPer = state.dataSize->OARequirements(OAIndex).OAFlowPerPerson; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlowPerArea = state.dataSize->OARequirements(OAIndex).OAFlowPerArea; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlow = state.dataSize->OARequirements(OAIndex).OAFlowPerZone; state.dataSize->ZoneSizingInput(ZoneSizIndex).ZoneDesignSpecOAIndex = OAIndex; } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataIPShortCut->cAlphaArgs(1) + "\", invalid data."); @@ -3045,11 +3041,7 @@ void GetZoneSizingInput(EnergyPlusData &state) "\"."); ErrorsFound = true; } - } else { // If no design spec object specified, i.e. no OA, then set OA method to None as default but flows to 0 - state.dataSize->ZoneSizingInput(ZoneSizIndex).OADesMethod = 0; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlowPPer = 0.0; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlowPerArea = 0.0; - state.dataSize->ZoneSizingInput(ZoneSizIndex).DesOAFlow = 0.0; + } else { // If no design spec object specified, i.e. no OA, then leave ZoneDesignSpecOAIndex = 0 } // N7, \field Zone Heating Sizing Factor diff --git a/src/EnergyPlus/ZoneEquipmentManager.cc b/src/EnergyPlus/ZoneEquipmentManager.cc index 46d060a489e..52d6ef83c5e 100644 --- a/src/EnergyPlus/ZoneEquipmentManager.cc +++ b/src/EnergyPlus/ZoneEquipmentManager.cc @@ -791,7 +791,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) Real64 OAVolumeFlowRate; // outside air flow rate (m3/s) bool UseOccSchFlag; // flag to use occupancy schedule when calculating OA bool UseMinOASchFlag; // flag to use min OA schedule when calculating OA - int DSOAPtr; // index to DesignSpecification:OutdoorAir object for (ZoneSizIndex = 1; ZoneSizIndex <= state.dataSize->NumZoneSizingInput; ++ZoneSizIndex) { ZoneIndex = UtilityRoutines::FindItemInList(state.dataSize->ZoneSizingInput(ZoneSizIndex).ZoneName, state.dataHeatBal->Zone); @@ -885,10 +884,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatDesTempDiff = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatDesTempDiff; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).CoolDesHumRat = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolDesHumRat; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatDesHumRat; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).OADesMethod; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPPer; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPerArea; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlow; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolAirDesMethod; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatAirDesMethod; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesCoolAirFlow; @@ -920,11 +915,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatDesTempDiff = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatDesTempDiff; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).CoolDesHumRat = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolDesHumRat; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatDesHumRat; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).OADesMethod; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPPer; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPerArea = - state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPerArea; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlow; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolAirDesMethod; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatAirDesMethod = @@ -973,10 +963,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatDesTempDiff = state.dataSize->ZoneSizingInput(1).HeatDesTempDiff; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).CoolDesHumRat = state.dataSize->ZoneSizingInput(1).CoolDesHumRat; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(1).HeatDesHumRat; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(1).OADesMethod; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(1).DesOAFlowPPer; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(1).DesOAFlowPerArea; - state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(1).DesOAFlow; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(1).CoolAirDesMethod; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(1).HeatAirDesMethod; state.dataSize->ZoneSizing(DesDayNum, CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(1).DesCoolAirFlow; @@ -1003,10 +989,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatDesTempDiff = state.dataSize->ZoneSizingInput(1).HeatDesTempDiff; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).CoolDesHumRat = state.dataSize->ZoneSizingInput(1).CoolDesHumRat; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(1).HeatDesHumRat; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(1).OADesMethod; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(1).DesOAFlowPPer; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(1).DesOAFlowPerArea; - state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(1).DesOAFlow; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(1).CoolAirDesMethod; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(1).HeatAirDesMethod; state.dataSize->CalcZoneSizing(DesDayNum, CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(1).DesCoolAirFlow; @@ -1053,10 +1035,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneAirDistributionIndex = state.dataSize->ZoneSizingInput(ZoneSizNum).ZoneAirDistributionIndex; state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex = state.dataSize->ZoneSizingInput(ZoneSizNum).ZoneDesignSpecOAIndex; - state.dataSize->FinalZoneSizing(CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).OADesMethod; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPPer; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPerArea; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlow; state.dataSize->FinalZoneSizing(CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolAirDesMethod; state.dataSize->FinalZoneSizing(CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatAirDesMethod; state.dataSize->FinalZoneSizing(CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesCoolAirFlow; @@ -1092,10 +1070,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->ZoneSizingInput(ZoneSizNum).ZoneAirDistributionIndex; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex = state.dataSize->ZoneSizingInput(ZoneSizNum).ZoneDesignSpecOAIndex; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).OADesMethod; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPPer; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlowPerArea; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesOAFlow; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).CoolAirDesMethod; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(ZoneSizNum).HeatAirDesMethod; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(ZoneSizNum).DesCoolAirFlow; @@ -1129,10 +1103,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->FinalZoneSizing(CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(1).HeatDesHumRat; state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneAirDistributionIndex = state.dataSize->ZoneSizingInput(1).ZoneAirDistributionIndex; state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex = state.dataSize->ZoneSizingInput(1).ZoneDesignSpecOAIndex; - state.dataSize->FinalZoneSizing(CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(1).OADesMethod; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(1).DesOAFlowPPer; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(1).DesOAFlowPerArea; - state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(1).DesOAFlow; state.dataSize->FinalZoneSizing(CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(1).CoolAirDesMethod; state.dataSize->FinalZoneSizing(CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(1).HeatAirDesMethod; state.dataSize->FinalZoneSizing(CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(1).DesCoolAirFlow; @@ -1163,10 +1133,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).HeatDesHumRat = state.dataSize->ZoneSizingInput(1).HeatDesHumRat; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).ZoneAirDistributionIndex = state.dataSize->ZoneSizingInput(1).ZoneAirDistributionIndex; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex = state.dataSize->ZoneSizingInput(1).ZoneDesignSpecOAIndex; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).OADesMethod = state.dataSize->ZoneSizingInput(1).OADesMethod; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = state.dataSize->ZoneSizingInput(1).DesOAFlowPPer; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = state.dataSize->ZoneSizingInput(1).DesOAFlowPerArea; - state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).DesOAFlow = state.dataSize->ZoneSizingInput(1).DesOAFlow; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).CoolAirDesMethod = state.dataSize->ZoneSizingInput(1).CoolAirDesMethod; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).HeatAirDesMethod = state.dataSize->ZoneSizingInput(1).HeatAirDesMethod; state.dataSize->CalcFinalZoneSizing(CtrlZoneNum).InpDesCoolAirFlow = state.dataSize->ZoneSizingInput(1).DesCoolAirFlow; @@ -1349,6 +1315,13 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) TotPeopleInZone = 0.0; Real64 ZoneMinOccupancy = 0.; ZoneIndex = state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum; + int DSOAPtr = state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex; // index to DesignSpecification:OutdoorAir object + if (DSOAPtr > 0) { + state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = + state.dataSize->OARequirements(DSOAPtr).desFlowPerZonePerson(state, ZoneIndex); + state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = + state.dataSize->OARequirements(DSOAPtr).desFlowPerZoneArea(state, ZoneIndex); + } for (PeopleNum = 1; PeopleNum <= state.dataHeatBal->TotPeople; ++PeopleNum) { if (state.dataHeatBal->People(PeopleNum).ZonePtr == state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum) { TotPeopleInZone += (state.dataHeatBal->People(PeopleNum).NumberOfPeople * @@ -1368,13 +1341,7 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) (state.dataHeatBal->Zone(ZoneIndex).FloorArea * state.dataHeatBal->Zone(state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum).Multiplier * state.dataHeatBal->Zone(state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum).ListMultiplier); - if (state.dataSize->FinalZoneSizing(CtrlZoneNum).OADesMethod == OAFlowPPer || - state.dataSize->FinalZoneSizing(CtrlZoneNum).OADesMethod == OAFlowSum || - state.dataSize->FinalZoneSizing(CtrlZoneNum).OADesMethod == OAFlowMax) { - OAFromPeople = state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer * TotPeopleInZone; - } else { - OAFromPeople = 0.0; - } + OAFromPeople = state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer * TotPeopleInZone; OAFromArea = state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea * state.dataSize->FinalZoneSizing(CtrlZoneNum).TotalZoneFloorArea; state.dataSize->FinalZoneSizing(CtrlZoneNum).TotPeopleInZone = TotPeopleInZone; state.dataSize->FinalZoneSizing(CtrlZoneNum).TotalOAFromPeople = OAFromPeople; @@ -1392,7 +1359,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) // Calculate the design min OA flow rate for this zone UseOccSchFlag = false; UseMinOASchFlag = false; - DSOAPtr = state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex; state.dataZoneEquip->ZoneEquipConfig(CtrlZoneNum).ZoneDesignSpecOAIndex = DSOAPtr; // store for later use state.dataZoneEquip->ZoneEquipConfig(CtrlZoneNum).ZoneAirDistributionIndex = state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneAirDistributionIndex; // store for later use diff --git a/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc b/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc index 00b355fea97..6f3551934d1 100644 --- a/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc +++ b/tst/EnergyPlus/unit/ZoneEquipmentManager.unit.cc @@ -2200,7 +2200,6 @@ TEST_F(EnergyPlusFixture, ZoneEquipmentManager_RezeroZoneSizingArrays) thisSizingType.ZnCoolDgnSAMethod = 1; thisSizingType.ZnHeatDgnSAMethod = 1; thisSizingType.ZoneDesignSpecOAIndex = 1; - thisSizingType.OADesMethod = 1; thisSizingType.CoolAirDesMethod = 1; thisSizingType.HeatAirDesMethod = 1; thisSizingType.DOASControlStrategy = 1; @@ -2217,7 +2216,6 @@ TEST_F(EnergyPlusFixture, ZoneEquipmentManager_RezeroZoneSizingArrays) thisSizingType.HeatDesHumRat = 1.0; thisSizingType.DesOAFlowPPer = 1.0; thisSizingType.DesOAFlowPerArea = 1.0; - thisSizingType.DesOAFlow = 1.0; thisSizingType.InpDesCoolAirFlow = 1.0; thisSizingType.DesCoolMinAirFlowPerArea = 1.0; thisSizingType.DesCoolMinAirFlow = 1.0; @@ -2397,7 +2395,6 @@ TEST_F(EnergyPlusFixture, ZoneEquipmentManager_RezeroZoneSizingArrays) thisSizingType2.ZnCoolDgnSAMethod = 1; thisSizingType2.ZnHeatDgnSAMethod = 1; thisSizingType2.ZoneDesignSpecOAIndex = 1; - thisSizingType2.OADesMethod = 1; thisSizingType2.CoolAirDesMethod = 1; thisSizingType2.HeatAirDesMethod = 1; thisSizingType2.DOASControlStrategy = 1; @@ -2414,7 +2411,6 @@ TEST_F(EnergyPlusFixture, ZoneEquipmentManager_RezeroZoneSizingArrays) thisSizingType2.HeatDesHumRat = 1.0; thisSizingType2.DesOAFlowPPer = 1.0; thisSizingType2.DesOAFlowPerArea = 1.0; - thisSizingType2.DesOAFlow = 1.0; thisSizingType2.InpDesCoolAirFlow = 1.0; thisSizingType2.DesCoolMinAirFlowPerArea = 1.0; thisSizingType2.DesCoolMinAirFlow = 1.0; From 86d2bec03b6b4cc47f2a8120d6d219caac504e3e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sun, 8 Aug 2021 18:00:25 -0500 Subject: [PATCH 65/98] Space - repairs --- src/EnergyPlus/DataSizing.cc | 13 ++- src/EnergyPlus/DataSizing.hh | 28 +++--- src/EnergyPlus/DataZoneEquipment.cc | 2 - src/EnergyPlus/ZoneEquipmentManager.cc | 7 ++ testfiles/WaterSideEconomizer_PreCoolCoil.idf | 40 +++++++++ .../unit/AirflowNetworkBalanceManager.unit.cc | 2 + .../unit/OutputReportTabular.unit.cc | 89 +++++++++++++++++++ 7 files changed, 158 insertions(+), 23 deletions(-) diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index aee92c41753..c18f4f6f234 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -503,13 +503,12 @@ Real64 ZoneAirDistributionData::calculateEz(EnergyPlusData &state, int const Zon } Real64 OARequirementsData::calcOAFlowRate(EnergyPlusData &state, - int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object - int const ActualZoneNum, // Zone index - bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy - bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object - bool const PerPersonNotSet, // when calculation should not include occupants (e.g., dual duct) - bool const MaxOAVolFlowFlag, // TRUE when calculation uses occupancy schedule (e.g., dual duct) - int const spaceNum // Space index when calculating space-by-space + int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object + int const ActualZoneNum, // Zone index + bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy + bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object + bool const PerPersonNotSet, // when calculation should not include occupants (e.g., dual duct) + bool const MaxOAVolFlowFlag // TRUE when calculation uses occupancy schedule (e.g., dual duct) ) { if (this->numDSOA == 1) { diff --git a/src/EnergyPlus/DataSizing.hh b/src/EnergyPlus/DataSizing.hh index 13054b4b450..4cf30f1b76e 100644 --- a/src/EnergyPlus/DataSizing.hh +++ b/src/EnergyPlus/DataSizing.hh @@ -952,7 +952,7 @@ namespace DataSizing { struct OARequirementsData { - // Holds complet data for a single DesignSpecification:OutdoorAir object or + // Holds complete data for a single DesignSpecification:OutdoorAir object or // a list of indexes from a DesignSpecification:OutdoorAir:SpaceList object std::string Name; // Name of DesignSpecification:OutdoorAir or DesignSpecification:OutdoorAir:SpaceList object int numDSOA = 1; // Number of DesignSpecification:OutdoorAir objects for this instance @@ -964,22 +964,22 @@ namespace DataSizing { Real64 OAFlowPerArea = 0.0; // - OA requirement per zone area Real64 OAFlowPerZone = 0.0; // - OA requirement per zone Real64 OAFlowACH = 0.0; // - OA requirement per zone per hour - int OAFlowFracSchPtr = 0; // - Fraction schedule applied to total OA requirement - int OAPropCtlMinRateSchPtr = 0; // - Fraction schedule applied to Proportional Control Minimum Outdoor Air Flow Rate - int CO2MaxMinLimitErrorCount = 0; // Counter when max CO2 concentration < min CO2 concentration for SOAM_ProportionalControlSchOcc - int CO2MaxMinLimitErrorIndex = 0; // Index for max CO2 concentration < min CO2 concentration recurring error message for - // SOAM_ProportionalControlSchOcc - int CO2GainErrorCount = 0; // Counter when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc + int OAFlowFracSchPtr = DataGlobalConstants::ScheduleAlwaysOn; // - Fraction schedule applied to total OA requirement + int OAPropCtlMinRateSchPtr = + DataGlobalConstants::ScheduleAlwaysOn; // - Fraction schedule applied to Proportional Control Minimum Outdoor Air Flow Rate + int CO2MaxMinLimitErrorCount = 0; // Counter when max CO2 concentration < min CO2 concentration for SOAM_ProportionalControlSchOcc + int CO2MaxMinLimitErrorIndex = 0; // Index for max CO2 concentration < min CO2 concentration recurring error message for + // SOAM_ProportionalControlSchOcc + int CO2GainErrorCount = 0; // Counter when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc int CO2GainErrorIndex = 0; // Index for recurring error message when CO2 generation from people is zero for SOAM_ProportionalControlSchOcc Real64 calcOAFlowRate(EnergyPlusData &state, - int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object - int const ActualZoneNum, // Zone index - bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy - bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object - bool const PerPersonNotSet = false, // when calculation should not include occupants (e.g., dual duct) - bool const MaxOAVolFlowFlag = false, // TRUE when calculation uses occupancy schedule (e.g., dual duct) - int const spaceNum = 0 // Space index when calculating space-by-space + int const DSOAPtr, // Pointer to DesignSpecification:OutdoorAir object + int const ActualZoneNum, // Zone index + bool const UseOccSchFlag, // Zone occupancy schedule will be used instead of using total zone occupancy + bool const UseMinOASchFlag, // Use min OA schedule in DesignSpecification:OutdoorAir object + bool const PerPersonNotSet = false, // when calculation should not include occupants (e.g., dual duct) + bool const MaxOAVolFlowFlag = false // TRUE when calculation uses occupancy schedule (e.g., dual duct) ); Real64 desFlowPerZoneArea(EnergyPlusData &state, diff --git a/src/EnergyPlus/DataZoneEquipment.cc b/src/EnergyPlus/DataZoneEquipment.cc index 3b0a42316bf..03358781d22 100644 --- a/src/EnergyPlus/DataZoneEquipment.cc +++ b/src/EnergyPlus/DataZoneEquipment.cc @@ -1401,8 +1401,6 @@ Real64 CalcDesignSpecificationOutdoorAir(EnergyPlusData &state, Real64 DSOAFlowPerZone; // Outdoor air volume flow rate (m3/s) Real64 DSOAFlowPerArea; // Outdoor air volume flow rate based on zone floor area (m3/s) Real64 DSOAFlowACH; // Outdoor air volume flow rate based on air changes per hour (m3/s) - Real64 PeopleCount; // total count of people in people objects - int Loop; // index counter in LOOP bool PerPersonModeNotSet; bool MaxOAFlag; Real64 ZoneOAPeople; // Zone OA flow rate based on number of occupants [m3/s] diff --git a/src/EnergyPlus/ZoneEquipmentManager.cc b/src/EnergyPlus/ZoneEquipmentManager.cc index 52d6ef83c5e..10999550e09 100644 --- a/src/EnergyPlus/ZoneEquipmentManager.cc +++ b/src/EnergyPlus/ZoneEquipmentManager.cc @@ -792,6 +792,13 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) bool UseOccSchFlag; // flag to use occupancy schedule when calculating OA bool UseMinOASchFlag; // flag to use min OA schedule when calculating OA + // TODO MJW: Punt for now, sometimes unit test will get here and need these to be allocated, but simulations need them sooner + if (!state.dataHeatBal->ZoneIntGain.allocated()) { + state.dataHeatBal->ZoneIntGain.allocate(state.dataGlobal->NumOfZones); + state.dataHeatBal->spaceIntGain.allocate(state.dataGlobal->numSpaces); + state.dataHeatBal->spaceIntGainDevices.allocate(state.dataGlobal->numSpaces); + } + for (ZoneSizIndex = 1; ZoneSizIndex <= state.dataSize->NumZoneSizingInput; ++ZoneSizIndex) { ZoneIndex = UtilityRoutines::FindItemInList(state.dataSize->ZoneSizingInput(ZoneSizIndex).ZoneName, state.dataHeatBal->Zone); if (ZoneIndex == 0) { diff --git a/testfiles/WaterSideEconomizer_PreCoolCoil.idf b/testfiles/WaterSideEconomizer_PreCoolCoil.idf index 073adb9da2a..e7902275742 100644 --- a/testfiles/WaterSideEconomizer_PreCoolCoil.idf +++ b/testfiles/WaterSideEconomizer_PreCoolCoil.idf @@ -670,6 +670,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -686,6 +687,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -702,6 +704,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -718,6 +721,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -734,6 +738,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -750,6 +755,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -766,6 +772,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -782,6 +789,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -798,6 +806,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -814,6 +823,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -893,6 +903,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -959,6 +970,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -975,6 +987,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -991,6 +1004,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1007,6 +1021,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1023,6 +1038,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1102,6 +1118,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1133,6 +1150,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1149,6 +1167,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1165,6 +1184,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1181,6 +1201,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1197,6 +1218,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1276,6 +1298,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1322,6 +1345,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1338,6 +1362,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1354,6 +1379,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1370,6 +1396,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1386,6 +1413,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1465,6 +1493,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1496,6 +1525,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1512,6 +1542,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1528,6 +1559,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1544,6 +1576,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1560,6 +1593,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1639,6 +1673,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1655,6 +1690,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1671,6 +1707,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1687,6 +1724,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1703,6 +1741,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1719,6 +1758,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index e6ad0b09226..c18fa6c8354 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -23938,6 +23938,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_TestReferenceConditionsLe " Wall, !- Surface Type", " PARTITION, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", @@ -23953,6 +23954,7 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_TestReferenceConditionsLe " Wall, !- Surface Type", " PARTITION, !- Construction Name", " WEST_ZONE, !- Zone Name", + " , !- Space Name", " Outdoors, !- Outside Boundary Condition", " , !- Outside Boundary Condition Object", " SunExposed, !- Sun Exposure", diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 4ee3f0fa575..1b2890b41bb 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6269,34 +6269,70 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->ZoneElectric.allocate(state->dataHeatBal->TotElecEquip); state->dataHeatBal->Lights(1).ZonePtr = 1; + state->dataHeatBal->Lights(1).spacePtrs.allocate(1); + state->dataHeatBal->Lights(1).spacePtrs(1) = 1; + state->dataHeatBal->Lights(1).spaceFracs.allocate(1); + state->dataHeatBal->Lights(1).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(1).DesignLevel = 1000.0; state->dataHeatBal->Lights(2).ZonePtr = 2; + state->dataHeatBal->Lights(2).spacePtrs.allocate(1); + state->dataHeatBal->Lights(2).spacePtrs(1) = 2; + state->dataHeatBal->Lights(2).spaceFracs.allocate(1); + state->dataHeatBal->Lights(2).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(2).DesignLevel = 100.0; state->dataHeatBal->Lights(3).ZonePtr = 3; + state->dataHeatBal->Lights(3).spacePtrs.allocate(1); + state->dataHeatBal->Lights(3).spacePtrs(1) = 3; + state->dataHeatBal->Lights(3).spaceFracs.allocate(1); + state->dataHeatBal->Lights(3).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(3).DesignLevel = 10.0; state->dataHeatBal->People(1).ZonePtr = 1; + state->dataHeatBal->People(1).spaceIndex = 1; state->dataHeatBal->People(1).NumberOfPeople = 10.0; state->dataHeatBal->People(2).ZonePtr = 2; + state->dataHeatBal->People(2).spaceIndex = 2; state->dataHeatBal->People(2).NumberOfPeople = 5.0; state->dataHeatBal->People(3).ZonePtr = 3; + state->dataHeatBal->People(3).spaceIndex = 3; state->dataHeatBal->People(3).NumberOfPeople = 1.0; state->dataHeatBal->ZoneElectric(1).ZonePtr = 1; + state->dataHeatBal->ZoneElectric(1).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(1).spacePtrs(1) = 1; + state->dataHeatBal->ZoneElectric(1).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(1).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(1).DesignLevel = 500.0; state->dataHeatBal->ZoneElectric(2).ZonePtr = 2; + state->dataHeatBal->ZoneElectric(2).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(2).spacePtrs(1) = 2; + state->dataHeatBal->ZoneElectric(2).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(2).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(2).DesignLevel = 50.0; state->dataHeatBal->ZoneElectric(3).ZonePtr = 3; + state->dataHeatBal->ZoneElectric(3).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(3).spacePtrs(1) = 3; + state->dataHeatBal->ZoneElectric(3).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(3).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(3).DesignLevel = 5.0; // zone state->dataGlobal->NumOfZones = 3; + state->dataGlobal->numSpaces = 3; + state->dataGlobal->numSpaceTypes = 1; + state->dataHeatBal->spaceTypes.allocate(state->dataGlobal->numSpaceTypes); + state->dataHeatBal->spaceTypes(1) = "General"; state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); + state->dataHeatBal->space.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone(1).Name = "PartofTot Conditioned Zone"; + state->dataHeatBal->space(1).Name = "PartofTot Conditioned Zone"; + state->dataHeatBal->space(1).spaceTypeNum = 1; state->dataHeatBal->Zone(1).SystemZoneNodeNumber = 1; // Conditioned state->dataHeatBal->Zone(1).isPartOfTotalArea = true; state->dataHeatBal->Zone(1).Multiplier = 1.; state->dataHeatBal->Zone(1).ListMultiplier = 1.; + state->dataHeatBal->Zone(1).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(1).spaceIndexes(1) = 1; // 10x10x2 state->dataHeatBal->Zone(1).FloorArea = 1000.; state->dataHeatBal->Zone(1).Volume = 2000.; @@ -6305,10 +6341,14 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->Zone(1).ExtWindowArea = state->dataSurface->Surface(3).GrossArea + state->dataSurface->Surface(4).GrossArea; state->dataHeatBal->Zone(2).Name = "PartofTot Unconditioned Zone"; + state->dataHeatBal->space(2).Name = "PartofTot Unconditioned Zone"; + state->dataHeatBal->space(2).spaceTypeNum = 1; state->dataHeatBal->Zone(2).SystemZoneNodeNumber = 0; // Unconditioned state->dataHeatBal->Zone(2).isPartOfTotalArea = true; state->dataHeatBal->Zone(2).Multiplier = 1.; state->dataHeatBal->Zone(2).ListMultiplier = 1.; + state->dataHeatBal->Zone(2).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(2).spaceIndexes(1) = 2; // 10x10x2 state->dataHeatBal->Zone(2).FloorArea = 100.; state->dataHeatBal->Zone(2).Volume = 200.; @@ -6317,10 +6357,14 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->Zone(2).ExtWindowArea = 0.0; state->dataHeatBal->Zone(3).Name = "NOT PartofTot Conditioned Zone"; + state->dataHeatBal->space(3).Name = "NOT PartofTot Conditioned Zone"; + state->dataHeatBal->space(3).spaceTypeNum = 1; state->dataHeatBal->Zone(3).SystemZoneNodeNumber = 1; // Conditioned state->dataHeatBal->Zone(3).isPartOfTotalArea = false; state->dataHeatBal->Zone(3).Multiplier = 1.; state->dataHeatBal->Zone(3).ListMultiplier = 1.; + state->dataHeatBal->Zone(3).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(3).spaceIndexes(1) = 3; // 10x10x2 state->dataHeatBal->Zone(3).FloorArea = 10.; state->dataHeatBal->Zone(3).Volume = 20.; @@ -9269,34 +9313,71 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->ZoneElectric.allocate(state->dataHeatBal->TotElecEquip); state->dataHeatBal->Lights(1).ZonePtr = 1; + state->dataHeatBal->Lights(1).spacePtrs.allocate(1); + state->dataHeatBal->Lights(1).spacePtrs(1) = 1; + state->dataHeatBal->Lights(1).spaceFracs.allocate(1); + state->dataHeatBal->Lights(1).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(1).DesignLevel = 1000.0; state->dataHeatBal->Lights(2).ZonePtr = 2; + state->dataHeatBal->Lights(2).spacePtrs.allocate(1); + state->dataHeatBal->Lights(2).spacePtrs(1) = 2; + state->dataHeatBal->Lights(2).spaceFracs.allocate(1); + state->dataHeatBal->Lights(2).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(2).DesignLevel = 100.0; state->dataHeatBal->Lights(3).ZonePtr = 3; + state->dataHeatBal->Lights(3).spacePtrs.allocate(1); + state->dataHeatBal->Lights(3).spacePtrs(1) = 3; + state->dataHeatBal->Lights(3).spaceFracs.allocate(1); + state->dataHeatBal->Lights(3).spaceFracs(1) = 1.0; state->dataHeatBal->Lights(3).DesignLevel = 10.0; state->dataHeatBal->People(1).ZonePtr = 1; + state->dataHeatBal->People(1).spaceIndex = 1; state->dataHeatBal->People(1).NumberOfPeople = 10.0; state->dataHeatBal->People(2).ZonePtr = 2; + state->dataHeatBal->People(2).spaceIndex = 2; state->dataHeatBal->People(2).NumberOfPeople = 5.0; state->dataHeatBal->People(3).ZonePtr = 3; + state->dataHeatBal->People(3).spaceIndex = 3; state->dataHeatBal->People(3).NumberOfPeople = 1.0; state->dataHeatBal->ZoneElectric(1).ZonePtr = 1; + state->dataHeatBal->ZoneElectric(1).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(1).spacePtrs(1) = 1; + state->dataHeatBal->ZoneElectric(1).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(1).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(1).DesignLevel = 500.0; state->dataHeatBal->ZoneElectric(2).ZonePtr = 2; + state->dataHeatBal->ZoneElectric(2).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(2).spacePtrs(1) = 2; + state->dataHeatBal->ZoneElectric(2).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(2).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(2).DesignLevel = 50.0; state->dataHeatBal->ZoneElectric(3).ZonePtr = 3; + state->dataHeatBal->ZoneElectric(3).spacePtrs.allocate(1); + state->dataHeatBal->ZoneElectric(3).spacePtrs(1) = 3; + state->dataHeatBal->ZoneElectric(3).spaceFracs.allocate(1); + state->dataHeatBal->ZoneElectric(3).spaceFracs(1) = 1.0; state->dataHeatBal->ZoneElectric(3).DesignLevel = 5.0; // zone state->dataGlobal->NumOfZones = 3; + state->dataGlobal->numSpaces = 3; + state->dataGlobal->numSpaceTypes = 1; + state->dataHeatBal->spaceTypes.allocate(state->dataGlobal->numSpaceTypes); + state->dataHeatBal->spaceTypes(1) = "General"; + state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); + state->dataHeatBal->space.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone(1).Name = "PartofTot Conditioned Zone"; state->dataHeatBal->Zone(1).SystemZoneNodeNumber = 1; // Conditioned state->dataHeatBal->Zone(1).isPartOfTotalArea = true; state->dataHeatBal->Zone(1).Multiplier = 1.; state->dataHeatBal->Zone(1).ListMultiplier = 1.; + state->dataHeatBal->space(1).Name = "PartofTot Conditioned Zone"; + state->dataHeatBal->space(1).spaceTypeNum = 1; + state->dataHeatBal->Zone(1).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(1).spaceIndexes(1) = 1; // 10x10x2 state->dataHeatBal->Zone(1).FloorArea = 1000.; state->dataHeatBal->Zone(1).Volume = 2000.; @@ -9309,6 +9390,10 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->Zone(2).isPartOfTotalArea = true; state->dataHeatBal->Zone(2).Multiplier = 1.; state->dataHeatBal->Zone(2).ListMultiplier = 1.; + state->dataHeatBal->space(2).Name = "PartofTot Unconditioned Zone"; + state->dataHeatBal->space(2).spaceTypeNum = 1; + state->dataHeatBal->Zone(2).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(2).spaceIndexes(1) = 2; // 10x10x2 state->dataHeatBal->Zone(2).FloorArea = 100.; state->dataHeatBal->Zone(2).Volume = 200.; @@ -9321,6 +9406,10 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->Zone(3).isPartOfTotalArea = false; state->dataHeatBal->Zone(3).Multiplier = 1.; state->dataHeatBal->Zone(3).ListMultiplier = 1.; + state->dataHeatBal->space(3).Name = "NOT PartofTot Conditioned Zone"; + state->dataHeatBal->space(3).spaceTypeNum = 1; + state->dataHeatBal->Zone(3).spaceIndexes.allocate(1); + state->dataHeatBal->Zone(3).spaceIndexes(1) = 3; // 10x10x2 state->dataHeatBal->Zone(3).FloorArea = 10.; state->dataHeatBal->Zone(3).Volume = 20.; From de24f914a94477872343e70805600b9c79d682da Mon Sep 17 00:00:00 2001 From: mjwitte Date: Sun, 8 Aug 2021 18:09:46 -0500 Subject: [PATCH 66/98] PTAC unit test formatting --- .../unit/PackagedTerminalHeatPump.unit.cc | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc b/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc index 0bb52a3ff97..5debca41c03 100644 --- a/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc +++ b/tst/EnergyPlus/unit/PackagedTerminalHeatPump.unit.cc @@ -3850,16 +3850,16 @@ TEST_F(EnergyPlusFixture, PTACDrawAirfromReturnNodeAndPlenum_Test) state->dataGlobal->CurrentTime = 12.0; ProcessScheduleInput(*state); // read schedules - //HeatBalanceManager::GetZoneData(*state, ErrorsFound); - //EXPECT_FALSE(ErrorsFound); - //HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); - //EXPECT_FALSE(ErrorsFound); - //HeatBalanceManager::GetMaterialData(*state, ErrorsFound); - //EXPECT_FALSE(ErrorsFound); - //HeatBalanceManager::GetConstructData(*state, ErrorsFound); - //EXPECT_FALSE(ErrorsFound); - //SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); - //EXPECT_FALSE(ErrorsFound); + // HeatBalanceManager::GetZoneData(*state, ErrorsFound); + // EXPECT_FALSE(ErrorsFound); + // HeatBalanceManager::GetWindowGlassSpectralData(*state, ErrorsFound); + // EXPECT_FALSE(ErrorsFound); + // HeatBalanceManager::GetMaterialData(*state, ErrorsFound); + // EXPECT_FALSE(ErrorsFound); + // HeatBalanceManager::GetConstructData(*state, ErrorsFound); + // EXPECT_FALSE(ErrorsFound); + // SurfaceGeometry::GetGeometryParameters(*state, ErrorsFound); + // EXPECT_FALSE(ErrorsFound); HeatBalanceManager::GetHeatBalanceInput(*state); HeatBalanceManager::AllocateHeatBalArrays(*state); From f7531f478ed395af4f46176e65ac2825a861993c Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 9 Aug 2021 10:01:42 -0500 Subject: [PATCH 67/98] Space - add Space Name to new test file --- testfiles/DOAToPTAC_DrawReturnAir.idf | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/testfiles/DOAToPTAC_DrawReturnAir.idf b/testfiles/DOAToPTAC_DrawReturnAir.idf index 57150025c21..d085f3d6624 100644 --- a/testfiles/DOAToPTAC_DrawReturnAir.idf +++ b/testfiles/DOAToPTAC_DrawReturnAir.idf @@ -777,6 +777,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -793,6 +794,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -809,6 +811,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -825,6 +828,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -841,6 +845,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -857,6 +862,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -873,6 +879,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -889,6 +896,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -905,6 +913,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -921,6 +930,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -937,6 +947,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -953,6 +964,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -969,6 +981,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -985,6 +998,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1001,6 +1015,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1017,6 +1032,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1033,6 +1049,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1049,6 +1066,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1065,6 +1083,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1081,6 +1100,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1097,6 +1117,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1113,6 +1134,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1129,6 +1151,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1145,6 +1168,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1161,6 +1185,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1177,6 +1202,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1193,6 +1219,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1209,6 +1236,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1225,6 +1253,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1241,6 +1270,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1257,6 +1287,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1273,6 +1304,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1289,6 +1321,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1305,6 +1338,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1321,6 +1355,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1337,6 +1372,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1353,6 +1389,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1369,6 +1406,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1385,6 +1423,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1401,6 +1440,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure From e00fe1c036f87d24a09a77cf52cd439582db7d1e Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 9 Aug 2021 10:42:14 -0500 Subject: [PATCH 68/98] Space - desFlowPerZoneArea and desFlowPerZonePerson more --- src/EnergyPlus/DataSizing.cc | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index c18f4f6f234..9066c05b4af 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -534,8 +534,11 @@ Real64 OARequirementsData::desFlowPerZoneArea(EnergyPlusData &state, int const actualZoneNum // Zone index ) { + Real64 desFlowPA = 0.0; if (this->numDSOA == 1) { - return this->OAFlowPerArea; + if (this->OAFlowMethod != DataSizing::OAFlowPPer && this->OAFlowMethod != DataSizing::OAFlow && this->OAFlowMethod != DataSizing::OAFlowACH) { + desFlowPA = this->OAFlowPerArea; + } } else { Real64 sumAreaOA = 0.0; for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { @@ -545,27 +548,45 @@ Real64 OARequirementsData::desFlowPerZoneArea(EnergyPlusData &state, sumAreaOA += this->OAFlowPerArea * spaceArea; } } - return sumAreaOA / state.dataHeatBal->Zone(actualZoneNum).FloorArea; + if (state.dataHeatBal->Zone(actualZoneNum).FloorArea) { + desFlowPA = sumAreaOA / state.dataHeatBal->Zone(actualZoneNum).FloorArea; + } } + return desFlowPA; } Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, int const actualZoneNum // Zone index ) { + Real64 desFlowPP = 0.0; if (this->numDSOA == 1) { - return this->OAFlowPerPerson; + if (this->OAFlowMethod != DataSizing::OAFlowPerArea && this->OAFlowMethod != DataSizing::OAFlow && + this->OAFlowMethod != DataSizing::OAFlowACH) { + // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? + if (this->OAFlowMethod != DataSizing::ZOAM_IAQP && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && + this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { + desFlowPP = this->OAFlowPerPerson; + } + } } else { Real64 sumPeopleOA = 0.0; for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { if (this->OAFlowMethod != DataSizing::OAFlowPerArea && this->OAFlowMethod != DataSizing::OAFlow && this->OAFlowMethod != DataSizing::OAFlowACH) { - Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).totOccupants; - sumPeopleOA += this->OAFlowPerPerson * spacePeople; + // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? + if (this->OAFlowMethod != DataSizing::ZOAM_IAQP && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && + this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { + Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).totOccupants; + sumPeopleOA += this->OAFlowPerPerson * spacePeople; + } } } - return sumPeopleOA / state.dataHeatBal->Zone(actualZoneNum).TotOccupants; + if (state.dataHeatBal->Zone(actualZoneNum).TotOccupants > 0.0) { + desFlowPP = sumPeopleOA / state.dataHeatBal->Zone(actualZoneNum).TotOccupants; + } } + return desFlowPP; } } // namespace EnergyPlus::DataSizing From 3e32ba133292ee7be43e929176717268e98f105d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 10 Aug 2021 10:55:34 -0500 Subject: [PATCH 69/98] Space - DesignSpecification:OutdoorAir:SpaceList input processing --- .../generate_epJSON_schema/modify_schema.py | 1 + src/EnergyPlus/DataSizing.cc | 6 +- src/EnergyPlus/DataSizing.hh | 2 +- src/EnergyPlus/SizingManager.cc | 89 +++++++++++++++---- src/EnergyPlus/ZoneEquipmentManager.cc | 12 +++ 5 files changed, 91 insertions(+), 19 deletions(-) diff --git a/scripts/dev/generate_epJSON_schema/modify_schema.py b/scripts/dev/generate_epJSON_schema/modify_schema.py index 0dca424119a..78c307aec90 100644 --- a/scripts/dev/generate_epJSON_schema/modify_schema.py +++ b/scripts/dev/generate_epJSON_schema/modify_schema.py @@ -126,6 +126,7 @@ def isInt(s): 'Wall:Detailed': 'vertices', 'Space': 'tags', 'SpaceList': 'spaces', + 'DesignSpecification:OutdoorAir:SpaceList' : 'space_specs' 'ZoneList': 'zones', 'Floor:Detailed': 'vertices', 'Shading:Building:Detailed': 'vertices', diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index 9066c05b4af..8b66096a34b 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -524,7 +524,7 @@ Real64 OARequirementsData::calcOAFlowRate(EnergyPlusData &state, UseMinOASchFlag, PerPersonNotSet, MaxOAVolFlowFlag, - this->dsoaSpaces(dsoaCount)); + this->dsoaSpaceIndexes(dsoaCount)); } return totOAFlowRate; } @@ -544,7 +544,7 @@ Real64 OARequirementsData::desFlowPerZoneArea(EnergyPlusData &state, for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { if (this->OAFlowMethod != DataSizing::OAFlowPPer && this->OAFlowMethod != DataSizing::OAFlow && this->OAFlowMethod != DataSizing::OAFlowACH) { - Real64 spaceArea = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).floorArea; + Real64 spaceArea = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).floorArea; sumAreaOA += this->OAFlowPerArea * spaceArea; } } @@ -577,7 +577,7 @@ Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? if (this->OAFlowMethod != DataSizing::ZOAM_IAQP && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { - Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaces(dsoaCount)).totOccupants; + Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).totOccupants; sumPeopleOA += this->OAFlowPerPerson * spacePeople; } } diff --git a/src/EnergyPlus/DataSizing.hh b/src/EnergyPlus/DataSizing.hh index 4cf30f1b76e..51841a9e408 100644 --- a/src/EnergyPlus/DataSizing.hh +++ b/src/EnergyPlus/DataSizing.hh @@ -958,7 +958,7 @@ namespace DataSizing { int numDSOA = 1; // Number of DesignSpecification:OutdoorAir objects for this instance EPVector dsoaIndexes; // Indexes to DesignSpecification:OutdoorAir objects (if this is a DSOA:SpaceList object) EPVector dsoaSpaceNames; // Names of spaces if this is a (if this is a DSOA:SpaceList object) - EPVector dsoaSpaces; // Indexes to Spaces (if this is a DSOA:SpaceList object) + EPVector dsoaSpaceIndexes; // Indexes to Spaces (if this is a DSOA:SpaceList object) int OAFlowMethod = 0; // - Method for OA flow calculation (Flow/Person, Flow/Zone, Flow/Area, FlowACH, Sum, Maximum) Real64 OAFlowPerPerson = 0.0; // - OA requirement per person Real64 OAFlowPerArea = 0.0; // - OA requirement per zone area diff --git a/src/EnergyPlus/SizingManager.cc b/src/EnergyPlus/SizingManager.cc index 4eb0d77eaa9..592c2164f8a 100644 --- a/src/EnergyPlus/SizingManager.cc +++ b/src/EnergyPlus/SizingManager.cc @@ -2200,8 +2200,6 @@ void GetOARequirements(EnergyPlusData &state) // SUBROUTINE INFORMATION: // AUTHOR R. Raustad - FSEC // DATE WRITTEN February 2010 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Obtains input data for the OA Requirements object and stores it in @@ -2212,22 +2210,17 @@ void GetOARequirements(EnergyPlusData &state) // This object requires only a name where the default values are assumed // if subsequent fields are not entered. - // Using/Aliasing using ScheduleManager::CheckScheduleValueMinMax; using ScheduleManager::GetScheduleIndex; using ScheduleManager::GetScheduleMaxValue; - // SUBROUTINE PARAMETER DEFINITIONS: static constexpr std::string_view RoutineName("GetOARequirements: "); // include trailing blank space - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumAlphas; // Number of Alphas for each GetObjectItem call - int NumNumbers; // Number of Numbers for each GetObjectItem call - int TotalArgs; // Total number of alpha and numeric arguments (max) for a - int IOStatus; // Used in GetObjectItem - int OAIndex; + int NumAlphas; // Number of Alphas for each GetObjectItem call + int NumNumbers; // Number of Numbers for each GetObjectItem call + int TotalArgs; // Total number of alpha and numeric arguments (max) for a + int IOStatus; // Used in GetObjectItem bool ErrorsFound(false); // If errors detected in input - // REAL(r64) :: CalcAmt std::string CurrentModuleObject; // for ease in getting objects Array1D_string Alphas; // Alpha input items for object @@ -2238,8 +2231,11 @@ void GetOARequirements(EnergyPlusData &state) Array1D_bool lNumericBlanks; // Logical array, numeric field input BLANK = .TRUE. CurrentModuleObject = "DesignSpecification:OutdoorAir"; - state.dataSize->NumOARequirements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + int numOARequirements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, TotalArgs, NumAlphas, NumNumbers); + std::string cCurrentModuleObject2 = "DesignSpecification:OutdoorAir:SpaceList"; + int numOARequirementsLists = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, cCurrentModuleObject2); + state.dataSize->NumOARequirements = numOARequirements + numOARequirementsLists; Alphas.allocate(NumAlphas); cAlphaFields.allocate(NumAlphas); @@ -2252,7 +2248,7 @@ void GetOARequirements(EnergyPlusData &state) state.dataSize->OARequirements.allocate(state.dataSize->NumOARequirements); // Start Loading the System Input - for (OAIndex = 1; OAIndex <= state.dataSize->NumOARequirements; ++OAIndex) { + for (int OAIndex = 1; OAIndex <= state.dataSize->NumOARequirements; ++OAIndex) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, @@ -2291,8 +2287,71 @@ void GetOARequirements(EnergyPlusData &state) lAlphaBlanks.deallocate(); lNumericBlanks.deallocate(); - if (ErrorsFound) { - ShowFatalError(state, std::string{RoutineName} + "Errors found in input. Preceding condition(s) cause termination."); + // DesignSpecification:OutdoorAir:SpaceList + auto &ip = state.dataInputProcessing->inputProcessor; + auto const instances = ip->epJSON.find(cCurrentModuleObject2); + if (instances != ip->epJSON.end()) { + auto const &objectSchemaProps = ip->getObjectSchemaProps(state, cCurrentModuleObject2); + auto &instancesValue = instances.value(); + int oaIndex = numOARequirements; // add lists to the end of the same array + + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + ++oaIndex; + auto const &objectFields = instance.value(); + auto &thisOAReq = state.dataSize->OARequirements(oaIndex); + thisOAReq.Name = UtilityRoutines::MakeUPPERCase(instance.key()); + ip->markObjectAsUsed(cCurrentModuleObject2, instance.key()); + + if (UtilityRoutines::FindItemInList(thisOAReq.Name, state.dataSize->OARequirements) > 0) { + ShowSevereError(state, + std::string(RoutineName) + cCurrentModuleObject2 + "=\"" + thisOAReq.Name + + "\": is a duplicate DesignSpecification:OutdoorAir name."); + ErrorsFound = true; + } + + // List of spaces and DSOA names + thisOAReq.numDSOA = 0; + auto extensibles = objectFields.find("space_specs"); + auto const &extensionSchemaProps = objectSchemaProps["space_specs"]["items"]["properties"]; + if (extensibles != objectFields.end()) { + auto extensiblesArray = extensibles.value(); + for (auto extensibleInstance : extensiblesArray) { + std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_name"); + int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); + if (thisSpaceNum > 0) { + thisOAReq.dsoaSpaceIndexes.emplace_back(thisSpaceNum); + } else { + ShowSevereError(state, std::string(RoutineName) + cCurrentModuleObject2 + "=" + thisOAReq.Name); + ShowContinueError(state, "Space Name =" + thisSpaceName + "not found."); + ErrorsFound = true; + } + // Check for duplicate spaces + for (int loop = 1; loop <= int(thisOAReq.dsoaSpaceIndexes.size()) - 1; ++loop) { + if (thisSpaceNum == thisOAReq.dsoaSpaceIndexes(loop)) { + ShowSevereError(state, + std::string(RoutineName) + cCurrentModuleObject2 + "=\"" + thisOAReq.Name + "\": Space Name " + + thisSpaceName + " appears more than once in list."); + ErrorsFound = true; + } + } + std::string thisDsoaName = + ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_design_specification_outdoor_air_object_name"); + int thisDsoaNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); + if (thisDsoaNum > 0) { + thisOAReq.dsoaSpaceIndexes.emplace_back(thisDsoaNum); + ++thisOAReq.numDSOA; + } else { + ShowSevereError(state, std::string(RoutineName) + cCurrentModuleObject2 + "=" + thisOAReq.Name); + ShowContinueError(state, "DesignSpecification:OutdoorAir =" + thisDsoaName + "not found."); + ErrorsFound = true; + } + } + } + } + + if (ErrorsFound) { + ShowFatalError(state, std::string{RoutineName} + "Errors found in input. Preceding condition(s) cause termination."); + } } } } diff --git a/src/EnergyPlus/ZoneEquipmentManager.cc b/src/EnergyPlus/ZoneEquipmentManager.cc index 10999550e09..a87c4d7258c 100644 --- a/src/EnergyPlus/ZoneEquipmentManager.cc +++ b/src/EnergyPlus/ZoneEquipmentManager.cc @@ -1324,6 +1324,18 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) ZoneIndex = state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum; int DSOAPtr = state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex; // index to DesignSpecification:OutdoorAir object if (DSOAPtr > 0) { + // If this is a DesignSpecification:OutdoorAir:SpaceList check to make sure spaces belong to this zone + if (state.dataSize->OARequirements(DSOAPtr).numDSOA > 1) { + for (int spaceNum : state.dataSize->OARequirements(DSOAPtr).dsoaSpaceIndexes) { + if (state.dataHeatBal->space(spaceNum).zoneNum != state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum) { + ShowSevereError( + state, "SetUpZoneSizingArrays: DesignSpecification:OutdoorAir:SpaceList=" + state.dataSize->OARequirements(DSOAPtr).Name); + ShowContinueError(state, "is invalid for Sizing:Zone for Zone=" + state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneName); + ShowFatalError(state, "All spaces in the list must be part of this zone."); + } + } + } + state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPPer = state.dataSize->OARequirements(DSOAPtr).desFlowPerZonePerson(state, ZoneIndex); state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = From dc8d216d17712a90b762c2b39b205f284f67675d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 10 Aug 2021 11:01:57 -0500 Subject: [PATCH 70/98] Space - Fix internal gains by space --- src/EnergyPlus/InternalHeatGains.cc | 104 +++++++++++++++++++--------- src/EnergyPlus/InternalHeatGains.hh | 9 ++- 2 files changed, 77 insertions(+), 36 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index fff88129354..d8a0a366c5a 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -8152,15 +8152,17 @@ namespace InternalHeatGains { state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGain = state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain; state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate = state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate; - SumInternalRadiationGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate); + int zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + SumInternalRadiationGainsByTypes(state, zoneNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate, spaceNum); state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGain = state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate * state.dataGlobal->TimeStepZoneSec; - SumInternalConvectionGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate); + SumInternalConvectionGainsByTypes( + state, zoneNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate, spaceNum); state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGain = state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate * state.dataGlobal->TimeStepZoneSec; - SumInternalLatentGainsByTypes(state, spaceNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate); + SumInternalLatentGainsByTypes(state, zoneNum, TradIntGainTypes, state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate, spaceNum); state.dataHeatBal->spaceRpt(spaceNum).TotLatentGain = state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate * state.dataGlobal->TimeStepZoneSec; @@ -8404,7 +8406,8 @@ namespace InternalHeatGains { void SumInternalConvectionGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumConvGainRate) + Real64 &SumConvGainRate, + int const spaceIndex) // space index pointer, sum gains only for this space { // SUBROUTINE INFORMATION: @@ -8417,16 +8420,27 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumConvGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { - continue; + // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . + if (spaceIndex > 0) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).ConvectGainRate; + } + } + } } - - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ConvectGainRate; + } else { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { + continue; + } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).ConvectGainRate; + } } } } @@ -8530,7 +8544,8 @@ namespace InternalHeatGains { void SumInternalRadiationGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumRadiationGainRate) + Real64 &SumRadiationGainRate, + int const spaceIndex) // space index pointer, sum gains only for this space { // SUBROUTINE INFORMATION: @@ -8543,15 +8558,27 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumRadiationGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { - continue; + // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . + if (spaceIndex > 0) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).RadiantGainRate; + } + } + } } - - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).RadiantGainRate; + } else { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { + continue; + } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).RadiantGainRate; + } } } } @@ -8612,9 +8639,9 @@ namespace InternalHeatGains { void SumInternalLatentGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumLatentGainRate) + Real64 &SumLatentGainRate, + int const spaceIndex) // space index pointer, sum gains only for this space { - // SUBROUTINE INFORMATION: // AUTHOR B. Griffith // DATE WRITTEN Dec. 2011 @@ -8625,16 +8652,27 @@ namespace InternalHeatGains { int NumberOfTypes = size(GainTypeARR); Real64 tmpSumLatentGainRate = 0.0; - for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { - continue; + // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . + if (spaceIndex > 0) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).LatentGainRate; + } + } + } } - - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - - if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).LatentGainRate; + } else { + for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices == 0) { + continue; + } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceNum).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceNum).device(DeviceNum).LatentGainRate; + } } } } diff --git a/src/EnergyPlus/InternalHeatGains.hh b/src/EnergyPlus/InternalHeatGains.hh index aed87776fcb..4b8472832ef 100644 --- a/src/EnergyPlus/InternalHeatGains.hh +++ b/src/EnergyPlus/InternalHeatGains.hh @@ -97,7 +97,8 @@ namespace InternalHeatGains { void SumInternalConvectionGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumConvGainRate); + Real64 &SumConvGainRate, + int const spaceIndex = 0); // space index pointer, sum gains only for this space int GetInternalGainDeviceIndex(EnergyPlusData &state, int const SpaceNum, // space index pointer for which space to sum gains for @@ -146,7 +147,8 @@ namespace InternalHeatGains { void SumInternalRadiationGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumRadiationGainRate); + Real64 &SumRadiationGainRate, + int const spaceIndex = 0); // space index pointer, sum gains only for this space void SumAllInternalLatentGains(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for @@ -160,7 +162,8 @@ namespace InternalHeatGains { void SumInternalLatentGainsByTypes(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for const Array1D_int &GainTypeARR, // variable length 1-d array of integer valued gain types - Real64 &SumLatentGainRate); + Real64 &SumLatentGainRate, + int const spaceIndex = 0); // space index pointer, sum gains only for this space void SumAllReturnAirLatentGains(EnergyPlusData &state, int const ZoneNum, // zone index pointer for which zone to sum gains for From 6a0e4d77fe9194457dcd6e4c9c69850ceb805e8a Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 10 Aug 2021 11:04:38 -0500 Subject: [PATCH 71/98] Space - Support floor-only spaces and fix space surf lists --- src/EnergyPlus/SurfaceGeometry.cc | 56 ++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 5 deletions(-) diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index f7c2c595cdf..3b5cd516d79 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2846,7 +2846,7 @@ namespace SurfaceGeometry { } } - // Assign Spaces to surfaces without one + // Assign Spaces to surfaces without one and build Space surface lists now that all of the sorting and space numbering is complete for (int surfNum = 1; surfNum <= state.dataSurface->TotSurfaces; ++surfNum) { auto &thisSurf = state.dataSurface->Surface(surfNum); if (!thisSurf.HeatTransSurf) continue; // ignore shading surfaces @@ -2854,9 +2854,9 @@ namespace SurfaceGeometry { int const numSpaces = state.dataHeatBal->Zone(thisSurf.Zone).numSpaces; int const lastSpaceForZone = state.dataHeatBal->Zone(thisSurf.Zone).spaceIndexes(numSpaces); thisSurf.spaceNum = lastSpaceForZone; - // Add to Space's list of surfaces - state.dataHeatBal->space(lastSpaceForZone).surfaces.emplace_back(surfNum); } + // Add to Space's list of surfaces + state.dataHeatBal->space(thisSurf.spaceNum).surfaces.emplace_back(surfNum); } // TODO MJW: Is this necessary? Check that all Spaces have at least one Surface @@ -3821,7 +3821,6 @@ namespace SurfaceGeometry { if (spaceNum != 0) { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).spaceNum = spaceNum; - state.dataHeatBal->space(spaceNum).surfaces.emplace_back(SurfNum); if (state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Zone != state.dataHeatBal->space(spaceNum).zoneNum) { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + @@ -4423,7 +4422,6 @@ namespace SurfaceGeometry { if (spaceNum != 0) { state.dataSurfaceGeometry->SurfaceTmp(SurfNum).spaceNum = spaceNum; - state.dataHeatBal->space(spaceNum).surfaces.emplace_back(SurfNum); } else { ShowSevereError(state, cCurrentModuleObject + "=\"" + state.dataSurfaceGeometry->SurfaceTmp(SurfNum).Name + "\", invalid " + @@ -14864,6 +14862,49 @@ namespace SurfaceGeometry { ShowContinueError(state, "For explicit details on each use, use Output:Diagnostics,DisplayExtraWarnings;"); } } + // Check for any spaces defined only by floor surface(s) and group them + for (auto const zone : state.dataHeatBal->Zone) { + int newEnclosureNum = 0; + for (int const spaceNum : zone.spaceIndexes) { + int spaceEnclosureNum = 0; + bool spaceHasOnlyFloors = false; + if (radiantSetup) { + spaceEnclosureNum = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; + } else { + spaceEnclosureNum = state.dataHeatBal->space(spaceNum).solarEnclosureNum; + } + if (spaceEnclosureNum == 0) { + spaceHasOnlyFloors = true; + for (int const surfNum : state.dataHeatBal->space(spaceNum).surfaces) { + if (state.dataSurface->Surface(surfNum).Class != SurfaceClass::Floor) { + spaceHasOnlyFloors = false; + break; + } + } + } + if (spaceEnclosureNum == 0 && spaceHasOnlyFloors) { + anyGroupedSpaces = true; + if (newEnclosureNum == 0) { + // Assign one new enclosure for all loose floors in this zone + ++enclosureNum; + newEnclosureNum = enclosureNum; + } + if (radiantSetup) { + state.dataHeatBal->space(spaceNum).radiantEnclosureNum = enclosureNum; + } else { + state.dataHeatBal->space(spaceNum).solarEnclosureNum = enclosureNum; + } + auto &thisEnclosure(Enclosures(enclosureNum)); + thisEnclosure.Name = state.dataHeatBal->space(spaceNum).Name; + thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(spaceNum).Name); + thisEnclosure.spaceNums.push_back(spaceNum); + thisEnclosure.FloorArea = state.dataHeatBal->space(spaceNum).floorArea; + thisEnclosure.ExtWindowArea = state.dataHeatBal->space(spaceNum).extWindowArea; + thisEnclosure.TotalSurfArea = state.dataHeatBal->space(spaceNum).totalSurfArea; + } + } + } + if (anyGroupedSpaces) { // All grouped spaces have been assigned to an enclosure, now assign remaining spaces for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { @@ -14916,6 +14957,11 @@ namespace SurfaceGeometry { state.dataViewFactor->NumOfSolarEnclosures = state.dataGlobal->numSpaces; } } + if (radiantSetup) { + assert(state.dataViewFactor->NumOfRadiantEnclosures <= int(Enclosures.size())); + } else { + assert(state.dataViewFactor->NumOfSolarEnclosures <= int(Enclosures.size())); + } // ToDo: For now, set the max and min enclosure numbers for each zone to be used in CalcInteriorRadExchange with ZoneToResimulate for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { From adb587db6bf1c171a12fc01aed85a8511283fb00 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 10 Aug 2021 15:03:24 -0500 Subject: [PATCH 72/98] Space - Enclosure refinements and fixes --- src/EnergyPlus/DataHeatBalance.hh | 8 +- src/EnergyPlus/HeatBalanceManager.cc | 8 +- src/EnergyPlus/HeatBalanceSurfaceManager.cc | 39 +++--- src/EnergyPlus/OutputReportTabular.cc | 24 ++-- src/EnergyPlus/SolarShading.cc | 126 ++++++++++---------- src/EnergyPlus/SurfaceGeometry.cc | 48 +++++--- 6 files changed, 135 insertions(+), 118 deletions(-) diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index f7a47bb24f6..e1ad612a272 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -2144,7 +2144,7 @@ struct HeatBalanceData : BaseGlobalStruct Array1D ZoneWinHeatLossRep; // = -ZoneWinHeatGain when ZoneWinHeatGain < 0 Array1D ZoneBmSolFrExtWinsRep; // Beam solar into zone from exterior windows [W] Array1D ZoneBmSolFrIntWinsRep; // Beam solar into zone from interior windows [W] - Array1D ZoneInitialDifSolReflW; // Initial diffuse solar in zone from ext and int windows reflected from interior surfaces [W] + Array1D EnclSolInitialDifSolReflW; // Initial diffuse solar in zone from ext and int windows reflected from interior surfaces [W] Array1D ZoneDifSolFrExtWinsRep; // Diffuse solar into zone from exterior windows [W] Array1D ZoneDifSolFrIntWinsRep; // Diffuse solar into zone from interior windows [W] Array1D ZoneOpaqSurfInsFaceCond; // Zone inside face opaque surface conduction (W) @@ -2227,7 +2227,7 @@ struct HeatBalanceData : BaseGlobalStruct Array1D EnclSolVMULT; // 1/(Sum Of A Zone's Inside Surfaces Area*Absorptance) Array1D EnclRadQThermalRad; // TOTAL THERMAL RADIATION ADDED TO ZONE or Radiant Enclosure (group of zones) Array1D EnclRadThermAbsMult; // EnclRadThermAbsMult - MULTIPLIER TO COMPUTE 'ITABSF' - Array1D ZoneSolAbsFirstCalc; // for error message + Array1D EnclSolAbsFirstCalc; // for error message Array1D EnclRadReCalc; // Enclosure solar or thermal radiation properties needs to be recalc due to window/shading status change bool EnclRadAlwaysReCalc = false; // Enclosure solar or thermal radiation properties always needs to be recalc at any time step @@ -2439,7 +2439,7 @@ struct HeatBalanceData : BaseGlobalStruct this->ZoneWinHeatLossRep.deallocate(); this->ZoneBmSolFrExtWinsRep.deallocate(); this->ZoneBmSolFrIntWinsRep.deallocate(); - this->ZoneInitialDifSolReflW.deallocate(); + this->EnclSolInitialDifSolReflW.deallocate(); this->ZoneDifSolFrExtWinsRep.deallocate(); this->ZoneDifSolFrIntWinsRep.deallocate(); this->ZoneOpaqSurfInsFaceCond.deallocate(); @@ -2506,7 +2506,7 @@ struct HeatBalanceData : BaseGlobalStruct this->EnclSolVMULT.deallocate(); this->EnclRadQThermalRad.deallocate(); this->EnclRadThermAbsMult.deallocate(); - this->ZoneSolAbsFirstCalc.deallocate(); + this->EnclSolAbsFirstCalc.deallocate(); this->EnclRadReCalc.deallocate(); this->SurfCosIncidenceAngle.deallocate(); this->SurfSunlitFracHR.deallocate(); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 02f4fef2206..90e68a3f70c 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -5859,13 +5859,11 @@ namespace HeatBalanceManager { state.dataHeatBal->spaceIntGainDevices.allocate(state.dataGlobal->numSpaces); } state.dataHeatBal->ZoneMRT.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->ZoneSolAbsFirstCalc.allocate(state.dataGlobal->NumOfZones); - state.dataHeatBal->EnclRadReCalc.allocate(state.dataGlobal->NumOfZones); for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { state.dataHeatBal->ZoneMRT(zoneNum) = 0.0; - state.dataHeatBal->ZoneSolAbsFirstCalc(zoneNum) = true; - state.dataHeatBal->EnclRadReCalc(zoneNum) = false; } + state.dataHeatBal->EnclSolAbsFirstCalc.allocate(state.dataViewFactor->NumOfSolarEnclosures); + state.dataHeatBal->EnclRadReCalc.allocate(state.dataViewFactor->NumOfSolarEnclosures); state.dataHeatBal->EnclSolQSDifSol.allocate(state.dataViewFactor->NumOfSolarEnclosures); state.dataHeatBal->EnclSolQD.allocate(state.dataViewFactor->NumOfSolarEnclosures); state.dataHeatBal->EnclSolQDforDaylight.allocate(state.dataViewFactor->NumOfSolarEnclosures); @@ -5878,6 +5876,8 @@ namespace HeatBalanceManager { state.dataHeatBal->EnclSolQSWRadLights.allocate(state.dataViewFactor->NumOfSolarEnclosures); state.dataHeatBal->EnclSolVMULT.allocate(state.dataViewFactor->NumOfSolarEnclosures); for (int enclosureNum = 1; enclosureNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclosureNum) { + state.dataHeatBal->EnclSolAbsFirstCalc(enclosureNum) = true; + state.dataHeatBal->EnclRadReCalc(enclosureNum) = false; state.dataHeatBal->EnclSolQSDifSol(enclosureNum) = 0.0; state.dataHeatBal->EnclSolQD(enclosureNum) = 0.0; state.dataHeatBal->EnclSolQDforDaylight(enclosureNum) = 0.0; diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index 2ecc28c7c68..3ddf1e3c072 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -2429,7 +2429,6 @@ void InitSolarHeatGains(EnergyPlusData &state) Array1D currGndSolarInc(state.dataSurface->TotSurfaces); // Ground diffuse solar incident on a surface for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - state.dataHeatBal->ZoneInitialDifSolReflW(zoneNum) = 0.0; state.dataHeatBal->ZoneWinHeatGainRepEnergy(zoneNum) = 0.0; state.dataHeatBal->ZoneWinHeatLossRepEnergy(zoneNum) = 0.0; state.dataHeatBal->ZnOpqSurfInsFaceCondGnRepEnrg(zoneNum) = 0.0; @@ -2447,6 +2446,9 @@ void InitSolarHeatGains(EnergyPlusData &state) state.dataHeatBal->ZoneOpaqSurfExtFaceCondGainRep(zoneNum) = 0.0; state.dataHeatBal->ZoneOpaqSurfExtFaceCondLossRep(zoneNum) = 0.0; } + for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { + state.dataHeatBal->EnclSolInitialDifSolReflW(enclNum) = 0.0; + } for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { int const firstSurfOpaq = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceFirst; int const lastSurfOpaq = state.dataHeatBal->Zone(zoneNum).OpaqOrIntMassSurfaceLast; @@ -2544,17 +2546,17 @@ void InitSolarHeatGains(EnergyPlusData &state) state.dataSurface->SurfSkySolarInc(SurfNum) = 0.0; state.dataSurface->SurfGndSolarInc(SurfNum) = 0.0; } - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - state.dataHeatBal->ZoneTransSolar(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrExtWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrIntWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrExtWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrIntWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneTransSolarEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy(zoneNum) = 0.0; + for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { + state.dataHeatBal->ZoneTransSolar(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrExtWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrIntWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrExtWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrIntWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneTransSolarEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy(enclNum) = 0.0; } for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { int const firstSurfWin = state.dataHeatBal->Zone(zoneNum).WindowSurfaceFirst; @@ -2747,11 +2749,11 @@ void InitSolarHeatGains(EnergyPlusData &state) // Beam from interior windows (EnclSolDBIntWin) reflected from floor is counted in DayltgInterReflIllFrIntWins, // EnclSolDB needs to subtract this part since it is already counted in EnclSolDB. - // Use ZoneInitialDifSolReflW (Rob's previous work) as it better counts initial distribution of + // Use EnclSolInitialDifSolReflW (Rob's previous work) as it better counts initial distribution of // diffuse solar rather than using weighted area*absorptance state.dataHeatBal->EnclSolQDforDaylight(enclosureNum) = (state.dataHeatBal->EnclSolDB(enclosureNum) - state.dataHeatBal->EnclSolDBIntWin(enclosureNum)) * state.dataEnvrn->BeamSolarRad + - state.dataHeatBal->EnclSolDBSSG(enclosureNum) + state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum); + state.dataHeatBal->EnclSolDBSSG(enclosureNum) + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum); // to exclude diffuse solar now absorbed/transmitted in CalcWinTransDifSolInitialDistribution // EnclSolDB(ZoneNum) is Diffuse Solar from beam reflected from interior surfaces @@ -2762,7 +2764,7 @@ void InitSolarHeatGains(EnergyPlusData &state) // +EnclSolDG(ZoneNum)*GndSolarRad state.dataHeatBal->EnclSolQD(enclosureNum) = state.dataHeatBal->EnclSolDB(enclosureNum) * state.dataEnvrn->BeamSolarRad + state.dataHeatBal->EnclSolDBSSG(enclosureNum) + - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum); + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum); } // Flux of diffuse solar in each zone @@ -4014,7 +4016,8 @@ void ComputeIntThermalAbsorpFactors(EnergyPlusData &state) auto &Surface(state.dataSurface->Surface); for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - if (!state.dataHeatBal->EnclRadReCalc(zoneNum)) continue; + // TODO MJW: Another zone/enclosure discontinuity + if (!state.dataHeatBal->EnclRadReCalc(state.dataHeatBal->Zone(zoneNum).zoneRadEnclosureFirst)) continue; int const firstSurfWin = state.dataHeatBal->Zone(zoneNum).WindowSurfaceFirst; int const lastSurfWin = state.dataHeatBal->Zone(zoneNum).WindowSurfaceLast; for (int SurfNum = firstSurfWin; SurfNum <= lastSurfWin; ++SurfNum) { @@ -4296,11 +4299,11 @@ void ComputeIntSWAbsorpFactors(EnergyPlusData &state) // back out whatever window is there. Note that this also assumes that the shade has no effect. // That's probably not correct, but how correct is it to assume that no solar is absorbed anywhere // in the zone? - if (state.dataHeatBal->ZoneSolAbsFirstCalc(enclosureNum)) { + if (state.dataHeatBal->EnclSolAbsFirstCalc(enclosureNum)) { ShowWarningError(state, "ComputeIntSWAbsorbFactors: Sum of area times inside solar absorption for all surfaces is zero in Zone: " + state.dataViewFactor->EnclSolInfo(enclosureNum).Name); - state.dataHeatBal->ZoneSolAbsFirstCalc(enclosureNum) = false; + state.dataHeatBal->EnclSolAbsFirstCalc(enclosureNum) = false; } state.dataHeatBal->EnclSolVMULT(enclosureNum) = 0.0; } diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 9ad44935bfe..3b3fdc1e37c 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -90,6 +90,7 @@ #include #include #include +#include #include #include #include @@ -11837,7 +11838,7 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr Array1D_string spaceColumnHead; Array1D_int spaceColumnWidth; Array2D_string spaceTableBody; - int spaceNumCol = 10; + int spaceNumCol = 11; spaceRowHead.allocate(state.dataGlobal->numSpaces + 4); // Extra rows for totals spaceColumnHead.allocate(spaceNumCol); spaceColumnWidth.allocate(spaceNumCol); @@ -11852,11 +11853,12 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr spaceColumnHead(4) = "Multipliers"; spaceColumnHead(5) = "Zone Name"; spaceColumnHead(6) = "Space Type"; - spaceColumnHead(7) = "Lighting " + state.dataOutRptTab->Wm2_unitName; - spaceColumnHead(8) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + + spaceColumnHead(7) = "Radiant/Solar Enclosure Name"; + spaceColumnHead(8) = "Lighting " + state.dataOutRptTab->Wm2_unitName; + spaceColumnHead(9) = "People " + state.dataOutRptTab->m2_unitName.substr(0, len(state.dataOutRptTab->m2_unitName) - 1) + " per person" + state.dataOutRptTab->m2_unitName[len(state.dataOutRptTab->m2_unitName) - 1]; - spaceColumnHead(9) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; - spaceColumnHead(10) = "Tags"; + spaceColumnHead(10) = "Plug and Process " + state.dataOutRptTab->Wm2_unitName; + spaceColumnHead(11) = "Tags"; int constexpr colSpaceArea(1); int constexpr colConditioned(2); @@ -11864,10 +11866,11 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr int constexpr colMultipliers(4); int constexpr colZoneName(5); int constexpr colSpaceType(6); - int constexpr colSpaceLighting(7); - int constexpr colSpacePeople(8); - int constexpr colSpacePlugProcess(9); - int constexpr colSpaceTags(10); + int constexpr colEnclName(7); + int constexpr colSpaceLighting(8); + int constexpr colSpacePeople(9); + int constexpr colSpacePlugProcess(10); + int constexpr colSpaceTags(11); spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->grandTotal) = "Total"; spaceRowHead(state.dataGlobal->numSpaces + state.dataOutRptTab->condTotal) = "Conditioned Total"; @@ -12033,6 +12036,7 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr spaceRowHead(spaceTableRowNum) = curSpace.Name; spaceTableBody(colZoneName, spaceTableRowNum) = curZone.Name; spaceTableBody(colSpaceType, spaceTableRowNum) = curSpace.spaceType; + spaceTableBody(colEnclName, spaceTableRowNum) = state.dataViewFactor->EnclSolInfo(curSpace.solarEnclosureNum).Name; spaceTableBody(colSpaceArea, spaceTableRowNum) = RealToStr(curSpace.floorArea * state.dataOutRptTab->m2_unitConvWVST, 2); // Conditioned or not if (curZone.SystemZoneNodeNumber > 0) { @@ -13482,7 +13486,7 @@ void AllocateLoadComponentArrays(EnergyPlusData &state) ort->ITABSFseq = 0.0; ort->TMULTseq.allocate(state.dataEnvrn->TotDesDays + state.dataEnvrn->TotRunDesPersDays, state.dataGlobal->NumOfTimeStepInHour * 24, - state.dataGlobal->NumOfZones); + state.dataViewFactor->NumOfRadiantEnclosures); ort->TMULTseq = 0.0; ort->peopleInstantSeq.allocate(state.dataEnvrn->TotDesDays + state.dataEnvrn->TotRunDesPersDays, state.dataGlobal->NumOfTimeStepInHour * 24, diff --git a/src/EnergyPlus/SolarShading.cc b/src/EnergyPlus/SolarShading.cc index dc17c05d45e..f1bb29aad98 100644 --- a/src/EnergyPlus/SolarShading.cc +++ b/src/EnergyPlus/SolarShading.cc @@ -231,30 +231,30 @@ void InitSolarCalculations(EnergyPlusData &state) state.dataSolarShading->SurfWinRevealStatus = 0; for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - state.dataHeatBal->ZoneTransSolar(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrExtWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrIntWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneInitialDifSolReflW(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrExtWinsRep(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrIntWinsRep(zoneNum) = 0.0; state.dataHeatBal->ZoneWinHeatGain(zoneNum) = 0.0; state.dataHeatBal->ZoneWinHeatGainRep(zoneNum) = 0.0; state.dataHeatBal->ZoneWinHeatLossRep(zoneNum) = 0.0; + state.dataHeatBal->ZoneWinHeatGainRepEnergy(zoneNum) = 0.0; + state.dataHeatBal->ZoneWinHeatLossRepEnergy(zoneNum) = 0.0; state.dataHeatBal->ZoneOpaqSurfInsFaceCond(zoneNum) = 0.0; state.dataHeatBal->ZoneOpaqSurfInsFaceCondGainRep(zoneNum) = 0.0; state.dataHeatBal->ZoneOpaqSurfInsFaceCondLossRep(zoneNum) = 0.0; - } - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - state.dataHeatBal->ZoneTransSolarEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneWinHeatGainRepEnergy(zoneNum) = 0.0; - state.dataHeatBal->ZoneWinHeatLossRepEnergy(zoneNum) = 0.0; state.dataHeatBal->ZnOpqSurfInsFaceCondGnRepEnrg(zoneNum) = 0.0; state.dataHeatBal->ZnOpqSurfInsFaceCondLsRepEnrg(zoneNum) = 0.0; } + for (int enclNum = 1; enclNum <= state.dataViewFactor->NumOfSolarEnclosures; ++enclNum) { + state.dataHeatBal->ZoneTransSolar(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrExtWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrIntWinsRep(enclNum) = 0.0; + state.dataHeatBal->EnclSolInitialDifSolReflW(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrExtWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrIntWinsRep(enclNum) = 0.0; + state.dataHeatBal->ZoneTransSolarEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy(enclNum) = 0.0; + state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy(enclNum) = 0.0; + } for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { state.dataHeatBal->SurfQRadSWOutIncident(SurfNum) = 0.0; state.dataHeatBal->SurfQRadSWOutIncidentBeam(SurfNum) = 0.0; @@ -853,12 +853,12 @@ void AllocateModuleArrays(EnergyPlusData &state) state.dataHeatBal->SurfCosIncAngHR.dimension(HoursInDay, state.dataSurface->TotSurfaces, 0.0); state.dataHeatBal->SurfCosIncAng.dimension(HoursInDay, state.dataGlobal->NumOfTimeStepInHour, state.dataSurface->TotSurfaces, 0.0); - state.dataHeatBal->ZoneTransSolar.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneBmSolFrExtWinsRep.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneBmSolFrIntWinsRep.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneInitialDifSolReflW.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneDifSolFrExtWinsRep.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneDifSolFrIntWinsRep.dimension(state.dataGlobal->NumOfZones, 0.0); + state.dataHeatBal->ZoneTransSolar.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneBmSolFrExtWinsRep.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneBmSolFrIntWinsRep.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->EnclSolInitialDifSolReflW.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneDifSolFrExtWinsRep.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneDifSolFrIntWinsRep.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); state.dataHeatBal->ZoneWinHeatGain.dimension(state.dataGlobal->NumOfZones, 0.0); state.dataHeatBal->ZoneWinHeatGainRep.dimension(state.dataGlobal->NumOfZones, 0.0); state.dataHeatBal->ZoneWinHeatLossRep.dimension(state.dataGlobal->NumOfZones, 0.0); @@ -918,11 +918,11 @@ void AllocateModuleArrays(EnergyPlusData &state) state.dataSurface->SurfWinHeatTransferRepEnergy.dimension(state.dataSurface->TotSurfaces, 0.0); state.dataSurface->SurfWinShadingAbsorbedSolarEnergy.dimension(state.dataSurface->TotSurfaces, 0.0); - state.dataHeatBal->ZoneTransSolarEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); - state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); + state.dataHeatBal->ZoneTransSolarEnergy.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneBmSolFrExtWinsRepEnergy.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneBmSolFrIntWinsRepEnergy.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneDifSolFrExtWinsRepEnergy.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); + state.dataHeatBal->ZoneDifSolFrIntWinsRepEnergy.dimension(state.dataViewFactor->NumOfSolarEnclosures, 0.0); state.dataHeatBal->ZoneWinHeatGainRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); state.dataHeatBal->ZoneWinHeatLossRepEnergy.dimension(state.dataGlobal->NumOfZones, 0.0); @@ -997,20 +997,6 @@ void AllocateModuleArrays(EnergyPlusData &state) OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, thisEnclosureName); - SetupOutputVariable(state, - "Zone Windows Total Heat Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneWinHeatGainRep(enclosureNum), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - thisEnclosureName); - SetupOutputVariable(state, - "Zone Windows Total Heat Loss Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneWinHeatLossRep(enclosureNum), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - thisEnclosureName); // Energy variables SetupOutputVariable(state, "Zone Windows Total Transmitted Solar Radiation Energy", @@ -1047,24 +1033,38 @@ void AllocateModuleArrays(EnergyPlusData &state) OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, thisEnclosureName); - SetupOutputVariable(state, - "Zone Windows Total Heat Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneWinHeatGainRepEnergy(enclosureNum), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - thisEnclosureName); - SetupOutputVariable(state, - "Zone Windows Total Heat Loss Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneWinHeatLossRepEnergy(enclosureNum), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - thisEnclosureName); } for (int ZoneLoop = 1; ZoneLoop <= state.dataGlobal->NumOfZones; ++ZoneLoop) { if (state.dataGlobal->DisplayAdvancedReportVariables) { // CurrentModuleObject='Zone(Advanced)' + SetupOutputVariable(state, + "Zone Windows Total Heat Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneWinHeatGainRep(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Loss Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneWinHeatLossRep(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneWinHeatGainRepEnergy(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Loss Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneWinHeatLossRepEnergy(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(ZoneLoop).Name); SetupOutputVariable(state, "Zone Opaque Surface Inside Faces Total Conduction Heat Gain Rate", OutputProcessor::Unit::W, @@ -11682,7 +11682,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) state.dataHeatBal->SurfWinInitialDifSolwinAbs = 0.0; // Init accumulator for total reflected diffuse solar within each zone for interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW = 0.0; + state.dataHeatBal->EnclSolInitialDifSolReflW = 0.0; // Init accumulator for transmitted diffuse solar for all surfaces for reporting state.dataHeatBalSurf->SurfWinInitialDifSolInTrans = 0.0; @@ -11779,7 +11779,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) DifSolarReflW = WinDifSolarTrans_Factor * InsideDifReflectance; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy // For opaque surfaces all incident diffuse is either absorbed or reflected @@ -11819,7 +11819,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) DifSolarReflW = WinDifSolarTrans_Factor * state.dataConstruction->Construct(ConstrNum).ReflectSolDiffBack; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] //------------------------------------------------------------------------------ // DISTRIBUTE TRANSMITTED DIFFUSE SOLAR THROUGH INTERIOR WINDOW TO ADJACENT ZONE @@ -11894,7 +11894,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) InterpSw(win_SwitchingFactor, construct.ReflectSolDiffBack, construct_sh.ReflectSolDiffBack); // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate transmitted Window and Zone total distributed diffuse solar to check for conservation of energy // This is not very effective since it assigns whatever distributed diffuse solar has not been @@ -11961,7 +11961,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) DifSolarReflW = WinDifSolarTrans_Factor * InsideDifReflectance; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Now calc diffuse solar absorbed by shade/blind itself BlNum = state.dataSurface->SurfWinBlindNumber(HeatTransSurfNum); @@ -12033,7 +12033,7 @@ void CalcWinTransDifSolInitialDistribution(EnergyPlusData &state) DifSolarReflW = WinDifSolarTrans_Factor * state.dataConstruction->Construct(ConstrNum).ReflectSolDiffBack; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(enclosureNum) += DifSolarReflW; // [W] //------------------------------------------------------------------------------ // DISTRIBUTE TRANSMITTED DIFFUSE SOLAR THROUGH INTERIOR WINDOW TO ADJACENT ZONE @@ -12144,7 +12144,7 @@ void CalcInteriorWinTransDifSolInitialDistribution( // of diffuse solar transmitted through the given interior window // to individual heat transfer surfaces in the given enclosure. // Diffuse solar transmitted through interior windows in this enclosure - // to adjacent enclosures, is added to the ZoneInitialDifSolReflW + // to adjacent enclosures, is added to the EnclSolInitialDifSolReflW // of the adjacent enclosure for subsequent interreflection calcs // METHODOLOGY EMPLOYED: @@ -12353,7 +12353,7 @@ void CalcInteriorWinTransDifSolInitialDistribution( // Get the adjacent zone/enclosure index // Add transmitted diffuse solar to total reflected distributed diffuse solar for each zone // for subsequent interreflection calcs - state.dataHeatBal->ZoneInitialDifSolReflW(state.dataSurface->Surface(AdjSurfNum).SolarEnclIndex) += DifSolarTransW; // [W] + state.dataHeatBal->EnclSolInitialDifSolReflW(state.dataSurface->Surface(AdjSurfNum).SolarEnclIndex) += DifSolarTransW; // [W] } } else if (ShadeFlag == WinShadingType::SwitchableGlazing) { // Switchable glazing @@ -12539,7 +12539,7 @@ void CalcInteriorWinTransDifSolInitialDistribution( } // opaque or window heat transfer surface } // HeatTransSurfNum = Zone(ZoneNum)%SurfaceFirst, Zone(ZoneNum)%SurfaceLast - state.dataHeatBal->ZoneInitialDifSolReflW(IntWinEnclosureNum) += InitialZoneDifSolReflW_zone; + state.dataHeatBal->EnclSolInitialDifSolReflW(IntWinEnclosureNum) += InitialZoneDifSolReflW_zone; // Check debug var for view factors here // ViewFactorTotal diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 3b5cd516d79..294d9b99556 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14895,7 +14895,8 @@ namespace SurfaceGeometry { state.dataHeatBal->space(spaceNum).solarEnclosureNum = enclosureNum; } auto &thisEnclosure(Enclosures(enclosureNum)); - thisEnclosure.Name = state.dataHeatBal->space(spaceNum).Name; + // Give this enclosure the zone name and assign this to the zone-remainder space if it exists + thisEnclosure.Name = zone.Name; thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(spaceNum).Name); thisEnclosure.spaceNums.push_back(spaceNum); thisEnclosure.FloorArea = state.dataHeatBal->space(spaceNum).floorArea; @@ -14908,33 +14909,42 @@ namespace SurfaceGeometry { if (anyGroupedSpaces) { // All grouped spaces have been assigned to an enclosure, now assign remaining spaces for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + auto &curSpace = state.dataHeatBal->space(spaceNum); int spaceEnclosureNum = 0; if (radiantSetup) { - spaceEnclosureNum = state.dataHeatBal->space(spaceNum).radiantEnclosureNum; + spaceEnclosureNum = curSpace.radiantEnclosureNum; } else { - spaceEnclosureNum = state.dataHeatBal->space(spaceNum).solarEnclosureNum; + spaceEnclosureNum = curSpace.solarEnclosureNum; } if (spaceEnclosureNum == 0) { - ++enclosureNum; + if (UtilityRoutines::SameString(curSpace.Name, state.dataHeatBal->Zone(curSpace.zoneNum).Name + "-Remainder")) { + // Search for existing enclosure with same name as the zone + spaceEnclosureNum = UtilityRoutines::FindItemInList(state.dataHeatBal->Zone(curSpace.zoneNum).Name, Enclosures); + } + if (spaceEnclosureNum == 0) { + // Otherwise add a new one named for the space + ++enclosureNum; + spaceEnclosureNum = enclosureNum; + Enclosures(spaceEnclosureNum).Name = curSpace.Name; + if (radiantSetup) { + state.dataViewFactor->NumOfRadiantEnclosures = enclosureNum; + } else { + state.dataViewFactor->NumOfSolarEnclosures = enclosureNum; + } + } if (radiantSetup) { - state.dataHeatBal->space(spaceNum).radiantEnclosureNum = enclosureNum; + curSpace.radiantEnclosureNum = spaceEnclosureNum; } else { - state.dataHeatBal->space(spaceNum).solarEnclosureNum = enclosureNum; + curSpace.solarEnclosureNum = spaceEnclosureNum; } - auto &thisEnclosure(Enclosures(enclosureNum)); - thisEnclosure.Name = state.dataHeatBal->space(spaceNum).Name; - thisEnclosure.spaceNames.push_back(state.dataHeatBal->space(spaceNum).Name); + auto &thisEnclosure(Enclosures(spaceEnclosureNum)); + thisEnclosure.spaceNames.push_back(curSpace.Name); thisEnclosure.spaceNums.push_back(spaceNum); - thisEnclosure.FloorArea = state.dataHeatBal->space(spaceNum).floorArea; - thisEnclosure.ExtWindowArea = state.dataHeatBal->space(spaceNum).extWindowArea; - thisEnclosure.TotalSurfArea = state.dataHeatBal->space(spaceNum).totalSurfArea; + thisEnclosure.FloorArea += curSpace.floorArea; + thisEnclosure.ExtWindowArea += curSpace.extWindowArea; + thisEnclosure.TotalSurfArea += curSpace.totalSurfArea; } } - if (radiantSetup) { - state.dataViewFactor->NumOfRadiantEnclosures = enclosureNum; - } else { - state.dataViewFactor->NumOfSolarEnclosures = enclosureNum; - } } else { // There are no grouped radiant air boundaries, assign each space to it's own radiant enclosure for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { @@ -15440,8 +15450,8 @@ namespace SurfaceGeometry { break; // exit when diff } // If none of the above conditions is met, then these should be the same layers in reverse (RevLayersDiffs = false) } else { - // Other material types do not have reversed constructions so if they are not the same layer there is a problem (RevLayersDiffs = - // true) + // Other material types do not have reversed constructions so if they are not the same layer there is a problem + // (RevLayersDiffs = true) RevLayerDiffs = true; break; // exit when diff } // End check of whether or not these are WindowGlass From 27cec544897730be5070964a496ed5675fc4f31b Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 10 Aug 2021 17:02:49 -0500 Subject: [PATCH 73/98] Space - DSOA:SpaceList repairs --- .../generate_epJSON_schema/modify_schema.py | 2 +- src/EnergyPlus/DataSizing.cc | 18 ++++---- src/EnergyPlus/SizingManager.cc | 36 +++++----------- src/EnergyPlus/ZoneEquipmentManager.cc | 41 ++++++++++++++----- 4 files changed, 52 insertions(+), 45 deletions(-) diff --git a/scripts/dev/generate_epJSON_schema/modify_schema.py b/scripts/dev/generate_epJSON_schema/modify_schema.py index 78c307aec90..ce6813e9ec4 100644 --- a/scripts/dev/generate_epJSON_schema/modify_schema.py +++ b/scripts/dev/generate_epJSON_schema/modify_schema.py @@ -126,7 +126,7 @@ def isInt(s): 'Wall:Detailed': 'vertices', 'Space': 'tags', 'SpaceList': 'spaces', - 'DesignSpecification:OutdoorAir:SpaceList' : 'space_specs' + 'DesignSpecification:OutdoorAir:SpaceList': 'space_specs', 'ZoneList': 'zones', 'Floor:Detailed': 'vertices', 'Shading:Building:Detailed': 'vertices', diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index 8b66096a34b..67bf44b4a31 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -542,10 +542,11 @@ Real64 OARequirementsData::desFlowPerZoneArea(EnergyPlusData &state, } else { Real64 sumAreaOA = 0.0; for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { - if (this->OAFlowMethod != DataSizing::OAFlowPPer && this->OAFlowMethod != DataSizing::OAFlow && - this->OAFlowMethod != DataSizing::OAFlowACH) { + auto const thisDSOA = state.dataSize->OARequirements(this->dsoaIndexes(dsoaCount)); + if (thisDSOA.OAFlowMethod != DataSizing::OAFlowPPer && thisDSOA.OAFlowMethod != DataSizing::OAFlow && + thisDSOA.OAFlowMethod != DataSizing::OAFlowACH) { Real64 spaceArea = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).floorArea; - sumAreaOA += this->OAFlowPerArea * spaceArea; + sumAreaOA += thisDSOA.OAFlowPerArea * spaceArea; } } if (state.dataHeatBal->Zone(actualZoneNum).FloorArea) { @@ -572,13 +573,14 @@ Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, } else { Real64 sumPeopleOA = 0.0; for (int dsoaCount = 1; dsoaCount <= this->numDSOA; ++dsoaCount) { - if (this->OAFlowMethod != DataSizing::OAFlowPerArea && this->OAFlowMethod != DataSizing::OAFlow && - this->OAFlowMethod != DataSizing::OAFlowACH) { + auto const thisDSOA = state.dataSize->OARequirements(this->dsoaIndexes(dsoaCount)); + if (thisDSOA.OAFlowMethod != DataSizing::OAFlowPerArea && thisDSOA.OAFlowMethod != DataSizing::OAFlow && + thisDSOA.OAFlowMethod != DataSizing::OAFlowACH) { // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? - if (this->OAFlowMethod != DataSizing::ZOAM_IAQP && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && - this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { + if (thisDSOA.OAFlowMethod != DataSizing::ZOAM_IAQP && thisDSOA.OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && + thisDSOA.OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).totOccupants; - sumPeopleOA += this->OAFlowPerPerson * spacePeople; + sumPeopleOA += thisDSOA.OAFlowPerPerson * spacePeople; } } } diff --git a/src/EnergyPlus/SizingManager.cc b/src/EnergyPlus/SizingManager.cc index 592c2164f8a..9f2dad02880 100644 --- a/src/EnergyPlus/SizingManager.cc +++ b/src/EnergyPlus/SizingManager.cc @@ -2248,7 +2248,7 @@ void GetOARequirements(EnergyPlusData &state) state.dataSize->OARequirements.allocate(state.dataSize->NumOARequirements); // Start Loading the System Input - for (int OAIndex = 1; OAIndex <= state.dataSize->NumOARequirements; ++OAIndex) { + for (int OAIndex = 1; OAIndex <= numOARequirements; ++OAIndex) { state.dataInputProcessing->inputProcessor->getObjectItem(state, CurrentModuleObject, @@ -2299,15 +2299,16 @@ void GetOARequirements(EnergyPlusData &state) ++oaIndex; auto const &objectFields = instance.value(); auto &thisOAReq = state.dataSize->OARequirements(oaIndex); - thisOAReq.Name = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(cCurrentModuleObject2, instance.key()); + std::string thisOAReqName = UtilityRoutines::MakeUPPERCase(instance.key()); - if (UtilityRoutines::FindItemInList(thisOAReq.Name, state.dataSize->OARequirements) > 0) { + if (UtilityRoutines::FindItemInList(thisOAReqName, state.dataSize->OARequirements) > 0) { ShowSevereError(state, - std::string(RoutineName) + cCurrentModuleObject2 + "=\"" + thisOAReq.Name + - "\": is a duplicate DesignSpecification:OutdoorAir name."); + std::string(RoutineName) + cCurrentModuleObject2 + "=\"" + thisOAReqName + + "\" is a duplicate DesignSpecification:OutdoorAir name."); ErrorsFound = true; } + thisOAReq.Name = thisOAReqName; // List of spaces and DSOA names thisOAReq.numDSOA = 0; @@ -2316,33 +2317,18 @@ void GetOARequirements(EnergyPlusData &state) if (extensibles != objectFields.end()) { auto extensiblesArray = extensibles.value(); for (auto extensibleInstance : extensiblesArray) { + // Zones and spaces are not created yet, validate space names in ZoneEquipmentManager::SetupZoneSizingArrays std::string thisSpaceName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_name"); - int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); - if (thisSpaceNum > 0) { - thisOAReq.dsoaSpaceIndexes.emplace_back(thisSpaceNum); - } else { - ShowSevereError(state, std::string(RoutineName) + cCurrentModuleObject2 + "=" + thisOAReq.Name); - ShowContinueError(state, "Space Name =" + thisSpaceName + "not found."); - ErrorsFound = true; - } - // Check for duplicate spaces - for (int loop = 1; loop <= int(thisOAReq.dsoaSpaceIndexes.size()) - 1; ++loop) { - if (thisSpaceNum == thisOAReq.dsoaSpaceIndexes(loop)) { - ShowSevereError(state, - std::string(RoutineName) + cCurrentModuleObject2 + "=\"" + thisOAReq.Name + "\": Space Name " + - thisSpaceName + " appears more than once in list."); - ErrorsFound = true; - } - } + thisOAReq.dsoaSpaceNames.emplace_back(thisSpaceName); std::string thisDsoaName = ip->getAlphaFieldValue(extensibleInstance, extensionSchemaProps, "space_design_specification_outdoor_air_object_name"); - int thisDsoaNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); + int thisDsoaNum = UtilityRoutines::FindItemInList(thisDsoaName, state.dataSize->OARequirements, oaIndex); if (thisDsoaNum > 0) { - thisOAReq.dsoaSpaceIndexes.emplace_back(thisDsoaNum); + thisOAReq.dsoaIndexes.emplace_back(thisDsoaNum); ++thisOAReq.numDSOA; } else { ShowSevereError(state, std::string(RoutineName) + cCurrentModuleObject2 + "=" + thisOAReq.Name); - ShowContinueError(state, "DesignSpecification:OutdoorAir =" + thisDsoaName + "not found."); + ShowContinueError(state, "DesignSpecification:OutdoorAir=" + thisDsoaName + " not found."); ErrorsFound = true; } } diff --git a/src/EnergyPlus/ZoneEquipmentManager.cc b/src/EnergyPlus/ZoneEquipmentManager.cc index a87c4d7258c..de87f3787bd 100644 --- a/src/EnergyPlus/ZoneEquipmentManager.cc +++ b/src/EnergyPlus/ZoneEquipmentManager.cc @@ -837,9 +837,6 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) ErrorsFound = true; } } - if (ErrorsFound) { - ShowFatalError(state, "SetUpZoneSizingArrays: Errors found in Sizing:Zone input"); - } // Put Auto Sizing of Sizing:Zone inputs here! AutoCalcDOASControlStrategy(state); @@ -1324,14 +1321,32 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) ZoneIndex = state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum; int DSOAPtr = state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneDesignSpecOAIndex; // index to DesignSpecification:OutdoorAir object if (DSOAPtr > 0) { - // If this is a DesignSpecification:OutdoorAir:SpaceList check to make sure spaces belong to this zone - if (state.dataSize->OARequirements(DSOAPtr).numDSOA > 1) { - for (int spaceNum : state.dataSize->OARequirements(DSOAPtr).dsoaSpaceIndexes) { - if (state.dataHeatBal->space(spaceNum).zoneNum != state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum) { - ShowSevereError( - state, "SetUpZoneSizingArrays: DesignSpecification:OutdoorAir:SpaceList=" + state.dataSize->OARequirements(DSOAPtr).Name); - ShowContinueError(state, "is invalid for Sizing:Zone for Zone=" + state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneName); - ShowFatalError(state, "All spaces in the list must be part of this zone."); + auto &thisOAReq = state.dataSize->OARequirements(DSOAPtr); + // If this is a DesignSpecification:OutdoorAir:SpaceList check to make sure spaces are valid and belong to this zone + if (thisOAReq.numDSOA > 1) { + for (int spaceCounter = 1; spaceCounter <= thisOAReq.numDSOA; ++spaceCounter) { + std::string thisSpaceName = thisOAReq.dsoaSpaceNames(spaceCounter); + int thisSpaceNum = UtilityRoutines::FindItemInList(thisSpaceName, state.dataHeatBal->space); + if (thisSpaceNum > 0) { + thisOAReq.dsoaSpaceIndexes.emplace_back(thisSpaceNum); + if (state.dataHeatBal->space(thisSpaceNum).zoneNum != state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum) { + ShowSevereError(state, "SetUpZoneSizingArrays: DesignSpecification:OutdoorAir:SpaceList=" + thisOAReq.Name); + ShowContinueError(state, "is invalid for Sizing:Zone=" + state.dataSize->FinalZoneSizing(CtrlZoneNum).ZoneName); + ShowContinueError(state, "All spaces in the list must be part of this zone."); + ErrorsFound = true; + } + } else { + ShowSevereError(state, "SetUpZoneSizingArrays: DesignSpecification:OutdoorAir:SpaceList=" + thisOAReq.Name); + ShowContinueError(state, "Space Name=" + thisSpaceName + " not found."); + ErrorsFound = true; + } + // Check for duplicate spaces + for (int loop = 1; loop <= int(thisOAReq.dsoaSpaceIndexes.size()) - 1; ++loop) { + if (thisSpaceNum == thisOAReq.dsoaSpaceIndexes(loop)) { + ShowSevereError(state, "SetUpZoneSizingArrays: DesignSpecification:OutdoorAir:SpaceList=" + thisOAReq.Name); + ShowContinueError(state, "Space Name=" + thisSpaceName + " appears more than once in list."); + ErrorsFound = true; + } } } } @@ -1341,6 +1356,7 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->FinalZoneSizing(CtrlZoneNum).DesOAFlowPerArea = state.dataSize->OARequirements(DSOAPtr).desFlowPerZoneArea(state, ZoneIndex); } + for (PeopleNum = 1; PeopleNum <= state.dataHeatBal->TotPeople; ++PeopleNum) { if (state.dataHeatBal->People(PeopleNum).ZonePtr == state.dataSize->FinalZoneSizing(CtrlZoneNum).ActualZoneNum) { TotPeopleInZone += (state.dataHeatBal->People(PeopleNum).NumberOfPeople * @@ -1471,6 +1487,9 @@ void SetUpZoneSizingArrays(EnergyPlusData &state) state.dataSize->FinalZoneSizing(CtrlZoneNum).CoolSizingFactor); } } + if (ErrorsFound) { + ShowFatalError(state, "SetUpZoneSizingArrays: Errors found in Sizing:Zone input"); + } } void RezeroZoneSizingArrays(EnergyPlusData &state) From 4c68f2f2f3caf8339c26f0961915fd17839cf296 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Wed, 11 Aug 2021 15:04:11 -0500 Subject: [PATCH 74/98] Space - fix diffs and unit tests --- src/EnergyPlus/DataSizing.cc | 14 +---- src/EnergyPlus/SolarShading.cc | 56 +++++++++---------- src/EnergyPlus/SurfaceGeometry.cc | 10 ++-- .../unit/HeatBalanceSurfaceManager.unit.cc | 2 + .../unit/OutputReportTabular.unit.cc | 15 ++++- 5 files changed, 51 insertions(+), 46 deletions(-) diff --git a/src/EnergyPlus/DataSizing.cc b/src/EnergyPlus/DataSizing.cc index 67bf44b4a31..4c2b7438c70 100644 --- a/src/EnergyPlus/DataSizing.cc +++ b/src/EnergyPlus/DataSizing.cc @@ -564,11 +564,7 @@ Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, if (this->numDSOA == 1) { if (this->OAFlowMethod != DataSizing::OAFlowPerArea && this->OAFlowMethod != DataSizing::OAFlow && this->OAFlowMethod != DataSizing::OAFlowACH) { - // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? - if (this->OAFlowMethod != DataSizing::ZOAM_IAQP && this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && - this->OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { - desFlowPP = this->OAFlowPerPerson; - } + desFlowPP = this->OAFlowPerPerson; } } else { Real64 sumPeopleOA = 0.0; @@ -576,12 +572,8 @@ Real64 OARequirementsData::desFlowPerZonePerson(EnergyPlusData &state, auto const thisDSOA = state.dataSize->OARequirements(this->dsoaIndexes(dsoaCount)); if (thisDSOA.OAFlowMethod != DataSizing::OAFlowPerArea && thisDSOA.OAFlowMethod != DataSizing::OAFlow && thisDSOA.OAFlowMethod != DataSizing::OAFlowACH) { - // TODO MJW: Temporarily exclude these methods to avoid diffs vs develop - new issue? - if (thisDSOA.OAFlowMethod != DataSizing::ZOAM_IAQP && thisDSOA.OAFlowMethod != DataSizing::ZOAM_ProportionalControlSchOcc && - thisDSOA.OAFlowMethod != DataSizing::ZOAM_ProportionalControlDesOcc) { - Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).totOccupants; - sumPeopleOA += thisDSOA.OAFlowPerPerson * spacePeople; - } + Real64 spacePeople = state.dataHeatBal->space(this->dsoaSpaceIndexes(dsoaCount)).totOccupants; + sumPeopleOA += thisDSOA.OAFlowPerPerson * spacePeople; } } if (state.dataHeatBal->Zone(actualZoneNum).TotOccupants > 0.0) { diff --git a/src/EnergyPlus/SolarShading.cc b/src/EnergyPlus/SolarShading.cc index f1bb29aad98..e8b49eda249 100644 --- a/src/EnergyPlus/SolarShading.cc +++ b/src/EnergyPlus/SolarShading.cc @@ -1035,36 +1035,36 @@ void AllocateModuleArrays(EnergyPlusData &state) thisEnclosureName); } for (int ZoneLoop = 1; ZoneLoop <= state.dataGlobal->NumOfZones; ++ZoneLoop) { + SetupOutputVariable(state, + "Zone Windows Total Heat Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneWinHeatGainRep(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Loss Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneWinHeatLossRep(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneWinHeatGainRepEnergy(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(ZoneLoop).Name); + SetupOutputVariable(state, + "Zone Windows Total Heat Loss Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneWinHeatLossRepEnergy(ZoneLoop), + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(ZoneLoop).Name); if (state.dataGlobal->DisplayAdvancedReportVariables) { // CurrentModuleObject='Zone(Advanced)' - SetupOutputVariable(state, - "Zone Windows Total Heat Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneWinHeatGainRep(ZoneLoop), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(ZoneLoop).Name); - SetupOutputVariable(state, - "Zone Windows Total Heat Loss Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneWinHeatLossRep(ZoneLoop), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(ZoneLoop).Name); - SetupOutputVariable(state, - "Zone Windows Total Heat Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneWinHeatGainRepEnergy(ZoneLoop), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(ZoneLoop).Name); - SetupOutputVariable(state, - "Zone Windows Total Heat Loss Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneWinHeatLossRepEnergy(ZoneLoop), - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(ZoneLoop).Name); SetupOutputVariable(state, "Zone Opaque Surface Inside Faces Total Conduction Heat Gain Rate", OutputProcessor::Unit::W, diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 294d9b99556..af5764282f2 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14926,11 +14926,6 @@ namespace SurfaceGeometry { ++enclosureNum; spaceEnclosureNum = enclosureNum; Enclosures(spaceEnclosureNum).Name = curSpace.Name; - if (radiantSetup) { - state.dataViewFactor->NumOfRadiantEnclosures = enclosureNum; - } else { - state.dataViewFactor->NumOfSolarEnclosures = enclosureNum; - } } if (radiantSetup) { curSpace.radiantEnclosureNum = spaceEnclosureNum; @@ -14945,6 +14940,11 @@ namespace SurfaceGeometry { thisEnclosure.TotalSurfArea += curSpace.totalSurfArea; } } + if (radiantSetup) { + state.dataViewFactor->NumOfRadiantEnclosures = enclosureNum; + } else { + state.dataViewFactor->NumOfSolarEnclosures = enclosureNum; + } } else { // There are no grouped radiant air boundaries, assign each space to it's own radiant enclosure for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { diff --git a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc index 2b06e61aa0d..46d95a0c835 100644 --- a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc @@ -275,6 +275,8 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_ComputeIntThermalAbsorpFacto state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); state->dataHeatBal->Zone(1).WindowSurfaceFirst = 1; state->dataHeatBal->Zone(1).WindowSurfaceLast = 1; + state->dataHeatBal->Zone(1).zoneRadEnclosureFirst = 1; + state->dataHeatBal->Zone(1).zoneRadEnclosureLast = 1; state->dataSurface->Surface.allocate(state->dataSurface->TotSurfaces); state->dataSurface->SurfaceWindow.allocate(state->dataSurface->TotSurfaces); SurfaceGeometry::AllocateSurfaceWindows(*state, state->dataSurface->TotSurfaces); diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 1b2890b41bb..3f2a2429019 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -494,6 +494,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_AllocateLoadComponentArraysTes state->dataEnvrn->TotDesDays = 2; state->dataEnvrn->TotRunDesPersDays = 3; state->dataGlobal->NumOfZones = 4; + state->dataViewFactor->NumOfRadiantEnclosures = 4; state->dataSurface->TotSurfaces = 7; state->dataGlobal->NumOfTimeStepInHour = 4; @@ -6178,7 +6179,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTableAreasTest) auto stringTypes = queryResult("SELECT * FROM StringTypes;", "StringTypes"); state->dataSQLiteProcedures->sqlite->sqliteCommit(); - EXPECT_EQ(170ul, tabularData.size()); + EXPECT_EQ(174ul, tabularData.size()); // tabularDataIndex, reportNameIndex, reportForStringIndex, tableNameIndex, rowLabelIndex, columnLabelIndex, unitsIndex, simulationIndex, rowId, // columnId, value EXPECT_EQ(" 12.30", tabularData[3][10]); @@ -6319,6 +6320,8 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) // zone state->dataGlobal->NumOfZones = 3; state->dataGlobal->numSpaces = 3; + state->dataViewFactor->NumOfSolarEnclosures = 3; + state->dataViewFactor->EnclSolInfo.allocate(state->dataViewFactor->NumOfSolarEnclosures); state->dataGlobal->numSpaceTypes = 1; state->dataHeatBal->spaceTypes.allocate(state->dataGlobal->numSpaceTypes); state->dataHeatBal->spaceTypes(1) = "General"; @@ -6327,6 +6330,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->Zone(1).Name = "PartofTot Conditioned Zone"; state->dataHeatBal->space(1).Name = "PartofTot Conditioned Zone"; state->dataHeatBal->space(1).spaceTypeNum = 1; + state->dataHeatBal->space(1).solarEnclosureNum = 1; state->dataHeatBal->Zone(1).SystemZoneNodeNumber = 1; // Conditioned state->dataHeatBal->Zone(1).isPartOfTotalArea = true; state->dataHeatBal->Zone(1).Multiplier = 1.; @@ -6343,6 +6347,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->Zone(2).Name = "PartofTot Unconditioned Zone"; state->dataHeatBal->space(2).Name = "PartofTot Unconditioned Zone"; state->dataHeatBal->space(2).spaceTypeNum = 1; + state->dataHeatBal->space(2).solarEnclosureNum = 2; state->dataHeatBal->Zone(2).SystemZoneNodeNumber = 0; // Unconditioned state->dataHeatBal->Zone(2).isPartOfTotalArea = true; state->dataHeatBal->Zone(2).Multiplier = 1.; @@ -6359,6 +6364,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->Zone(3).Name = "NOT PartofTot Conditioned Zone"; state->dataHeatBal->space(3).Name = "NOT PartofTot Conditioned Zone"; state->dataHeatBal->space(3).spaceTypeNum = 1; + state->dataHeatBal->space(3).solarEnclosureNum = 3; state->dataHeatBal->Zone(3).SystemZoneNodeNumber = 1; // Conditioned state->dataHeatBal->Zone(3).isPartOfTotalArea = false; state->dataHeatBal->Zone(3).Multiplier = 1.; @@ -9222,7 +9228,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTableAreasTest_DualUnits) auto stringTypes = queryResult("SELECT * FROM StringTypes;", "StringTypes"); state->dataSQLiteProcedures->sqlite->sqliteCommit(); - EXPECT_EQ(170ul, tabularData.size()); + EXPECT_EQ(174ul, tabularData.size()); // tabularDataIndex, reportNameIndex, reportForStringIndex, tableNameIndex, rowLabelIndex, columnLabelIndex, unitsIndex, simulationIndex, rowId, // columnId, value EXPECT_EQ(" 12.30", tabularData[3][10]); @@ -9363,6 +9369,8 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) // zone state->dataGlobal->NumOfZones = 3; state->dataGlobal->numSpaces = 3; + state->dataViewFactor->NumOfSolarEnclosures = 3; + state->dataViewFactor->EnclSolInfo.allocate(state->dataViewFactor->NumOfSolarEnclosures); state->dataGlobal->numSpaceTypes = 1; state->dataHeatBal->spaceTypes.allocate(state->dataGlobal->numSpaceTypes); state->dataHeatBal->spaceTypes(1) = "General"; @@ -9376,6 +9384,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->Zone(1).ListMultiplier = 1.; state->dataHeatBal->space(1).Name = "PartofTot Conditioned Zone"; state->dataHeatBal->space(1).spaceTypeNum = 1; + state->dataHeatBal->space(1).solarEnclosureNum = 1; state->dataHeatBal->Zone(1).spaceIndexes.allocate(1); state->dataHeatBal->Zone(1).spaceIndexes(1) = 1; // 10x10x2 @@ -9392,6 +9401,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->Zone(2).ListMultiplier = 1.; state->dataHeatBal->space(2).Name = "PartofTot Unconditioned Zone"; state->dataHeatBal->space(2).spaceTypeNum = 1; + state->dataHeatBal->space(2).solarEnclosureNum = 2; state->dataHeatBal->Zone(2).spaceIndexes.allocate(1); state->dataHeatBal->Zone(2).spaceIndexes(1) = 2; // 10x10x2 @@ -9408,6 +9418,7 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->Zone(3).ListMultiplier = 1.; state->dataHeatBal->space(3).Name = "NOT PartofTot Conditioned Zone"; state->dataHeatBal->space(3).spaceTypeNum = 1; + state->dataHeatBal->space(3).solarEnclosureNum = 3; state->dataHeatBal->Zone(3).spaceIndexes.allocate(1); state->dataHeatBal->Zone(3).spaceIndexes(1) = 3; // 10x10x2 From f1758c154ded58586528b0f54d18d92947418021 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 07:58:39 -0500 Subject: [PATCH 75/98] Space - fix unit tests --- tst/EnergyPlus/unit/OutputReportTabular.unit.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 3f2a2429019..fb3424c82a8 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6913,6 +6913,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesTwice_test) state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); state->dataGlobal->numSpaces = 4; state->dataHeatBal->space.allocate(state->dataGlobal->numSpaces); + state->dataViewFactor->NumOfRadiantEnclosures = 4; state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 1; @@ -6955,7 +6956,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesTwice_test) Array3D feneCondInstantSeq; feneCondInstantSeq.allocate(state->dataEnvrn->TotDesDays + state->dataEnvrn->TotRunDesPersDays, state->dataGlobal->NumOfTimeStepInHour * 24, - state->dataGlobal->NumOfZones); + state->dataViewFactor->NumOfRadiantEnclosures); feneCondInstantSeq = 0.0; Array2D surfDelaySeqCool; @@ -8296,6 +8297,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ state->dataHeatBal->Zone.allocate(state->dataGlobal->NumOfZones); state->dataGlobal->numSpaces = 1; state->dataHeatBal->space.allocate(state->dataGlobal->numSpaces); + state->dataViewFactor->NumOfRadiantEnclosures = 1; state->dataHeatBal->Zone(iZone).HTSurfaceFirst = 1; state->dataHeatBal->Zone(iZone).HTSurfaceLast = 4; @@ -8336,7 +8338,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_GetDelaySequencesSurfaceOrder_ Array3D feneCondInstantSeq; feneCondInstantSeq.allocate(state->dataEnvrn->TotDesDays + state->dataEnvrn->TotRunDesPersDays, state->dataGlobal->NumOfTimeStepInHour * 24, - state->dataGlobal->NumOfZones); + state->dataViewFactor->NumOfRadiantEnclosures); feneCondInstantSeq = 0.0; Array2D surfDelaySeqCool; From fa014e17d8712b1846dc057d8202a1aa6a47c11f Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 12:22:28 -0500 Subject: [PATCH 76/98] Space - setupIHGZonesAndSpaces and setupIHGOutputs for People --- src/EnergyPlus/InternalHeatGains.cc | 1669 +++++++++++++-------------- src/EnergyPlus/InternalHeatGains.hh | 9 + 2 files changed, 787 insertions(+), 891 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index d8a0a366c5a..c263a987fad 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -214,15 +214,9 @@ namespace InternalHeatGains { static constexpr std::string_view RoutineName("GetInternalHeatGains: "); // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Array1D_string AlphaName; - Array1D IHGNumbers; int IOStat; int NumAlpha; int NumNumber; - int MaxAlpha; - int MaxNumber; - int OptionNum(0); // Autodesk:Init Initialization added to elim poss use uninitialized - int lastOption; // Variables for reporting nominal internal gains Real64 LightTot; // Total Lights for calculating lights per square meter Real64 ElecTot; // Total Electric Load for calculating electric per square meter @@ -237,7 +231,6 @@ namespace InternalHeatGains { std::string liteName; int zonePt; Real64 mult; - Real64 maxOccupLoad; std::string CurrentModuleObject; bool errFlag; @@ -270,328 +263,40 @@ namespace InternalHeatGains { state.dataHeatBal->RefrigCaseCredit.allocate(state.dataGlobal->NumOfZones); Array1D_bool RepVarSet; - Array1D_bool SpaceRepVarSet; RepVarSet.allocate(state.dataGlobal->NumOfZones); - SpaceRepVarSet.allocate(state.dataGlobal->numSpaces); for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } - - // Determine argument length of objects gotten by this routine - MaxAlpha = -100; - MaxNumber = -100; - CurrentModuleObject = "People"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "Lights"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "ElectricEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "GasEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "HotWaterEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "SteamEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "OtherEquipment"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; - state.dataInputProcessing->inputProcessor->getObjectDefMaxArgs(state, CurrentModuleObject, NumNumber, NumAlpha, NumNumber); - MaxAlpha = max(MaxAlpha, NumAlpha); - MaxNumber = max(MaxNumber, NumNumber); - IHGNumbers.allocate(MaxNumber); - AlphaName.allocate(MaxAlpha); - IHGNumbers = 0.0; - AlphaName = ""; - - for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { - // Overall Zone Variables - SetupOutputVariable(state, - "Zone Total Internal Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(Loop).TotRadiantGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(Loop).TotRadiantGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Visible Radiation Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(Loop).TotVisHeatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(Loop).TotVisHeatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(Loop).TotConvectiveGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(Loop).TotConvectiveGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(Loop).TotLatentGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(Loop).TotLatentGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(Loop).TotTotalHeatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(Loop).Name); - SetupOutputVariable(state, - "Zone Total Internal Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(Loop).TotTotalHeatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(Loop).Name); - } + const std::string peopleModuleObject = "People"; + const std::string lightsModuleObject = "Lights"; + const std::string elecEqModuleObject = "ElectricEquipment"; + const std::string gasEqModuleObject = "GasEquipment"; + const std::string hwEqModuleObject = "HotWaterEquipment"; + const std::string stmEqModuleObject = "SteamEquipment"; + const std::string othEqModuleObject = "OtherEquipment"; + const std::string itEqModuleObject = "ElectricEquipment:ITE:AirCooled"; + const std::string bbModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; + const std::string contamSSModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; - // for (int Loop = 1; Loop <= state.dataGlobal->numSpaces; ++Loop) { - // // Overall Space Variables - // SetupOutputVariable(state, - // "Space Total Internal Radiant Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(Loop).TotRadiantGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Radiant Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(Loop).TotRadiantGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Visible Radiation Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(Loop).TotVisHeatGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Visible Radiation Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(Loop).TotVisHeatGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Convective Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(Loop).TotConvectiveGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Convective Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(Loop).TotConvectiveGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Latent Gain Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(Loop).TotLatentGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Latent Gain Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(Loop).TotLatentGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Total Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(Loop).TotTotalHeatGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(Loop).Name); - // SetupOutputVariable(state, - // "Space Total Internal Total Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(Loop).TotTotalHeatGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(Loop).Name); - //} + auto &IHGNumbers = state.dataIPShortCut->rNumericArgs; + auto &AlphaName = state.dataIPShortCut->cAlphaArgs; // PEOPLE: Includes both information related to the heat balance and thermal comfort - // First, allocate and initialize the People derived type - CurrentModuleObject = "People"; - state.dataHeatBal->NumPeopleStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); - state.dataHeatBal->PeopleObjects.allocate(state.dataHeatBal->NumPeopleStatements); - - state.dataHeatBal->TotPeople = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); - - state.dataHeatBal->PeopleObjects(Item).Name = AlphaName(1); - - int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - if (zoneNum > 0) { - state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - int numSpaces = state.dataHeatBal->Zone(zoneNum).numSpaces; - state.dataHeatBal->TotPeople += numSpaces; - state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; - state.dataHeatBal->PeopleObjects(Item).NumOfZones = 1; - state.dataHeatBal->PeopleObjects(Item).ZoneListActive = false; - state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneNum; - if (numSpaces == 1) { - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaceIndexes(1)); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name); - } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + - state.dataHeatBal->PeopleObjects(Item).Name); - } - } - continue; - } - int spaceNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->space); - if (spaceNum > 0) { - state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - ++state.dataHeatBal->TotPeople; - state.dataHeatBal->PeopleObjects(Item).numOfSpaces = 1; - state.dataHeatBal->PeopleObjects(Item).spaceListActive = false; - state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceNum; - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->PeopleObjects(Item).Name); - continue; - } - int zoneListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (zoneListNum > 0) { - state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - int numSpaces = 0; - for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { - numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; - for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaceIndexes) { - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + - state.dataHeatBal->PeopleObjects(Item).Name); - } - } - state.dataHeatBal->TotPeople += numSpaces; - state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; - state.dataHeatBal->PeopleObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; - state.dataHeatBal->PeopleObjects(Item).ZoneListActive = true; - state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr = zoneListNum; - continue; - } - int spaceListNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->spaceList); - if (spaceListNum > 0) { - state.dataHeatBal->PeopleObjects(Item).StartPtr = state.dataHeatBal->TotPeople + 1; - int numSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; - state.dataHeatBal->TotPeople += numSpaces; - state.dataHeatBal->PeopleObjects(Item).numOfSpaces = numSpaces; - state.dataHeatBal->PeopleObjects(Item).spaceListActive = true; - state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr = spaceListNum; - for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { - state.dataHeatBal->PeopleObjects(Item).spaceNums.emplace_back(spaceNum); - state.dataHeatBal->PeopleObjects(Item).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + - state.dataHeatBal->PeopleObjects(Item).Name); - } - continue; - } - ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotPeople = 0; - } - - state.dataHeatBal->People.allocate(state.dataHeatBal->TotPeople); + setupIHGZonesAndSpaces(state, + peopleModuleObject, + state.dataHeatBal->PeopleObjects, + state.dataHeatBal->NumPeopleStatements, + state.dataHeatBal->TotPeople, + ErrorsFound); if (state.dataHeatBal->TotPeople > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumPeopleStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; - + state.dataHeatBal->People.allocate(state.dataHeatBal->TotPeople); + int peopleNum = 0; + for (int peopleInputNum = 1; peopleInputNum <= state.dataHeatBal->NumPeopleStatements; ++peopleInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, - Item, + peopleModuleObject, + peopleInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -601,97 +306,42 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - int numZones = state.dataHeatBal->PeopleObjects(Item).NumOfZones; + // Create one People instance for every space associated with this People input object - for (int Item1 = 1; Item1 <= state.dataHeatBal->PeopleObjects(Item).numOfSpaces; ++Item1) { - ++Loop; - int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceNums(Item1); + auto &thisPeopleInput = state.dataHeatBal->PeopleObjects(peopleInputNum); + for (int Item1 = 1; Item1 <= thisPeopleInput.numOfSpaces; ++Item1) { + ++peopleNum; + auto &thisPeople = state.dataHeatBal->People(peopleNum); + int const spaceNum = thisPeopleInput.spaceNums(Item1); int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; - state.dataHeatBal->People(Loop).Name = state.dataHeatBal->PeopleObjects(Item).names(Item1); - state.dataHeatBal->People(Loop).spaceIndex = spaceNum; - state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - - // if ((numZones > 0) && !state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { - // state.dataHeatBal->People(Loop).Name = AlphaName(1); - // int const zoneNum = state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr; - // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - // if (zoneNum > 0) { - // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - // } - // } - //} else if (state.dataHeatBal->PeopleObjects(Item).ZoneListActive) { - // CheckCreatedZoneItemName( - // state, - // RoutineName, - // CurrentModuleObject, - // state.dataHeatBal->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - // .Name, - // state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - // state.dataHeatBal->PeopleObjects(Item).Name, - // state.dataHeatBal->People, - // Loop - 1, - // state.dataHeatBal->People(Loop).Name, - // errFlag); - // int const zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->PeopleObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - // state.dataHeatBal->People(Loop).ZonePtr = zoneNum; - // if (zoneNum > 0) { - // for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - // } - // } - // if (errFlag) ErrorsFound = true; - //} else if ((numSpaces > 0) && !state.dataHeatBal->PeopleObjects(Item).spaceListActive) { - // state.dataHeatBal->People(Loop).Name = AlphaName(1); - // int const spaceNum = state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr; - // if (spaceNum > 0) { - // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - // state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; - // } - //} else if (state.dataHeatBal->PeopleObjects(Item).spaceListActive) { - // int const spaceNum = state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).spaces(Item1); - // CheckCreatedZoneItemName( - // state, - // RoutineName, - // CurrentModuleObject, - // state.dataHeatBal->space(spaceNum).Name, - // state.dataHeatBal->spaceList(state.dataHeatBal->PeopleObjects(Item).spaceOrSpaceListPtr).maxSpaceNameLength, - // state.dataHeatBal->PeopleObjects(Item).Name, - // state.dataHeatBal->People, - // Loop - 1, - // state.dataHeatBal->People(Loop).Name, - // errFlag); - // if (spaceNum > 0) { - // state.dataHeatBal->People(Loop).spacePtrs.emplace_back(spaceNum); - // state.dataHeatBal->People(Loop).ZonePtr = state.dataHeatBal->space(spaceNum).zoneNum; - // } - // if (errFlag) ErrorsFound = true; - //} - - state.dataHeatBal->People(Loop).NumberOfPeoplePtr = GetScheduleIndex(state, AlphaName(3)); + thisPeople.Name = thisPeopleInput.names(Item1); + thisPeople.spaceIndex = spaceNum; + thisPeople.ZonePtr = zoneNum; + + thisPeople.NumberOfPeoplePtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->People(Loop).NumberOfPeoplePtr == 0) { + if (thisPeople.NumberOfPeoplePtr == 0) { if (Item1 == 1) { // only show error on first one if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->People(Loop).NumberOfPeoplePtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).NumberOfPeoplePtr); + SchMin = GetScheduleMinValue(state, thisPeople.NumberOfPeoplePtr); + SchMax = GetScheduleMaxValue(state, thisPeople.NumberOfPeoplePtr); if (SchMin < 0.0 || SchMax < 0.0) { if (Item1 == 1) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -701,7 +351,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -717,7 +367,7 @@ namespace InternalHeatGains { if (peopleMethod == "PEOPLE") { // Set space load fraction Real64 spaceFrac = 1.0; - if (numZones > 1) { + if (thisPeopleInput.numOfSpaces > 1) { Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; if (zoneArea > 0.0) { spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; @@ -725,27 +375,26 @@ namespace InternalHeatGains { ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating People loads to Spaces."); ShowContinueError(state, - "Occurs for People object =" + state.dataHeatBal->PeopleObjects(Item).Name + + "Occurs for People object =" + thisPeopleInput.Name + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); ErrorsFound = true; } } - state.dataHeatBal->People(Loop).NumberOfPeople = IHGNumbers(1) * spaceFrac; + thisPeople.NumberOfPeople = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 People will result."); } } else if (peopleMethod == "PEOPLE/AREA") { - if (state.dataHeatBal->People(Loop).ZonePtr != 0) { + if (thisPeople.ZonePtr != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->People(Loop).NumberOfPeople = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + thisPeople.NumberOfPeople = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + - state.dataHeatBal->People(Loop).Name + "\", specifies " + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Space Floor Area = 0. 0 People will result."); } @@ -753,8 +402,8 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, - state.dataHeatBal->People(Loop).Name, + peopleModuleObject, + thisPeople.Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); ErrorsFound = true; @@ -762,19 +411,18 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 People will result."); } } else if (peopleMethod == "AREA/PERSON") { - if (state.dataHeatBal->People(Loop).ZonePtr != 0) { + if (thisPeople.ZonePtr != 0) { if (IHGNumbers(3) > 0.0) { - state.dataHeatBal->People(Loop).NumberOfPeople = state.dataHeatBal->space(spaceNum).floorArea / IHGNumbers(3); + thisPeople.NumberOfPeople = state.dataHeatBal->space(spaceNum).floorArea / IHGNumbers(3); if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + - state.dataHeatBal->People(Loop).Name + "\", specifies " + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but Space Floor Area = 0. 0 People will result."); } @@ -782,8 +430,8 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, - state.dataHeatBal->People(Loop).Name, + peopleModuleObject, + thisPeople.Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); ErrorsFound = true; @@ -791,15 +439,15 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->People(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 People will result."); } } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"People\", \"People/Area\", \"Area/Person\"."); ErrorsFound = true; @@ -808,30 +456,30 @@ namespace InternalHeatGains { } // Calculate nominal min/max people - state.dataHeatBal->People(Loop).NomMinNumberPeople = state.dataHeatBal->People(Loop).NumberOfPeople * SchMin; - state.dataHeatBal->People(Loop).NomMaxNumberPeople = state.dataHeatBal->People(Loop).NumberOfPeople * SchMax; + thisPeople.NomMinNumberPeople = thisPeople.NumberOfPeople * SchMin; + thisPeople.NomMaxNumberPeople = thisPeople.NumberOfPeople * SchMax; if (zoneNum > 0) { - state.dataHeatBal->Zone(zoneNum).TotOccupants += state.dataHeatBal->People(Loop).NumberOfPeople; + state.dataHeatBal->Zone(zoneNum).TotOccupants += thisPeople.NumberOfPeople; // Note that min/max occupants are non-coincident - state.dataHeatBal->Zone(zoneNum).minOccupants += state.dataHeatBal->People(Loop).NomMinNumberPeople; - state.dataHeatBal->Zone(zoneNum).maxOccupants += state.dataHeatBal->People(Loop).NomMaxNumberPeople; + state.dataHeatBal->Zone(zoneNum).minOccupants += thisPeople.NomMinNumberPeople; + state.dataHeatBal->Zone(zoneNum).maxOccupants += thisPeople.NomMaxNumberPeople; } if (spaceNum > 0) { - state.dataHeatBal->space(spaceNum).totOccupants += state.dataHeatBal->People(Loop).NumberOfPeople; + state.dataHeatBal->space(spaceNum).totOccupants += thisPeople.NumberOfPeople; // Note that min/max occupants are non-coincident - state.dataHeatBal->space(spaceNum).minOccupants += state.dataHeatBal->People(Loop).NomMinNumberPeople; - state.dataHeatBal->space(spaceNum).maxOccupants += state.dataHeatBal->People(Loop).NomMaxNumberPeople; + state.dataHeatBal->space(spaceNum).minOccupants += thisPeople.NomMinNumberPeople; + state.dataHeatBal->space(spaceNum).maxOccupants += thisPeople.NomMaxNumberPeople; } - state.dataHeatBal->People(Loop).FractionRadiant = IHGNumbers(4); - state.dataHeatBal->People(Loop).FractionConvected = 1.0 - state.dataHeatBal->People(Loop).FractionRadiant; + thisPeople.FractionRadiant = IHGNumbers(4); + thisPeople.FractionConvected = 1.0 - thisPeople.FractionRadiant; if (Item1 == 1) { - if (state.dataHeatBal->People(Loop).FractionConvected < 0.0) { + if (thisPeople.FractionConvected < 0.0) { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, - CurrentModuleObject, + peopleModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(4), IHGNumbers(4))); @@ -840,49 +488,49 @@ namespace InternalHeatGains { } if (NumNumber >= 5 && !state.dataIPShortCut->lNumericFieldBlanks(5)) { - state.dataHeatBal->People(Loop).UserSpecSensFrac = IHGNumbers(5); + thisPeople.UserSpecSensFrac = IHGNumbers(5); } else { - state.dataHeatBal->People(Loop).UserSpecSensFrac = DataGlobalConstants::AutoCalculate; + thisPeople.UserSpecSensFrac = DataGlobalConstants::AutoCalculate; } if (NumNumber == 6 && !state.dataIPShortCut->lNumericFieldBlanks(6)) { - state.dataHeatBal->People(Loop).CO2RateFactor = IHGNumbers(6); + thisPeople.CO2RateFactor = IHGNumbers(6); } else { - state.dataHeatBal->People(Loop).CO2RateFactor = 3.82e-8; // m3/s-W + thisPeople.CO2RateFactor = 3.82e-8; // m3/s-W } - if (state.dataHeatBal->People(Loop).CO2RateFactor < 0.0) { + if (thisPeople.CO2RateFactor < 0.0) { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, - CurrentModuleObject, + peopleModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(6), IHGNumbers(6))); ErrorsFound = true; } - state.dataHeatBal->People(Loop).ActivityLevelPtr = GetScheduleIndex(state, AlphaName(5)); - if (state.dataHeatBal->People(Loop).ActivityLevelPtr == 0) { + thisPeople.ActivityLevelPtr = GetScheduleIndex(state, AlphaName(5)); + if (thisPeople.ActivityLevelPtr == 0) { if (Item1 == 1) { if (state.dataIPShortCut->lAlphaFieldBlanks(5)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(5) + " entered=" + AlphaName(5)); } ErrorsFound = true; } } else { // Check values in Schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->People(Loop).ActivityLevelPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).ActivityLevelPtr); + SchMin = GetScheduleMinValue(state, thisPeople.ActivityLevelPtr); + SchMax = GetScheduleMaxValue(state, thisPeople.ActivityLevelPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (Item1 == 1) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + " minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMin)); @@ -892,7 +540,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + " maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMax)); @@ -902,7 +550,7 @@ namespace InternalHeatGains { } else if (SchMin < 70.0 || SchMax > 1000.0) { if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + " values"); ShowContinueError(state, "fall outside typical range [70,1000] W/person for Thermal Comfort Reporting."); ShowContinueError(state, "Odd comfort values may result; Schedule=\"" + AlphaName(5) + "\"."); @@ -914,11 +562,11 @@ namespace InternalHeatGains { // Following is an optional parameter (ASHRAE 55 warnings if (NumAlpha >= 6) { if (UtilityRoutines::SameString(AlphaName(6), "Yes")) { - state.dataHeatBal->People(Loop).Show55Warning = true; + thisPeople.Show55Warning = true; } else if (!UtilityRoutines::SameString(AlphaName(6), "No") && !state.dataIPShortCut->lAlphaFieldBlanks(6)) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(6) + " field should be Yes or No"); ShowContinueError(state, "...Field value=\"" + AlphaName(6) + "\" is invalid."); ErrorsFound = true; @@ -927,6 +575,7 @@ namespace InternalHeatGains { } if (NumAlpha > 6) { // Optional parameters present--thermal comfort data follows... + int lastOption = 0; state.dataInternalHeatGains->UsingThermalComfort = false; if (NumAlpha > 20) { lastOption = 20; @@ -946,7 +595,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks(13)); if (NoTCModelSelectedWithSchedules) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\" has comfort related schedules but no thermal comfort model selected."); ShowContinueError(state, "If schedules are specified for air velocity, clothing insulation, and/or work efficiency but no " @@ -959,42 +608,42 @@ namespace InternalHeatGains { } } - for (OptionNum = NumFirstTCModel; OptionNum <= lastOption; ++OptionNum) { + for (int OptionNum = NumFirstTCModel; OptionNum <= lastOption; ++OptionNum) { { auto const thermalComfortType(AlphaName(OptionNum)); if (thermalComfortType == "FANGER") { - state.dataHeatBal->People(Loop).Fanger = true; + thisPeople.Fanger = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "PIERCE") { - state.dataHeatBal->People(Loop).Pierce = true; + thisPeople.Pierce = true; state.dataHeatBal->AnyThermalComfortPierceModel = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "KSU") { - state.dataHeatBal->People(Loop).KSU = true; + thisPeople.KSU = true; state.dataHeatBal->AnyThermalComfortKSUModel = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "ADAPTIVEASH55") { - state.dataHeatBal->People(Loop).AdaptiveASH55 = true; + thisPeople.AdaptiveASH55 = true; state.dataHeatBal->AdaptiveComfortRequested_ASH55 = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "ADAPTIVECEN15251") { - state.dataHeatBal->People(Loop).AdaptiveCEN15251 = true; + thisPeople.AdaptiveCEN15251 = true; state.dataHeatBal->AdaptiveComfortRequested_CEN15251 = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "COOLINGEFFECTASH55") { - state.dataHeatBal->People(Loop).CoolingEffectASH55 = true; + thisPeople.CoolingEffectASH55 = true; state.dataHeatBal->AnyThermalComfortCoolingEffectModel = true; state.dataInternalHeatGains->UsingThermalComfort = true; } else if (thermalComfortType == "ANKLEDRAFTASH55") { - state.dataHeatBal->People(Loop).AnkleDraftASH55 = true; + thisPeople.AnkleDraftASH55 = true; state.dataHeatBal->AnyThermalComfortAnkleDraftModel = true; state.dataInternalHeatGains->UsingThermalComfort = true; @@ -1003,7 +652,7 @@ namespace InternalHeatGains { } else { // An invalid keyword was entered--warn but ignore if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(OptionNum) + " Option=" + AlphaName(OptionNum)); ShowContinueError(state, "Valid Values are \"Fanger\", \"Pierce\", \"KSU\", \"AdaptiveASH55\", " @@ -1016,62 +665,56 @@ namespace InternalHeatGains { if (state.dataInternalHeatGains->UsingThermalComfort) { // Set the default value of MRTCalcType as 'ZoneAveraged' - state.dataHeatBal->People(Loop).MRTCalcType = DataHeatBalance::CalcMRT::ZoneAveraged; + thisPeople.MRTCalcType = DataHeatBalance::CalcMRT::ZoneAveraged; - bool ModelWithAdditionalInputs = state.dataHeatBal->People(Loop).Fanger || state.dataHeatBal->People(Loop).Pierce || - state.dataHeatBal->People(Loop).KSU || - state.dataHeatBal->People(Loop).CoolingEffectASH55 || - state.dataHeatBal->People(Loop).AnkleDraftASH55; + bool ModelWithAdditionalInputs = thisPeople.Fanger || thisPeople.Pierce || thisPeople.KSU || + thisPeople.CoolingEffectASH55 || thisPeople.AnkleDraftASH55; // MRT Calculation Type and Surface Name { auto const mrtType(AlphaName(7)); if (mrtType == "ZONEAVERAGED") { - state.dataHeatBal->People(Loop).MRTCalcType = DataHeatBalance::CalcMRT::ZoneAveraged; + thisPeople.MRTCalcType = DataHeatBalance::CalcMRT::ZoneAveraged; } else if (mrtType == "SURFACEWEIGHTED") { - state.dataHeatBal->People(Loop).MRTCalcType = DataHeatBalance::CalcMRT::SurfaceWeighted; - state.dataHeatBal->People(Loop).SurfacePtr = - UtilityRoutines::FindItemInList(AlphaName(8), state.dataSurface->Surface); - if (state.dataHeatBal->People(Loop).SurfacePtr == 0 && ModelWithAdditionalInputs) { + thisPeople.MRTCalcType = DataHeatBalance::CalcMRT::SurfaceWeighted; + thisPeople.SurfacePtr = UtilityRoutines::FindItemInList(AlphaName(8), state.dataSurface->Surface); + if (thisPeople.SurfacePtr == 0 && ModelWithAdditionalInputs) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7) + " invalid Surface Name=" + AlphaName(8)); ErrorsFound = true; } - } else if (state.dataSurface->Surface(state.dataHeatBal->People(Loop).SurfacePtr).Zone != - state.dataHeatBal->People(Loop).ZonePtr && + } else if (state.dataSurface->Surface(thisPeople.SurfacePtr).Zone != thisPeople.ZonePtr && ModelWithAdditionalInputs) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", Surface referenced in " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7) + " in different zone."); - ShowContinueError( - state, - "Surface is in Zone=" + - state.dataHeatBal->Zone(state.dataSurface->Surface(state.dataHeatBal->People(Loop).SurfacePtr).Zone) - .Name + - " and " + CurrentModuleObject + " is in Zone=" + AlphaName(2)); + ShowContinueError(state, + "Surface is in Zone=" + + state.dataHeatBal->Zone(state.dataSurface->Surface(thisPeople.SurfacePtr).Zone).Name + + " and " + peopleModuleObject + " is in Zone=" + AlphaName(2)); ErrorsFound = true; } } else if (mrtType == "ANGLEFACTOR") { - state.dataHeatBal->People(Loop).MRTCalcType = DataHeatBalance::CalcMRT::AngleFactor; - state.dataHeatBal->People(Loop).AngleFactorListName = AlphaName(8); + thisPeople.MRTCalcType = DataHeatBalance::CalcMRT::AngleFactor; + thisPeople.AngleFactorListName = AlphaName(8); } else if (mrtType == "") { // Blank input field--just ignore this if (Item1 == 1 && ModelWithAdditionalInputs) ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", blank " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", blank " + state.dataIPShortCut->cAlphaFieldNames(7)); } else { // An invalid keyword was entered--warn but ignore if (Item1 == 1 && ModelWithAdditionalInputs) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7)); ShowContinueError(state, "...Valid values are \"ZoneAveraged\", \"SurfaceWeighted\", \"AngleFactor\"."); } @@ -1079,22 +722,22 @@ namespace InternalHeatGains { } if (!state.dataIPShortCut->lAlphaFieldBlanks(9)) { - state.dataHeatBal->People(Loop).WorkEffPtr = GetScheduleIndex(state, AlphaName(9)); - if (state.dataHeatBal->People(Loop).WorkEffPtr == 0) { + thisPeople.WorkEffPtr = GetScheduleIndex(state, AlphaName(9)); + if (thisPeople.WorkEffPtr == 0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(9) + " entered=" + AlphaName(9)); ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->People(Loop).WorkEffPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).WorkEffPtr); + SchMin = GetScheduleMinValue(state, thisPeople.WorkEffPtr); + SchMax = GetScheduleMaxValue(state, thisPeople.WorkEffPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(9) + ", minimum is < 0.0"); ShowContinueError( state, @@ -1105,7 +748,7 @@ namespace InternalHeatGains { if (SchMax < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(9) + ", maximum is < 0.0"); ShowContinueError( state, @@ -1117,7 +760,7 @@ namespace InternalHeatGains { if (SchMax > 1.0) { if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(9) + ", maximum is > 1.0"); ShowContinueError(state, format("Schedule=\"{}\"; Entered min/max range=[{:.1R},{:.1R}] Work Efficiency.", @@ -1130,7 +773,7 @@ namespace InternalHeatGains { } else if (ModelWithAdditionalInputs) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", blank " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", blank " + state.dataIPShortCut->cAlphaFieldNames(9) + ". " + state.dataIPShortCut->cAlphaFieldNames(9) + " is required when Thermal Comfort Model Type is one of " "\"Fanger\", \"Pierce\", \"KSU\", \"CoolingEffectASH55\" or \"AnkleDraftASH55\""); @@ -1142,24 +785,24 @@ namespace InternalHeatGains { { auto const clothingType(AlphaName(10)); if (clothingType == "CLOTHINGINSULATIONSCHEDULE") { - state.dataHeatBal->People(Loop).ClothingType = 1; - state.dataHeatBal->People(Loop).ClothingPtr = GetScheduleIndex(state, AlphaName(12)); - if (state.dataHeatBal->People(Loop).ClothingPtr == 0 && ModelWithAdditionalInputs) { + thisPeople.ClothingType = 1; + thisPeople.ClothingPtr = GetScheduleIndex(state, AlphaName(12)); + if (thisPeople.ClothingPtr == 0 && ModelWithAdditionalInputs) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(12) + " entered=\"" + AlphaName(12) + "\"."); ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->People(Loop).ClothingPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).ClothingPtr); + SchMin = GetScheduleMinValue(state, thisPeople.ClothingPtr); + SchMax = GetScheduleMaxValue(state, thisPeople.ClothingPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(12) + ", minimum is < 0.0"); ShowContinueError(state, @@ -1172,7 +815,7 @@ namespace InternalHeatGains { if (SchMax < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(12) + ", maximum is < 0.0"); ShowContinueError(state, @@ -1186,7 +829,7 @@ namespace InternalHeatGains { if (SchMax > 2.0) { if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(12) + ", maximum is > 2.0"); ShowContinueError(state, format("Schedule=\"{}\"; Entered min/max range=[{:.1R},{:.1R}] Clothing.", @@ -1198,26 +841,26 @@ namespace InternalHeatGains { } } else if (clothingType == "DYNAMICCLOTHINGMODELASHRAE55") { - state.dataHeatBal->People(Loop).ClothingType = 2; + thisPeople.ClothingType = 2; } else if (clothingType == "CALCULATIONMETHODSCHEDULE") { - state.dataHeatBal->People(Loop).ClothingType = 3; - state.dataHeatBal->People(Loop).ClothingMethodPtr = GetScheduleIndex(state, AlphaName(11)); - if (state.dataHeatBal->People(Loop).ClothingMethodPtr == 0) { + thisPeople.ClothingType = 3; + thisPeople.ClothingMethodPtr = GetScheduleIndex(state, AlphaName(11)); + if (thisPeople.ClothingMethodPtr == 0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(11) + " entered=\"" + AlphaName(11) + "\"."); ErrorsFound = true; } } - if (CheckScheduleValue(state, state.dataHeatBal->People(Loop).ClothingMethodPtr, 1)) { - state.dataHeatBal->People(Loop).ClothingPtr = GetScheduleIndex(state, AlphaName(12)); - if (state.dataHeatBal->People(Loop).ClothingPtr == 0) { + if (CheckScheduleValue(state, thisPeople.ClothingMethodPtr, 1)) { + thisPeople.ClothingPtr = GetScheduleIndex(state, AlphaName(12)); + if (thisPeople.ClothingPtr == 0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(12) + " entered=\"" + AlphaName(12) + "\"."); ErrorsFound = true; @@ -1227,8 +870,7 @@ namespace InternalHeatGains { } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + - state.dataHeatBal->People(Loop).Name + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + thisPeople.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(10) + ", value =" + AlphaName(10)); ShowContinueError(state, "...Valid values are \"ClothingInsulationSchedule\",\"DynamicClothingModelASHRAE55a\", " @@ -1239,22 +881,22 @@ namespace InternalHeatGains { } if (!state.dataIPShortCut->lAlphaFieldBlanks(13)) { - state.dataHeatBal->People(Loop).AirVelocityPtr = GetScheduleIndex(state, AlphaName(13)); - if (state.dataHeatBal->People(Loop).AirVelocityPtr == 0) { + thisPeople.AirVelocityPtr = GetScheduleIndex(state, AlphaName(13)); + if (thisPeople.AirVelocityPtr == 0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(13) + " entered=\"" + AlphaName(13) + "\"."); ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->People(Loop).AirVelocityPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop).AirVelocityPtr); + SchMin = GetScheduleMinValue(state, thisPeople.AirVelocityPtr); + SchMax = GetScheduleMaxValue(state, thisPeople.AirVelocityPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(13) + ", minimum is < 0.0"); ShowContinueError( state, @@ -1265,7 +907,7 @@ namespace InternalHeatGains { if (SchMax < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(13) + ", maximum is < 0.0"); ShowContinueError( state, @@ -1278,7 +920,7 @@ namespace InternalHeatGains { } else if (ModelWithAdditionalInputs) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", blank " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", blank " + state.dataIPShortCut->cAlphaFieldNames(13) + ". " + state.dataIPShortCut->cAlphaFieldNames(13) + " is required when Thermal Comfort Model Type is one of " @@ -1289,20 +931,20 @@ namespace InternalHeatGains { int indexAnkleAirVelPtr = 21; if (!state.dataIPShortCut->lAlphaFieldBlanks(indexAnkleAirVelPtr) || AlphaName(indexAnkleAirVelPtr) != "") { - state.dataHeatBal->People(Loop).AnkleAirVelocityPtr = GetScheduleIndex(state, AlphaName(indexAnkleAirVelPtr)); - if (state.dataHeatBal->People(Loop).AnkleAirVelocityPtr == 0) { + thisPeople.AnkleAirVelocityPtr = GetScheduleIndex(state, AlphaName(indexAnkleAirVelPtr)); + if (thisPeople.AnkleAirVelocityPtr == 0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(indexAnkleAirVelPtr) + " entered=\"" + AlphaName(indexAnkleAirVelPtr) + "\"."); ErrorsFound = true; } } - } else if (state.dataHeatBal->People(Loop).AnkleDraftASH55) { + } else if (thisPeople.AnkleDraftASH55) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", blank " + + std::string{RoutineName} + peopleModuleObject + "=\"" + AlphaName(1) + "\", blank " + state.dataIPShortCut->cAlphaFieldNames(indexAnkleAirVelPtr) + ". " + state.dataIPShortCut->cAlphaFieldNames(indexAnkleAirVelPtr) + " is required when Thermal Comfort Model Type is one of " @@ -1315,368 +957,107 @@ namespace InternalHeatGains { } // ...end of thermal comfort data IF-THEN block (NumAlphas > 6) - if (state.dataHeatBal->People(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->People(Loop).NumOcc, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(Loop).SenGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Sensible Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(Loop).SenGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Air Temperature", - OutputProcessor::Unit::C, - state.dataHeatBal->People(Loop).TemperatureInZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); - SetupOutputVariable(state, - "People Air Relative Humidity", - OutputProcessor::Unit::Perc, - state.dataHeatBal->People(Loop).RelativeHumidityInZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(Loop).Name); + if (thisPeople.ZonePtr <= 0) continue; // Error, will be caught and terminated later + } + } - // Zone total report variables - if (RepVarSet(state.dataHeatBal->People(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->People(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleNumOcc, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleSenGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Sensible Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleSenGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->People(Loop).ZonePtr).PeopleTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->People(Loop).ZonePtr).Name); - } + for (int peopleNum = 1; peopleNum <= state.dataHeatBal->TotPeople; ++peopleNum) { + if (state.dataGlobal->AnyEnergyManagementSystemInModel) { + SetupEMSActuator(state, + "People", + state.dataHeatBal->People(peopleNum).Name, + "Number of People", + "[each]", + state.dataHeatBal->People(peopleNum).EMSPeopleOn, + state.dataHeatBal->People(peopleNum).EMSNumberOfPeople); + SetupEMSInternalVariable(state, + "People Count Design Level", + state.dataHeatBal->People(peopleNum).Name, + "[each]", + state.dataHeatBal->People(peopleNum).NumberOfPeople); + } - //// Space total report variables - // for (int spaceNum : state.dataHeatBal->People(Loop).spacePtrs) { - - // if (SpaceRepVarSet(spaceNum)) { - // SpaceRepVarSet(spaceNum) = false; - // SetupOutputVariable(state, - // "Space People Occupant Count", - // OutputProcessor::Unit::None, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Radiant Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Radiant Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Convective Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Convective Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Sensible Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Sensible Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Latent Gain Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Latent Gain Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Total Heating Energy", - // OutputProcessor::Unit::J, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Summed, - // state.dataHeatBal->space(spaceNum).Name); - // SetupOutputVariable(state, - // "Space People Total Heating Rate", - // OutputProcessor::Unit::W, - // state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate, - // OutputProcessor::SOVTimeStepType::Zone, - // OutputProcessor::SOVStoreType::Average, - // state.dataHeatBal->space(spaceNum).Name); - // } - //} + // setup internal gains + if (!ErrorsFound) + SetupZoneInternalGain(state, + state.dataHeatBal->People(peopleNum).ZonePtr, + "People", + state.dataHeatBal->People(peopleNum).Name, + IntGainTypeOf_People, + &state.dataHeatBal->People(peopleNum).ConGainRate, + nullptr, + &state.dataHeatBal->People(peopleNum).RadGainRate, + &state.dataHeatBal->People(peopleNum).LatGainRate, + nullptr, + &state.dataHeatBal->People(peopleNum).CO2GainRate); + } - if (state.dataGlobal->AnyEnergyManagementSystemInModel) { - SetupEMSActuator(state, - "People", - state.dataHeatBal->People(Loop).Name, - "Number of People", - "[each]", - state.dataHeatBal->People(Loop).EMSPeopleOn, - state.dataHeatBal->People(Loop).EMSNumberOfPeople); - SetupEMSInternalVariable(state, - "People Count Design Level", - state.dataHeatBal->People(Loop).Name, - "[each]", - state.dataHeatBal->People(Loop).NumberOfPeople); + // transfer the nominal number of people in a zone to the tabular reporting + for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { + if (state.dataHeatBal->Zone(Loop).TotOccupants > 0.0) { + if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0 && + state.dataHeatBal->Zone(Loop).FloorArea / state.dataHeatBal->Zone(Loop).TotOccupants < 0.1) { + ShowWarningError(state, + std::string{RoutineName} + "Zone=\"" + state.dataHeatBal->Zone(Loop).Name + + "\" occupant density is extremely high."); + if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0) { + ShowContinueError(state, + format("Occupant Density=[{:.0R}] person/m2.", + state.dataHeatBal->Zone(Loop).TotOccupants / state.dataHeatBal->Zone(Loop).FloorArea)); + } + ShowContinueError(state, + format("Occupant Density=[{:.3R}] m2/person. Problems in Temperature Out of Bounds may result.", + state.dataHeatBal->Zone(Loop).FloorArea / state.dataHeatBal->Zone(Loop).TotOccupants)); } - - // setup internal gains - if (!ErrorsFound) - SetupZoneInternalGain(state, - state.dataHeatBal->People(Loop).ZonePtr, - "People", - state.dataHeatBal->People(Loop).Name, - IntGainTypeOf_People, - &state.dataHeatBal->People(Loop).ConGainRate, - nullptr, - &state.dataHeatBal->People(Loop).RadGainRate, - &state.dataHeatBal->People(Loop).LatGainRate, - nullptr, - &state.dataHeatBal->People(Loop).CO2GainRate); - - } // Item1 - number of zones - } // Item - number of people statements - } // TotPeople > 0 - - // transfer the nominal number of people in a zone to the tabular reporting - for (int Loop = 1; Loop <= state.dataGlobal->NumOfZones; ++Loop) { - if (state.dataHeatBal->Zone(Loop).TotOccupants > 0.0) { - if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0 && - state.dataHeatBal->Zone(Loop).FloorArea / state.dataHeatBal->Zone(Loop).TotOccupants < 0.1) { - ShowWarningError( - state, std::string{RoutineName} + "Zone=\"" + state.dataHeatBal->Zone(Loop).Name + "\" occupant density is extremely high."); - if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0) { - ShowContinueError(state, - format("Occupant Density=[{:.0R}] person/m2.", - state.dataHeatBal->Zone(Loop).TotOccupants / state.dataHeatBal->Zone(Loop).FloorArea)); - } - ShowContinueError(state, - format("Occupant Density=[{:.3R}] m2/person. Problems in Temperature Out of Bounds may result.", - state.dataHeatBal->Zone(Loop).FloorArea / state.dataHeatBal->Zone(Loop).TotOccupants)); - } - maxOccupLoad = 0.0; - for (Loop1 = 1; Loop1 <= state.dataHeatBal->TotPeople; ++Loop1) { - if (state.dataHeatBal->People(Loop1).ZonePtr != Loop) continue; - if (maxOccupLoad < GetScheduleMaxValue(state, state.dataHeatBal->People(Loop1).NumberOfPeoplePtr) * - state.dataHeatBal->People(Loop1).NumberOfPeople) { - maxOccupLoad = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop1).NumberOfPeoplePtr) * - state.dataHeatBal->People(Loop1).NumberOfPeople; - MaxNumber = state.dataHeatBal->People(Loop1).NumberOfPeoplePtr; - OptionNum = Loop1; + Real64 maxOccupLoad = 0.0; + int OptionNum = 0; + for (Loop1 = 1; Loop1 <= state.dataHeatBal->TotPeople; ++Loop1) { + if (state.dataHeatBal->People(Loop1).ZonePtr != Loop) continue; + if (maxOccupLoad < GetScheduleMaxValue(state, state.dataHeatBal->People(Loop1).NumberOfPeoplePtr) * + state.dataHeatBal->People(Loop1).NumberOfPeople) { + maxOccupLoad = GetScheduleMaxValue(state, state.dataHeatBal->People(Loop1).NumberOfPeoplePtr) * + state.dataHeatBal->People(Loop1).NumberOfPeople; + OptionNum = Loop1; + } } - } - if (maxOccupLoad > state.dataHeatBal->Zone(Loop).TotOccupants) { - if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0 && state.dataHeatBal->Zone(Loop).FloorArea / maxOccupLoad < 0.1) { - ShowWarningError(state, - std::string{RoutineName} + "Zone=\"" + state.dataHeatBal->Zone(Loop).Name + - "\" occupant density at a maximum schedule value is extremely high."); - if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0) { + if (maxOccupLoad > state.dataHeatBal->Zone(Loop).TotOccupants) { + if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0 && state.dataHeatBal->Zone(Loop).FloorArea / maxOccupLoad < 0.1) { + ShowWarningError(state, + std::string{RoutineName} + "Zone=\"" + state.dataHeatBal->Zone(Loop).Name + + "\" occupant density at a maximum schedule value is extremely high."); + if (state.dataHeatBal->Zone(Loop).FloorArea > 0.0) { + ShowContinueError( + state, format("Occupant Density=[{:.0R}] person/m2.", maxOccupLoad / state.dataHeatBal->Zone(Loop).FloorArea)); + } ShowContinueError(state, - format("Occupant Density=[{:.0R}] person/m2.", maxOccupLoad / state.dataHeatBal->Zone(Loop).FloorArea)); + format("Occupant Density=[{:.3R}] m2/person. Problems in Temperature Out of Bounds may result.", + state.dataHeatBal->Zone(Loop).FloorArea / maxOccupLoad)); + ShowContinueError(state, + "Check values in People=" + state.dataHeatBal->People(OptionNum).Name + ", Number of People Schedule=" + + GetScheduleName(state, state.dataHeatBal->People(OptionNum).NumberOfPeoplePtr)); } - ShowContinueError(state, - format("Occupant Density=[{:.3R}] m2/person. Problems in Temperature Out of Bounds may result.", - state.dataHeatBal->Zone(Loop).FloorArea / maxOccupLoad)); - ShowContinueError(state, - "Check values in People=" + state.dataHeatBal->People(OptionNum).Name + - ", Number of People Schedule=" + GetScheduleName(state, MaxNumber)); } } - } - if (state.dataHeatBal->Zone(Loop).isNominalControlled) { // conditioned zones only - if (state.dataHeatBal->Zone(Loop).TotOccupants > 0.0) { - state.dataHeatBal->Zone(Loop).isNominalOccupied = true; - PreDefTableEntry(state, - state.dataOutRptPredefined->pdchOaoNomNumOcc1, - state.dataHeatBal->Zone(Loop).Name, - state.dataHeatBal->Zone(Loop).TotOccupants); - PreDefTableEntry(state, - state.dataOutRptPredefined->pdchOaoNomNumOcc2, - state.dataHeatBal->Zone(Loop).Name, - state.dataHeatBal->Zone(Loop).TotOccupants); + if (state.dataHeatBal->Zone(Loop).isNominalControlled) { // conditioned zones only + if (state.dataHeatBal->Zone(Loop).TotOccupants > 0.0) { + state.dataHeatBal->Zone(Loop).isNominalOccupied = true; + PreDefTableEntry(state, + state.dataOutRptPredefined->pdchOaoNomNumOcc1, + state.dataHeatBal->Zone(Loop).Name, + state.dataHeatBal->Zone(Loop).TotOccupants); + PreDefTableEntry(state, + state.dataOutRptPredefined->pdchOaoNomNumOcc2, + state.dataHeatBal->Zone(Loop).Name, + state.dataHeatBal->Zone(Loop).TotOccupants); + } } } - } + } // TotPeople > 0 for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "Lights"; state.dataHeatBal->NumLightsStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->LightsObjects.allocate(state.dataHeatBal->NumLightsStatements); @@ -2358,9 +1739,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "ElectricEquipment"; state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneElectricObjects.allocate(state.dataHeatBal->NumZoneElectricStatements); @@ -2855,9 +2233,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "GasEquipment"; state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneGasObjects.allocate(state.dataHeatBal->NumZoneGasStatements); @@ -3390,9 +2765,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "HotWaterEquipment"; state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->HotWaterEqObjects.allocate(state.dataHeatBal->NumHotWaterEqStatements); @@ -3887,9 +3259,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "SteamEquipment"; state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->SteamEqObjects.allocate(state.dataHeatBal->NumSteamEqStatements); @@ -4384,9 +3753,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "OtherEquipment"; state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->OtherEqObjects.allocate(state.dataHeatBal->NumOtherEqStatements); @@ -4907,9 +4273,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); errFlag = false; @@ -5826,9 +5189,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); @@ -6101,9 +5461,6 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - SpaceRepVarSet(spaceNum) = true; - } CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); state.dataHeatBal->ZoneCO2Gen.allocate(state.dataHeatBal->TotCO2Gen); @@ -6208,14 +5565,13 @@ namespace InternalHeatGains { } RepVarSet.deallocate(); - SpaceRepVarSet.deallocate(); - IHGNumbers.deallocate(); - AlphaName.deallocate(); if (ErrorsFound) { ShowFatalError(state, std::string{RoutineName} + "Errors found in Getting Internal Gains Input, Program Stopped"); } + setupIHGOutputs(state); + static constexpr fmt::string_view Format_721( "! ,Zone Name, Floor Area {{m2}},# Occupants,Area per Occupant " "{{m2/person}},Occupant per Area {{person/m2}},Interior Lighting {{W/m2}},Electric Load {{W/m2}},Gas Load {{W/m2}},Other " @@ -6725,6 +6081,537 @@ namespace InternalHeatGains { } } + void setupIHGZonesAndSpaces(EnergyPlusData &state, + const std::string objectType, + EPVector &inputObjects, + int &numInputObjects, + int &numGainInstances, + bool &errors) + { + constexpr std::string_view routineName = "setupIHGZonesAndSpaces: "; + bool localErrFlag = false; + + auto &ip = state.dataInputProcessing->inputProcessor; + auto const instances = ip->epJSON.find(objectType); + if (instances != ip->epJSON.end()) { + auto const &objectSchemaProps = ip->getObjectSchemaProps(state, objectType); + auto &instancesValue = instances.value(); + numInputObjects = int(instancesValue.size()); + inputObjects.allocate(numInputObjects); + + int counter = 0; + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + auto const &objectFields = instance.value(); + auto const &thisObjectName = UtilityRoutines::MakeUPPERCase(instance.key()); + ip->markObjectAsUsed(objectType, instance.key()); + + // For incoming idf, maintain object order + ++counter; + int objNum = ip->getIDFObjNum(state, objectType, counter); + inputObjects(objNum).Name = thisObjectName; + std::string areaName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_or_zonelist_or_space_or_spacelist_name"); + + int zoneNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->Zone); + if (zoneNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = state.dataHeatBal->Zone(zoneNum).numSpaces; + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).NumOfZones = 1; + inputObjects(objNum).ZoneListActive = false; + inputObjects(objNum).ZoneOrZoneListPtr = zoneNum; + if (numSpaces == 1) { + inputObjects(objNum).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaceIndexes(1)); + inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); + } else { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + } + continue; + } + int spaceNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->space); + if (spaceNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + ++numGainInstances; + inputObjects(objNum).numOfSpaces = 1; + inputObjects(objNum).spaceListActive = false; + inputObjects(objNum).spaceOrSpaceListPtr = spaceNum; + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); + continue; + } + int zoneListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->ZoneList); + if (zoneListNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = 0; + for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { + numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; + for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaceIndexes) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + } + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; + inputObjects(objNum).ZoneListActive = true; + inputObjects(objNum).ZoneOrZoneListPtr = zoneListNum; + continue; + } + int spaceListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->spaceList); + if (spaceListNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).spaceListActive = true; + inputObjects(objNum).spaceOrSpaceListPtr = spaceListNum; + for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + continue; + } + ShowSevereError(state, + objectType + "=\"" + thisObjectName + "\" invalid Zone or ZoneList or Space or SpaceList Name=\"" + areaName + + "\" not found."); + errors = true; + localErrFlag = true; + } + if (localErrFlag) { + ShowSevereError(state, std::string{routineName} + "Errors with invalid names in " + objectType + " objects."); + ShowContinueError(state, "...These will not be read in. Other errors may occur."); + numGainInstances = 0; + } + } + } + + void setupIHGOutputs(EnergyPlusData &state) + { + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + // Overall Zone Variables + SetupOutputVariable(state, + "Zone Total Internal Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotLatentGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotLatentGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + // Overall Space Variables + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + + Array1D_bool addZoneOutputs; + addZoneOutputs.dimension(state.dataGlobal->NumOfZones, false); + Array1D_bool addSpaceOutputs; + addSpaceOutputs.dimension(state.dataGlobal->numSpaces, false); + + for (int peopleNum = 1; peopleNum <= state.dataHeatBal->TotPeople; ++peopleNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->People(peopleNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->People(peopleNum).spaceIndex) = true; + // Object report variables + SetupOutputVariable(state, + "People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->People(peopleNum).NumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).SenGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).SenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Air Temperature", + OutputProcessor::Unit::C, + state.dataHeatBal->People(peopleNum).TemperatureInZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Air Relative Humidity", + OutputProcessor::Unit::Perc, + state.dataHeatBal->People(peopleNum).RelativeHumidityInZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + } + + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + // Zone total report variables + SetupOutputVariable(state, + "Zone People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->ZnRpt(zoneNum).PeopleNumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + } + } + void InitInternalHeatGains(EnergyPlusData &state) { diff --git a/src/EnergyPlus/InternalHeatGains.hh b/src/EnergyPlus/InternalHeatGains.hh index 4b8472832ef..0c27c93f863 100644 --- a/src/EnergyPlus/InternalHeatGains.hh +++ b/src/EnergyPlus/InternalHeatGains.hh @@ -68,6 +68,15 @@ namespace InternalHeatGains { void GetInternalHeatGainsInput(EnergyPlusData &state); + void setupIHGZonesAndSpaces(EnergyPlusData &state, + const std::string objectType, + EPVector &inputObjects, + int &numInputObjects, + int &numGainInstances, + bool &errors); + + void setupIHGOutputs(EnergyPlusData &state); + void InitInternalHeatGains(EnergyPlusData &state); void CheckReturnAirHeatGain(EnergyPlusData &state); From 7bf5185029d220f7588a70198b1b513814a4f3e0 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 13:43:57 -0500 Subject: [PATCH 77/98] Space - missing unit test include --- tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index c18fa6c8354..9487aee93b2 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -61,6 +61,7 @@ #include #include #include +#include #include #include #include From b40cc7ba8d696023d4b1e5947bd08201ef5c8420 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 20:36:47 -0500 Subject: [PATCH 78/98] Space - Lights --- idd/Energy+.idd.in | 7 +- src/EnergyPlus/DataHeatBalance.hh | 25 +- src/EnergyPlus/InternalHeatGains.cc | 1299 ++++++++--------- src/EnergyPlus/OutputReportPredefined.cc | 4 +- src/EnergyPlus/OutputReportPredefined.hh | 4 +- src/EnergyPlus/OutputReportTabular.cc | 10 +- .../unit/AirflowNetworkBalanceManager.unit.cc | 2 +- .../unit/OutputReportTabular.unit.cc | 30 +- 8 files changed, 676 insertions(+), 705 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index f6969cb683a..34cee83609a 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -21344,17 +21344,18 @@ ComfortViewFactorAngles, Lights, \memo Sets internal gains for lights in the zone. - \memo If you use a ZoneList in the Zone or ZoneList name field then this definition applies - \memo to all the zones in the ZoneList. + \memo If you use a ZoneList of SpaceList in the Zone or ZoneList or Space or SpaceList name field + \memo then this definition applies to all the zones or spaces in the list. \min-fields 11 A1 , \field Name \required-field \type alpha \reference LightsNames - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index e1ad612a272..ab6beb9d3b0 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -682,19 +682,18 @@ namespace DataHeatBalance { struct LightsData { // Members - std::string Name; // LIGHTS object name - int ZonePtr; // Which zone lights are in - EPVector spacePtrs; // Pointers to space numbers for this object - EPVector spaceFracs; // Fraction of total gains applied to each space - int SchedPtr; // Schedule for lights - Real64 DesignLevel; // design level for lights [W] - bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. - Real64 EMSLightingPower; // Value EMS is directing to use for override - Real64 FractionReturnAir; // Percentage (fraction 0.0-1.0) of sensible heat gain that is return air - Real64 FractionRadiant; // Percentage (fraction 0.0-1.0) of sensible heat gain that is radiant - Real64 FractionShortWave; // Percentage (fraction 0.0-1.0) of sensible heat gain that is short wave - Real64 FractionReplaceable; // Percentage (fraction 0.0-1.0) of sensible heat gain that is replaceable - Real64 FractionConvected; // Percentage (fraction 0.0-1.0) of sensible heat gain that is convective + std::string Name; // LIGHTS object name + int ZonePtr; // Which zone lights are in + int spaceIndex; // Space index for this people statement + int SchedPtr; // Schedule for lights + Real64 DesignLevel; // design level for lights [W] + bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. + Real64 EMSLightingPower; // Value EMS is directing to use for override + Real64 FractionReturnAir; // Percentage (fraction 0.0-1.0) of sensible heat gain that is return air + Real64 FractionRadiant; // Percentage (fraction 0.0-1.0) of sensible heat gain that is radiant + Real64 FractionShortWave; // Percentage (fraction 0.0-1.0) of sensible heat gain that is short wave + Real64 FractionReplaceable; // Percentage (fraction 0.0-1.0) of sensible heat gain that is replaceable + Real64 FractionConvected; // Percentage (fraction 0.0-1.0) of sensible heat gain that is convective bool FractionReturnAirIsCalculated; Real64 FractionReturnAirPlenTempCoeff1; Real64 FractionReturnAirPlenTempCoeff2; diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index c263a987fad..36d102a5f8a 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -229,9 +229,6 @@ namespace InternalHeatGains { Real64 SchMin; Real64 SchMax; std::string liteName; - int zonePt; - Real64 mult; - std::string CurrentModuleObject; bool errFlag; // Formats @@ -978,7 +975,7 @@ namespace InternalHeatGains { } // setup internal gains - if (!ErrorsFound) + if (!ErrorsFound) { SetupZoneInternalGain(state, state.dataHeatBal->People(peopleNum).ZonePtr, "People", @@ -990,6 +987,7 @@ namespace InternalHeatGains { &state.dataHeatBal->People(peopleNum).LatGainRate, nullptr, &state.dataHeatBal->People(peopleNum).CO2GainRate); + } } // transfer the nominal number of people in a zone to the tabular reporting @@ -1055,75 +1053,22 @@ namespace InternalHeatGains { } } // TotPeople > 0 - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - CurrentModuleObject = "Lights"; - state.dataHeatBal->NumLightsStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); - state.dataHeatBal->LightsObjects.allocate(state.dataHeatBal->NumLightsStatements); - - state.dataHeatBal->TotLights = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); - - state.dataHeatBal->LightsObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->LightsObjects(Item).StartPtr = state.dataHeatBal->TotLights + 1; - ++state.dataHeatBal->TotLights; - state.dataHeatBal->LightsObjects(Item).NumOfZones = 1; - state.dataHeatBal->LightsObjects(Item).ZoneListActive = false; - state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->LightsObjects(Item).StartPtr = state.dataHeatBal->TotLights + 1; - state.dataHeatBal->TotLights += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->LightsObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->LightsObjects(Item).ZoneListActive = true; - state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotLights = 0; - } - - state.dataHeatBal->Lights.allocate(state.dataHeatBal->TotLights); + setupIHGZonesAndSpaces(state, + lightsModuleObject, + state.dataHeatBal->LightsObjects, + state.dataHeatBal->NumLightsStatements, + state.dataHeatBal->TotLights, + ErrorsFound); if (state.dataHeatBal->TotLights > 0) { + state.dataHeatBal->Lights.allocate(state.dataHeatBal->TotLights); bool CheckSharedExhaustFlag = false; - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumLightsStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + int lightsNum = 0; + for (int lightsInputNum = 1; lightsInputNum <= state.dataHeatBal->NumLightsStatements; ++lightsInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, - Item, + lightsModuleObject, + lightsInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -1134,64 +1079,41 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->LightsObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->LightsObjects(Item).ZoneListActive) { - state.dataHeatBal->Lights(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - CurrentModuleObject, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->LightsObjects(Item).Name, - state.dataHeatBal->Lights, - Loop - 1, - state.dataHeatBal->Lights(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->LightsObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->Lights(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->Lights(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisLightsInput = state.dataHeatBal->LightsObjects(lightsInputNum); + // Create one Lights instance for every space associated with this Lights input object + for (int Item1 = 1; Item1 <= thisLightsInput.numOfSpaces; ++Item1) { + ++lightsNum; + auto &thisLights = state.dataHeatBal->Lights(lightsNum); + int const spaceNum = thisLightsInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisLights.Name = thisLightsInput.names(Item1); + thisLights.spaceIndex = spaceNum; + thisLights.ZonePtr = zoneNum; - state.dataHeatBal->Lights(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); + thisLights.SchedPtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->Lights(Loop).SchedPtr == 0) { + if (thisLights.SchedPtr == 0) { if (Item1 == 1) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->Lights(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->Lights(Loop).SchedPtr); + SchMin = GetScheduleMinValue(state, thisLights.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisLights.SchedPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (Item1 == 1) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -1201,7 +1123,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -1211,57 +1133,49 @@ namespace InternalHeatGains { } } - // Set space load fractions - if (int(state.dataHeatBal->Lights(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->Lights(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->Lights(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->Lights(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->Lights(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating Lights loads to Spaces."); - ShowContinueError(state, - "Occurs for Lights object =" + state.dataHeatBal->LightsObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } - // Lights Design Level calculation method. { + // Set space load fraction auto const lightingLevel(AlphaName(4)); if (lightingLevel == "LIGHTINGLEVEL") { - state.dataHeatBal->Lights(Loop).DesignLevel = IHGNumbers(1); + Real64 spaceFrac = 1.0; + if (thisLightsInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError(state, + std::string(RoutineName) + "Zone floor area is zero when allocating Lights loads to Spaces."); + ShowContinueError(state, + "Occurs for Lights object =" + thisLightsInput.Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + + thisLights.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->Lights(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Lights will result."); } - } else if (lightingLevel == "WATTS/AREA") { - if (state.dataHeatBal->Lights(Loop).ZonePtr != 0) { + if (thisLights.ZonePtr != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->Lights(Loop).DesignLevel = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).FloorArea <= 0.0) { + thisLights.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + - state.dataHeatBal->Lights(Loop).Name + "\", specifies " + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 Lights will result."); + ", but Space Floor Area = 0. 0 Lights will result."); } } else { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, - state.dataHeatBal->Lights(Loop).Name, + lightsModuleObject, + thisLights.Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); ErrorsFound = true; @@ -1269,20 +1183,17 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->Lights(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Lights will result."); } - } else if (lightingLevel == "WATTS/PERSON") { - if (state.dataHeatBal->Lights(Loop).ZonePtr != 0) { + if (thisLights.ZonePtr != 0) { if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->Lights(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).TotOccupants <= 0.0) { + thisLights.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; + if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + - state.dataHeatBal->Lights(Loop).Name + "\", specifies " + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Lights will result."); } @@ -1290,8 +1201,8 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, - state.dataHeatBal->Lights(Loop).Name, + lightsModuleObject, + thisLights.Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); ErrorsFound = true; @@ -1299,15 +1210,14 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->Lights(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Lights will result."); } - } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"LightingLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -1316,24 +1226,22 @@ namespace InternalHeatGains { } // Calculate nominal min/max lighting level - state.dataHeatBal->Lights(Loop).NomMinDesignLevel = state.dataHeatBal->Lights(Loop).DesignLevel * SchMin; - state.dataHeatBal->Lights(Loop).NomMaxDesignLevel = state.dataHeatBal->Lights(Loop).DesignLevel * SchMax; - - state.dataHeatBal->Lights(Loop).FractionReturnAir = IHGNumbers(4); - state.dataHeatBal->Lights(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->Lights(Loop).FractionShortWave = IHGNumbers(6); - state.dataHeatBal->Lights(Loop).FractionReplaceable = IHGNumbers(7); - state.dataHeatBal->Lights(Loop).FractionReturnAirPlenTempCoeff1 = IHGNumbers(8); - state.dataHeatBal->Lights(Loop).FractionReturnAirPlenTempCoeff2 = IHGNumbers(9); - - state.dataHeatBal->Lights(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->Lights(Loop).FractionReturnAir + state.dataHeatBal->Lights(Loop).FractionRadiant + - state.dataHeatBal->Lights(Loop).FractionShortWave); - if (std::abs(state.dataHeatBal->Lights(Loop).FractionConvected) <= 0.001) state.dataHeatBal->Lights(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->Lights(Loop).FractionConvected < 0.0) { + thisLights.NomMinDesignLevel = thisLights.DesignLevel * SchMin; + thisLights.NomMaxDesignLevel = thisLights.DesignLevel * SchMax; + + thisLights.FractionReturnAir = IHGNumbers(4); + thisLights.FractionRadiant = IHGNumbers(5); + thisLights.FractionShortWave = IHGNumbers(6); + thisLights.FractionReplaceable = IHGNumbers(7); + thisLights.FractionReturnAirPlenTempCoeff1 = IHGNumbers(8); + thisLights.FractionReturnAirPlenTempCoeff2 = IHGNumbers(9); + + thisLights.FractionConvected = 1.0 - (thisLights.FractionReturnAir + thisLights.FractionRadiant + thisLights.FractionShortWave); + if (std::abs(thisLights.FractionConvected) <= 0.001) thisLights.FractionConvected = 0.0; + if (thisLights.FractionConvected < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } } @@ -1349,91 +1257,87 @@ namespace InternalHeatGains { // FractionShortWave is constant and equal to its input value. if (NumAlpha > 4) { - state.dataHeatBal->Lights(Loop).EndUseSubcategory = AlphaName(5); + thisLights.EndUseSubcategory = AlphaName(5); } else { - state.dataHeatBal->Lights(Loop).EndUseSubcategory = "General"; + thisLights.EndUseSubcategory = "General"; } if (state.dataIPShortCut->lAlphaFieldBlanks(6)) { - state.dataHeatBal->Lights(Loop).FractionReturnAirIsCalculated = false; + thisLights.FractionReturnAirIsCalculated = false; } else if (AlphaName(6) != "YES" && AlphaName(6) != "NO") { if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(6) + ", value =" + AlphaName(6)); ShowContinueError(state, ".. Return Air Fraction from Plenum will NOT be calculated."); } - state.dataHeatBal->Lights(Loop).FractionReturnAirIsCalculated = false; + thisLights.FractionReturnAirIsCalculated = false; } else { - state.dataHeatBal->Lights(Loop).FractionReturnAirIsCalculated = (AlphaName(6) == "YES"); + thisLights.FractionReturnAirIsCalculated = (AlphaName(6) == "YES"); } // Set return air node number - state.dataHeatBal->Lights(Loop).ZoneReturnNum = 0; - state.dataHeatBal->Lights(Loop).RetNodeName = ""; + thisLights.ZoneReturnNum = 0; + thisLights.RetNodeName = ""; if (!state.dataIPShortCut->lAlphaFieldBlanks(7)) { - if (state.dataHeatBal->LightsObjects(Item).ZoneListActive) { + if (thisLightsInput.ZoneListActive) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->Lights(Loop).Name + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLightsInput.Name + "\": " + state.dataIPShortCut->cAlphaFieldNames(7) + " must be blank when using a ZoneList."); ErrorsFound = true; } else { - state.dataHeatBal->Lights(Loop).RetNodeName = AlphaName(7); + thisLights.RetNodeName = AlphaName(7); } } - if (state.dataHeatBal->Lights(Loop).ZonePtr > 0) { - state.dataHeatBal->Lights(Loop).ZoneReturnNum = - DataZoneEquipment::GetReturnNumForZone(state, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name, - state.dataHeatBal->Lights(Loop).RetNodeName); + if (thisLights.ZonePtr > 0) { + thisLights.ZoneReturnNum = + DataZoneEquipment::GetReturnNumForZone(state, state.dataHeatBal->Zone(zoneNum).Name, thisLights.RetNodeName); } - if ((state.dataHeatBal->Lights(Loop).ZoneReturnNum == 0) && (state.dataHeatBal->Lights(Loop).FractionReturnAir > 0.0) && - (!state.dataIPShortCut->lAlphaFieldBlanks(7))) { + if ((thisLights.ZoneReturnNum == 0) && (thisLights.FractionReturnAir > 0.0) && (!state.dataIPShortCut->lAlphaFieldBlanks(7))) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(7) + " =" + AlphaName(7)); ShowContinueError(state, "No matching Zone Return Air Node found."); ErrorsFound = true; } // Set exhaust air node number - state.dataHeatBal->Lights(Loop).ZoneExhaustNodeNum = 0; + thisLights.ZoneExhaustNodeNum = 0; if (!state.dataIPShortCut->lAlphaFieldBlanks(8)) { - if (state.dataHeatBal->LightsObjects(Item).ZoneListActive) { + if (thisLightsInput.ZoneListActive) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->Lights(Loop).Name + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLightsInput.Name + "\": " + state.dataIPShortCut->cAlphaFieldNames(8) + " must be blank when using a ZoneList."); ErrorsFound = true; } else { bool exhaustNodeError = false; - state.dataHeatBal->Lights(Loop).ZoneExhaustNodeNum = GetOnlySingleNode(state, - AlphaName(8), - exhaustNodeError, - CurrentModuleObject, - state.dataHeatBal->Lights(Loop).Name, - DataLoopNode::NodeFluidType::Air, - DataLoopNode::NodeConnectionType::ZoneExhaust, - NodeInputManager::compFluidStream::Primary, - ObjectIsNotParent); - if (!exhaustNodeError) { // GetOnlySingleNode will throw error messages if the is a NodeList Name and for other issues - exhaustNodeError = DataZoneEquipment::VerifyLightsExhaustNodeForZone( - state, state.dataHeatBal->Lights(Loop).ZonePtr, state.dataHeatBal->Lights(Loop).ZoneExhaustNodeNum); + thisLights.ZoneExhaustNodeNum = GetOnlySingleNode(state, + AlphaName(8), + exhaustNodeError, + lightsModuleObject, + thisLights.Name, + DataLoopNode::NodeFluidType::Air, + DataLoopNode::NodeConnectionType::ZoneExhaust, + NodeInputManager::compFluidStream::Primary, + ObjectIsNotParent); + if (!exhaustNodeError) { // GetOnlySingleNode will throw error messages if this is a NodeList Name and for other issues + exhaustNodeError = + DataZoneEquipment::VerifyLightsExhaustNodeForZone(state, thisLights.ZonePtr, thisLights.ZoneExhaustNodeNum); } if (exhaustNodeError) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(8) + " = " + AlphaName(8)); ShowContinueError(state, "No matching Zone Exhaust Air Node found."); ErrorsFound = true; } else { - if (state.dataHeatBal->Lights(Loop).ZoneReturnNum > 0) { - state.dataZoneEquip->ZoneEquipConfig(state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).ZoneEqNum) - .ReturnNodeExhaustNodeNum(state.dataHeatBal->Lights(Loop).ZoneReturnNum) = - state.dataHeatBal->Lights(Loop).ZoneExhaustNodeNum; + if (thisLights.ZoneReturnNum > 0) { + state.dataZoneEquip->ZoneEquipConfig(state.dataHeatBal->Zone(thisLights.ZonePtr).ZoneEqNum) + .ReturnNodeExhaustNodeNum(thisLights.ZoneReturnNum) = thisLights.ZoneExhaustNodeNum; CheckSharedExhaustFlag = true; } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(8) + " =" + AlphaName(8) + " is not used"); ShowContinueError( state, "No matching Zone Return Air Node found. The Exhaust Node requires Return Node to work together"); @@ -1441,265 +1345,79 @@ namespace InternalHeatGains { } } } - } - - if (state.dataHeatBal->Lights(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Lights Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - - SetupOutputVariable(state, - "Lights Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Visible Radiation Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).VisGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name); - - SetupOutputVariable(state, - "Lights Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).VisGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Return Air Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).RetAirGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Return Air Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).RetAirGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(Loop).Name); - SetupOutputVariable(state, - "Lights Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(Loop).Name, - _, - "Electricity", - "InteriorLights", - state.dataHeatBal->Lights(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).ListMultiplier); - // Zone total report variables - if (RepVarSet(state.dataHeatBal->Lights(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->Lights(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone Lights Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsElecConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Visible Radiation Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsVisGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsVisGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Return Air Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsRetAirGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Return Air Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsRetAirGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Lights Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->Lights(Loop).ZonePtr).LtsTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).Name); + if (thisLights.ZonePtr <= 0) continue; // Error, will be caught and terminated later } + } + } + for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { + int spaceNum = state.dataHeatBal->Lights(lightsNum).spaceIndex; + int zoneNum = state.dataHeatBal->Lights(lightsNum).ZonePtr; + if (state.dataGlobal->AnyEnergyManagementSystemInModel) { + SetupEMSActuator(state, + "Lights", + state.dataHeatBal->Lights(lightsNum).Name, + "Electricity Rate", + "[W]", + state.dataHeatBal->Lights(lightsNum).EMSLightsOn, + state.dataHeatBal->Lights(lightsNum).EMSLightingPower); + SetupEMSInternalVariable(state, + "Lighting Power Design Level", + state.dataHeatBal->Lights(lightsNum).Name, + "[W]", + state.dataHeatBal->Lights(lightsNum).DesignLevel); + } // EMS + // setup internal gains + int returnNodeNum = 0; + if ((state.dataHeatBal->Lights(lightsNum).ZoneReturnNum > 0) && + (state.dataHeatBal->Lights(lightsNum).ZoneReturnNum <= state.dataZoneEquip->ZoneEquipConfig(zoneNum).NumReturnNodes)) { + returnNodeNum = state.dataZoneEquip->ZoneEquipConfig(zoneNum).ReturnNode(state.dataHeatBal->Lights(lightsNum).ZoneReturnNum); + } + if (!ErrorsFound) { + SetupZoneInternalGain(state, + state.dataHeatBal->Lights(lightsNum).ZonePtr, + "Lights", + state.dataHeatBal->Lights(lightsNum).Name, + IntGainTypeOf_Lights, + &state.dataHeatBal->Lights(lightsNum).ConGainRate, + &state.dataHeatBal->Lights(lightsNum).RetAirGainRate, + &state.dataHeatBal->Lights(lightsNum).RadGainRate, + nullptr, + nullptr, + nullptr, + nullptr, + returnNodeNum); + } - if (state.dataGlobal->AnyEnergyManagementSystemInModel) { - SetupEMSActuator(state, - "Lights", - state.dataHeatBal->Lights(Loop).Name, - "Electricity Rate", - "[W]", - state.dataHeatBal->Lights(Loop).EMSLightsOn, - state.dataHeatBal->Lights(Loop).EMSLightingPower); - SetupEMSInternalVariable(state, - "Lighting Power Design Level", - state.dataHeatBal->Lights(Loop).Name, - "[W]", - state.dataHeatBal->Lights(Loop).DesignLevel); - } // EMS - // setup internal gains - int returnNodeNum = 0; - if ((state.dataHeatBal->Lights(Loop).ZoneReturnNum > 0) && - (state.dataHeatBal->Lights(Loop).ZoneReturnNum <= - state.dataZoneEquip->ZoneEquipConfig(state.dataHeatBal->Lights(Loop).ZonePtr).NumReturnNodes)) { - returnNodeNum = state.dataZoneEquip->ZoneEquipConfig(state.dataHeatBal->Lights(Loop).ZonePtr) - .ReturnNode(state.dataHeatBal->Lights(Loop).ZoneReturnNum); - } - if (!ErrorsFound) - SetupZoneInternalGain(state, - state.dataHeatBal->Lights(Loop).ZonePtr, - "Lights", - state.dataHeatBal->Lights(Loop).Name, - IntGainTypeOf_Lights, - &state.dataHeatBal->Lights(Loop).ConGainRate, - &state.dataHeatBal->Lights(Loop).RetAirGainRate, - &state.dataHeatBal->Lights(Loop).RadGainRate, - nullptr, - nullptr, - nullptr, - nullptr, - returnNodeNum); - - if (state.dataHeatBal->Lights(Loop).FractionReturnAir > 0) - state.dataHeatBal->Zone(state.dataHeatBal->Lights(Loop).ZonePtr).HasLtsRetAirGain = true; - // send values to predefined lighting summary report - liteName = state.dataHeatBal->Lights(Loop).Name; - zonePt = state.dataHeatBal->Lights(Loop).ZonePtr; - mult = state.dataHeatBal->Zone(zonePt).Multiplier * state.dataHeatBal->Zone(zonePt).ListMultiplier; - state.dataInternalHeatGains->sumArea += state.dataHeatBal->Zone(zonePt).FloorArea * mult; - state.dataInternalHeatGains->sumPower += state.dataHeatBal->Lights(Loop).DesignLevel * mult; - PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtZone, liteName, state.dataHeatBal->Zone(zonePt).Name); - if (state.dataHeatBal->Zone(zonePt).FloorArea > 0.0) { - PreDefTableEntry(state, - state.dataOutRptPredefined->pdchInLtDens, - liteName, - state.dataHeatBal->Lights(Loop).DesignLevel / state.dataHeatBal->Zone(zonePt).FloorArea, - 4); - } else { - PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtDens, liteName, DataPrecisionGlobals::constant_zero, 4); - } - PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtArea, liteName, state.dataHeatBal->Zone(zonePt).FloorArea * mult); - PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtPower, liteName, state.dataHeatBal->Lights(Loop).DesignLevel * mult); - PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtEndUse, liteName, state.dataHeatBal->Lights(Loop).EndUseSubcategory); + if (state.dataHeatBal->Lights(lightsNum).FractionReturnAir > 0) + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).HasLtsRetAirGain = true; + // send values to predefined lighting summary report + liteName = state.dataHeatBal->Lights(lightsNum).Name; + Real64 mult = state.dataHeatBal->Zone(zoneNum).Multiplier * state.dataHeatBal->Zone(zoneNum).ListMultiplier; + Real64 spaceArea = state.dataHeatBal->space(spaceNum).floorArea; + state.dataInternalHeatGains->sumArea += spaceArea * mult; + state.dataInternalHeatGains->sumPower += state.dataHeatBal->Lights(lightsNum).DesignLevel * mult; + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtSpace, liteName, state.dataHeatBal->space(spaceNum).Name); + if (spaceArea > 0.0) { PreDefTableEntry( - state, state.dataOutRptPredefined->pdchInLtSchd, liteName, GetScheduleName(state, state.dataHeatBal->Lights(Loop).SchedPtr)); - PreDefTableEntry( - state, state.dataOutRptPredefined->pdchInLtRetAir, liteName, state.dataHeatBal->Lights(Loop).FractionReturnAir, 4); - } // Item1 - zones - } // Item = Number of Lights Objects + state, state.dataOutRptPredefined->pdchInLtDens, liteName, state.dataHeatBal->Lights(lightsNum).DesignLevel / spaceArea, 4); + } else { + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtDens, liteName, DataPrecisionGlobals::constant_zero, 4); + } + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtArea, liteName, spaceArea * mult); + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtPower, liteName, state.dataHeatBal->Lights(lightsNum).DesignLevel * mult); + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtEndUse, liteName, state.dataHeatBal->Lights(lightsNum).EndUseSubcategory); + PreDefTableEntry( + state, state.dataOutRptPredefined->pdchInLtSchd, liteName, GetScheduleName(state, state.dataHeatBal->Lights(lightsNum).SchedPtr)); + PreDefTableEntry( + state, state.dataOutRptPredefined->pdchInLtRetAir, liteName, state.dataHeatBal->Lights(lightsNum).FractionReturnAir, 4); + } // Item1 - Number of Spaces per Lights input object if (CheckSharedExhaustFlag) { DataZoneEquipment::CheckSharedExhaust(state); Array1D_bool ReturnNodeShared; // zone supply air inlet nodes ReturnNodeShared.allocate(state.dataHeatBal->TotLights); ReturnNodeShared = false; - for (Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { int ZoneNum = state.dataHeatBal->Lights(Loop).ZonePtr; int ReturnNum = state.dataHeatBal->Lights(Loop).ZoneReturnNum; int ExhaustNodeNum = state.dataHeatBal->Lights(Loop).ZoneExhaustNodeNum; @@ -1710,7 +1428,7 @@ namespace InternalHeatGains { if (ReturnNum == state.dataHeatBal->Lights(Loop1).ZoneReturnNum && ExhaustNodeNum != state.dataHeatBal->Lights(Loop1).ZoneExhaustNodeNum) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + + std::string{RoutineName} + lightsModuleObject + ": Duplicated Return Air Node = " + state.dataHeatBal->Lights(Loop1).RetNodeName + " is found, "); ShowContinueError(state, " in both Lights objects = " + state.dataHeatBal->Lights(Loop).Name + " and " + @@ -1739,15 +1457,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "ElectricEquipment"; - state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, elecEqModuleObject); state.dataHeatBal->ZoneElectricObjects.allocate(state.dataHeatBal->NumZoneElectricStatements); state.dataHeatBal->TotElecEquip = 0; errFlag = false; for (int Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + elecEqModuleObject, Item, AlphaName, NumAlpha, @@ -1758,7 +1475,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), elecEqModuleObject, ErrorsFound); state.dataHeatBal->ZoneElectricObjects(Item).Name = AlphaName(1); @@ -1780,7 +1497,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr = ZLItem; } else { ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + + elecEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + AlphaName(2) + "\" not found."); ErrorsFound = true; errFlag = true; @@ -1788,7 +1505,7 @@ namespace InternalHeatGains { } if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); + ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + elecEqModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); state.dataHeatBal->TotElecEquip = 0; } @@ -1802,7 +1519,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + elecEqModuleObject, Item, AlphaName, NumAlpha, @@ -1829,7 +1546,7 @@ namespace InternalHeatGains { CheckCreatedZoneItemName( state, RoutineName, - CurrentModuleObject, + elecEqModuleObject, state.dataHeatBal ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) .Name, @@ -1855,11 +1572,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneElectric(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -1869,7 +1586,7 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -1877,7 +1594,7 @@ namespace InternalHeatGains { } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -1915,7 +1632,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneElectric(Loop).DesignLevel = IHGNumbers(1); if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Electric Equipment will result."); } @@ -1927,7 +1644,7 @@ namespace InternalHeatGains { IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Electric Equipment will result."); } @@ -1935,7 +1652,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + elecEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); @@ -1944,7 +1661,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Electric Equipment will result."); } @@ -1956,7 +1673,7 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).TotOccupants; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Electric Equipment will result."); } @@ -1964,7 +1681,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + elecEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); @@ -1973,7 +1690,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Electric Equipment will result."); } @@ -1981,7 +1698,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -2003,7 +1720,7 @@ namespace InternalHeatGains { if (std::abs(state.dataHeatBal->ZoneElectric(Loop).FractionConvected) <= 0.001) state.dataHeatBal->ZoneElectric(Loop).FractionConvected = 0.0; if (state.dataHeatBal->ZoneElectric(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError(state, std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } @@ -2233,15 +1950,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "GasEquipment"; - state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, gasEqModuleObject); state.dataHeatBal->ZoneGasObjects.allocate(state.dataHeatBal->NumZoneGasStatements); state.dataHeatBal->TotGasEquip = 0; errFlag = false; for (int Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + gasEqModuleObject, Item, AlphaName, NumAlpha, @@ -2252,7 +1968,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), gasEqModuleObject, ErrorsFound); state.dataHeatBal->ZoneGasObjects(Item).Name = AlphaName(1); @@ -2274,7 +1990,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr = ZLItem; } else { ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + + gasEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + AlphaName(2) + "\" not found."); ErrorsFound = true; errFlag = true; @@ -2282,7 +1998,7 @@ namespace InternalHeatGains { } if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); + ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + gasEqModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); state.dataHeatBal->TotGasEquip = 0; } @@ -2296,7 +2012,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + gasEqModuleObject, Item, AlphaName, NumAlpha, @@ -2323,7 +2039,7 @@ namespace InternalHeatGains { CheckCreatedZoneItemName( state, RoutineName, - CurrentModuleObject, + gasEqModuleObject, state.dataHeatBal ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) .Name, @@ -2350,11 +2066,11 @@ namespace InternalHeatGains { if (Item1 == 1) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -2366,7 +2082,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -2376,7 +2092,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -2415,7 +2131,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneGas(Loop).DesignLevel = IHGNumbers(1); if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + + std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Gas Equipment will result."); } @@ -2427,7 +2143,7 @@ namespace InternalHeatGains { IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + + std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Gas Equipment will result."); @@ -2436,7 +2152,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + gasEqModuleObject, state.dataHeatBal->ZoneGas(Loop).Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); @@ -2445,7 +2161,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + + std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Gas Equipment will result."); } @@ -2457,7 +2173,7 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).TotOccupants; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + + std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Gas Equipment will result."); @@ -2466,7 +2182,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + gasEqModuleObject, state.dataHeatBal->ZoneGas(Loop).Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); @@ -2475,7 +2191,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + + std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Gas Equipment will result."); } @@ -2483,7 +2199,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -2506,7 +2222,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, - CurrentModuleObject, + gasEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); @@ -2516,7 +2232,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", {} > 4.0E-7, value ={:.2R}", RoutineName, - CurrentModuleObject, + gasEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); @@ -2531,7 +2247,7 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneGas(Loop).FractionConvected < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } } @@ -2765,15 +2481,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "HotWaterEquipment"; - state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, hwEqModuleObject); state.dataHeatBal->HotWaterEqObjects.allocate(state.dataHeatBal->NumHotWaterEqStatements); state.dataHeatBal->TotHWEquip = 0; errFlag = false; for (int Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + hwEqModuleObject, Item, AlphaName, NumAlpha, @@ -2784,7 +2499,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), hwEqModuleObject, ErrorsFound); state.dataHeatBal->HotWaterEqObjects(Item).Name = AlphaName(1); @@ -2806,7 +2521,7 @@ namespace InternalHeatGains { state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr = ZLItem; } else { ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + + hwEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + AlphaName(2) + "\" not found."); ErrorsFound = true; errFlag = true; @@ -2814,7 +2529,7 @@ namespace InternalHeatGains { } if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); + ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + hwEqModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); state.dataHeatBal->TotHWEquip = 0; } @@ -2828,7 +2543,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + hwEqModuleObject, Item, AlphaName, NumAlpha, @@ -2855,7 +2570,7 @@ namespace InternalHeatGains { CheckCreatedZoneItemName( state, RoutineName, - CurrentModuleObject, + hwEqModuleObject, state.dataHeatBal ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) .Name, @@ -2881,11 +2596,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneHWEq(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -2895,7 +2610,7 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -2903,7 +2618,7 @@ namespace InternalHeatGains { } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -2941,7 +2656,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneHWEq(Loop).DesignLevel = IHGNumbers(1); if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -2953,7 +2668,7 @@ namespace InternalHeatGains { IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Hot Water Equipment will result."); } @@ -2961,7 +2676,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + hwEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); @@ -2970,7 +2685,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -2982,7 +2697,7 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).TotOccupants; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Hot Water Equipment will result."); } @@ -2990,7 +2705,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + hwEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); @@ -2999,7 +2714,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -3007,7 +2722,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -3029,7 +2744,7 @@ namespace InternalHeatGains { if (std::abs(state.dataHeatBal->ZoneHWEq(Loop).FractionConvected) <= 0.001) state.dataHeatBal->ZoneHWEq(Loop).FractionConvected = 0.0; if (state.dataHeatBal->ZoneHWEq(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError(state, std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } @@ -3259,15 +2974,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "SteamEquipment"; - state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, stmEqModuleObject); state.dataHeatBal->SteamEqObjects.allocate(state.dataHeatBal->NumSteamEqStatements); state.dataHeatBal->TotStmEquip = 0; errFlag = false; for (int Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + stmEqModuleObject, Item, AlphaName, NumAlpha, @@ -3278,7 +2992,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), stmEqModuleObject, ErrorsFound); state.dataHeatBal->SteamEqObjects(Item).Name = AlphaName(1); @@ -3300,7 +3014,7 @@ namespace InternalHeatGains { state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr = ZLItem; } else { ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + + stmEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + AlphaName(2) + "\" not found."); ErrorsFound = true; errFlag = true; @@ -3308,7 +3022,7 @@ namespace InternalHeatGains { } if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); + ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + stmEqModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); state.dataHeatBal->TotStmEquip = 0; } @@ -3322,7 +3036,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + stmEqModuleObject, Item, AlphaName, NumAlpha, @@ -3349,7 +3063,7 @@ namespace InternalHeatGains { CheckCreatedZoneItemName( state, RoutineName, - CurrentModuleObject, + stmEqModuleObject, state.dataHeatBal ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) .Name, @@ -3375,11 +3089,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -3389,7 +3103,7 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -3397,7 +3111,7 @@ namespace InternalHeatGains { } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -3435,7 +3149,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel = IHGNumbers(1); if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -3447,7 +3161,7 @@ namespace InternalHeatGains { IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Hot Water Equipment will result."); } @@ -3455,7 +3169,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + stmEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); @@ -3464,7 +3178,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -3476,7 +3190,7 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).TotOccupants; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Hot Water Equipment will result."); } @@ -3484,7 +3198,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + stmEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); @@ -3493,7 +3207,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -3501,7 +3215,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -3523,7 +3237,7 @@ namespace InternalHeatGains { if (std::abs(state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected) <= 0.001) state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected = 0.0; if (state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError(state, std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } @@ -3753,15 +3467,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "OtherEquipment"; - state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, othEqModuleObject); state.dataHeatBal->OtherEqObjects.allocate(state.dataHeatBal->NumOtherEqStatements); state.dataHeatBal->TotOthEquip = 0; errFlag = false; for (int Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + othEqModuleObject, Item, AlphaName, NumAlpha, @@ -3772,7 +3485,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), othEqModuleObject, ErrorsFound); state.dataHeatBal->OtherEqObjects(Item).Name = AlphaName(1); @@ -3794,7 +3507,7 @@ namespace InternalHeatGains { state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr = ZLItem; } else { ShowSevereError(state, - CurrentModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + "=\"" + + othEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + "=\"" + AlphaName(3) + "\" not found."); ErrorsFound = true; errFlag = true; @@ -3802,7 +3515,7 @@ namespace InternalHeatGains { } if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + CurrentModuleObject + " objects."); + ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + othEqModuleObject + " objects."); ShowContinueError(state, "...These will not be read in. Other errors may occur."); state.dataHeatBal->TotOthEquip = 0; } @@ -3816,7 +3529,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + othEqModuleObject, Item, AlphaName, NumAlpha, @@ -3843,7 +3556,7 @@ namespace InternalHeatGains { CheckCreatedZoneItemName( state, RoutineName, - CurrentModuleObject, + othEqModuleObject, state.dataHeatBal ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) .Name, @@ -3872,15 +3585,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType, AlphaName(2), FuelTypeString, - CurrentModuleObject, + othEqModuleObject, state.dataIPShortCut->cAlphaFieldNames(2), AlphaName(2)); if (state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::Unknown || state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::WaterUse) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + ": invalid " + - state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2) + " for " + - state.dataIPShortCut->cAlphaFieldNames(1) + '=' + AlphaName(1)); + std::string{RoutineName} + othEqModuleObject + ": invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + + " entered=" + AlphaName(2) + " for " + state.dataIPShortCut->cAlphaFieldNames(1) + '=' + + AlphaName(1)); ErrorsFound = true; } } @@ -3891,11 +3604,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(4)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(4) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + " entered=" + AlphaName(4)); } ErrorsFound = true; @@ -3935,7 +3648,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel = IHGNumbers(DesignLevelFieldNumber); if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but that field is blank. 0 Other Equipment will result."); } @@ -3948,14 +3661,14 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but Zone Floor Area = 0. 0 Other Equipment will result."); } } if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but that field is blank. 0 Other Equipment will result."); } @@ -3967,14 +3680,14 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).TotOccupants; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but Total Occupants = 0. 0 Other Equipment will result."); } } if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but that field is blank. 0 Other Equipment will result."); } @@ -3982,7 +3695,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(5) + ", value =" + AlphaName(5)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -3994,7 +3707,7 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel < 0.0 && state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + " is not allowed to be negative"); ShowContinueError(state, "... when a fuel type of " + FuelTypeString + " is specified."); ErrorsFound = true; @@ -4015,7 +3728,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, - CurrentModuleObject, + othEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); @@ -4025,7 +3738,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", {} > 4.0E-7, value ={:.2R}", RoutineName, - CurrentModuleObject, + othEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); @@ -4039,7 +3752,7 @@ namespace InternalHeatGains { if (std::abs(state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected) <= 0.001) state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected = 0.0; if (state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError(state, std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } @@ -4273,8 +3986,7 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "ElectricEquipment:ITE:AirCooled"; - state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, itEqModuleObject); errFlag = false; // Note that this object type does not support ZoneList due to node names in input fields @@ -4286,7 +3998,7 @@ namespace InternalHeatGains { IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + itEqModuleObject, Loop, AlphaName, NumAlpha, @@ -4342,7 +4054,7 @@ namespace InternalHeatGains { state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).NoHeatToReturnAir = false; } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\": invalid calculation method: " + AlphaName(3)); ErrorsFound = true; } @@ -4354,13 +4066,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower = IHGNumbers(1) * IHGNumbers(2); if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 IT Equipment will result."); } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 IT Equipment will result."); } @@ -4372,7 +4084,7 @@ namespace InternalHeatGains { IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea; if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but Zone Floor Area = 0. 0 IT Equipment will result."); } @@ -4380,7 +4092,7 @@ namespace InternalHeatGains { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, - CurrentModuleObject, + itEqModuleObject, AlphaName(1), state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); @@ -4389,14 +4101,14 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 IT Equipment will result."); } } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"Watts/Unit\" or \"Watts/Area\"."); ErrorsFound = true; @@ -4412,7 +4124,7 @@ namespace InternalHeatGains { SchMax = 0.0; if (state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(5) + " entered=" + AlphaName(5)); ErrorsFound = true; } else { // check min/max on schedule @@ -4421,14 +4133,14 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMin)); ErrorsFound = true; } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(5) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMax)); ErrorsFound = true; @@ -4445,7 +4157,7 @@ namespace InternalHeatGains { SchMax = 0.0; if (state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(6) + " entered=" + AlphaName(6)); ErrorsFound = true; } else { // check min/max on schedule @@ -4454,14 +4166,14 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(6) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMin)); ErrorsFound = true; } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(6) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMax)); ErrorsFound = true; @@ -4492,21 +4204,21 @@ namespace InternalHeatGains { // Performance curves state.dataHeatBal->ZoneITEq(Loop).CPUPowerFLTCurve = GetCurveIndex(state, AlphaName(7)); if (state.dataHeatBal->ZoneITEq(Loop).CPUPowerFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7)); ErrorsFound = true; } state.dataHeatBal->ZoneITEq(Loop).AirFlowFLTCurve = GetCurveIndex(state, AlphaName(8)); if (state.dataHeatBal->ZoneITEq(Loop).AirFlowFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(8) + '=' + AlphaName(8)); ErrorsFound = true; } state.dataHeatBal->ZoneITEq(Loop).FanPowerFFCurve = GetCurveIndex(state, AlphaName(9)); if (state.dataHeatBal->ZoneITEq(Loop).FanPowerFFCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(9) + '=' + AlphaName(9)); ErrorsFound = true; } @@ -4515,7 +4227,7 @@ namespace InternalHeatGains { // If this field isn't blank, it must point to a valid curve state.dataHeatBal->ZoneITEq(Loop).RecircFLTCurve = GetCurveIndex(state, AlphaName(15)); if (state.dataHeatBal->ZoneITEq(Loop).RecircFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(15) + '=' + AlphaName(15)); ErrorsFound = true; } @@ -4528,7 +4240,7 @@ namespace InternalHeatGains { // If this field isn't blank, it must point to a valid curve state.dataHeatBal->ZoneITEq(Loop).UPSEfficFPLRCurve = GetCurveIndex(state, AlphaName(16)); if (state.dataHeatBal->ZoneITEq(Loop).UPSEfficFPLRCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(16) + '=' + AlphaName(16)); ErrorsFound = true; } @@ -4553,7 +4265,7 @@ namespace InternalHeatGains { } else if (UtilityRoutines::SameString(AlphaName(10), "C")) { state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassC; } else { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + ": " + AlphaName(1)); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(10) + '=' + AlphaName(10)); ShowContinueError(state, "Valid entries are None, A1, A2, A3, A4, B or C."); ErrorsFound = true; @@ -4567,24 +4279,24 @@ namespace InternalHeatGains { } else if (UtilityRoutines::SameString(AlphaName(11), "RoomAirModel")) { // ZoneITEq( Loop ).AirConnectionType = ITEInletRoomAirModel; ShowWarningError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "Air Inlet Connection Type = RoomAirModel is not implemented yet, using ZoneAirNode"); state.dataHeatBal->ZoneITEq(Loop).AirConnectionType = ITEInletZoneAirNode; } else { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + ": " + AlphaName(1)); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(11) + '=' + AlphaName(11)); ShowContinueError(state, "Valid entries are AdjustedSupply, ZoneAirNode, or RoomAirModel."); ErrorsFound = true; } if (state.dataIPShortCut->lAlphaFieldBlanks(14)) { if (state.dataHeatBal->ZoneITEq(Loop).AirConnectionType == ITEInletAdjustedSupply) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + ": " + AlphaName(1)); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); ShowContinueError(state, "For " + state.dataIPShortCut->cAlphaFieldNames(11) + "= AdjustedSupply, " + state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); ErrorsFound = true; } else if (state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + ": " + AlphaName(1)); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); ShowContinueError(state, "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, " + state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); @@ -4594,7 +4306,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum = GetOnlySingleNode(state, AlphaName(14), ErrorsFound, - CurrentModuleObject, + itEqModuleObject, AlphaName(1), DataLoopNode::NodeFluidType::Air, DataLoopNode::NodeConnectionType::Sensor, @@ -4626,7 +4338,7 @@ namespace InternalHeatGains { } else if (state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum != 0 && !supplyNodeFound) { // the given supply air node does not match any zone equipment supply air nodes ShowWarningError(state, - CurrentModuleObject + "name: '" + AlphaName(1) + ". " + "Supply Air Node Name '" + AlphaName(14) + + itEqModuleObject + "name: '" + AlphaName(1) + ". " + "Supply Air Node Name '" + AlphaName(14) + "' does not match any ZoneHVAC:EquipmentConnections objects."); } @@ -4654,13 +4366,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).SupplyApproachTempSch = GetScheduleIndex(state, AlphaName(20)); if (state.dataHeatBal->ZoneITEq(Loop).SupplyApproachTempSch == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); ErrorsFound = true; } } else { if (!hasSupplyApproachTemp) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, either " + state.dataIPShortCut->cNumericFieldNames(10) + " or " + state.dataIPShortCut->cAlphaFieldNames(20) + @@ -4673,13 +4385,13 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).ReturnApproachTempSch = GetScheduleIndex(state, AlphaName(21)); if (state.dataHeatBal->ZoneITEq(Loop).ReturnApproachTempSch == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); ErrorsFound = true; } } else { if (!hasReturnApproachTemp) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + " \"" + AlphaName(1) + "\""); + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); ShowContinueError(state, "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, either " + state.dataIPShortCut->cNumericFieldNames(11) + " or " + state.dataIPShortCut->cAlphaFieldNames(21) + @@ -5178,7 +4890,7 @@ namespace InternalHeatGains { if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).HasAdjustedReturnTempByITE && (!state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\": invalid calculation method " + + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\": invalid calculation method " + AlphaName(3) + " for Zone: " + AlphaName(2)); ShowContinueError(state, "...Multiple flow control methods apply to one zone. "); ErrorsFound = true; @@ -5189,15 +4901,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "ZoneBaseboard:OutdoorTemperatureControlled"; - state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, bbModuleObject); state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { AlphaName = ""; IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + bbModuleObject, Loop, AlphaName, NumAlpha, @@ -5208,7 +4919,7 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + UtilityRoutines::IsNameEmpty(state, AlphaName(1), bbModuleObject, ErrorsFound); state.dataHeatBal->ZoneBBHeat(Loop).Name = AlphaName(1); @@ -5216,7 +4927,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr = zoneNum; if (state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); ErrorsFound = true; } else { @@ -5251,11 +4962,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -5265,14 +4976,14 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); ErrorsFound = true; } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); ErrorsFound = true; @@ -5293,7 +5004,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneBBHeat(Loop).FractionRadiant = IHGNumbers(5); state.dataHeatBal->ZoneBBHeat(Loop).FractionConvected = 1.0 - state.dataHeatBal->ZoneBBHeat(Loop).FractionRadiant; if (state.dataHeatBal->ZoneBBHeat(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError(state, std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } @@ -5461,15 +5172,14 @@ namespace InternalHeatGains { for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { RepVarSet(zoneNum) = true; } - CurrentModuleObject = "ZoneContaminantSourceAndSink:CarbonDioxide"; - state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, CurrentModuleObject); + state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, contamSSModuleObject); state.dataHeatBal->ZoneCO2Gen.allocate(state.dataHeatBal->TotCO2Gen); for (int Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { AlphaName = ""; IHGNumbers = 0.0; state.dataInputProcessing->inputProcessor->getObjectItem(state, - CurrentModuleObject, + contamSSModuleObject, Loop, AlphaName, NumAlpha, @@ -5480,14 +5190,14 @@ namespace InternalHeatGains { state.dataIPShortCut->lAlphaFieldBlanks, state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - UtilityRoutines::IsNameEmpty(state, AlphaName(1), CurrentModuleObject, ErrorsFound); + UtilityRoutines::IsNameEmpty(state, AlphaName(1), contamSSModuleObject, ErrorsFound); state.dataHeatBal->ZoneCO2Gen(Loop).Name = AlphaName(1); state.dataHeatBal->ZoneCO2Gen(Loop).ZonePtr = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); if (state.dataHeatBal->ZoneCO2Gen(Loop).ZonePtr == 0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + contamSSModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); ErrorsFound = true; } @@ -5496,11 +5206,11 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneCO2Gen(Loop).SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + contamSSModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + contamSSModuleObject + "=\"" + AlphaName(1) + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; @@ -5510,14 +5220,14 @@ namespace InternalHeatGains { if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + contamSSModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); ErrorsFound = true; } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + CurrentModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + contamSSModuleObject + "=\"" + AlphaName(1) + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); ErrorsFound = true; @@ -6610,6 +6320,291 @@ namespace InternalHeatGains { addSpaceOutputs(spaceNum) = false; } } + + for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->Lights(lightsNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->Lights(lightsNum).spaceIndex) = true; + // Object report variables + SetupOutputVariable(state, + "Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + + SetupOutputVariable(state, + "Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).VisGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + + SetupOutputVariable(state, + "Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).VisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).RetAirGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).RetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name, + _, + "Electricity", + "InteriorLights", + state.dataHeatBal->Lights(lightsNum).EndUseSubcategory, + "Building", + state.dataHeatBal->space(state.dataHeatBal->Lights(lightsNum).spaceIndex).Name, + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).ListMultiplier); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + SetupOutputVariable(state, + "Zone Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsVisGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsVisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + } } void InitInternalHeatGains(EnergyPlusData &state) @@ -6646,15 +6641,14 @@ namespace InternalHeatGains { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: Real64 ActivityLevel_WperPerson; // Units on Activity Level (Schedule) Real64 NumberOccupants; // Number of occupants - int Loop; - Real64 Q; // , QR - Real64 TotalPeopleGain; // Total heat gain from people (intermediate calculational variable) - Real64 SensiblePeopleGain; // Sensible heat gain from people (intermediate calculational variable) - Real64 FractionConvected; // For general lighting, fraction of heat from lights convected to zone air - Real64 FractionReturnAir; // For general lighting, fraction of heat from lights convected to zone's return air - Real64 FractionRadiant; // For general lighting, fraction of heat from lights to zone that is long wave - Real64 ReturnPlenumTemp; // Air temperature of a zone's return air plenum (C) - Real64 pulseMultipler; // use to create a pulse for the load component report computations + Real64 Q; // , QR + Real64 TotalPeopleGain; // Total heat gain from people (intermediate calculational variable) + Real64 SensiblePeopleGain; // Sensible heat gain from people (intermediate calculational variable) + Real64 FractionConvected; // For general lighting, fraction of heat from lights convected to zone air + Real64 FractionReturnAir; // For general lighting, fraction of heat from lights convected to zone's return air + Real64 FractionRadiant; // For general lighting, fraction of heat from lights to zone that is long wave + Real64 ReturnPlenumTemp; // Air temperature of a zone's return air plenum (C) + Real64 pulseMultipler; // use to create a pulse for the load component report computations // REAL(r64), ALLOCATABLE, SAVE, DIMENSION(:) :: QSA @@ -6765,7 +6759,7 @@ namespace InternalHeatGains { // Sensible gains of 0.0 at 96F and equal to the metabolic rate // at 30F were assumed in order to give reasonable values beyond // The reported temperature range. - for (Loop = 1; Loop <= state.dataHeatBal->TotPeople; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotPeople; ++Loop) { int NZ = state.dataHeatBal->People(Loop).ZonePtr; NumberOccupants = state.dataHeatBal->People(Loop).NumberOfPeople * GetCurrentScheduleValue(state, state.dataHeatBal->People(Loop).NumberOfPeoplePtr); @@ -6834,7 +6828,7 @@ namespace InternalHeatGains { state.dataHeatBal->spaceIntGain(spaceNum).QOCTOT += state.dataHeatBal->People(Loop).TotGainRate; } - for (Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotLights; ++Loop) { int NZ = state.dataHeatBal->Lights(Loop).ZonePtr; Q = state.dataHeatBal->Lights(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->Lights(Loop).SchedPtr); @@ -6896,18 +6890,15 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate; state.dataHeatBal->ZoneIntGain(NZ).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate; - for (int index = 1; index <= int(state.dataHeatBal->Lights(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->Lights(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->Lights(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->Lights(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QLTCRA += state.dataHeatBal->Lights(Loop).RetAirGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate; } - for (Loop = 1; Loop <= state.dataHeatBal->TotElecEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotElecEquip; ++Loop) { Q = state.dataHeatBal->ZoneElectric(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneElectric(Loop).SchedPtr); // Reduce equipment power due to demand limiting @@ -6941,7 +6932,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { Q = state.dataHeatBal->ZoneGas(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneGas(Loop).SchedPtr); // Set Q to EMS override if being called for by EMs @@ -6972,7 +6963,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { Q = state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr); // Set Q to EMS override if being called for by EMs @@ -7001,7 +6992,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { Q = state.dataHeatBal->ZoneHWEq(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneHWEq(Loop).SchedPtr); // Set Q to EMS override if being called for by EMs @@ -7031,7 +7022,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { Q = state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr); // Set Q to EMS override if being called for by EMs @@ -7061,7 +7052,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { int NZ = state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr; if (state.dataHeatBal->Zone(NZ).OutDryBulbTemp >= state.dataHeatBal->ZoneBBHeat(Loop).HighTemperature) { Q = 0.0; @@ -7096,7 +7087,7 @@ namespace InternalHeatGains { } } - for (Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { int NZ = state.dataHeatBal->ZoneCO2Gen(Loop).ZonePtr; state.dataHeatBal->ZoneCO2Gen(Loop).CO2GainRate = state.dataHeatBal->ZoneCO2Gen(Loop).CO2DesignRate * GetCurrentScheduleValue(state, state.dataHeatBal->ZoneCO2Gen(Loop).SchedPtr); diff --git a/src/EnergyPlus/OutputReportPredefined.cc b/src/EnergyPlus/OutputReportPredefined.cc index cf0f50f3111..53afd22b941 100644 --- a/src/EnergyPlus/OutputReportPredefined.cc +++ b/src/EnergyPlus/OutputReportPredefined.cc @@ -217,9 +217,9 @@ namespace OutputReportPredefined { s->pdstInLite = newPreDefSubTable(state, s->pdrLighting, "Interior Lighting"); - s->pdchInLtZone = newPreDefColumn(state, s->pdstInLite, "Zone"); + s->pdchInLtSpace = newPreDefColumn(state, s->pdstInLite, "Space Name"); s->pdchInLtDens = newPreDefColumn(state, s->pdstInLite, "Lighting Power Density [W/m2]"); - s->pdchInLtArea = newPreDefColumn(state, s->pdstInLite, "Zone Area [m2]"); + s->pdchInLtArea = newPreDefColumn(state, s->pdstInLite, "Space Area [m2]"); s->pdchInLtPower = newPreDefColumn(state, s->pdstInLite, "Total Power [W]"); s->pdchInLtEndUse = newPreDefColumn(state, s->pdstInLite, "End Use Subcategory"); s->pdchInLtSchd = newPreDefColumn(state, s->pdstInLite, "Schedule Name"); diff --git a/src/EnergyPlus/OutputReportPredefined.hh b/src/EnergyPlus/OutputReportPredefined.hh index 9eb9467f9ad..e226db064fa 100644 --- a/src/EnergyPlus/OutputReportPredefined.hh +++ b/src/EnergyPlus/OutputReportPredefined.hh @@ -402,7 +402,7 @@ struct OutputReportPredefinedData : BaseGlobalStruct // Lighting Report int pdrLighting = 0; int pdstInLite = 0; - int pdchInLtZone = 0; + int pdchInLtSpace = 0; int pdchInLtDens = 0; int pdchInLtArea = 0; int pdchInLtPower = 0; @@ -1365,7 +1365,7 @@ struct OutputReportPredefinedData : BaseGlobalStruct this->pdchWscGlare = 0; this->pdrLighting = 0; this->pdstInLite = 0; - this->pdchInLtZone = 0; + this->pdchInLtSpace = 0; this->pdchInLtDens = 0; this->pdchInLtArea = 0; this->pdchInLtPower = 0; diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 3b3fdc1e37c..c2b61aa7694 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -11954,12 +11954,10 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr } for (int iLights = 1; iLights <= state.dataHeatBal->TotLights; ++iLights) { auto curLighting = state.dataHeatBal->Lights(iLights); - for (int iSpace = 1; iSpace <= int(curLighting.spacePtrs.size()); ++iSpace) { - int const spaceNum = curLighting.spacePtrs(iSpace); - Real64 const lighting = curLighting.DesignLevel * curLighting.spaceFracs(iSpace); - spaceTotLighting(spaceNum) += lighting; - spaceTypeTotLighting(state.dataHeatBal->space(spaceNum).spaceTypeNum) += lighting; - } + int const spaceNum = curLighting.spaceIndex; + Real64 const lighting = curLighting.DesignLevel; + spaceTotLighting(spaceNum) += lighting; + spaceTypeTotLighting(state.dataHeatBal->space(spaceNum).spaceTypeNum) += lighting; } for (int iElecEquip = 1; iElecEquip <= state.dataHeatBal->TotElecEquip; ++iElecEquip) { auto curElecEquip = state.dataHeatBal->ZoneElectric(iElecEquip); diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index 9487aee93b2..aa3f7780460 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -61,8 +61,8 @@ #include #include #include -#include #include +#include #include #include #include diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index fb3424c82a8..f5e5bd5006d 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6270,22 +6270,13 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->ZoneElectric.allocate(state->dataHeatBal->TotElecEquip); state->dataHeatBal->Lights(1).ZonePtr = 1; - state->dataHeatBal->Lights(1).spacePtrs.allocate(1); - state->dataHeatBal->Lights(1).spacePtrs(1) = 1; - state->dataHeatBal->Lights(1).spaceFracs.allocate(1); - state->dataHeatBal->Lights(1).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(1).spaceIndex = 1; state->dataHeatBal->Lights(1).DesignLevel = 1000.0; state->dataHeatBal->Lights(2).ZonePtr = 2; - state->dataHeatBal->Lights(2).spacePtrs.allocate(1); - state->dataHeatBal->Lights(2).spacePtrs(1) = 2; - state->dataHeatBal->Lights(2).spaceFracs.allocate(1); - state->dataHeatBal->Lights(2).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(2).spaceIndex = 2; state->dataHeatBal->Lights(2).DesignLevel = 100.0; state->dataHeatBal->Lights(3).ZonePtr = 3; - state->dataHeatBal->Lights(3).spacePtrs.allocate(1); - state->dataHeatBal->Lights(3).spacePtrs(1) = 3; - state->dataHeatBal->Lights(3).spaceFracs.allocate(1); - state->dataHeatBal->Lights(3).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(3).spaceIndex = 3; state->dataHeatBal->Lights(3).DesignLevel = 10.0; state->dataHeatBal->People(1).ZonePtr = 1; @@ -9321,22 +9312,13 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->ZoneElectric.allocate(state->dataHeatBal->TotElecEquip); state->dataHeatBal->Lights(1).ZonePtr = 1; - state->dataHeatBal->Lights(1).spacePtrs.allocate(1); - state->dataHeatBal->Lights(1).spacePtrs(1) = 1; - state->dataHeatBal->Lights(1).spaceFracs.allocate(1); - state->dataHeatBal->Lights(1).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(1).spaceIndex = 1; state->dataHeatBal->Lights(1).DesignLevel = 1000.0; state->dataHeatBal->Lights(2).ZonePtr = 2; - state->dataHeatBal->Lights(2).spacePtrs.allocate(1); - state->dataHeatBal->Lights(2).spacePtrs(1) = 2; - state->dataHeatBal->Lights(2).spaceFracs.allocate(1); - state->dataHeatBal->Lights(2).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(2).spaceIndex = 2; state->dataHeatBal->Lights(2).DesignLevel = 100.0; state->dataHeatBal->Lights(3).ZonePtr = 3; - state->dataHeatBal->Lights(3).spacePtrs.allocate(1); - state->dataHeatBal->Lights(3).spacePtrs(1) = 3; - state->dataHeatBal->Lights(3).spaceFracs.allocate(1); - state->dataHeatBal->Lights(3).spaceFracs(1) = 1.0; + state->dataHeatBal->Lights(3).spaceIndex = 3; state->dataHeatBal->Lights(3).DesignLevel = 10.0; state->dataHeatBal->People(1).ZonePtr = 1; From 477aaf722aaaa7a1510fb1f2b2c1e0b7e5a18fab Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 20:47:08 -0500 Subject: [PATCH 79/98] Space - SpaceType meters --- src/EnergyPlus/OutputProcessor.cc | 86 +++++++++++++++---- src/EnergyPlus/OutputProcessor.hh | 38 ++++---- tst/EnergyPlus/unit/OutputProcessor.unit.cc | 13 +-- .../unit/OutputReportTabular.unit.cc | 3 +- 4 files changed, 100 insertions(+), 40 deletions(-) diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index da103209cd3..55f5645382f 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -1903,7 +1903,8 @@ namespace OutputProcessor { std::string &EndUse, // End-use category (Lights, Heating, etc.) std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) - std::string const &ZoneName, // Zone key only applicable for Building group + std::string const ZoneName, // Zone key only applicable for Building group + std::string const SpaceTypeName, // Space Type key only applicable for Building group int const RepVarNum, // Number of this report variable int &MeterArrayPtr, // Output set of Pointers to Meters bool &ErrorsFound // True if errors in this call @@ -1925,7 +1926,7 @@ namespace OutputProcessor { auto &op(state.dataOutputProcessor); if (UtilityRoutines::SameString(Group, "Building")) { - ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName); + ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName, SpaceTypeName); } else { ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound); } @@ -1946,12 +1947,19 @@ namespace OutputProcessor { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } - if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone + if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone and Space Type Found = UtilityRoutines::FindItem(ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } + if (!std::string(SpaceTypeName).empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } + } } } @@ -1968,6 +1976,13 @@ namespace OutputProcessor { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } + if (!SpaceTypeName.empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } + } } // End use subcategory @@ -1985,6 +2000,14 @@ namespace OutputProcessor { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } + if (!std::string(SpaceTypeName).empty()) { + Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, + op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } + } } } } @@ -2032,7 +2055,8 @@ namespace OutputProcessor { std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) bool &ErrorsFound, // True if errors in this call - Optional_string_const ZoneName // ZoneName when Group=Building + Optional_string_const ZoneName, // ZoneName when Group=Building + Optional_string_const SpaceTypeName // Space Type Name when Group=Building ) { @@ -2094,6 +2118,12 @@ namespace OutputProcessor { if (Found == 0) { AddMeter(state, ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, "", "", "Zone"); } + if (!std::string(SpaceTypeName).empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, "", "", "SpaceType"); + } + } } } @@ -2277,11 +2307,17 @@ namespace OutputProcessor { Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType, op->EnergyMeters); if (Found == 0) AddMeter(state, EndUse + ':' + ResourceType, MtrUnits, ResourceType, EndUse, "", ""); - if (Group == "Building") { // Match to Zone + if (Group == "Building") { // Match to Zone and Space Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); if (Found == 0) { AddMeter(state, EndUse + ':' + ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, EndUse, "", "Zone"); } + if (!std::string(SpaceTypeName).empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, EndUse, "", "SpaceType"); + } + } } } else if (LocalErrorsFound) { ErrorsFound = true; @@ -5271,7 +5307,7 @@ void SetupOutputVariable(EnergyPlusData &state, Optional_string_const EndUseKey, // Meter End Use Key (Lights, Heating, Cooling, etc) Optional_string_const EndUseSubKey, // Meter End Use Sub Key (General Lights, Task Lights, etc) Optional_string_const GroupKey, // Meter Super Group Key (Building, System, Plant) - Optional_string_const ZoneKey, // Meter Zone Key (zone name) + Optional_string_const ZoneOrSpaceKey, // Meter Zone Name or Space Name Optional_int_const ZoneMult, // Zone Multiplier, defaults to 1 Optional_int_const ZoneListMult, // Zone List Multiplier, defaults to 1 Optional_int_const indexGroupKey, // Group identifier for SQL output @@ -5302,11 +5338,12 @@ void SetupOutputVariable(EnergyPlusData &state, StoreType VariableType; // 1=Average, 2=Sum, 3=Min/Max int Loop; ReportingFrequency RepFreq(ReportingFrequency::Hourly); - std::string ResourceType; // Will hold value of ResourceTypeKey - std::string EndUse; // Will hold value of EndUseKey - std::string EndUseSub; // Will hold value of EndUseSubKey - std::string Group; // Will hold value of GroupKey - std::string ZoneName; // Will hold value of ZoneKey + std::string ResourceType; // Will hold value of ResourceTypeKey + std::string EndUse; // Will hold value of EndUseKey + std::string EndUseSub; // Will hold value of EndUseSubKey + std::string Group; // Will hold value of GroupKey + std::string zoneName; // Will hold value of ZoneOrSpaceKey if it is a Zone name, or the corresponding Zone if it is a Space name + std::string spaceTypeName; // Space Type if ZoneOrSpaceKey if it is a Space name int localIndexGroupKey; auto &op(state.dataOutputProcessor); @@ -5370,11 +5407,27 @@ void SetupOutputVariable(EnergyPlusData &state, } else { Group = ""; } - if (present(ZoneKey)) { - ZoneName = ZoneKey; - OnMeter = true; + if (present(ZoneOrSpaceKey)) { + std::string ucZoneOrSpaceKey = UtilityRoutines::MakeUPPERCase(std::string(ZoneOrSpaceKey)); + int spaceNum = UtilityRoutines::FindItemInList(ucZoneOrSpaceKey, state.dataHeatBal->space); + if (spaceNum > 0) { + spaceTypeName = state.dataHeatBal->space(spaceNum).spaceType; + zoneName = state.dataHeatBal->Zone(state.dataHeatBal->space(spaceNum).zoneNum).Name; + OnMeter = true; + } else { + int zoneNum = UtilityRoutines::FindItemInList(ucZoneOrSpaceKey, state.dataHeatBal->Zone); + if (zoneNum > 0) { + zoneName = ucZoneOrSpaceKey; + spaceTypeName = ""; + OnMeter = true; + } else { + zoneName = ""; + spaceTypeName = ""; + } + } } else { - ZoneName = ""; + zoneName = ""; + spaceTypeName = ""; } } @@ -5449,7 +5502,8 @@ void SetupOutputVariable(EnergyPlusData &state, } else { Unit mtrUnits = op->RVariableTypes(CV).units; bool ErrorsFound = false; - AttachMeters(state, mtrUnits, ResourceType, EndUse, EndUseSub, Group, ZoneName, CV, thisVarPtr.MeterArrayPtr, ErrorsFound); + AttachMeters( + state, mtrUnits, ResourceType, EndUse, EndUseSub, Group, zoneName, spaceTypeName, CV, thisVarPtr.MeterArrayPtr, ErrorsFound); if (ErrorsFound) { ShowContinueError(state, "Invalid Meter spec for variable=" + KeyedValue + ':' + VariableName); op->ErrorsLogged = true; diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index 2de3fda8de1..d4f672587c7 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -435,7 +435,7 @@ namespace OutputProcessor { Array1D_int OnCustomMeters; // Forward pointer to Custom Meter Numbers // Default Constructor - MeterArrayType() : NumOnMeters(0), RepVariable(0), OnMeters(6, 0), NumOnCustomMeters(0) + MeterArrayType() : NumOnMeters(0), RepVariable(0), OnMeters(9, 0), NumOnCustomMeters(0) { } }; @@ -653,15 +653,16 @@ namespace OutputProcessor { ); void AttachMeters(EnergyPlusData &state, - Unit const &MtrUnits, // Units for this meter - std::string &ResourceType, // Electricity, Gas, etc. - std::string &EndUse, // End-use category (Lights, Heating, etc.) - std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) - std::string &Group, // Group key (Facility, Zone, Building, etc.) - std::string const &ZoneName, // Zone key only applicable for Building group - int RepVarNum, // Number of this report variable - int &MeterArrayPtr, // Output set of Pointers to Meters - bool &ErrorsFound // True if errors in this call + Unit const &MtrUnits, // Units for this meter + std::string &ResourceType, // Electricity, Gas, etc. + std::string &EndUse, // End-use category (Lights, Heating, etc.) + std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) + std::string &Group, // Group key (Facility, Zone, Building, etc.) + std::string const ZoneName, // Zone key only applicable for Building group + std::string const SpaceTypeName, // Space Type key only applicable for Building group + int RepVarNum, // Number of this report variable + int &MeterArrayPtr, // Output set of Pointers to Meters + bool &ErrorsFound // True if errors in this call ); void AttachCustomMeters(EnergyPlusData &state, @@ -671,13 +672,14 @@ namespace OutputProcessor { ); void ValidateNStandardizeMeterTitles(EnergyPlusData &state, - OutputProcessor::Unit const &MtrUnits, // Units for the meter - std::string &ResourceType, // Electricity, Gas, etc. - std::string &EndUse, // End Use Type (Lights, Heating, etc.) - std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) - std::string &Group, // Group key (Facility, Zone, Building, etc.) - bool &ErrorsFound, // True if errors in this call - Optional_string_const ZoneName = _ // ZoneName when Group=Building + OutputProcessor::Unit const &MtrUnits, // Units for the meter + std::string &ResourceType, // Electricity, Gas, etc. + std::string &EndUse, // End Use Type (Lights, Heating, etc.) + std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) + std::string &Group, // Group key (Facility, Zone, Building, etc.) + bool &ErrorsFound, // True if errors in this call + Optional_string_const ZoneName = _, // ZoneName when Group=Building + Optional_string_const SpaceTypeName = _ // Space Type Name when Group=Building ); void DetermineMeterIPUnits(EnergyPlusData &state, @@ -912,7 +914,7 @@ void SetupOutputVariable(EnergyPlusData &state, Optional_string_const EndUseKey = _, // Meter End Use Key (Lights, Heating, Cooling, etc) Optional_string_const EndUseSubKey = _, // Meter End Use Sub Key (General Lights, Task Lights, etc) Optional_string_const GroupKey = _, // Meter Super Group Key (Building, System, Plant) - Optional_string_const ZoneKey = _, // Meter Zone Key (zone name) + Optional_string_const ZoneOrSpaceKey = _, // Meter Zone Name or Space Name Optional_int_const ZoneMult = _, // Zone Multiplier, defaults to 1 Optional_int_const ZoneListMult = _, // Zone List Multiplier, defaults to 1 Optional_int_const indexGroupKey = _, // Group identifier for SQL output diff --git a/tst/EnergyPlus/unit/OutputProcessor.unit.cc b/tst/EnergyPlus/unit/OutputProcessor.unit.cc index 1a867e39b16..8dba8e45a7e 100644 --- a/tst/EnergyPlus/unit/OutputProcessor.unit.cc +++ b/tst/EnergyPlus/unit/OutputProcessor.unit.cc @@ -4191,21 +4191,24 @@ namespace OutputProcessor { std::string endUseSub("GeneralLights"); std::string group("Building"); std::string const zoneName("SPACE1-1"); + std::string const spaceType("OFFICE"); - AttachMeters(*state, OutputProcessor::Unit::J, resourceType, endUse, endUseSub, group, zoneName, 1, meter_array_ptr, errors_found); + AttachMeters(*state, OutputProcessor::Unit::J, resourceType, endUse, endUseSub, group, zoneName, spaceType, 1, meter_array_ptr, errors_found); EXPECT_FALSE(errors_found); EXPECT_EQ(1, meter_array_ptr); - ASSERT_EQ(6, state->dataOutputProcessor->NumEnergyMeters); + ASSERT_EQ(8, state->dataOutputProcessor->NumEnergyMeters); auto const meters_result = std::map>({ {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, - {4, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, - {5, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {6, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, + {4, std::make_tuple(0, "Electricity:SpaceType:OFFICE", "Electricity", "", "", "SpaceType", "J")}, + {5, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, + {6, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {7, std::make_tuple(0, "InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "", "SpaceType", "J")}, + {8, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, }); for (auto const &result : meters_result) { diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index f5e5bd5006d..4a171a4750b 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -8580,8 +8580,9 @@ TEST_F(EnergyPlusFixture, OutputReportTabularMonthly_8317_ValidateOutputTableMon std::string endUseSub(""); std::string group(""); std::string const zoneName(""); + std::string const spaceType(""); - AttachMeters(*state, OutputProcessor::Unit::J, resourceType, endUse, endUseSub, group, zoneName, 1, meter_array_ptr, errors_found); + AttachMeters(*state, OutputProcessor::Unit::J, resourceType, endUse, endUseSub, group, zoneName, spaceType, 1, meter_array_ptr, errors_found); EXPECT_FALSE(errors_found); EXPECT_EQ(3, meter_array_ptr); // 2 meters were setup via SetupOutputVariable already From 7e74f436de5a3c06f52843d2d420bbc6bdae99be Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 12 Aug 2021 20:57:51 -0500 Subject: [PATCH 80/98] Space - initialize numGainInstances --- src/EnergyPlus/InternalHeatGains.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 36d102a5f8a..1b9686195d5 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -5809,6 +5809,7 @@ namespace InternalHeatGains { numInputObjects = int(instancesValue.size()); inputObjects.allocate(numInputObjects); + numGainInstances = 0; int counter = 0; for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { auto const &objectFields = instance.value(); From 3d653fe9bea0262916816becbc9f8289b8fac7f7 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 13 Aug 2021 13:06:11 -0500 Subject: [PATCH 81/98] Space - SetupOutputVariable revert ZoneKey and add SpaceType --- src/EnergyPlus/InternalHeatGains.cc | 7 +- src/EnergyPlus/OutputProcessor.cc | 103 ++++++++++++++-------------- src/EnergyPlus/OutputProcessor.hh | 39 ++++++----- 3 files changed, 75 insertions(+), 74 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 1b9686195d5..28d4a815170 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -6418,9 +6418,12 @@ namespace InternalHeatGains { "InteriorLights", state.dataHeatBal->Lights(lightsNum).EndUseSubcategory, "Building", - state.dataHeatBal->space(state.dataHeatBal->Lights(lightsNum).spaceIndex).Name, + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Name, state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).ListMultiplier); + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->Lights(lightsNum).spaceIndex).spaceType); } // Zone total report variables diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index 55f5645382f..a632904731e 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -1903,8 +1903,8 @@ namespace OutputProcessor { std::string &EndUse, // End-use category (Lights, Heating, etc.) std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) - std::string const ZoneName, // Zone key only applicable for Building group - std::string const SpaceTypeName, // Space Type key only applicable for Building group + std::string const &ZoneName, // Zone key only applicable for Building group + std::string const &SpaceTypeName, // Space Type key only applicable for Building group int const RepVarNum, // Number of this report variable int &MeterArrayPtr, // Output set of Pointers to Meters bool &ErrorsFound // True if errors in this call @@ -1925,11 +1925,7 @@ namespace OutputProcessor { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: auto &op(state.dataOutputProcessor); - if (UtilityRoutines::SameString(Group, "Building")) { - ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName, SpaceTypeName); - } else { - ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound); - } + ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName, SpaceTypeName); op->VarMeterArrays.redimension(++op->NumVarMeterArrays); MeterArrayPtr = op->NumVarMeterArrays; @@ -1948,12 +1944,14 @@ namespace OutputProcessor { op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone and Space Type - Found = UtilityRoutines::FindItem(ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); - if (Found != 0) { - ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; - op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } } - if (!std::string(SpaceTypeName).empty()) { + if (!SpaceTypeName.empty()) { Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; @@ -1971,10 +1969,12 @@ namespace OutputProcessor { op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone - Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); - if (Found != 0) { - ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; - op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } } if (!SpaceTypeName.empty()) { Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); @@ -1995,12 +1995,14 @@ namespace OutputProcessor { AddEndUseSubcategory(state, ResourceType, EndUse, EndUseSub); } if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone - Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); - if (Found != 0) { - ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; - op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found != 0) { + ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; + op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + } } - if (!std::string(SpaceTypeName).empty()) { + if (!SpaceTypeName.empty()) { Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); if (Found != 0) { @@ -2055,8 +2057,8 @@ namespace OutputProcessor { std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) bool &ErrorsFound, // True if errors in this call - Optional_string_const ZoneName, // ZoneName when Group=Building - Optional_string_const SpaceTypeName // Space Type Name when Group=Building + const std::string &ZoneName, // ZoneName when Group=Building + const std::string &SpaceTypeName // Space Type Name when Group=Building ) { @@ -2114,11 +2116,13 @@ namespace OutputProcessor { Found = UtilityRoutines::FindItem(ResourceType + ':' + Group, op->EnergyMeters); if (Found == 0) AddMeter(state, ResourceType + ':' + Group, MtrUnits, ResourceType, "", "", Group); if (Group == "Building") { - Found = UtilityRoutines::FindItem(ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); - if (Found == 0) { - AddMeter(state, ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, "", "", "Zone"); + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, "", "", "Zone"); + } } - if (!std::string(SpaceTypeName).empty()) { + if (!SpaceTypeName.empty()) { Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); if (Found == 0) { AddMeter(state, ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, "", "", "SpaceType"); @@ -2308,11 +2312,13 @@ namespace OutputProcessor { if (Found == 0) AddMeter(state, EndUse + ':' + ResourceType, MtrUnits, ResourceType, EndUse, "", ""); if (Group == "Building") { // Match to Zone and Space - Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); - if (Found == 0) { - AddMeter(state, EndUse + ':' + ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, EndUse, "", "Zone"); + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, EndUse + ':' + ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, EndUse, "", "Zone"); + } } - if (!std::string(SpaceTypeName).empty()) { + if (!SpaceTypeName.empty()) { Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); if (Found == 0) { AddMeter(state, EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, EndUse, "", "SpaceType"); @@ -5307,11 +5313,12 @@ void SetupOutputVariable(EnergyPlusData &state, Optional_string_const EndUseKey, // Meter End Use Key (Lights, Heating, Cooling, etc) Optional_string_const EndUseSubKey, // Meter End Use Sub Key (General Lights, Task Lights, etc) Optional_string_const GroupKey, // Meter Super Group Key (Building, System, Plant) - Optional_string_const ZoneOrSpaceKey, // Meter Zone Name or Space Name + Optional_string_const ZoneKey, // Meter Zone Key (zone name) Optional_int_const ZoneMult, // Zone Multiplier, defaults to 1 Optional_int_const ZoneListMult, // Zone List Multiplier, defaults to 1 Optional_int_const indexGroupKey, // Group identifier for SQL output - Optional_string_const customUnitName // the custom name for the units from EMS definition of units + Optional_string_const customUnitName, // the custom name for the units from EMS definition of units + Optional_string_const SpaceType // Space type (applicable for Building group only) ) { @@ -5342,8 +5349,8 @@ void SetupOutputVariable(EnergyPlusData &state, std::string EndUse; // Will hold value of EndUseKey std::string EndUseSub; // Will hold value of EndUseSubKey std::string Group; // Will hold value of GroupKey - std::string zoneName; // Will hold value of ZoneOrSpaceKey if it is a Zone name, or the corresponding Zone if it is a Space name - std::string spaceTypeName; // Space Type if ZoneOrSpaceKey if it is a Space name + std::string zoneName; // Will hold value of ZoneKey + std::string spaceTypeName; // Will hold value of SpaceType int localIndexGroupKey; auto &op(state.dataOutputProcessor); @@ -5407,26 +5414,16 @@ void SetupOutputVariable(EnergyPlusData &state, } else { Group = ""; } - if (present(ZoneOrSpaceKey)) { - std::string ucZoneOrSpaceKey = UtilityRoutines::MakeUPPERCase(std::string(ZoneOrSpaceKey)); - int spaceNum = UtilityRoutines::FindItemInList(ucZoneOrSpaceKey, state.dataHeatBal->space); - if (spaceNum > 0) { - spaceTypeName = state.dataHeatBal->space(spaceNum).spaceType; - zoneName = state.dataHeatBal->Zone(state.dataHeatBal->space(spaceNum).zoneNum).Name; - OnMeter = true; - } else { - int zoneNum = UtilityRoutines::FindItemInList(ucZoneOrSpaceKey, state.dataHeatBal->Zone); - if (zoneNum > 0) { - zoneName = ucZoneOrSpaceKey; - spaceTypeName = ""; - OnMeter = true; - } else { - zoneName = ""; - spaceTypeName = ""; - } - } + if (present(ZoneKey)) { + zoneName = ZoneKey; + OnMeter = true; } else { zoneName = ""; + } + if (present(SpaceType)) { + spaceTypeName = SpaceType; + OnMeter = true; + } else { spaceTypeName = ""; } } diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index d4f672587c7..9b785f51a96 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -653,16 +653,16 @@ namespace OutputProcessor { ); void AttachMeters(EnergyPlusData &state, - Unit const &MtrUnits, // Units for this meter - std::string &ResourceType, // Electricity, Gas, etc. - std::string &EndUse, // End-use category (Lights, Heating, etc.) - std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) - std::string &Group, // Group key (Facility, Zone, Building, etc.) - std::string const ZoneName, // Zone key only applicable for Building group - std::string const SpaceTypeName, // Space Type key only applicable for Building group - int RepVarNum, // Number of this report variable - int &MeterArrayPtr, // Output set of Pointers to Meters - bool &ErrorsFound // True if errors in this call + Unit const &MtrUnits, // Units for this meter + std::string &ResourceType, // Electricity, Gas, etc. + std::string &EndUse, // End-use category (Lights, Heating, etc.) + std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) + std::string &Group, // Group key (Facility, Zone, Building, etc.) + std::string const &ZoneName, // Zone key only applicable for Building group + std::string const &SpaceTypeName, // Space Type key only applicable for Building group + int RepVarNum, // Number of this report variable + int &MeterArrayPtr, // Output set of Pointers to Meters + bool &ErrorsFound // True if errors in this call ); void AttachCustomMeters(EnergyPlusData &state, @@ -672,14 +672,14 @@ namespace OutputProcessor { ); void ValidateNStandardizeMeterTitles(EnergyPlusData &state, - OutputProcessor::Unit const &MtrUnits, // Units for the meter - std::string &ResourceType, // Electricity, Gas, etc. - std::string &EndUse, // End Use Type (Lights, Heating, etc.) - std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) - std::string &Group, // Group key (Facility, Zone, Building, etc.) - bool &ErrorsFound, // True if errors in this call - Optional_string_const ZoneName = _, // ZoneName when Group=Building - Optional_string_const SpaceTypeName = _ // Space Type Name when Group=Building + OutputProcessor::Unit const &MtrUnits, // Units for the meter + std::string &ResourceType, // Electricity, Gas, etc. + std::string &EndUse, // End Use Type (Lights, Heating, etc.) + std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) + std::string &Group, // Group key (Facility, Zone, Building, etc.) + bool &ErrorsFound, // True if errors in this call + const std::string &ZoneName, // ZoneName when Group=Building + const std::string &SpaceTypeName // Space Type Name when Group=Building ); void DetermineMeterIPUnits(EnergyPlusData &state, @@ -918,7 +918,8 @@ void SetupOutputVariable(EnergyPlusData &state, Optional_int_const ZoneMult = _, // Zone Multiplier, defaults to 1 Optional_int_const ZoneListMult = _, // Zone List Multiplier, defaults to 1 Optional_int_const indexGroupKey = _, // Group identifier for SQL output - Optional_string_const customUnitName = _ // the custom name for the units from EMS definition of units + Optional_string_const customUnitName = _, // the custom name for the units from EMS definition of units + Optional_string_const SpaceType = _ // Space type (applicable for Building group only) ); void SetupOutputVariable(EnergyPlusData &state, From 0a7253ef338da91fbc54b6cac0d94f3754354e5d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 13 Aug 2021 13:07:15 -0500 Subject: [PATCH 82/98] Space - partly address comments and test failures --- ...gMediumOfficeNew2004_Chicago_epJSON.epJSON | 30 +++++++-------- tst/EnergyPlus/unit/OutputProcessor.unit.cc | 37 +++++++++++-------- 2 files changed, 37 insertions(+), 30 deletions(-) diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON index a90baad5ae1..aa88af8a025 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON @@ -6231,7 +6231,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_bottom" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_bottom" }, "Core_mid_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6243,7 +6243,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_mid" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_mid" }, "Core_top_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6255,7 +6255,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_top" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_top" }, "Perimeter_bot_ZN_1_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6267,7 +6267,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_1" }, "Perimeter_bot_ZN_2_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6279,7 +6279,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_2" }, "Perimeter_bot_ZN_3_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6291,7 +6291,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_3" }, "Perimeter_bot_ZN_4_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6303,7 +6303,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_4" }, "Perimeter_mid_ZN_1_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6315,7 +6315,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_1" }, "Perimeter_mid_ZN_2_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6327,7 +6327,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_2" }, "Perimeter_mid_ZN_3_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6339,7 +6339,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_3" }, "Perimeter_mid_ZN_4_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6351,7 +6351,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_4" }, "Perimeter_top_ZN_1_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6363,7 +6363,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_1" }, "Perimeter_top_ZN_2_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6375,7 +6375,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_2" }, "Perimeter_top_ZN_3_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6387,7 +6387,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_3" }, "Perimeter_top_ZN_4_Lights": { "design_level_calculation_method": "Watts/Area", @@ -6399,7 +6399,7 @@ "return_air_fraction_calculated_from_plenum_temperature": "No", "schedule_name": "BLDG_LIGHT_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_4" } }, "Material": { diff --git a/tst/EnergyPlus/unit/OutputProcessor.unit.cc b/tst/EnergyPlus/unit/OutputProcessor.unit.cc index 8dba8e45a7e..798e7c75239 100644 --- a/tst/EnergyPlus/unit/OutputProcessor.unit.cc +++ b/tst/EnergyPlus/unit/OutputProcessor.unit.cc @@ -2963,7 +2963,9 @@ namespace OutputProcessor { meter[2], meter[3], meter[4], - errorFound); // the first argument was meter[ 0 ] + errorFound, + "", + ""); // the first argument was meter[ 0 ] } else if (meter.size() == 6) { ValidateNStandardizeMeterTitles(*state, OutputProcessor::Unit::J, @@ -2972,7 +2974,8 @@ namespace OutputProcessor { meter[3], meter[4], errorFound, - meter[5]); // the first argument was meter[ 0 ] + meter[5], + ""); // the first argument was meter[ 0 ] } EXPECT_FALSE(errorFound); } @@ -2993,7 +2996,7 @@ namespace OutputProcessor { std::string group = "BAD INPUT"; errorFound = false; - ValidateNStandardizeMeterTitles(*state, units, resourceType, endUse, endUseSub, group, errorFound); + ValidateNStandardizeMeterTitles(*state, units, resourceType, endUse, endUseSub, group, errorFound, "", ""); EXPECT_TRUE(errorFound); units = OutputProcessor::Unit::J; @@ -3003,7 +3006,7 @@ namespace OutputProcessor { group = "HVAC"; errorFound = false; - ValidateNStandardizeMeterTitles(*state, units, resourceType, endUse, endUseSub, group, errorFound); + ValidateNStandardizeMeterTitles(*state, units, resourceType, endUse, endUseSub, group, errorFound, "", ""); EXPECT_TRUE(errorFound); auto errorData = queryResult("SELECT * FROM Errors;", "Errors"); @@ -4138,7 +4141,9 @@ namespace OutputProcessor { ASSERT_EQ(17, state->dataOutputProcessor->NumEnergyMeters); - auto const meters_result = std::map>({ + auto const meters_result = + std::map>({ {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, @@ -4200,16 +4205,18 @@ namespace OutputProcessor { ASSERT_EQ(8, state->dataOutputProcessor->NumEnergyMeters); - auto const meters_result = std::map>({ - {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, - {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, - {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, - {4, std::make_tuple(0, "Electricity:SpaceType:OFFICE", "Electricity", "", "", "SpaceType", "J")}, - {5, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, - {6, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {7, std::make_tuple(0, "InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "", "SpaceType", "J")}, - {8, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, - }); + auto const meters_result = + std::map>({ + {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, + {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, + {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, + {4, std::make_tuple(0, "Electricity:SpaceType:OFFICE", "Electricity", "", "", "SpaceType", "J")}, + {5, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, + {6, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {7, std::make_tuple(0, "InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "", "SpaceType", "J")}, + {8, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, + }); for (auto const &result : meters_result) { EXPECT_EQ(std::get<0>(result.second), static_cast(state->dataOutputProcessor->EnergyMeters(result.first).TypeOfMeter)); From c8a069e51f0b6829bd8307cc689764b2a2337966 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 13 Aug 2021 16:34:12 -0500 Subject: [PATCH 83/98] Space - fix sub-enduse zone and spacetype meters --- src/EnergyPlus/OutputProcessor.cc | 36 ++++++- src/EnergyPlus/OutputProcessor.hh | 2 +- tst/EnergyPlus/unit/OutputProcessor.unit.cc | 114 ++++++++++++-------- 3 files changed, 101 insertions(+), 51 deletions(-) diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index a632904731e..ca65d31cfac 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -2334,6 +2334,34 @@ namespace OutputProcessor { MeterName = EndUseSub + ':' + EndUse + ':' + ResourceType; Found = UtilityRoutines::FindItem(MeterName, op->EnergyMeters); if (Found == 0) AddMeter(state, MeterName, MtrUnits, ResourceType, EndUse, EndUseSub, ""); + + if (Group == "Building") { // Match to Zone and Space + if (!ZoneName.empty()) { + Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":Zone:" + ZoneName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, + EndUseSub + ':' + EndUse + ':' + ResourceType + ":Zone:" + ZoneName, + MtrUnits, + ResourceType, + EndUse, + EndUseSub, + "Zone"); + } + } + if (!SpaceTypeName.empty()) { + Found = + UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (Found == 0) { + AddMeter(state, + EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, + MtrUnits, + ResourceType, + EndUse, + EndUseSub, + "SpaceType"); + } + } + } } else if (LocalErrorsFound) { ErrorsFound = true; } @@ -4553,8 +4581,8 @@ namespace OutputProcessor { print(state.files.eso, "{},{}\n", creportID, NumberOut); ++state.dataGlobal->StdOutputRecordCount; } - } else { // if ( ( reportingInterval == ReportDaily ) || ( reportingInterval == ReportMonthly ) || ( reportingInterval == ReportSim ) ) { // - // 2, 3, 4 + } else { // if ( ( reportingInterval == ReportDaily ) || ( reportingInterval == ReportMonthly ) || ( reportingInterval == ReportSim ) ) { + // // 2, 3, 4 std::string MaxOut; // Character for Max out string std::string MinOut; // Character for Min out string @@ -4825,8 +4853,8 @@ namespace OutputProcessor { if (state.files.eso.good()) { print(state.files.eso, "{},{}\n", reportIDString, NumberOut); } - } else { // if ( ( reportingInterval == ReportDaily ) || ( reportingInterval == ReportMonthly ) || ( reportingInterval == ReportSim ) ) { // - // 2, 3, 4 + } else { // if ( ( reportingInterval == ReportDaily ) || ( reportingInterval == ReportMonthly ) || ( reportingInterval == ReportSim ) ) { + // // 2, 3, 4 if (state.files.eso.good()) { print(state.files.eso, "{},{},{},{}\n", reportIDString, NumberOut, MinOut, MaxOut); } diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index 9b785f51a96..e0254426a41 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -435,7 +435,7 @@ namespace OutputProcessor { Array1D_int OnCustomMeters; // Forward pointer to Custom Meter Numbers // Default Constructor - MeterArrayType() : NumOnMeters(0), RepVariable(0), OnMeters(9, 0), NumOnCustomMeters(0) + MeterArrayType() : NumOnMeters(0), RepVariable(0), OnMeters(10, 0), NumOnCustomMeters(0) { } }; diff --git a/tst/EnergyPlus/unit/OutputProcessor.unit.cc b/tst/EnergyPlus/unit/OutputProcessor.unit.cc index 798e7c75239..2e5b1978f45 100644 --- a/tst/EnergyPlus/unit/OutputProcessor.unit.cc +++ b/tst/EnergyPlus/unit/OutputProcessor.unit.cc @@ -2858,6 +2858,7 @@ namespace OutputProcessor { "Electricity:Building", "Electricity:Zone:zoneName", "InteriorLights:Electricity:Zone:zoneName", + "endUseSub:InteriorLights:Electricity:Zone:zoneName", "ExteriorLights:Electricity", "endUseSub:ExteriorLights:Electricity", "Heating:Electricity", @@ -2980,8 +2981,8 @@ namespace OutputProcessor { EXPECT_FALSE(errorFound); } - ASSERT_EQ(102, state->dataOutputProcessor->NumEnergyMeters); - ASSERT_EQ(102ul, state->dataOutputProcessor->EnergyMeters.size()); + ASSERT_EQ(103, state->dataOutputProcessor->NumEnergyMeters); + ASSERT_EQ(103ul, state->dataOutputProcessor->EnergyMeters.size()); for (int i = 0; i < state->dataOutputProcessor->NumEnergyMeters; ++i) { EXPECT_EQ(result_map[i], state->dataOutputProcessor->EnergyMeters(i + 1).Name); @@ -4139,29 +4140,44 @@ namespace OutputProcessor { ASSERT_FALSE(errors_found); - ASSERT_EQ(17, state->dataOutputProcessor->NumEnergyMeters); + ASSERT_EQ(22, state->dataOutputProcessor->NumEnergyMeters); auto const meters_result = std::map>({ - {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, - {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, - {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, - {4, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, - {5, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {6, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, - {7, std::make_tuple(0, "Electricity:Zone:SPACE2-1", "Electricity", "", "", "Zone", "J")}, - {8, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE2-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {9, std::make_tuple(0, "Electricity:Zone:SPACE3-1", "Electricity", "", "", "Zone", "J")}, - {10, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE3-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {11, std::make_tuple(0, "Electricity:Zone:SPACE4-1", "Electricity", "", "", "Zone", "J")}, - {12, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE4-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {13, std::make_tuple(0, "Electricity:Zone:SPACE5-1", "Electricity", "", "", "Zone", "J")}, - {14, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE5-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {15, std::make_tuple(1, "MYGENERALLIGHTS", "Electricity", "", "", "", "J")}, - {16, std::make_tuple(1, "BUILDING INFILTRATION HEAT LOSS", "Generic", "", "", "", "J")}, - {17, std::make_tuple(2, "MYBUILDINGOTHER", "Electricity", "", "", "", "J")}, - }); + {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, + {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, + {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, + {4, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, + {5, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {6, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, + {7, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {8, std::make_tuple(0, "Electricity:Zone:SPACE2-1", "Electricity", "", "", "Zone", "J")}, + {9, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE2-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {10, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE2-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {11, std::make_tuple(0, "Electricity:Zone:SPACE3-1", "Electricity", "", "", "Zone", "J")}, + {12, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE3-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {13, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE3-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {14, std::make_tuple(0, "Electricity:Zone:SPACE4-1", "Electricity", "", "", "Zone", "J")}, + {15, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE4-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {16, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE4-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {17, std::make_tuple(0, "Electricity:Zone:SPACE5-1", "Electricity", "", "", "Zone", "J")}, + {18, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE5-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {19, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE5-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {20, std::make_tuple(1, "MYGENERALLIGHTS", "Electricity", "", "", "", "J")}, + {21, std::make_tuple(1, "BUILDING INFILTRATION HEAT LOSS", "Generic", "", "", "", "J")}, + {22, std::make_tuple(2, "MYBUILDINGOTHER", "Electricity", "", "", "", "J")}, + }); for (auto const &result : meters_result) { EXPECT_EQ(std::get<0>(result.second), static_cast(state->dataOutputProcessor->EnergyMeters(result.first).TypeOfMeter)); @@ -4203,20 +4219,26 @@ namespace OutputProcessor { EXPECT_FALSE(errors_found); EXPECT_EQ(1, meter_array_ptr); - ASSERT_EQ(8, state->dataOutputProcessor->NumEnergyMeters); + ASSERT_EQ(10, state->dataOutputProcessor->NumEnergyMeters); - auto const meters_result = - std::map>({ - {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, - {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, - {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, - {4, std::make_tuple(0, "Electricity:SpaceType:OFFICE", "Electricity", "", "", "SpaceType", "J")}, - {5, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, - {6, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, - {7, std::make_tuple(0, "InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "", "SpaceType", "J")}, - {8, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, - }); + auto const meters_result = std::map< + int, + std::tuple>({ + {1, std::make_tuple(0, "Electricity:Facility", "Electricity", "", "", "", "J")}, + {2, std::make_tuple(0, "Electricity:Building", "Electricity", "", "", "Building", "J")}, + {3, std::make_tuple(0, "Electricity:Zone:SPACE1-1", "Electricity", "", "", "Zone", "J")}, + {4, std::make_tuple(0, "Electricity:SpaceType:OFFICE", "Electricity", "", "", "SpaceType", "J")}, + {5, std::make_tuple(0, "InteriorLights:Electricity", "Electricity", "InteriorLights", "", "", "J")}, + {6, std::make_tuple(0, "InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "", "Zone", "J")}, + {7, std::make_tuple(0, "InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "", "SpaceType", "J")}, + {8, std::make_tuple(0, "GeneralLights:InteriorLights:Electricity", "Electricity", "InteriorLights", "GeneralLights", "", "J")}, + {9, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:Zone:SPACE1-1", "Electricity", "InteriorLights", "GeneralLights", "Zone", "J")}, + {10, + std::make_tuple( + 0, "GeneralLights:InteriorLights:Electricity:SpaceType:OFFICE", "Electricity", "InteriorLights", "GeneralLights", "SpaceType", "J")}, + }); for (auto const &result : meters_result) { EXPECT_EQ(std::get<0>(result.second), static_cast(state->dataOutputProcessor->EnergyMeters(result.first).TypeOfMeter)); @@ -4736,8 +4758,8 @@ namespace OutputProcessor { {"10", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Daily", "", "J"}, {"11", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Monthly", "", "J"}, {"13", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Run Period", "", "J"}, - {"180", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, - {"181", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler NaturalGas Rate", "HVAC System Timestep", "", "W"}, + {"240", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, + {"241", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler NaturalGas Rate", "HVAC System Timestep", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -4779,8 +4801,8 @@ namespace OutputProcessor { "4,7,Environment,Site Outdoor Air Drybulb Temperature [C] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]", "5,9,Environment,Site Outdoor Air Drybulb Temperature [C] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]", "6,11,Environment,Site Outdoor Air Drybulb Temperature [C] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]", - "180,1,Boiler1,Boiler Heating Rate [W] !Each Call", - "181,1,Boiler1,Boiler NaturalGas Rate [W] !Each Call", + "240,1,Boiler1,Boiler Heating Rate [W] !Each Call", + "241,1,Boiler1,Boiler NaturalGas Rate [W] !Each Call", "8,1,Electricity:Facility [J] !Each Call", "9,1,Electricity:Facility [J] !Hourly", "10,7,Electricity:Facility [J] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]", @@ -5045,8 +5067,8 @@ namespace OutputProcessor { {"10", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Daily", "", "J"}, {"11", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Monthly", "", "J"}, {"13", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Run Period", "", "J"}, - {"180", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, - {"181", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler NaturalGas Rate", "HVAC System Timestep", "", "W"}, + {"240", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, + {"241", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler NaturalGas Rate", "HVAC System Timestep", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -5055,8 +5077,8 @@ namespace OutputProcessor { auto reportExtendedDataResults = queryResult("SELECT * FROM ReportExtendedData;", "ReportExtendedData"); std::vector> reportData({ - {"1", "1", "180", "999.0"}, - {"2", "1", "181", "999.0"}, + {"1", "1", "240", "999.0"}, + {"2", "1", "241", "999.0"}, }); std::vector> reportExtendedData({}); @@ -5072,16 +5094,16 @@ namespace OutputProcessor { "4,7,Environment,Site Outdoor Air Drybulb Temperature [C] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]", "5,9,Environment,Site Outdoor Air Drybulb Temperature [C] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]", "6,11,Environment,Site Outdoor Air Drybulb Temperature [C] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]", - "180,1,Boiler1,Boiler Heating Rate [W] !Each Call", - "181,1,Boiler1,Boiler NaturalGas Rate [W] !Each Call", + "240,1,Boiler1,Boiler Heating Rate [W] !Each Call", + "241,1,Boiler1,Boiler NaturalGas Rate [W] !Each Call", "8,1,Electricity:Facility [J] !Each Call", "9,1,Electricity:Facility [J] !Hourly", "10,7,Electricity:Facility [J] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]", "11,9,Electricity:Facility [J] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]", "13,11,Electricity:Facility [J] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]", ",365,12,31, 0,24,50.00,60.00,Tuesday", - "180,999.0", - "181,999.0", + "240,999.0", + "241,999.0", }, "\n")); From 9fd14a08ceee6c61e2b901e288336484d835f8ad Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 16 Aug 2021 10:18:43 -0500 Subject: [PATCH 84/98] Space - More on lighting summary report --- src/EnergyPlus/InternalHeatGains.cc | 2 ++ src/EnergyPlus/OutputReportPredefined.cc | 2 ++ src/EnergyPlus/OutputReportPredefined.hh | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 28d4a815170..bb5dc3e5b9c 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -1397,7 +1397,9 @@ namespace InternalHeatGains { Real64 spaceArea = state.dataHeatBal->space(spaceNum).floorArea; state.dataInternalHeatGains->sumArea += spaceArea * mult; state.dataInternalHeatGains->sumPower += state.dataHeatBal->Lights(lightsNum).DesignLevel * mult; + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtZone, liteName, state.dataHeatBal->Zone(zoneNum).Name); PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtSpace, liteName, state.dataHeatBal->space(spaceNum).Name); + PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtSpaceType, liteName, state.dataHeatBal->space(spaceNum).spaceType); if (spaceArea > 0.0) { PreDefTableEntry( state, state.dataOutRptPredefined->pdchInLtDens, liteName, state.dataHeatBal->Lights(lightsNum).DesignLevel / spaceArea, 4); diff --git a/src/EnergyPlus/OutputReportPredefined.cc b/src/EnergyPlus/OutputReportPredefined.cc index 53afd22b941..0e443a6e890 100644 --- a/src/EnergyPlus/OutputReportPredefined.cc +++ b/src/EnergyPlus/OutputReportPredefined.cc @@ -217,7 +217,9 @@ namespace OutputReportPredefined { s->pdstInLite = newPreDefSubTable(state, s->pdrLighting, "Interior Lighting"); + s->pdchInLtZone = newPreDefColumn(state, s->pdstInLite, "Zone Name"); s->pdchInLtSpace = newPreDefColumn(state, s->pdstInLite, "Space Name"); + s->pdchInLtSpaceType = newPreDefColumn(state, s->pdstInLite, "Space Type"); s->pdchInLtDens = newPreDefColumn(state, s->pdstInLite, "Lighting Power Density [W/m2]"); s->pdchInLtArea = newPreDefColumn(state, s->pdstInLite, "Space Area [m2]"); s->pdchInLtPower = newPreDefColumn(state, s->pdstInLite, "Total Power [W]"); diff --git a/src/EnergyPlus/OutputReportPredefined.hh b/src/EnergyPlus/OutputReportPredefined.hh index e226db064fa..a3d045dc8e1 100644 --- a/src/EnergyPlus/OutputReportPredefined.hh +++ b/src/EnergyPlus/OutputReportPredefined.hh @@ -402,7 +402,9 @@ struct OutputReportPredefinedData : BaseGlobalStruct // Lighting Report int pdrLighting = 0; int pdstInLite = 0; + int pdchInLtZone = 0; int pdchInLtSpace = 0; + int pdchInLtSpaceType = 0; int pdchInLtDens = 0; int pdchInLtArea = 0; int pdchInLtPower = 0; @@ -1365,7 +1367,9 @@ struct OutputReportPredefinedData : BaseGlobalStruct this->pdchWscGlare = 0; this->pdrLighting = 0; this->pdstInLite = 0; + this->pdchInLtZone = 0; this->pdchInLtSpace = 0; + this->pdchInLtSpaceType = 0; this->pdchInLtDens = 0; this->pdchInLtArea = 0; this->pdchInLtPower = 0; From 7a8f75cb7be9e7efa217ff3a3107e4d16cbab907 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 16 Aug 2021 10:20:00 -0500 Subject: [PATCH 85/98] Space - meter parameter name cleanup --- src/EnergyPlus/OutputProcessor.cc | 59 +++++++++++++++---------------- src/EnergyPlus/OutputProcessor.hh | 6 ++-- 2 files changed, 32 insertions(+), 33 deletions(-) diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index ca65d31cfac..bc2b74e4688 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -1904,7 +1904,7 @@ namespace OutputProcessor { std::string &EndUseSub, // End-use subcategory (user-defined, e.g., General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) std::string const &ZoneName, // Zone key only applicable for Building group - std::string const &SpaceTypeName, // Space Type key only applicable for Building group + std::string const &SpaceType, // Space Type key only applicable for Building group int const RepVarNum, // Number of this report variable int &MeterArrayPtr, // Output set of Pointers to Meters bool &ErrorsFound // True if errors in this call @@ -1925,7 +1925,7 @@ namespace OutputProcessor { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: auto &op(state.dataOutputProcessor); - ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName, SpaceTypeName); + ValidateNStandardizeMeterTitles(state, MtrUnits, ResourceType, EndUse, EndUseSub, Group, ErrorsFound, ZoneName, SpaceType); op->VarMeterArrays.redimension(++op->NumVarMeterArrays); MeterArrayPtr = op->NumVarMeterArrays; @@ -1951,8 +1951,8 @@ namespace OutputProcessor { op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } } - if (!SpaceTypeName.empty()) { - Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (!SpaceType.empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; @@ -1976,8 +1976,8 @@ namespace OutputProcessor { op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } } - if (!SpaceTypeName.empty()) { - Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (!SpaceType.empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; @@ -2002,9 +2002,9 @@ namespace OutputProcessor { op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; } } - if (!SpaceTypeName.empty()) { - Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, - op->EnergyMeters); + if (!SpaceType.empty()) { + Found = + UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; @@ -2057,8 +2057,8 @@ namespace OutputProcessor { std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) bool &ErrorsFound, // True if errors in this call - const std::string &ZoneName, // ZoneName when Group=Building - const std::string &SpaceTypeName // Space Type Name when Group=Building + const std::string &ZoneName, // Zone Name when Group=Building + const std::string &SpaceType // Space Type when Group=Building ) { @@ -2122,10 +2122,10 @@ namespace OutputProcessor { AddMeter(state, ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, "", "", "Zone"); } } - if (!SpaceTypeName.empty()) { - Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (!SpaceType.empty()) { + Found = UtilityRoutines::FindItem(ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found == 0) { - AddMeter(state, ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, "", "", "SpaceType"); + AddMeter(state, ResourceType + ":SpaceType:" + SpaceType, MtrUnits, ResourceType, "", "", "SpaceType"); } } } @@ -2318,10 +2318,10 @@ namespace OutputProcessor { AddMeter(state, EndUse + ':' + ResourceType + ":Zone:" + ZoneName, MtrUnits, ResourceType, EndUse, "", "Zone"); } } - if (!SpaceTypeName.empty()) { - Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (!SpaceType.empty()) { + Found = UtilityRoutines::FindItem(EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found == 0) { - AddMeter(state, EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, MtrUnits, ResourceType, EndUse, "", "SpaceType"); + AddMeter(state, EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, MtrUnits, ResourceType, EndUse, "", "SpaceType"); } } } @@ -2348,12 +2348,11 @@ namespace OutputProcessor { "Zone"); } } - if (!SpaceTypeName.empty()) { - Found = - UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, op->EnergyMeters); + if (!SpaceType.empty()) { + Found = UtilityRoutines::FindItem(EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, op->EnergyMeters); if (Found == 0) { AddMeter(state, - EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceTypeName, + EndUseSub + ':' + EndUse + ':' + ResourceType + ":SpaceType:" + SpaceType, MtrUnits, ResourceType, EndUse, @@ -5373,12 +5372,12 @@ void SetupOutputVariable(EnergyPlusData &state, StoreType VariableType; // 1=Average, 2=Sum, 3=Min/Max int Loop; ReportingFrequency RepFreq(ReportingFrequency::Hourly); - std::string ResourceType; // Will hold value of ResourceTypeKey - std::string EndUse; // Will hold value of EndUseKey - std::string EndUseSub; // Will hold value of EndUseSubKey - std::string Group; // Will hold value of GroupKey - std::string zoneName; // Will hold value of ZoneKey - std::string spaceTypeName; // Will hold value of SpaceType + std::string ResourceType; // Will hold value of ResourceTypeKey + std::string EndUse; // Will hold value of EndUseKey + std::string EndUseSub; // Will hold value of EndUseSubKey + std::string Group; // Will hold value of GroupKey + std::string zoneName; // Will hold value of ZoneKey + std::string spaceType; // Will hold value of SpaceType int localIndexGroupKey; auto &op(state.dataOutputProcessor); @@ -5449,10 +5448,10 @@ void SetupOutputVariable(EnergyPlusData &state, zoneName = ""; } if (present(SpaceType)) { - spaceTypeName = SpaceType; + spaceType = SpaceType; OnMeter = true; } else { - spaceTypeName = ""; + spaceType = ""; } } @@ -5528,7 +5527,7 @@ void SetupOutputVariable(EnergyPlusData &state, Unit mtrUnits = op->RVariableTypes(CV).units; bool ErrorsFound = false; AttachMeters( - state, mtrUnits, ResourceType, EndUse, EndUseSub, Group, zoneName, spaceTypeName, CV, thisVarPtr.MeterArrayPtr, ErrorsFound); + state, mtrUnits, ResourceType, EndUse, EndUseSub, Group, zoneName, spaceType, CV, thisVarPtr.MeterArrayPtr, ErrorsFound); if (ErrorsFound) { ShowContinueError(state, "Invalid Meter spec for variable=" + KeyedValue + ':' + VariableName); op->ErrorsLogged = true; diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index e0254426a41..02789116a72 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -678,8 +678,8 @@ namespace OutputProcessor { std::string &EndUseSub, // End Use Sub Type (General Lights, Task Lights, etc.) std::string &Group, // Group key (Facility, Zone, Building, etc.) bool &ErrorsFound, // True if errors in this call - const std::string &ZoneName, // ZoneName when Group=Building - const std::string &SpaceTypeName // Space Type Name when Group=Building + const std::string &ZoneName, // Zone Name when Group=Building + const std::string &SpaceType // Space Type when Group=Building ); void DetermineMeterIPUnits(EnergyPlusData &state, @@ -914,7 +914,7 @@ void SetupOutputVariable(EnergyPlusData &state, Optional_string_const EndUseKey = _, // Meter End Use Key (Lights, Heating, Cooling, etc) Optional_string_const EndUseSubKey = _, // Meter End Use Sub Key (General Lights, Task Lights, etc) Optional_string_const GroupKey = _, // Meter Super Group Key (Building, System, Plant) - Optional_string_const ZoneOrSpaceKey = _, // Meter Zone Name or Space Name + Optional_string_const ZoneKey = _, // Meter Zone Key (zone name) Optional_int_const ZoneMult = _, // Zone Multiplier, defaults to 1 Optional_int_const ZoneListMult = _, // Zone List Multiplier, defaults to 1 Optional_int_const indexGroupKey = _, // Group identifier for SQL output From bca92281a922d8d2126e4e797cf7db168e01c327 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Mon, 16 Aug 2021 17:18:09 -0500 Subject: [PATCH 86/98] Space - ABUPS enduse by space type --- src/EnergyPlus/OutputProcessor.cc | 47 +- src/EnergyPlus/OutputProcessor.hh | 14 +- src/EnergyPlus/OutputReportTabular.cc | 608 +++++++++++++++----------- src/EnergyPlus/OutputReportTabular.hh | 22 + 4 files changed, 418 insertions(+), 273 deletions(-) diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index bc2b74e4688..a2075989107 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -1981,6 +1981,8 @@ namespace OutputProcessor { if (Found != 0) { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; + + addEndUseSpaceType(state, ResourceType, EndUse, SpaceType); } } } @@ -3862,10 +3864,7 @@ namespace OutputProcessor { // End of routines for Energy Meters implementation in EnergyPlus. // ***************************************************************************** - void AddEndUseSubcategory(EnergyPlusData &state, - [[maybe_unused]] std::string const &ResourceName, - std::string const &EndUseName, - std::string const &EndUseSubName) + void AddEndUseSubcategory(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSubName) { // SUBROUTINE INFORMATION: @@ -3916,6 +3915,46 @@ namespace OutputProcessor { ShowSevereError(state, "Nonexistent end use passed to AddEndUseSubcategory=" + EndUseName); } } + void + addEndUseSpaceType(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSpaceTypeName) + { + + auto &op(state.dataOutputProcessor); + + bool Found = false; + for (size_t EndUseNum = 1; EndUseNum <= state.dataGlobalConst->iEndUse.size(); ++EndUseNum) { + if (UtilityRoutines::SameString(op->EndUseCategory(EndUseNum).Name, EndUseName)) { + + for (int endUseSpTypeNum = 1; endUseSpTypeNum <= op->EndUseCategory(EndUseNum).numSpaceTypes; ++endUseSpTypeNum) { + if (UtilityRoutines::SameString(op->EndUseCategory(EndUseNum).spaceTypeName(endUseSpTypeNum), EndUseSpaceTypeName)) { + // Space type already exists, no further action required + Found = true; + break; + } + } + + if (!Found) { + // Add the space type by reallocating the array + int numSpTypes = op->EndUseCategory(EndUseNum).numSpaceTypes; + op->EndUseCategory(EndUseNum).spaceTypeName.redimension(numSpTypes + 1); + + op->EndUseCategory(EndUseNum).numSpaceTypes = numSpTypes + 1; + op->EndUseCategory(EndUseNum).spaceTypeName(numSpTypes + 1) = EndUseSpaceTypeName; + + if (op->EndUseCategory(EndUseNum).numSpaceTypes > op->maxNumEndUseSpaceTypes) { + op->maxNumEndUseSpaceTypes = op->EndUseCategory(EndUseNum).numSpaceTypes; + } + + Found = true; + } + break; + } + } + + if (!Found) { + ShowSevereError(state, "Nonexistent end use passed to addEndUseSpaceType=" + EndUseName); + } + } void WriteTimeStampFormatData( EnergyPlusData &state, InputOutputFile &outputFile, diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index 02789116a72..809da144143 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -564,13 +564,10 @@ namespace OutputProcessor { // Members std::string Name; // End use category name std::string DisplayName; // Display name for output table - int NumSubcategories; + int NumSubcategories = 0; Array1D_string SubcategoryName; // Array of subcategory names - - // Default Constructor - EndUseCategoryType() : NumSubcategories(0) - { - } + int numSpaceTypes = 0; + Array1D_string spaceTypeName; // Array of space type names }; void InitializeOutput(EnergyPlusData &state); @@ -749,6 +746,9 @@ namespace OutputProcessor { void AddEndUseSubcategory(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSubName); + void + addEndUseSpaceType(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSpTypeName); + void WriteTimeStampFormatData(EnergyPlusData &state, InputOutputFile &outputFile, ReportingFrequency reportingInterval, // Reporting frequency. @@ -1087,6 +1087,7 @@ struct OutputProcessorData : BaseGlobalStruct Real64 TimeStepZoneSec = 0; // Seconds from NumTimeStepInHour bool ErrorsLogged = false; int MaxNumSubcategories = 1; + int maxNumEndUseSpaceTypes = 1; bool isFinalYear = false; bool GetOutputInputFlag = true; OutputProcessor::ReportingFrequency minimumReportFrequency = OutputProcessor::ReportingFrequency::EachCall; @@ -1183,6 +1184,7 @@ struct OutputProcessorData : BaseGlobalStruct this->TimeStepZoneSec = 0; this->ErrorsLogged = false; this->MaxNumSubcategories = 1; + this->maxNumEndUseSpaceTypes = 1; this->isFinalYear = false; this->GetOutputInputFlag = true; this->minimumReportFrequency = OutputProcessor::ReportingFrequency::EachCall; diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index c2b61aa7694..46d5a4cc8a0 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -1765,7 +1765,18 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) // End use subs must be dynamically allocated to accomodate the end use with the most subcategories ort->meterNumEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); - ort->meterNumEndUseSubBEPS = 0; + ort->meterNumEndUseSpTypeBEPS.allocate( + state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + for (int endUse = 1; endUse <= state.dataGlobalConst->iEndUse.size(); ++endUse) { + for (int resType = 1; resType <= numResourceTypes; ++resType) { + for (int subCat = 1; subCat <= state.dataOutputProcessor->MaxNumSubcategories; ++subCat) { + ort->meterNumEndUseSubBEPS(subCat, endUse, resType) = 0; + } + for (int spType = 1; spType <= state.dataOutputProcessor->maxNumEndUseSpaceTypes; ++spType) { + ort->meterNumEndUseSpTypeBEPS(spType, endUse, resType) = 0; + } + } + } // loop through all of the resources and end uses and sub end uses for the entire facility for (iResource = 1; iResource <= numResourceTypes; ++iResource) { @@ -1784,6 +1795,12 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) meterNumber = GetMeterIndex(state, meterName); ort->meterNumEndUseSubBEPS(kEndUseSub, jEndUse, iResource) = meterNumber; } + for (int kEndUseSpType = 1; kEndUseSpType <= state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; ++kEndUseSpType) { + meterName = ort->endUseNames(jEndUse) + ':' + ort->resourceTypeNames(iResource) + + ":SpaceType:" + state.dataOutputProcessor->EndUseCategory(jEndUse).spaceTypeName(kEndUseSpType); + meterNumber = GetMeterIndex(state, meterName); + ort->meterNumEndUseSpTypeBEPS(kEndUseSpType, jEndUse, iResource) = meterNumber; + } } } @@ -1802,6 +1819,9 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) // End use subs must be dynamically allocated to accommodate the end use with the most subcategories ort->gatherEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); ort->gatherEndUseSubBEPS = 0.0; + ort->gatherEndUseSpTypeBEPS.allocate( + state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + ort->gatherEndUseSpTypeBEPS = 0.0; ort->gatherDemandEndUseSub.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); ort->gatherDemandEndUseSub = 0.0; ort->gatherDemandIndEndUseSub.allocate( @@ -3883,31 +3903,10 @@ void GatherBEPSResultsForTimestep(EnergyPlusData &state, OutputProcessor::TimeSt // DistrictCooling // DistrictHeating - // REFERENCES: - // na - - // Using/Aliasing using DataStringGlobals::CharComma; using DataStringGlobals::CharSpace; using DataStringGlobals::CharTab; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int iResource; - int kEndUseSub; - Real64 curMeterValue; - int curMeterNumber; auto &ort(state.dataOutRptTab); // if no beps report is called then skip @@ -3926,35 +3925,42 @@ void GatherBEPSResultsForTimestep(EnergyPlusData &state, OutputProcessor::TimeSt // END DO // loop through all of the resources and end uses for the entire facility - for (iResource = 1; iResource <= numResourceTypes; ++iResource) { - curMeterNumber = ort->meterNumTotalsBEPS(iResource); - if (curMeterNumber > 0) { - curMeterValue = GetCurrentMeterValue(state, curMeterNumber); - ort->gatherTotalsBEPS(iResource) += curMeterValue; + for (int iResource = 1; iResource <= numResourceTypes; ++iResource) { + int curResMeterNumber = ort->meterNumTotalsBEPS(iResource); + if (curResMeterNumber > 0) { + Real64 curResMeterValue = GetCurrentMeterValue(state, curResMeterNumber); + ort->gatherTotalsBEPS(iResource) += curResMeterValue; } for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - curMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); - if (curMeterNumber > 0) { - curMeterValue = GetCurrentMeterValue(state, curMeterNumber); - ort->gatherEndUseBEPS(iResource, jEndUse) += curMeterValue; - - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { - curMeterNumber = ort->meterNumEndUseSubBEPS(kEndUseSub, jEndUse, iResource); - if (curMeterNumber > 0) { - curMeterValue = GetCurrentMeterValue(state, curMeterNumber); - ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, iResource) += curMeterValue; + int curEndUseMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); + if (curEndUseMeterNumber > 0) { + Real64 curEndUseMeterValue = GetCurrentMeterValue(state, curEndUseMeterNumber); + ort->gatherEndUseBEPS(iResource, jEndUse) += curEndUseMeterValue; + + for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { + int curSubMeterNumber = ort->meterNumEndUseSubBEPS(kEndUseSub, jEndUse, iResource); + if (curSubMeterNumber > 0) { + Real64 curSubMeterValue = GetCurrentMeterValue(state, curSubMeterNumber); + ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, iResource) += curSubMeterValue; + } + } + for (int kEndUseSpType = 1; kEndUseSpType <= state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; ++kEndUseSpType) { + int curSpTypeMeterNumber = ort->meterNumEndUseSpTypeBEPS(kEndUseSpType, jEndUse, iResource); + if (curSpTypeMeterNumber > 0) { + Real64 curSpTypeMeterValue = GetCurrentMeterValue(state, curSpTypeMeterNumber); + ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, iResource) += curSpTypeMeterValue; } } } } } - for (iResource = 1; iResource <= numSourceTypes; ++iResource) { - curMeterNumber = ort->meterNumTotalsSource(iResource); - if (curMeterNumber > 0) { - curMeterValue = GetCurrentMeterValue(state, curMeterNumber); - ort->gatherTotalsSource(iResource) += curMeterValue; + for (int iResource = 1; iResource <= numSourceTypes; ++iResource) { + int curResMeterNumber = ort->meterNumTotalsSource(iResource); + if (curResMeterNumber > 0) { + Real64 curResMeterValue = GetCurrentMeterValue(state, curResMeterNumber); + ort->gatherTotalsSource(iResource) += curResMeterValue; } } @@ -7739,7 +7745,6 @@ void WriteBEPSTable(EnergyPlusData &state) // DATE WRITTEN November 2003 // MODIFIED January 2010, Kyle Benne; Added SQLite output // March 2020, Dareum Nam; Disaggregated "Additional Fuel" - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Take the gathered total and enduse meter data and structure @@ -7753,18 +7758,6 @@ void WriteBEPSTable(EnergyPlusData &state) // that will split up very long header lines for the fixed width // table is the header rows. - // REFERENCES: - // na - - // Using/Aliasing - using DataWater::StorageTankDataStruct; - using ScheduleManager::GetScheduleName; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: int const colElectricity(1); int const colGas(2); int const colPurchCool(11); @@ -7773,14 +7766,6 @@ void WriteBEPSTable(EnergyPlusData &state) Real64 const SmallValue(1.e-14); auto &ort(state.dataOutRptTab); - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - // all arrays are in the format: (row, column) Array1D_string columnHead; Array1D_int columnWidth; @@ -7794,6 +7779,7 @@ void WriteBEPSTable(EnergyPlusData &state) Array2D collapsedEndUse(13, state.dataGlobalConst->iEndUse.size()); Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), 13); Array2D endUseSubOther(13, state.dataGlobalConst->iEndUse.size()); + Array3D collapsedEndUseSpType(state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), 13); Real64 totalOnsiteHeat; Real64 totalOnsiteWater; Real64 totalWater; @@ -7804,11 +7790,9 @@ void WriteBEPSTable(EnergyPlusData &state) Real64 netSourceEnergyUse; Real64 netSourceElecPurchasedSold; int iResource; - int kEndUseSub; int i; Real64 largeConversionFactor; Real64 kConversionFactor; - int numRows; Real64 initialStorage; Real64 finalStorage; Real64 StorageChange; @@ -7930,7 +7914,7 @@ void WriteBEPSTable(EnergyPlusData &state) } } for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { + for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, 1) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 1); // electricity collapsedEndUseSub(kEndUseSub, jEndUse, 2) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 2); // natural gas collapsedEndUseSub(kEndUseSub, jEndUse, 3) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 6); // gasoline @@ -7948,8 +7932,26 @@ void WriteBEPSTable(EnergyPlusData &state) ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 5); // district heating <- purch heating | <- steam collapsedEndUseSub(kEndUseSub, jEndUse, 13) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 7); // water } - } + for (int kEndUseSpType = 1; kEndUseSpType <= state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; ++kEndUseSpType) { + collapsedEndUseSpType(kEndUseSpType, jEndUse, 1) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 1); // electricity + collapsedEndUseSpType(kEndUseSpType, jEndUse, 2) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 2); // natural gas + collapsedEndUseSpType(kEndUseSpType, jEndUse, 3) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 6); // gasoline + collapsedEndUseSpType(kEndUseSpType, jEndUse, 4) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 8); // diesel + collapsedEndUseSpType(kEndUseSpType, jEndUse, 5) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 9); // coal + collapsedEndUseSpType(kEndUseSpType, jEndUse, 6) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 10); // Fuel Oil No1 + collapsedEndUseSpType(kEndUseSpType, jEndUse, 7) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 11); // Fuel Oil No2 + collapsedEndUseSpType(kEndUseSpType, jEndUse, 8) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 12); // propane + collapsedEndUseSpType(kEndUseSpType, jEndUse, 9) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 13); // otherfuel1 + collapsedEndUseSpType(kEndUseSpType, jEndUse, 10) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 14); // otherfuel2 + collapsedEndUseSpType(kEndUseSpType, jEndUse, 11) = + ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 3); // district cooling <- purch cooling + collapsedEndUseSpType(kEndUseSpType, jEndUse, 12) = + ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 4) + + ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 5); // district heating <- purch heating | <- steam + collapsedEndUseSpType(kEndUseSpType, jEndUse, 13) = ort->gatherEndUseSpTypeBEPS(kEndUseSpType, jEndUse, 7); // water + } + } // unit conversion - all values are used as divisors { auto const SELECT_CASE_var(unitsStyle_cur); @@ -7979,18 +7981,24 @@ void WriteBEPSTable(EnergyPlusData &state) for (iResource = 1; iResource <= 12; ++iResource) { // don't do water for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { collapsedEndUse(iResource, jEndUse) /= largeConversionFactor; - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { + for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, iResource) /= largeConversionFactor; } + for (int kEndUseSpType = 1; kEndUseSpType <= state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; ++kEndUseSpType) { + collapsedEndUseSpType(kEndUseSpType, jEndUse, iResource) /= largeConversionFactor; + } } collapsedTotal(iResource) /= largeConversionFactor; } // do water for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { collapsedEndUse(13, jEndUse) /= waterConversionFactor; - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { + for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, 13) /= waterConversionFactor; } + for (int kEndUseSpType = 1; kEndUseSpType <= state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; ++kEndUseSpType) { + collapsedEndUseSpType(kEndUseSpType, jEndUse, 13) /= waterConversionFactor; + } } collapsedTotal(13) = WaterConversionFunct(collapsedTotal(13), waterConversionFactor); @@ -8328,7 +8336,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 1) = RealToStr(ort->sourceFactorElectric, 3); } else if (ort->gatherTotalsBEPS(1) > SmallValue) { tableBody(1, 1) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(1) / ort->gatherTotalsBEPS(1), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(1)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(1)) + "\")"; } else { tableBody(1, 1) = "N/A"; } @@ -8337,7 +8345,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 2) = RealToStr(ort->sourceFactorNaturalGas, 3); } else if (ort->gatherTotalsBEPS(2) > SmallValue) { tableBody(1, 2) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(2) / ort->gatherTotalsBEPS(2), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(2)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(2)) + "\")"; } else { tableBody(1, 2) = "N/A"; } @@ -8352,7 +8360,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 6) = RealToStr(ort->sourceFactorGasoline, 3); } else if (ort->gatherTotalsBEPS(6) > SmallValue) { tableBody(1, 6) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(6) / ort->gatherTotalsBEPS(6), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(6)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(6)) + "\")"; } else { tableBody(1, 6) = "N/A"; } @@ -8361,7 +8369,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 7) = RealToStr(ort->sourceFactorDiesel, 3); } else if (ort->gatherTotalsBEPS(8) > SmallValue) { tableBody(1, 7) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(8) / ort->gatherTotalsBEPS(8), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(8)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(8)) + "\")"; } else { tableBody(1, 7) = "N/A"; } @@ -8370,7 +8378,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 8) = RealToStr(ort->sourceFactorCoal, 3); } else if (ort->gatherTotalsBEPS(9) > SmallValue) { tableBody(1, 8) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(9) / ort->gatherTotalsBEPS(9), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(9)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(9)) + "\")"; } else { tableBody(1, 8) = "N/A"; } @@ -8379,7 +8387,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 9) = RealToStr(ort->sourceFactorFuelOil1, 3); } else if (ort->gatherTotalsBEPS(10) > SmallValue) { tableBody(1, 9) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(10) / ort->gatherTotalsBEPS(10), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(10)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(10)) + "\")"; } else { tableBody(1, 9) = "N/A"; } @@ -8388,7 +8396,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 10) = RealToStr(ort->sourceFactorFuelOil2, 3); } else if (ort->gatherTotalsBEPS(11) > SmallValue) { tableBody(1, 10) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(11) / ort->gatherTotalsBEPS(11), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(11)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(11)) + "\")"; } else { tableBody(1, 10) = "N/A"; } @@ -8397,7 +8405,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 11) = RealToStr(ort->sourceFactorPropane, 3); } else if (ort->gatherTotalsBEPS(12) > SmallValue) { tableBody(1, 11) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(12) / ort->gatherTotalsBEPS(12), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(12)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(12)) + "\")"; } else { tableBody(1, 11) = "N/A"; } @@ -8406,7 +8414,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 12) = RealToStr(ort->sourceFactorOtherFuel1, 3); } else if (ort->gatherTotalsBEPS(13) > SmallValue) { tableBody(1, 12) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(13) / ort->gatherTotalsBEPS(13), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(13)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(13)) + "\")"; } else { tableBody(1, 12) = "N/A"; } @@ -8415,7 +8423,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 13) = RealToStr(ort->sourceFactorOtherFuel2, 3); } else if (ort->gatherTotalsBEPS(14) > SmallValue) { tableBody(1, 13) = "Effective Factor = " + RealToStr(ort->gatherTotalsBySourceBEPS(14) / ort->gatherTotalsBEPS(14), 3) + - " (calculated using schedule \"" + GetScheduleName(state, ort->ffSchedIndex(14)) + "\")"; + " (calculated using schedule \"" + ScheduleManager::GetScheduleName(state, ort->ffSchedIndex(14)) + "\")"; } else { tableBody(1, 13) = "N/A"; } @@ -8897,187 +8905,25 @@ void WriteBEPSTable(EnergyPlusData &state) } //---- End Uses By Subcategory Sub-Table - - // determine if subcategories add up to the total and - // if not, determine the difference for the 'other' row - ort->needOtherRowLEED45 = false; // set array to all false assuming no other rows are needed - for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { - // set the value to the total for the end use - endUseSubOther(iResource, jEndUse) = collapsedEndUse(iResource, jEndUse); - // subtract off each sub end use category value - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { - endUseSubOther(iResource, jEndUse) -= collapsedEndUseSub(kEndUseSub, jEndUse, iResource); - } - // if just a small value remains set it to zero - if (std::abs(endUseSubOther(iResource, jEndUse)) > 0.01) { - ort->needOtherRowLEED45(jEndUse) = true; - } else { - endUseSubOther(iResource, jEndUse) = 0.0; - } - } else { - endUseSubOther(iResource, jEndUse) = 0.0; - } - } - } - - // determine the number of rows needed for sub-table - numRows = 0; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { - ++numRows; - } - // check if an 'other' row is needed - if (ort->needOtherRowLEED45(jEndUse)) { - ++numRows; - } - } else { - ++numRows; - } - } - - rowHead.allocate(numRows); - columnHead.allocate(14); - columnWidth.allocate(14); - columnWidth = 10; // array assignment - same for all columns - tableBody.allocate(14, numRows); // TODO: this appears to be (column, row)... - rowHead = ""; - tableBody = ""; - - // Build row head and subcategories columns - i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - rowHead(i) = state.dataOutputProcessor->EndUseCategory(jEndUse).DisplayName; - if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { - tableBody(1, i) = state.dataOutputProcessor->EndUseCategory(jEndUse).SubcategoryName(kEndUseSub); - ++i; - } - // check if an 'other' row is needed - if (ort->needOtherRowLEED45(jEndUse)) { - tableBody(1, i) = "Other"; - ++i; - } - } else { - tableBody(1, i) = "General"; - ++i; - } - } - - columnHead(1) = "Subcategory"; - - { - auto const SELECT_CASE_var(unitsStyle_cur); - if (SELECT_CASE_var == iUnitsStyle::JtoKWH) { - columnHead(2) = "Electricity [kWh]"; - columnHead(3) = "Natural Gas [kWh]"; - columnHead(4) = "Gasoline [kWh]"; - columnHead(5) = "Diesel [kWh]"; - columnHead(6) = "Coal [kWh]"; - columnHead(7) = "Fuel Oil No 1 [kWh]"; - columnHead(8) = "Fuel Oil No 2 [kWh]"; - columnHead(9) = "Propane [kWh]"; - columnHead(10) = "Other Fuel 1 [kWh]"; - columnHead(11) = "Other Fuel 2 [kWh]"; - columnHead(12) = "District Cooling [kWh]"; - columnHead(13) = "District Heating [kWh]"; - columnHead(14) = "Water [m3]"; - } else if (SELECT_CASE_var == iUnitsStyle::InchPound) { - columnHead(2) = "Electricity [kBtu]"; - columnHead(3) = "Natural Gas [kBtu]"; - columnHead(4) = "Gasoline [kBtu]"; - columnHead(5) = "Diesel [kBtu]"; - columnHead(6) = "Coal [kBtu]"; - columnHead(7) = "Fuel Oil No 1 [kBtu]"; - columnHead(8) = "Fuel Oil No 2 [kBtu]"; - columnHead(9) = "Propane [kBtu]"; - columnHead(10) = "Other Fuel 1 [kBtu]"; - columnHead(11) = "Other Fuel 2 [kBtu]"; - columnHead(12) = "District Cooling [kBtu]"; - columnHead(13) = "District Heating [kBtu]"; - columnHead(14) = "Water [gal]"; - } else { - columnHead(2) = "Electricity [GJ]"; - columnHead(3) = "Natural Gas [GJ]"; - columnHead(4) = "Gasoline [GJ]"; - columnHead(5) = "Diesel [GJ]"; - columnHead(6) = "Coal [GJ]"; - columnHead(7) = "Fuel Oil No 1 [GJ]"; - columnHead(8) = "Fuel Oil No 2 [GJ]"; - columnHead(9) = "Propane [GJ]"; - columnHead(10) = "Other Fuel 1 [GJ]"; - columnHead(11) = "Other Fuel 2 [GJ]"; - columnHead(12) = "District Cooling [GJ]"; - columnHead(13) = "District Heating [GJ]"; - columnHead(14) = "Water [m3]"; - } - } - - for (iResource = 1; iResource <= 13; ++iResource) { - i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { - if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { - tableBody(iResource + 1, i) = RealToStr(collapsedEndUseSub(kEndUseSub, jEndUse, iResource), 2); - ++i; - } - // put other - if (ort->needOtherRowLEED45(jEndUse)) { - tableBody(iResource + 1, i) = RealToStr(endUseSubOther(iResource, jEndUse), 2); - ++i; - } - } else { - tableBody(iResource + 1, i) = RealToStr(collapsedEndUse(iResource, jEndUse), 2); - ++i; - } - } - } - - // heading for the entire sub-table - if (ort->displayTabularBEPS) { - if (produceTabular) { - WriteSubtitle(state, "End Uses By Subcategory"); - WriteTable(state, tableBody, rowHead, columnHead, columnWidth); - } - Array1D_string rowHeadTemp(rowHead); - // Before outputing to SQL, we forward fill the End use column (rowHead) - // for better sql queries - FillRowHead(rowHeadTemp); - - for (int i = 1; i <= numRows; ++i) { - rowHeadTemp(i) = rowHeadTemp(i) + ":" + tableBody(1, i); - } - - // Erase the SubCategory (first column), using slicing - Array2D_string tableBodyTemp(tableBody({2, _, _}, {_, _, _})); - Array1D_string columnHeadTemp(columnHead({2, _, _})); - if (produceSQLite) { - if (state.dataSQLiteProcedures->sqlite) { - state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords(tableBodyTemp, - rowHeadTemp, - columnHeadTemp, - "AnnualBuildingUtilityPerformanceSummary", - "Entire Facility", - "End Uses By Subcategory"); - } - } - if (produceTabular) { - if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { - state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable( - tableBodyTemp, - rowHeadTemp, - columnHeadTemp, - "Annual Building Utility Performance Summary", - "Entire Facility", - "End Uses By Subcategory"); - } - } - rowHeadTemp.deallocate(); - tableBodyTemp.deallocate(); - columnHeadTemp.deallocate(); - } + writeBEPSEndUseBySubCatOrSpaceType(state, + endUseSubTableType::bySubCategory, + endUseSubOther, + collapsedEndUse, + collapsedEndUseSub, + ort->needOtherRowLEED45, + unitsStyle_cur, + produceTabular, + produceSQLite); + + writeBEPSEndUseBySubCatOrSpaceType(state, + endUseSubTableType::bySpaceType, + endUseSubOther, + collapsedEndUse, + collapsedEndUseSpType, + ort->needOtherRowEndUse, + unitsStyle_cur, + produceTabular, + produceSQLite); // EAp2-4/5. Performance Rating Method Compliance // repeat some of the code for the end use subcategory table but only looping over the energy resources and not including water @@ -9101,7 +8947,7 @@ void WriteBEPSTable(EnergyPlusData &state) i = 1; for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { - for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { + for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { if (produceTabular) { PreDefTableEntry(state, resource_entry_map(iResource), @@ -9561,8 +9407,8 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody(1, 4) = RealToStr(totalOnsiteWater / waterConversionFactor, 2); if (allocated(state.dataWaterData->WaterStorage)) { - initialStorage = sum(state.dataWaterData->WaterStorage, &StorageTankDataStruct::InitialVolume); - finalStorage = sum(state.dataWaterData->WaterStorage, &StorageTankDataStruct::ThisTimeStepVolume); + initialStorage = sum(state.dataWaterData->WaterStorage, &DataWater::StorageTankDataStruct::InitialVolume); + finalStorage = sum(state.dataWaterData->WaterStorage, &DataWater::StorageTankDataStruct::ThisTimeStepVolume); StorageChange = initialStorage - finalStorage; } else { initialStorage = 0.0; @@ -9753,6 +9599,242 @@ Real64 WaterConversionFunct(Real64 WaterTotal, Real64 ConversionFactor) return WaterTotal / ConversionFactor; } +void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, + endUseSubTableType tableType, + Array2D &endUseSubOther, + Array2D &collapsedEndUse, + Array3D &collapsedEndUseSubTable, + Array1D_bool &needOtherRow, + const iUnitsStyle unitsStyle_cur, + const bool produceTabular, + const bool produceSQLite) +{ + auto &ort(state.dataOutRptTab); + int numCol = 14; + Array1D_string columnHead; + Array1D_int columnWidth; + columnHead.allocate(numCol); + columnWidth.allocate(numCol); + for (int col = 1; col <= numCol; ++col) { + columnWidth(col) = 10; // array assignment - same for all columns + } + { + auto const SELECT_CASE_var(unitsStyle_cur); + if (SELECT_CASE_var == iUnitsStyle::JtoKWH) { + columnHead(2) = "Electricity [kWh]"; + columnHead(3) = "Natural Gas [kWh]"; + columnHead(4) = "Gasoline [kWh]"; + columnHead(5) = "Diesel [kWh]"; + columnHead(6) = "Coal [kWh]"; + columnHead(7) = "Fuel Oil No 1 [kWh]"; + columnHead(8) = "Fuel Oil No 2 [kWh]"; + columnHead(9) = "Propane [kWh]"; + columnHead(10) = "Other Fuel 1 [kWh]"; + columnHead(11) = "Other Fuel 2 [kWh]"; + columnHead(12) = "District Cooling [kWh]"; + columnHead(13) = "District Heating [kWh]"; + columnHead(14) = "Water [m3]"; + } else if (SELECT_CASE_var == iUnitsStyle::InchPound) { + columnHead(2) = "Electricity [kBtu]"; + columnHead(3) = "Natural Gas [kBtu]"; + columnHead(4) = "Gasoline [kBtu]"; + columnHead(5) = "Diesel [kBtu]"; + columnHead(6) = "Coal [kBtu]"; + columnHead(7) = "Fuel Oil No 1 [kBtu]"; + columnHead(8) = "Fuel Oil No 2 [kBtu]"; + columnHead(9) = "Propane [kBtu]"; + columnHead(10) = "Other Fuel 1 [kBtu]"; + columnHead(11) = "Other Fuel 2 [kBtu]"; + columnHead(12) = "District Cooling [kBtu]"; + columnHead(13) = "District Heating [kBtu]"; + columnHead(14) = "Water [gal]"; + } else { + columnHead(2) = "Electricity [GJ]"; + columnHead(3) = "Natural Gas [GJ]"; + columnHead(4) = "Gasoline [GJ]"; + columnHead(5) = "Diesel [GJ]"; + columnHead(6) = "Coal [GJ]"; + columnHead(7) = "Fuel Oil No 1 [GJ]"; + columnHead(8) = "Fuel Oil No 2 [GJ]"; + columnHead(9) = "Propane [GJ]"; + columnHead(10) = "Other Fuel 1 [GJ]"; + columnHead(11) = "Other Fuel 2 [GJ]"; + columnHead(12) = "District Cooling [GJ]"; + columnHead(13) = "District Heating [GJ]"; + columnHead(14) = "Water [m3]"; + } + } + + constexpr int bySpaceType = 2; + + int numEndUses = state.dataGlobalConst->iEndUse.size(); + int numSubCatOrTypes = 0; + int numRows = 0; + if (tableType == endUseSubTableType::bySubCategory) { + columnHead(1) = "Subcategory"; + } else if (tableType == endUseSubTableType::bySpaceType) { + columnHead(1) = "Space Type"; + } + + // determine number of rows and if subcategories add up to the total + // if not, determine the difference for the 'other' row + for (int i = 1; i <= DataGlobalConstantsData::iEndUseSize; ++i) { + needOtherRow(i) = false; // set array to all false assuming no other rows are needed + } + for (int iResource = 1; iResource <= 13; ++iResource) { + for (int jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + if (tableType == endUseSubTableType::bySubCategory) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; + } else if (tableType == endUseSubTableType::bySpaceType) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; + } + if (numSubCatOrTypes > 0) { + // set the value to the total for the end use + endUseSubOther(iResource, jEndUse) = collapsedEndUse(iResource, jEndUse); + // subtract off each sub end use category value + for (int kEndUseSub = 1; kEndUseSub <= numSubCatOrTypes; ++kEndUseSub) { + endUseSubOther(iResource, jEndUse) -= collapsedEndUseSubTable(kEndUseSub, jEndUse, iResource); + } + // if just a small value remains set it to zero + if (std::abs(endUseSubOther(iResource, jEndUse)) > 0.01) { + needOtherRow(jEndUse) = true; + } else { + endUseSubOther(iResource, jEndUse) = 0.0; + } + } else { + endUseSubOther(iResource, jEndUse) = 0.0; + } + } + } + + for (int jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + if (tableType == endUseSubTableType::bySubCategory) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; + } else if (tableType == endUseSubTableType::bySpaceType) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; + } + if (numSubCatOrTypes > 0) { + for (int kEndUseSub = 1; kEndUseSub <= numSubCatOrTypes; ++kEndUseSub) { + ++numRows; + } + if (needOtherRow(jEndUse)) { + ++numRows; + } + } else { + ++numRows; + } + } + // all arrays are in the format: (row, column) + Array1D_string rowHead; + Array2D_string tableBody; + rowHead.allocate(numRows); + tableBody.allocate(numCol, numRows); // TODO: this appears to be (column, row)... + for (int col = 1; col <= numCol; ++col) { + for (int row = 1; row <= numRows; ++row) { + rowHead(row) = ""; + tableBody(col, row) = ""; + } + } + + // Build row head and subcategories columns + int i = 1; + for (size_t jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + if (tableType == endUseSubTableType::bySubCategory) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; + } else if (tableType == endUseSubTableType::bySpaceType) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; + } + rowHead(i) = state.dataOutputProcessor->EndUseCategory(jEndUse).DisplayName; + if (numSubCatOrTypes > 0) { + for (int kEndUseSub = 1; kEndUseSub <= numSubCatOrTypes; ++kEndUseSub) { + if (tableType == endUseSubTableType::bySubCategory) { + tableBody(1, i) = state.dataOutputProcessor->EndUseCategory(jEndUse).SubcategoryName(kEndUseSub); + } else if (tableType == endUseSubTableType::bySpaceType) { + tableBody(1, i) = state.dataOutputProcessor->EndUseCategory(jEndUse).spaceTypeName(kEndUseSub); + } + ++i; + } + // check if an 'other' row is needed + if (needOtherRow(jEndUse)) { + tableBody(1, i) = "Other"; + ++i; + } + } else { + if (tableType == endUseSubTableType::bySubCategory) { + tableBody(1, i) = "General"; + } else if (tableType == endUseSubTableType::bySpaceType) { + tableBody(1, i) = "Unassigned"; + } + ++i; + } + } + + for (int iResource = 1; iResource <= 13; ++iResource) { + i = 1; + for (size_t jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + if (tableType == endUseSubTableType::bySubCategory) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; + } else if (tableType == endUseSubTableType::bySpaceType) { + numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).numSpaceTypes; + } + if (numSubCatOrTypes > 0) { + for (int kEndUseSub = 1; kEndUseSub <= numSubCatOrTypes; ++kEndUseSub) { + tableBody(iResource + 1, i) = RealToStr(collapsedEndUseSubTable(kEndUseSub, jEndUse, iResource), 2); + ++i; + } + // put other + if (needOtherRow(jEndUse)) { + tableBody(iResource + 1, i) = RealToStr(endUseSubOther(iResource, jEndUse), 2); + ++i; + } + } else { + tableBody(iResource + 1, i) = RealToStr(collapsedEndUse(iResource, jEndUse), 2); + ++i; + } + } + } + + // heading for the entire sub-table + std::string subTableTitle; + if (ort->displayTabularBEPS) { + if (tableType == endUseSubTableType::bySubCategory) { + subTableTitle = "End Uses By Subcategory"; + } else if (tableType == endUseSubTableType::bySpaceType) { + subTableTitle = "End Uses By Space Type"; + } + if (produceTabular) { + WriteSubtitle(state, subTableTitle); + WriteTable(state, tableBody, rowHead, columnHead, columnWidth); + } + Array1D_string rowHeadTemp(rowHead); + // Before outputing to SQL, we forward fill the End use column (rowHead) + // for better sql queries + FillRowHead(rowHeadTemp); + + for (int i = 1; i <= numRows; ++i) { + rowHeadTemp(i) = rowHeadTemp(i) + ":" + tableBody(1, i); + } + + // Erase the SubCategory (first column), using slicing + Array2D_string tableBodyTemp(tableBody({2, _, _}, {_, _, _})); + Array1D_string columnHeadTemp(columnHead({2, _, _})); + if (produceSQLite) { + if (state.dataSQLiteProcedures->sqlite) { + state.dataSQLiteProcedures->sqlite->createSQLiteTabularDataRecords( + tableBodyTemp, rowHeadTemp, columnHeadTemp, "AnnualBuildingUtilityPerformanceSummary", "Entire Facility", subTableTitle); + } + } + if (produceTabular) { + if (state.dataResultsFramework->resultsFramework->timeSeriesAndTabularEnabled()) { + state.dataResultsFramework->resultsFramework->TabularReportsCollection.addReportTable( + tableBodyTemp, rowHeadTemp, columnHeadTemp, "Annual Building Utility Performance Summary", "Entire Facility", subTableTitle); + } + } + rowHeadTemp.deallocate(); + tableBodyTemp.deallocate(); + columnHeadTemp.deallocate(); + } +} void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) { // SUBROUTINE INFORMATION: diff --git a/src/EnergyPlus/OutputReportTabular.hh b/src/EnergyPlus/OutputReportTabular.hh index bcf27265a06..f6ba57b648d 100644 --- a/src/EnergyPlus/OutputReportTabular.hh +++ b/src/EnergyPlus/OutputReportTabular.hh @@ -118,6 +118,12 @@ namespace OutputReportTabular { NotFound, }; + enum class endUseSubTableType + { + bySubCategory, + bySpaceType + }; + // These correspond to the columns in the load component table constexpr int cSensInst(1); constexpr int cSensDelay(2); @@ -591,6 +597,16 @@ namespace OutputReportTabular { void WriteBEPSTable(EnergyPlusData &state); + void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, + endUseSubTableType tableType, + Array2D &endUseSubOther, + Array2D &collapsedEndUse, + Array3D &collapsedEndUseSub, + Array1D_bool &needOtherRow, + const iUnitsStyle unitsStyle_cur, + const bool produceTabular, + const bool produceSQLite); + std::string ResourceWarningMessage(std::string resource); Real64 WaterConversionFunct(Real64 WaterTotal, Real64 ConversionFactor); @@ -923,6 +939,7 @@ struct OutputReportTabularData : BaseGlobalStruct Array1D_int ffSchedIndex = Array1D_int(OutputReportTabular::numResourceTypes, 0); Array2D_int meterNumEndUseBEPS = Array2D_int(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0); Array3D_int meterNumEndUseSubBEPS; + Array3D_int meterNumEndUseSpTypeBEPS; // arrays that hold the names of the resource and end uses Array1D_string resourceTypeNames = Array1D_string(OutputReportTabular::numResourceTypes); Array1D_string sourceTypeNames = Array1D_string(OutputReportTabular::numSourceTypes); @@ -935,7 +952,9 @@ struct OutputReportTabularData : BaseGlobalStruct Array2D gatherEndUseBEPS = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); Array2D gatherEndUseBySourceBEPS = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); Array3D gatherEndUseSubBEPS; + Array3D gatherEndUseSpTypeBEPS; Array1D_bool needOtherRowLEED45 = Array1D_bool(DataGlobalConstantsData::iEndUseSize); + Array1D_bool needOtherRowEndUse = Array1D_bool(DataGlobalConstantsData::iEndUseSize); // arrays the hold the demand values Array1D gatherDemandTotal = Array1D(OutputReportTabular::numResourceTypes, 0.0); @@ -1263,6 +1282,7 @@ struct OutputReportTabularData : BaseGlobalStruct this->ffSchedIndex = Array1D_int(OutputReportTabular::numResourceTypes, 0); this->meterNumEndUseBEPS = Array2D_int(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0); this->meterNumEndUseSubBEPS.deallocate(); + this->meterNumEndUseSpTypeBEPS.deallocate(); this->resourceTypeNames = Array1D_string(OutputReportTabular::numResourceTypes); this->sourceTypeNames = Array1D_string(OutputReportTabular::numSourceTypes); this->endUseNames = Array1D_string(DataGlobalConstantsData::iEndUseSize); @@ -1273,7 +1293,9 @@ struct OutputReportTabularData : BaseGlobalStruct this->gatherEndUseBEPS = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); this->gatherEndUseBySourceBEPS = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); this->gatherEndUseSubBEPS.deallocate(); + this->gatherEndUseSpTypeBEPS.deallocate(); this->needOtherRowLEED45 = Array1D_bool(DataGlobalConstantsData::iEndUseSize); + this->needOtherRowEndUse = Array1D_bool(DataGlobalConstantsData::iEndUseSize); this->gatherDemandTotal = Array1D(OutputReportTabular::numResourceTypes, 0.0); this->gatherDemandEndUse = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); this->gatherDemandIndEndUse = Array2D(OutputReportTabular::numResourceTypes, DataGlobalConstantsData::iEndUseSize, 0.0); From 7e2c6a412125133ab18f0394caa41ccaee62cc28 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 17 Aug 2021 12:02:10 -0500 Subject: [PATCH 87/98] Remove unused parameter from meter addEndUseSubcategory and SpaceType --- src/EnergyPlus/OutputProcessor.cc | 9 ++++----- src/EnergyPlus/OutputProcessor.hh | 6 ++---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index a2075989107..d8e99582be5 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -1982,7 +1982,7 @@ namespace OutputProcessor { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; - addEndUseSpaceType(state, ResourceType, EndUse, SpaceType); + addEndUseSpaceType(state, EndUse, SpaceType); } } } @@ -1994,7 +1994,7 @@ namespace OutputProcessor { ++op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters; op->VarMeterArrays(op->NumVarMeterArrays).OnMeters(op->VarMeterArrays(op->NumVarMeterArrays).NumOnMeters) = Found; - AddEndUseSubcategory(state, ResourceType, EndUse, EndUseSub); + addEndUseSubcategory(state, EndUse, EndUseSub); } if (UtilityRoutines::SameString(Group, "Building")) { // Match to Zone if (!ZoneName.empty()) { @@ -3864,7 +3864,7 @@ namespace OutputProcessor { // End of routines for Energy Meters implementation in EnergyPlus. // ***************************************************************************** - void AddEndUseSubcategory(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSubName) + void addEndUseSubcategory(EnergyPlusData &state, std::string const &EndUseName, std::string const &EndUseSubName) { // SUBROUTINE INFORMATION: @@ -3915,8 +3915,7 @@ namespace OutputProcessor { ShowSevereError(state, "Nonexistent end use passed to AddEndUseSubcategory=" + EndUseName); } } - void - addEndUseSpaceType(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSpaceTypeName) + void addEndUseSpaceType(EnergyPlusData &state, std::string const &EndUseName, std::string const &EndUseSpaceTypeName) { auto &op(state.dataOutputProcessor); diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index 809da144143..00a599915e7 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -743,11 +743,9 @@ namespace OutputProcessor { // End of routines for Energy Meters implementation in EnergyPlus. // ***************************************************************************** - void - AddEndUseSubcategory(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSubName); + void addEndUseSubcategory(EnergyPlusData &state, std::string const &EndUseName, std::string const &EndUseSubName); - void - addEndUseSpaceType(EnergyPlusData &state, std::string const &ResourceName, std::string const &EndUseName, std::string const &EndUseSpTypeName); + void addEndUseSpaceType(EnergyPlusData &state, std::string const &EndUseName, std::string const &EndUseSpTypeName); void WriteTimeStampFormatData(EnergyPlusData &state, InputOutputFile &outputFile, From adb8c1666f0d529fec812b44a510212902fe4d08 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Tue, 17 Aug 2021 15:33:38 -0500 Subject: [PATCH 88/98] Space - Plug and Process Equipment --- idd/Energy+.idd.in | 59 +- src/EnergyPlus/DataHeatBalance.hh | 108 +- src/EnergyPlus/InternalHeatGains.cc | 7288 +++++++++-------- src/EnergyPlus/InternalHeatGains.hh | 3 +- src/EnergyPlus/OutputReportTabular.cc | 73 +- ...gMediumOfficeNew2004_Chicago_epJSON.epJSON | 32 +- .../unit/OutputReportTabular.unit.cc | 30 +- 7 files changed, 3960 insertions(+), 3633 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 34cee83609a..20fd6c9a3b9 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -21007,8 +21007,9 @@ RoomAirSettings:AirflowNetwork, People, \memo Sets internal gains and contaminant rates for occupants in the zone. - \memo If you use a ZoneList of SpaceList in the Zone or ZoneList or Space or SpaceList name field - \memo then this definition applies to all the zones or spaces in the list. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 10 A1 , \field Name \required-field @@ -21344,8 +21345,9 @@ ComfortViewFactorAngles, Lights, \memo Sets internal gains for lights in the zone. - \memo If you use a ZoneList of SpaceList in the Zone or ZoneList or Space or SpaceList name field - \memo then this definition applies to all the zones or spaces in the list. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 11 A1 , \field Name \required-field @@ -21446,17 +21448,19 @@ Lights, ElectricEquipment, \memo Sets internal gains for electric equipment in the zone. - \memo If you use a ZoneList in the Zone or ZoneList name field then this definition applies - \memo to all the zones in the ZoneList. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 10 A1 , \field Name \required-field \type alpha \reference ElectricEquipmentNames - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list @@ -21511,15 +21515,18 @@ ElectricEquipment, GasEquipment, \memo Sets internal gains and contaminant rates for gas equipment in the zone. - \memo If you use a ZoneList in the Zone name field then this definition applies to all those zones. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 10 A1 , \field Name \required-field \type alpha - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list @@ -21588,15 +21595,18 @@ GasEquipment, HotWaterEquipment, \memo Sets internal gains for hot water equipment in the zone. - \memo If you use a ZoneList in the Zone name field then this definition applies to all those zones. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 10 A1 , \field Name \required-field \type alpha - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list @@ -21653,14 +21663,18 @@ HotWaterEquipment, SteamEquipment, \memo Sets internal gains for steam equipment in the zone. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 10 A1 , \field Name \required-field \type alpha - A2 , \field Zone or ZoneList Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list @@ -21717,6 +21731,9 @@ SteamEquipment, OtherEquipment, \memo Sets internal gains or losses for "other" equipment in the zone. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 11 A1 , \field Name \required-field @@ -21738,10 +21755,11 @@ OtherEquipment, \key DistrictHeating \key DistrictCooling \default None - A3 , \field Zone or ZoneList Name + A3 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A4 , \field Schedule Name \required-field \type object-list @@ -21806,14 +21824,19 @@ OtherEquipment, ElectricEquipment:ITE:AirCooled, \memo This object describes air-cooled electric information technology equipment (ITE) which has \memo variable power consumption as a function of loading and temperature. + \memo If a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 28 A1 , \field Name \required-field \type alpha - A2 , \field Zone Name + A2 , \field Zone or Space Name + \note ZoneList and SpaceList names are not allowed. \required-field \type object-list \object-list ZoneNames + \object-list SpaceNames A3 , \field Air Flow Calculation Method \note The specified method is used to calculate the IT inlet temperature and zone return \note air temperature. If FlowFromSystem is chosen, the zone is assumed to be well-mixed. @@ -22021,14 +22044,18 @@ ElectricEquipment:ITE:AirCooled, ZoneBaseboard:OutdoorTemperatureControlled, \memo Specifies outside temperature-controlled electric baseboard heating. + \memo If a ZoneList, SpaceList, or a Zone comprised of more than one Space is specified + \memo then this definition applies to all applicable spaces, and each instance will + \memo be named with the Space Name plus this Object Name. \min-fields 8 A1 , \field Name \required-field \type alpha - A2 , \field Zone Name + A2 , \field Zone or ZoneList or Space or SpaceList Name \required-field \type object-list - \object-list ZoneNames + \object-list ZoneAndZoneListNames + \object-list SpaceAndSpaceListNames A3 , \field Schedule Name \required-field \type object-list diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index ab6beb9d3b0..54cc20670e1 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -338,23 +338,24 @@ namespace DataHeatBalance { struct SpaceData { - std::string Name = ""; // Space name - int zoneNum = 0; // Pointer to Zone wich contains this space - Real64 userEnteredFloorArea = 0.0; // User input floor area for this space - std::string spaceType = "General"; // Space type tag - int spaceTypeNum = 0; // Points to spaceType for this space - EPVector tags; // Optional tags for reporting - EPVector surfaces; // Pointers to surfaces in this space - Real64 calcFloorArea = 0.0; // Calculated floor area used for this space - Real64 floorArea = 0.0; // Floor area used for this space - bool hasFloor = false; // Has "Floor" surface - Real64 extWindowArea = 0.0; // Exterior Window Area for Zone - Real64 totalSurfArea = 0.0; // Total surface area for Zone - int radiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to - int solarEnclosureNum = 0; // Solar distribution enclosure this space belongs to - Real64 totOccupants = 0.0; // total design occupancy (sum of NumberOfPeople for the space People objects, not multiplied) - Real64 minOccupants = 0.0; // minimum occupancy (sum of NomMinNumberPeople for the space People objects, not multiplied) - Real64 maxOccupants = 0.0; // maximum occupancy (sum of NomMaxNumberPeople for the space People objects, not multiplied) + std::string Name = ""; // Space name + int zoneNum = 0; // Pointer to Zone wich contains this space + Real64 userEnteredFloorArea = 0.0; // User input floor area for this space + std::string spaceType = "General"; // Space type tag + int spaceTypeNum = 0; // Points to spaceType for this space + EPVector tags; // Optional tags for reporting + EPVector surfaces; // Pointers to surfaces in this space + Real64 calcFloorArea = 0.0; // Calculated floor area used for this space + Real64 floorArea = 0.0; // Floor area used for this space + bool hasFloor = false; // Has "Floor" surface + Real64 extWindowArea = 0.0; // Exterior Window Area for Zone + Real64 totalSurfArea = 0.0; // Total surface area for Zone + int radiantEnclosureNum = 0; // Radiant exchange enclosure this space belongs to + int solarEnclosureNum = 0; // Solar distribution enclosure this space belongs to + Real64 totOccupants = 0.0; // total design occupancy (sum of NumberOfPeople for the space People objects, not multiplied) + Real64 minOccupants = 0.0; // minimum occupancy (sum of NomMinNumberPeople for the space People objects, not multiplied) + Real64 maxOccupants = 0.0; // maximum occupancy (sum of NomMaxNumberPeople for the space People objects, not multiplied) + std::vector otherEquipFuelTypes; // List of fuel types used by other equipment in this space }; struct SpaceListData @@ -473,15 +474,16 @@ namespace DataHeatBalance { bool HasLtsRetAirGain; // TRUE means that zone lights return air heat > 0.0 calculated from plenum temperature bool HasAirFlowWindowReturn; // TRUE means that zone has return air flow from windows // from refrigeration cases for this zone - Real64 InternalHeatGains; // internal loads (W) - Real64 NominalInfilVent; // internal infiltration/ventilation - Real64 NominalMixing; // internal mixing/cross mixing - bool TempOutOfBoundsReported; // if any temp out of bounds errors, first will show zone details. - bool EnforcedReciprocity; // if zone/space required forced reciprocity -- less out of bounds temp errors allowed - int ZoneMinCO2SchedIndex; // Index for the schedule the schedule which determines minimum CO2 concentration - int ZoneMaxCO2SchedIndex; // Index for the schedule the schedule which determines maximum CO2 concentration - int ZoneContamControllerSchedIndex; // Index for this schedule - bool FlagCustomizedZoneCap; // True if customized Zone Capacitance Multiplier is used + Real64 InternalHeatGains; // internal loads (W) + Real64 NominalInfilVent; // internal infiltration/ventilation + Real64 NominalMixing; // internal mixing/cross mixing + bool TempOutOfBoundsReported; // if any temp out of bounds errors, first will show zone details. + bool EnforcedReciprocity; // if zone/space required forced reciprocity -- less out of bounds temp errors allowed + int ZoneMinCO2SchedIndex; // Index for the schedule the schedule which determines minimum CO2 concentration + int ZoneMaxCO2SchedIndex; // Index for the schedule the schedule which determines maximum CO2 concentration + int ZoneContamControllerSchedIndex; // Index for this schedule + bool FlagCustomizedZoneCap; // True if customized Zone Capacitance Multiplier is used + std::vector otherEquipFuelTypes; // List of fuel types used by other equipment in this zone // Hybrid Modeling Real64 ZoneMeasuredTemperature; // Measured zone air temperature input by user @@ -684,7 +686,7 @@ namespace DataHeatBalance { // Members std::string Name; // LIGHTS object name int ZonePtr; // Which zone lights are in - int spaceIndex; // Space index for this people statement + int spaceIndex; // Space index for this lights instance int SchedPtr; // Schedule for lights Real64 DesignLevel; // design level for lights [W] bool EMSLightsOn; // EMS actuating Lighting power if .TRUE. @@ -723,8 +725,8 @@ namespace DataHeatBalance { // Default Constructor LightsData() - : ZonePtr(0), SchedPtr(-1), DesignLevel(0.0), EMSLightsOn(false), EMSLightingPower(0.0), FractionReturnAir(0.0), FractionRadiant(0.0), - FractionShortWave(0.0), FractionReplaceable(0.0), FractionConvected(0.0), FractionReturnAirIsCalculated(false), + : ZonePtr(0), spaceIndex(0), SchedPtr(-1), DesignLevel(0.0), EMSLightsOn(false), EMSLightingPower(0.0), FractionReturnAir(0.0), + FractionRadiant(0.0), FractionShortWave(0.0), FractionReplaceable(0.0), FractionConvected(0.0), FractionReturnAirIsCalculated(false), FractionReturnAirPlenTempCoeff1(0.0), FractionReturnAirPlenTempCoeff2(0.0), ZoneReturnNum(1), ZoneExhaustNodeNum(0), NomMinDesignLevel(0.0), NomMaxDesignLevel(0.0), ManageDemand(false), DemandLimit(0.0), Power(0.0), RadGainRate(0.0), VisGainRate(0.0), ConGainRate(0.0), RetAirGainRate(0.0), TotGainRate(0.0), Consumption(0.0), RadGainEnergy(0.0), VisGainEnergy(0.0), ConGainEnergy(0.0), @@ -738,8 +740,7 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in - EPVector spacePtrs; // Pointers to space numbers for this object - EPVector spaceFracs; // Fraction of total gains applied to each space + int spaceIndex; // Space index for this equipment instance int SchedPtr; // Schedule for internal gain Real64 DesignLevel; // design level for internal gain [W] bool EMSZoneEquipOverrideOn; // EMS actuating equipment power if .TRUE. @@ -769,15 +770,16 @@ namespace DataHeatBalance { Real64 LostEnergy; // Lost energy (converted to work) [J] Real64 TotGainEnergy; // Total heat gain [J] std::string EndUseSubcategory; // user defined name for the end use category + std::string otherEquipFuelTypeString; // Fuel Type string for Other Equipment ExteriorEnergyUse::ExteriorFuelUsage OtherEquipFuelType; // Fuel Type Number of the Other Equipment (defined in ExteriorEnergyUse.cc) // Default Constructor ZoneEquipData() - : ZonePtr(0), SchedPtr(0), DesignLevel(0.0), EMSZoneEquipOverrideOn(false), EMSEquipPower(0.0), FractionLatent(0.0), FractionRadiant(0.0), - FractionLost(0.0), FractionConvected(0.0), CO2DesignRate(0.0), CO2RateFactor(0.0), NomMinDesignLevel(0.0), NomMaxDesignLevel(0.0), - ManageDemand(false), DemandLimit(0.0), Power(0.0), RadGainRate(0.0), ConGainRate(0.0), LatGainRate(0.0), LostRate(0.0), - TotGainRate(0.0), CO2GainRate(0.0), Consumption(0.0), RadGainEnergy(0.0), ConGainEnergy(0.0), LatGainEnergy(0.0), LostEnergy(0.0), - TotGainEnergy(0.0), OtherEquipFuelType(ExteriorEnergyUse::ExteriorFuelUsage::Unknown) + : ZonePtr(0), spaceIndex(0), SchedPtr(0), DesignLevel(0.0), EMSZoneEquipOverrideOn(false), EMSEquipPower(0.0), FractionLatent(0.0), + FractionRadiant(0.0), FractionLost(0.0), FractionConvected(0.0), CO2DesignRate(0.0), CO2RateFactor(0.0), NomMinDesignLevel(0.0), + NomMaxDesignLevel(0.0), ManageDemand(false), DemandLimit(0.0), Power(0.0), RadGainRate(0.0), ConGainRate(0.0), LatGainRate(0.0), + LostRate(0.0), TotGainRate(0.0), CO2GainRate(0.0), Consumption(0.0), RadGainEnergy(0.0), ConGainEnergy(0.0), LatGainEnergy(0.0), + LostEnergy(0.0), TotGainEnergy(0.0), OtherEquipFuelType(ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { } }; @@ -787,8 +789,7 @@ namespace DataHeatBalance { // Members std::string Name; // EQUIPMENT object name int ZonePtr; // Which zone internal gain is in - EPVector spacePtrs; // Pointers to space numbers for this object - EPVector spaceFracs; // Fraction of total gains applied to each space + int spaceIndex; // Space index for this equipment instance bool FlowControlWithApproachTemps; // True if using supply and return approach temperature for ITE object. Real64 DesignTotalPower; // Design level for internal gain [W] Real64 NomMinDesignLevel; // Nominal Minimum Design Level (min sch X design level) @@ -869,7 +870,7 @@ namespace DataHeatBalance { // Default Constructor ITEquipData() - : ZonePtr(0), FlowControlWithApproachTemps(false), DesignTotalPower(0.0), NomMinDesignLevel(0.0), NomMaxDesignLevel(0.0), + : ZonePtr(0), spaceIndex(0), FlowControlWithApproachTemps(false), DesignTotalPower(0.0), NomMinDesignLevel(0.0), NomMaxDesignLevel(0.0), DesignFanPowerFrac(0.0), OperSchedPtr(0), CPULoadSchedPtr(0), SizingTAirIn(0.0), DesignTAirIn(0.0), DesignFanPower(0.0), DesignCPUPower(0.0), DesignAirVolFlowRate(0.0), Class(0), AirFlowFLTCurve(0), CPUPowerFLTCurve(0), FanPowerFFCurve(0), AirConnectionType(0), InletRoomAirNodeNum(0), OutletRoomAirNodeNum(0), SupplyAirNodeNum(0), DesignRecircFrac(0.0), RecircFLTCurve(0), @@ -891,8 +892,7 @@ namespace DataHeatBalance { // Members std::string Name; // BASEBOARD HEAT object name int ZonePtr; - EPVector spacePtrs; // Pointers to space numbers for this object - EPVector spaceFracs; // Fraction of total gains applied to each space + int spaceIndex; // Space index for this equipment instance int SchedPtr; Real64 CapatLowTemperature; Real64 LowTemperature; @@ -917,7 +917,7 @@ namespace DataHeatBalance { // Default Constructor BBHeatData() - : ZonePtr(0), SchedPtr(0), CapatLowTemperature(0.0), LowTemperature(0.0), CapatHighTemperature(0.0), HighTemperature(0.0), + : ZonePtr(0), spaceIndex(0), SchedPtr(0), CapatLowTemperature(0.0), LowTemperature(0.0), CapatHighTemperature(0.0), HighTemperature(0.0), EMSZoneBaseboardOverrideOn(false), EMSZoneBaseboardPower(0.0), FractionRadiant(0.0), FractionConvected(0.0), ManageDemand(false), DemandLimit(0.0), Power(0.0), RadGainRate(0.0), ConGainRate(0.0), TotGainRate(0.0), Consumption(0.0), RadGainEnergy(0.0), ConGainEnergy(0.0), TotGainEnergy(0.0) @@ -2055,13 +2055,15 @@ struct HeatBalanceData : BaseGlobalStruct int NumSteamEqStatements = 0; // number of Steam Equipment objects in input. - possibly global assignments int NumOtherEqStatements = 0; // number of Other Equipment objects in input. - possibly global assignments int NumZoneITEqStatements = 0; // number of Other Equipment objects in input. - possibly global assignments - int TotPeople = 0; // Total People Statements in input and extrapolated from global assignments - int TotLights = 0; // Total Lights Statements in input and extrapolated from global assignments - int TotElecEquip = 0; // Total Electric Equipment Statements in input and extrapolated from global assignments - int TotGasEquip = 0; // Total Gas Equipment Statements in input - int TotOthEquip = 0; // Total Other Equipment Statements in input - int TotHWEquip = 0; // Total Hot Water Equipment Statements in input - int TotStmEquip = 0; // Total Steam Equipment Statements in input + int NumZoneBBHeatStatements = 0; // number of ZoneBaseboard heat objects in input. - possibly global assignments + int TotPeople = 0; // Total People instances after expansion to spaces + int TotLights = 0; // Total Lights instances after expansion to spaces + int TotElecEquip = 0; // Total Electric Equipment instances after expansion to spaces + int TotGasEquip = 0; // Total Gas Equipment instances after expansion to spaces + int TotOthEquip = 0; // Total Other Equipment instances after expansion to spaces + int TotHWEquip = 0; // Total Hot Water Equipment instances after expansion to spaces + int TotStmEquip = 0; // Total Steam Equipment instances after expansion to spaces + int TotITEquip = 0; // Total IT Equipment instances after expansion to spaces int TotInfiltration = 0; // Total Infiltration Statements in input and extrapolated from global assignments int TotDesignFlowInfiltration = 0; // number of Design Flow rate ZoneInfiltration in input int TotShermGrimsInfiltration = 0; // number of Sherman Grimsrud (ZoneInfiltration:ResidentialBasic) in input @@ -2072,7 +2074,7 @@ struct HeatBalanceData : BaseGlobalStruct int TotMixing = 0; // Total Mixing Statements in input int TotCrossMixing = 0; // Total Cross Mixing Statements in input int TotRefDoorMixing = 0; // Total RefrigerationDoor Mixing Statements in input - int TotBBHeat = 0; // Total BBHeat Statements in input + int TotBBHeat = 0; // Total BBHeat Statements instances after expansion to spaces int TotMaterials = 0; // Total number of unique materials (layers) in this simulation int TotConstructs = 0; // Total number of unique constructions in this simulation int TotSpectralData = 0; // Total window glass spectral data sets @@ -2297,6 +2299,8 @@ struct HeatBalanceData : BaseGlobalStruct EPVector HotWaterEqObjects; EPVector SteamEqObjects; EPVector OtherEqObjects; + EPVector ITEqObjects; + EPVector ZoneBBHeatObjects; EPVector InfiltrationObjects; EPVector VentilationObjects; EPVector ZnRpt; @@ -2354,6 +2358,7 @@ struct HeatBalanceData : BaseGlobalStruct this->NumSteamEqStatements = 0; this->NumOtherEqStatements = 0; this->NumZoneITEqStatements = 0; + this->NumZoneBBHeatStatements = 0; this->TotPeople = 0; this->TotLights = 0; this->TotElecEquip = 0; @@ -2361,6 +2366,7 @@ struct HeatBalanceData : BaseGlobalStruct this->TotOthEquip = 0; this->TotHWEquip = 0; this->TotStmEquip = 0; + this->TotITEquip = 0; this->TotInfiltration = 0; this->TotDesignFlowInfiltration = 0; this->TotShermGrimsInfiltration = 0; @@ -2571,6 +2577,8 @@ struct HeatBalanceData : BaseGlobalStruct this->HotWaterEqObjects.deallocate(); this->SteamEqObjects.deallocate(); this->OtherEqObjects.deallocate(); + this->ITEqObjects.deallocate(); + this->ZoneBBHeatObjects.deallocate(); this->InfiltrationObjects.deallocate(); this->VentilationObjects.deallocate(); this->ZnRpt.deallocate(); diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index bb5dc3e5b9c..b9f8d938b88 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -386,7 +386,7 @@ namespace InternalHeatGains { } } else if (peopleMethod == "PEOPLE/AREA") { - if (thisPeople.ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(2) >= 0.0) { thisPeople.NumberOfPeople = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { @@ -414,7 +414,7 @@ namespace InternalHeatGains { } } else if (peopleMethod == "AREA/PERSON") { - if (thisPeople.ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) > 0.0) { thisPeople.NumberOfPeople = state.dataHeatBal->space(spaceNum).floorArea / IHGNumbers(3); if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { @@ -1146,9 +1146,8 @@ namespace InternalHeatGains { } else { ShowSevereError(state, std::string(RoutineName) + "Zone floor area is zero when allocating Lights loads to Spaces."); - ShowContinueError(state, - "Occurs for Lights object =" + thisLightsInput.Name + - " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ShowContinueError( + state, "Occurs for Lights object =" + AlphaName(1) + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); ErrorsFound = true; } } @@ -1156,12 +1155,12 @@ namespace InternalHeatGains { thisLights.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Lights will result."); } } else if (lightingLevel == "WATTS/AREA") { - if (thisLights.ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(2) >= 0.0) { thisLights.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { @@ -1183,12 +1182,12 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Lights will result."); } } else if (lightingLevel == "WATTS/PERSON") { - if (thisLights.ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) >= 0.0) { thisLights.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { @@ -1210,7 +1209,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", specifies " + + std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Lights will result."); } @@ -1241,7 +1240,7 @@ namespace InternalHeatGains { if (thisLights.FractionConvected < 0.0) { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLights.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } } @@ -1267,7 +1266,7 @@ namespace InternalHeatGains { } else if (AlphaName(6) != "YES" && AlphaName(6) != "NO") { if (Item1 == 1) { ShowWarningError(state, - std::string{RoutineName} + lightsModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + lightsModuleObject + "=\"" + thisLightsInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(6) + ", value =" + AlphaName(6)); ShowContinueError(state, ".. Return Air Fraction from Plenum will NOT be calculated."); } @@ -1350,10 +1349,8 @@ namespace InternalHeatGains { } } } - for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { - int spaceNum = state.dataHeatBal->Lights(lightsNum).spaceIndex; - int zoneNum = state.dataHeatBal->Lights(lightsNum).ZonePtr; - if (state.dataGlobal->AnyEnergyManagementSystemInModel) { + if (state.dataGlobal->AnyEnergyManagementSystemInModel) { + for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { SetupEMSActuator(state, "Lights", state.dataHeatBal->Lights(lightsNum).Name, @@ -1367,6 +1364,10 @@ namespace InternalHeatGains { "[W]", state.dataHeatBal->Lights(lightsNum).DesignLevel); } // EMS + } + for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { + int spaceNum = state.dataHeatBal->Lights(lightsNum).spaceIndex; + int zoneNum = state.dataHeatBal->Lights(lightsNum).ZonePtr; // setup internal gains int returnNodeNum = 0; if ((state.dataHeatBal->Lights(lightsNum).ZoneReturnNum > 0) && @@ -1413,7 +1414,7 @@ namespace InternalHeatGains { state, state.dataOutRptPredefined->pdchInLtSchd, liteName, GetScheduleName(state, state.dataHeatBal->Lights(lightsNum).SchedPtr)); PreDefTableEntry( state, state.dataOutRptPredefined->pdchInLtRetAir, liteName, state.dataHeatBal->Lights(lightsNum).FractionReturnAir, 4); - } // Item1 - Number of Spaces per Lights input object + } // Item1 - Number of Lights instances if (CheckSharedExhaustFlag) { DataZoneEquipment::CheckSharedExhaust(state); Array1D_bool ReturnNodeShared; // zone supply air inlet nodes @@ -1456,73 +1457,21 @@ namespace InternalHeatGains { PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtArea, "Interior Lighting Total", state.dataInternalHeatGains->sumArea); PreDefTableEntry(state, state.dataOutRptPredefined->pdchInLtPower, "Interior Lighting Total", state.dataInternalHeatGains->sumPower); - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumZoneElectricStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, elecEqModuleObject); - state.dataHeatBal->ZoneElectricObjects.allocate(state.dataHeatBal->NumZoneElectricStatements); - - state.dataHeatBal->TotElecEquip = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - elecEqModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), elecEqModuleObject, ErrorsFound); - - state.dataHeatBal->ZoneElectricObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->ZoneElectricObjects(Item).StartPtr = state.dataHeatBal->TotElecEquip + 1; - ++state.dataHeatBal->TotElecEquip; - state.dataHeatBal->ZoneElectricObjects(Item).NumOfZones = 1; - state.dataHeatBal->ZoneElectricObjects(Item).ZoneListActive = false; - state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->ZoneElectricObjects(Item).StartPtr = state.dataHeatBal->TotElecEquip + 1; - state.dataHeatBal->TotElecEquip += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->ZoneElectricObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->ZoneElectricObjects(Item).ZoneListActive = true; - state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - elecEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + elecEqModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotElecEquip = 0; - } - - state.dataHeatBal->ZoneElectric.allocate(state.dataHeatBal->TotElecEquip); + setupIHGZonesAndSpaces(state, + elecEqModuleObject, + state.dataHeatBal->ZoneElectricObjects, + state.dataHeatBal->NumZoneElectricStatements, + state.dataHeatBal->TotElecEquip, + ErrorsFound); if (state.dataHeatBal->TotElecEquip > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumZoneElectricStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + state.dataHeatBal->ZoneElectric.allocate(state.dataHeatBal->TotElecEquip); + int elecEqNum = 0; + for (int elecEqInputNum = 1; elecEqInputNum <= state.dataHeatBal->NumZoneElectricStatements; ++elecEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, elecEqModuleObject, - Item, + elecEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -1533,45 +1482,20 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->ZoneElectricObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->ZoneElectricObjects(Item).ZoneListActive) { - state.dataHeatBal->ZoneElectric(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - elecEqModuleObject, - state.dataHeatBal - ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->ZoneElectricObjects(Item).Name, - state.dataHeatBal->ZoneElectric, - Loop - 1, - state.dataHeatBal->ZoneElectric(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneElectricObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->ZoneElectric(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneElectric(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisElecEqInput = state.dataHeatBal->ZoneElectricObjects(elecEqInputNum); + for (int Item1 = 1; Item1 <= thisElecEqInput.numOfSpaces; ++Item1) { + ++elecEqNum; + auto &thisZoneElectric = state.dataHeatBal->ZoneElectric(elecEqNum); + int const spaceNum = thisElecEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneElectric.Name = thisElecEqInput.names(Item1); + thisZoneElectric.spaceIndex = spaceNum; + thisZoneElectric.ZonePtr = zoneNum; - state.dataHeatBal->ZoneElectric(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); + thisZoneElectric.SchedPtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->ZoneElectric(Loop).SchedPtr == 0) { + if (thisZoneElectric.SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", " + @@ -1583,8 +1507,8 @@ namespace InternalHeatGains { } ErrorsFound = true; } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneElectric(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneElectric(Loop).SchedPtr); + SchMin = GetScheduleMinValue(state, thisZoneElectric.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneElectric.SchedPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, @@ -1605,57 +1529,48 @@ namespace InternalHeatGains { } } - // Set space load fractions - if (int(state.dataHeatBal->ZoneElectric(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneElectric(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneElectric(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneElectric(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError( - state, std::string(RoutineName) + "Zone floor area is zero when allocating ElectricEquipment loads to Spaces."); - ShowContinueError(state, - "Occurs for ElectricEquipment object =" + state.dataHeatBal->ZoneElectricObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } - // Electric equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); if (equipmentLevel == "EQUIPMENTLEVEL") { - state.dataHeatBal->ZoneElectric(Loop).DesignLevel = IHGNumbers(1); + Real64 spaceFrac = 1.0; + if (thisElecEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError(state, + std::string(RoutineName) + + "Zone floor area is zero when allocating ElectricEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for ElectricEquipment object =" + thisElecEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(thisZoneElectric.ZonePtr).Name); + ErrorsFound = true; + } + } + thisZoneElectric.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisElecEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Electric Equipment will result."); } - } else if (equipmentLevel == "WATTS/AREA") { - if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->ZoneElectric(Loop).DesignLevel = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).FloorArea <= 0.0) { + thisZoneElectric.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 Electric Equipment will result."); + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisZoneElectric.Name + + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + ", but Space Floor Area = 0. 0 Electric Equipment will result."); } } else { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, elecEqModuleObject, - AlphaName(1), + thisZoneElectric.Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); ErrorsFound = true; @@ -1663,20 +1578,19 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisElecEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Electric Equipment will result."); } } else if (equipmentLevel == "WATTS/PERSON") { - if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->ZoneElectric(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).TotOccupants <= 0.0) { + thisZoneElectric.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; + if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisZoneElectric.Name + + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Electric Equipment will result."); } } else { @@ -1684,7 +1598,7 @@ namespace InternalHeatGains { format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, elecEqModuleObject, - AlphaName(1), + thisZoneElectric.Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); ErrorsFound = true; @@ -1692,7 +1606,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisElecEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Electric Equipment will result."); } @@ -1700,7 +1614,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisElecEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -1709,313 +1623,68 @@ namespace InternalHeatGains { } // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneElectric(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneElectric(Loop).DesignLevel * SchMin; - state.dataHeatBal->ZoneElectric(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneElectric(Loop).DesignLevel * SchMax; + thisZoneElectric.NomMinDesignLevel = thisZoneElectric.DesignLevel * SchMin; + thisZoneElectric.NomMaxDesignLevel = thisZoneElectric.DesignLevel * SchMax; - state.dataHeatBal->ZoneElectric(Loop).FractionLatent = IHGNumbers(4); - state.dataHeatBal->ZoneElectric(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneElectric(Loop).FractionLost = IHGNumbers(6); + thisZoneElectric.FractionLatent = IHGNumbers(4); + thisZoneElectric.FractionRadiant = IHGNumbers(5); + thisZoneElectric.FractionLost = IHGNumbers(6); // FractionConvected is a calculated field - state.dataHeatBal->ZoneElectric(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->ZoneElectric(Loop).FractionLatent + state.dataHeatBal->ZoneElectric(Loop).FractionRadiant + - state.dataHeatBal->ZoneElectric(Loop).FractionLost); - if (std::abs(state.dataHeatBal->ZoneElectric(Loop).FractionConvected) <= 0.001) - state.dataHeatBal->ZoneElectric(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->ZoneElectric(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + elecEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + thisZoneElectric.FractionConvected = + 1.0 - (thisZoneElectric.FractionLatent + thisZoneElectric.FractionRadiant + thisZoneElectric.FractionLost); + if (std::abs(thisZoneElectric.FractionConvected) <= 0.001) thisZoneElectric.FractionConvected = 0.0; + if (thisZoneElectric.FractionConvected < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + elecEqModuleObject + "=\"" + thisElecEqInput.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } if (NumAlpha > 4) { - state.dataHeatBal->ZoneElectric(Loop).EndUseSubcategory = AlphaName(5); + thisZoneElectric.EndUseSubcategory = AlphaName(5); } else { - state.dataHeatBal->ZoneElectric(Loop).EndUseSubcategory = "General"; - } - - if (state.dataHeatBal->ZoneElectric(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Electric Equipment Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name, - _, - "Electricity", - "InteriorEquipment", - state.dataHeatBal->ZoneElectric(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ListMultiplier); - - SetupOutputVariable(state, - "Electric Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).LostEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).LostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneElectric(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneElectric(Loop).Name); - SetupOutputVariable(state, - "Electric Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneElectric(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneElectric(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneElectric(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneElectric(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone Electric Equipment Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone Electric Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecLost, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecLostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Electric Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).ElecTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(Loop).ZonePtr).Name); + thisZoneElectric.EndUseSubcategory = "General"; } - if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "ElectricEquipment", - state.dataHeatBal->ZoneElectric(Loop).Name, + thisZoneElectric.Name, "Electricity Rate", "[W]", - state.dataHeatBal->ZoneElectric(Loop).EMSZoneEquipOverrideOn, - state.dataHeatBal->ZoneElectric(Loop).EMSEquipPower); - SetupEMSInternalVariable(state, - "Plug and Process Power Design Level", - state.dataHeatBal->ZoneElectric(Loop).Name, - "[W]", - state.dataHeatBal->ZoneElectric(Loop).DesignLevel); + thisZoneElectric.EMSZoneEquipOverrideOn, + thisZoneElectric.EMSEquipPower); + SetupEMSInternalVariable( + state, "Plug and Process Power Design Level", thisZoneElectric.Name, "[W]", thisZoneElectric.DesignLevel); } // EMS - - if (!ErrorsFound) + if (!ErrorsFound) { SetupZoneInternalGain(state, - state.dataHeatBal->ZoneElectric(Loop).ZonePtr, + thisZoneElectric.ZonePtr, "ElectricEquipment", - state.dataHeatBal->ZoneElectric(Loop).Name, + thisZoneElectric.Name, IntGainTypeOf_ElectricEquipment, - &state.dataHeatBal->ZoneElectric(Loop).ConGainRate, + &thisZoneElectric.ConGainRate, nullptr, - &state.dataHeatBal->ZoneElectric(Loop).RadGainRate, - &state.dataHeatBal->ZoneElectric(Loop).LatGainRate); - - } // Item1 - } // Item - Number of ZoneElectric objects - } // Check on number of ZoneElectric - - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumZoneGasStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, gasEqModuleObject); - state.dataHeatBal->ZoneGasObjects.allocate(state.dataHeatBal->NumZoneGasStatements); - - state.dataHeatBal->TotGasEquip = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - gasEqModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), gasEqModuleObject, ErrorsFound); - - state.dataHeatBal->ZoneGasObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->ZoneGasObjects(Item).StartPtr = state.dataHeatBal->TotGasEquip + 1; - ++state.dataHeatBal->TotGasEquip; - state.dataHeatBal->ZoneGasObjects(Item).NumOfZones = 1; - state.dataHeatBal->ZoneGasObjects(Item).ZoneListActive = false; - state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->ZoneGasObjects(Item).StartPtr = state.dataHeatBal->TotGasEquip + 1; - state.dataHeatBal->TotGasEquip += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->ZoneGasObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->ZoneGasObjects(Item).ZoneListActive = true; - state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - gasEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + gasEqModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotGasEquip = 0; - } + &thisZoneElectric.RadGainRate, + &thisZoneElectric.LatGainRate); + } + } // for elecEqInputNum.NumOfSpaces + } // for elecEqInputNum + } // TotElecEquip > 0 - state.dataHeatBal->ZoneGas.allocate(state.dataHeatBal->TotGasEquip); + setupIHGZonesAndSpaces(state, + gasEqModuleObject, + state.dataHeatBal->ZoneGasObjects, + state.dataHeatBal->NumZoneGasStatements, + state.dataHeatBal->TotGasEquip, + ErrorsFound); if (state.dataHeatBal->TotGasEquip > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumZoneGasStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + state.dataHeatBal->ZoneGas.allocate(state.dataHeatBal->TotGasEquip); + int gasEqNum = 0; + for (int gasEqInputNum = 1; gasEqInputNum <= state.dataHeatBal->NumZoneGasStatements; ++gasEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, gasEqModuleObject, - Item, + gasEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -2026,65 +1695,40 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->ZoneGasObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->ZoneGasObjects(Item).ZoneListActive) { - state.dataHeatBal->ZoneGas(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - gasEqModuleObject, - state.dataHeatBal - ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->ZoneGasObjects(Item).Name, - state.dataHeatBal->ZoneGas, - Loop - 1, - state.dataHeatBal->ZoneGas(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->ZoneGasObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->ZoneGas(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneGas(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisGasEqInput = state.dataHeatBal->ZoneGasObjects(gasEqInputNum); + for (int Item1 = 1; Item1 <= thisGasEqInput.numOfSpaces; ++Item1) { + ++gasEqNum; + auto &thisZoneGas = state.dataHeatBal->ZoneElectric(gasEqNum); + int const spaceNum = thisGasEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneGas.Name = thisGasEqInput.names(Item1); + thisZoneGas.spaceIndex = spaceNum; + thisZoneGas.ZonePtr = zoneNum; - state.dataHeatBal->ZoneGas(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); + thisZoneGas.SchedPtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->ZoneGas(Loop).SchedPtr == 0) { + if (thisZoneGas.SchedPtr == 0) { if (Item1 == 1) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; } } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneGas(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneGas(Loop).SchedPtr); + SchMin = GetScheduleMinValue(state, thisZoneGas.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneGas.SchedPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (Item1 == 1) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -2094,7 +1738,7 @@ namespace InternalHeatGains { if (Item1 == 1) { if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -2104,58 +1748,47 @@ namespace InternalHeatGains { } } - // Set space load fractions - if (int(state.dataHeatBal->ZoneGas(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneGas(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneGas(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneGas(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneGas(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError(state, - std::string(RoutineName) + "Zone floor area is zero when allocating GasEquipment loads to Spaces."); - ShowContinueError(state, - "Occurs for GasEquipment object =" + state.dataHeatBal->ZoneGasObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } - - // equipment design level calculation method. + // Gas equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); if (equipmentLevel == "EQUIPMENTLEVEL") { - state.dataHeatBal->ZoneGas(Loop).DesignLevel = IHGNumbers(1); + Real64 spaceFrac = 1.0; + if (thisGasEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError( + state, std::string(RoutineName) + "Zone floor area is zero when allocating GasEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for GasEquipment object =" + thisGasEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(thisZoneGas.ZonePtr).Name); + ErrorsFound = true; + } + } + thisZoneGas.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Gas Equipment will result."); } - } else if (equipmentLevel == "WATTS/AREA" || equipmentLevel == "POWER/AREA") { - if (state.dataHeatBal->ZoneGas(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->ZoneGas(Loop).DesignLevel = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).FloorArea <= 0.0) { + thisZoneGas.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + - state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisZoneGas.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 Gas Equipment will result."); + ", but Space Floor Area = 0. 0 Gas Equipment will result."); } } else { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, gasEqModuleObject, - state.dataHeatBal->ZoneGas(Loop).Name, + thisGasEqInput.Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); ErrorsFound = true; @@ -2163,20 +1796,18 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Gas Equipment will result."); } } else if (equipmentLevel == "WATTS/PERSON" || equipmentLevel == "POWER/PERSON") { - if (state.dataHeatBal->ZoneGas(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->ZoneGas(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).TotOccupants <= 0.0) { + thisZoneGas.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; + if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + - state.dataHeatBal->ZoneGas(Loop).Name + "\", specifies " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisZoneGas.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Gas Equipment will result."); } @@ -2185,7 +1816,7 @@ namespace InternalHeatGains { format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, gasEqModuleObject, - state.dataHeatBal->ZoneGas(Loop).Name, + thisGasEqInput.Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); ErrorsFound = true; @@ -2193,15 +1824,15 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + state.dataHeatBal->ZoneGas(Loop).Name + - "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Gas Equipment will result."); } } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -2210,343 +1841,96 @@ namespace InternalHeatGains { } // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneGas(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneGas(Loop).DesignLevel * SchMin; - state.dataHeatBal->ZoneGas(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneGas(Loop).DesignLevel * SchMax; + thisZoneGas.NomMinDesignLevel = thisZoneGas.DesignLevel * SchMin; + thisZoneGas.NomMaxDesignLevel = thisZoneGas.DesignLevel * SchMax; - state.dataHeatBal->ZoneGas(Loop).FractionLatent = IHGNumbers(4); - state.dataHeatBal->ZoneGas(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneGas(Loop).FractionLost = IHGNumbers(6); + thisZoneGas.FractionLatent = IHGNumbers(4); + thisZoneGas.FractionRadiant = IHGNumbers(5); + thisZoneGas.FractionLost = IHGNumbers(6); if ((NumNumber == 7) || (!state.dataIPShortCut->lNumericFieldBlanks(7))) { - state.dataHeatBal->ZoneGas(Loop).CO2RateFactor = IHGNumbers(7); + thisZoneGas.CO2RateFactor = IHGNumbers(7); } - if (state.dataHeatBal->ZoneGas(Loop).CO2RateFactor < 0.0) { + if (thisZoneGas.CO2RateFactor < 0.0) { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, gasEqModuleObject, - AlphaName(1), + thisGasEqInput.Name, state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); ErrorsFound = true; } - if (state.dataHeatBal->ZoneGas(Loop).CO2RateFactor > 4.0e-7) { + if (thisZoneGas.CO2RateFactor > 4.0e-7) { ShowSevereError(state, format("{}{}=\"{}\", {} > 4.0E-7, value ={:.2R}", RoutineName, gasEqModuleObject, - AlphaName(1), + thisGasEqInput.Name, state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); ErrorsFound = true; } // FractionConvected is a calculated field - state.dataHeatBal->ZoneGas(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->ZoneGas(Loop).FractionLatent + state.dataHeatBal->ZoneGas(Loop).FractionRadiant + - state.dataHeatBal->ZoneGas(Loop).FractionLost); - if (std::abs(state.dataHeatBal->ZoneGas(Loop).FractionConvected) <= 0.001) - state.dataHeatBal->ZoneGas(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->ZoneGas(Loop).FractionConvected < 0.0) { + thisZoneGas.FractionConvected = 1.0 - (thisZoneGas.FractionLatent + thisZoneGas.FractionRadiant + thisZoneGas.FractionLost); + if (std::abs(thisZoneGas.FractionConvected) <= 0.001) thisZoneGas.FractionConvected = 0.0; + if (thisZoneGas.FractionConvected < 0.0) { if (Item1 == 1) { - ShowSevereError(state, - std::string{RoutineName} + gasEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + ShowSevereError( + state, std::string{RoutineName} + gasEqModuleObject + "=\"" + thisGasEqInput.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } } if (NumAlpha > 4) { - state.dataHeatBal->ZoneGas(Loop).EndUseSubcategory = AlphaName(5); + thisZoneGas.EndUseSubcategory = AlphaName(5); } else { - state.dataHeatBal->ZoneGas(Loop).EndUseSubcategory = "General"; - } - - if (state.dataHeatBal->ZoneGas(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Gas Equipment NaturalGas Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment NaturalGas Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name, - _, - "NaturalGas", - "InteriorEquipment", - state.dataHeatBal->ZoneGas(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).ListMultiplier); - - SetupOutputVariable(state, - "Gas Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).LostEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneGas(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).LostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - SetupOutputVariable(state, - "Gas Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneGas(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneGas(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneGas(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneGas(Loop).ZonePtr) = false; - - SetupOutputVariable(state, - "Zone Gas Equipment NaturalGas Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment NaturalGas Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone Gas Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasLost, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasLostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Gas Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneGas(Loop).ZonePtr).GasTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(Loop).ZonePtr).Name); + thisZoneGas.EndUseSubcategory = "General"; } if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "GasEquipment", - state.dataHeatBal->ZoneGas(Loop).Name, + thisZoneGas.Name, "NaturalGas Rate", "[W]", - state.dataHeatBal->ZoneGas(Loop).EMSZoneEquipOverrideOn, - state.dataHeatBal->ZoneGas(Loop).EMSEquipPower); - SetupEMSInternalVariable(state, - "Gas Process Power Design Level", - state.dataHeatBal->ZoneGas(Loop).Name, - "[W]", - state.dataHeatBal->ZoneGas(Loop).DesignLevel); + thisZoneGas.EMSZoneEquipOverrideOn, + thisZoneGas.EMSEquipPower); + SetupEMSInternalVariable(state, "Gas Process Power Design Level", thisZoneGas.Name, "[W]", thisZoneGas.DesignLevel); } // EMS if (!ErrorsFound) SetupZoneInternalGain(state, - state.dataHeatBal->ZoneGas(Loop).ZonePtr, + thisZoneGas.ZonePtr, "GasEquipment", - state.dataHeatBal->ZoneGas(Loop).Name, + thisZoneGas.Name, IntGainTypeOf_GasEquipment, - &state.dataHeatBal->ZoneGas(Loop).ConGainRate, + &thisZoneGas.ConGainRate, nullptr, - &state.dataHeatBal->ZoneGas(Loop).RadGainRate, - &state.dataHeatBal->ZoneGas(Loop).LatGainRate, + &thisZoneGas.RadGainRate, + &thisZoneGas.LatGainRate, nullptr, - &state.dataHeatBal->ZoneGas(Loop).CO2GainRate); + &thisZoneGas.CO2GainRate); - } // Item1 - } // Item - number of gas statements - } // check for number of gas statements + } // for gasEqInputNum.NumOfSpaces + } // for gasEqInputNum + } // TotGasEquip > 0 - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumHotWaterEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, hwEqModuleObject); - state.dataHeatBal->HotWaterEqObjects.allocate(state.dataHeatBal->NumHotWaterEqStatements); - - state.dataHeatBal->TotHWEquip = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - hwEqModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), hwEqModuleObject, ErrorsFound); - - state.dataHeatBal->HotWaterEqObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->HotWaterEqObjects(Item).StartPtr = state.dataHeatBal->TotHWEquip + 1; - ++state.dataHeatBal->TotHWEquip; - state.dataHeatBal->HotWaterEqObjects(Item).NumOfZones = 1; - state.dataHeatBal->HotWaterEqObjects(Item).ZoneListActive = false; - state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->HotWaterEqObjects(Item).StartPtr = state.dataHeatBal->TotHWEquip + 1; - state.dataHeatBal->TotHWEquip += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->HotWaterEqObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->HotWaterEqObjects(Item).ZoneListActive = true; - state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - hwEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + hwEqModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotHWEquip = 0; - } - - state.dataHeatBal->ZoneHWEq.allocate(state.dataHeatBal->TotHWEquip); + setupIHGZonesAndSpaces(state, + hwEqModuleObject, + state.dataHeatBal->HotWaterEqObjects, + state.dataHeatBal->NumHotWaterEqStatements, + state.dataHeatBal->TotHWEquip, + ErrorsFound); if (state.dataHeatBal->TotHWEquip > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumHotWaterEqStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + state.dataHeatBal->ZoneHWEq.allocate(state.dataHeatBal->TotHWEquip); + int hwEqNum = 0; + for (int hwEqInputNum = 1; hwEqInputNum <= state.dataHeatBal->NumHotWaterEqStatements; ++hwEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, hwEqModuleObject, - Item, + hwEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -2557,62 +1941,37 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->HotWaterEqObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->HotWaterEqObjects(Item).ZoneListActive) { - state.dataHeatBal->ZoneHWEq(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - hwEqModuleObject, - state.dataHeatBal - ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->HotWaterEqObjects(Item).Name, - state.dataHeatBal->ZoneHWEq, - Loop - 1, - state.dataHeatBal->ZoneHWEq(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->HotWaterEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->ZoneHWEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisHWEqInput = state.dataHeatBal->HotWaterEqObjects(hwEqInputNum); + for (int Item1 = 1; Item1 <= thisHWEqInput.numOfSpaces; ++Item1) { + ++hwEqNum; + auto &thisZoneHWEq = state.dataHeatBal->ZoneHWEq(hwEqNum); + int const spaceNum = thisHWEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneHWEq.Name = thisHWEqInput.names(Item1); + thisZoneHWEq.spaceIndex = spaceNum; + thisZoneHWEq.ZonePtr = zoneNum; - state.dataHeatBal->ZoneHWEq(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); + thisZoneHWEq.SchedPtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->ZoneHWEq(Loop).SchedPtr == 0) { + if (thisZoneHWEq.SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneHWEq(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneHWEq(Loop).SchedPtr); + SchMin = GetScheduleMinValue(state, thisZoneHWEq.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneHWEq.SchedPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -2620,7 +1979,7 @@ namespace InternalHeatGains { } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -2629,57 +1988,48 @@ namespace InternalHeatGains { } } - // Set space load fractions - if (int(state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneHWEq(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneHWEq(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneHWEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError( - state, std::string(RoutineName) + "Zone floor area is zero when allocating HotWaterEquipment loads to Spaces."); - ShowContinueError(state, - "Occurs for HotWaterEquipment object =" + state.dataHeatBal->HotWaterEqObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } - // Hot Water equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); if (equipmentLevel == "EQUIPMENTLEVEL") { - state.dataHeatBal->ZoneHWEq(Loop).DesignLevel = IHGNumbers(1); + Real64 spaceFrac = 1.0; + if (thisHWEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError(state, + std::string(RoutineName) + + "Zone floor area is zero when allocating HotWaterEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for HotWaterEquipment object =" + thisHWEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + thisZoneHWEq.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + ", but that field is blank. 0 Hot Water Equipment will result."); } - } else if (equipmentLevel == "WATTS/AREA" || equipmentLevel == "POWER/AREA") { - if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->ZoneHWEq(Loop).DesignLevel = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).FloorArea <= 0.0) { + thisZoneHWEq.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisZoneHWEq.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 Hot Water Equipment will result."); + ", but Space Floor Area = 0. 0 Hot Water Equipment will result."); } } else { ShowSevereError(state, format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, hwEqModuleObject, - AlphaName(1), + thisHWEqInput.Name, state.dataIPShortCut->cNumericFieldNames(2), IHGNumbers(2))); ErrorsFound = true; @@ -2687,19 +2037,18 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but that field is blank. 0 Hot Water Equipment will result."); } } else if (equipmentLevel == "WATTS/PERSON" || equipmentLevel == "POWER/PERSON") { - if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->ZoneHWEq(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).TotOccupants <= 0.0) { + thisZoneHWEq.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; + if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisZoneHWEq.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + ", but Total Occupants = 0. 0 Hot Water Equipment will result."); } @@ -2708,7 +2057,7 @@ namespace InternalHeatGains { format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", RoutineName, hwEqModuleObject, - AlphaName(1), + thisHWEqInput.Name, state.dataIPShortCut->cNumericFieldNames(3), IHGNumbers(3))); ErrorsFound = true; @@ -2716,7 +2065,7 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + ", but that field is blank. 0 Hot Water Equipment will result."); } @@ -2724,7 +2073,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -2733,313 +2082,67 @@ namespace InternalHeatGains { } // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneHWEq(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneHWEq(Loop).DesignLevel * SchMin; - state.dataHeatBal->ZoneHWEq(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneHWEq(Loop).DesignLevel * SchMax; + thisZoneHWEq.NomMinDesignLevel = thisZoneHWEq.DesignLevel * SchMin; + thisZoneHWEq.NomMaxDesignLevel = thisZoneHWEq.DesignLevel * SchMax; - state.dataHeatBal->ZoneHWEq(Loop).FractionLatent = IHGNumbers(4); - state.dataHeatBal->ZoneHWEq(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneHWEq(Loop).FractionLost = IHGNumbers(6); + thisZoneHWEq.FractionLatent = IHGNumbers(4); + thisZoneHWEq.FractionRadiant = IHGNumbers(5); + thisZoneHWEq.FractionLost = IHGNumbers(6); // FractionConvected is a calculated field - state.dataHeatBal->ZoneHWEq(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->ZoneHWEq(Loop).FractionLatent + state.dataHeatBal->ZoneHWEq(Loop).FractionRadiant + - state.dataHeatBal->ZoneHWEq(Loop).FractionLost); - if (std::abs(state.dataHeatBal->ZoneHWEq(Loop).FractionConvected) <= 0.001) - state.dataHeatBal->ZoneHWEq(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->ZoneHWEq(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + hwEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + thisZoneHWEq.FractionConvected = 1.0 - (thisZoneHWEq.FractionLatent + thisZoneHWEq.FractionRadiant + thisZoneHWEq.FractionLost); + if (std::abs(thisZoneHWEq.FractionConvected) <= 0.001) thisZoneHWEq.FractionConvected = 0.0; + if (thisZoneHWEq.FractionConvected < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisHWEqInput.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } if (NumAlpha > 4) { - state.dataHeatBal->ZoneHWEq(Loop).EndUseSubcategory = AlphaName(5); + thisZoneHWEq.EndUseSubcategory = AlphaName(5); } else { - state.dataHeatBal->ZoneHWEq(Loop).EndUseSubcategory = "General"; - } - - if (state.dataHeatBal->ZoneHWEq(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Hot Water Equipment District Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment District Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name, - _, - "DistrictHeating", - "InteriorEquipment", - state.dataHeatBal->ZoneHWEq(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).ListMultiplier); - - SetupOutputVariable(state, - "Hot Water Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).LostEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).LostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneHWEq(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneHWEq(Loop).Name); - SetupOutputVariable(state, - "Hot Water Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneHWEq(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneHWEq(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone Hot Water Equipment District Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment District Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone Hot Water Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWLost, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWLostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Hot Water Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).HWTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(Loop).ZonePtr).Name); + thisZoneHWEq.EndUseSubcategory = "General"; } if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "HotWaterEquipment", - state.dataHeatBal->ZoneHWEq(Loop).Name, + thisZoneHWEq.Name, "District Heating Power Level", "[W]", - state.dataHeatBal->ZoneHWEq(Loop).EMSZoneEquipOverrideOn, - state.dataHeatBal->ZoneHWEq(Loop).EMSEquipPower); - SetupEMSInternalVariable(state, - "Process District Heat Design Level", - state.dataHeatBal->ZoneHWEq(Loop).Name, - "[W]", - state.dataHeatBal->ZoneHWEq(Loop).DesignLevel); + thisZoneHWEq.EMSZoneEquipOverrideOn, + thisZoneHWEq.EMSEquipPower); + SetupEMSInternalVariable(state, "Process District Heat Design Level", thisZoneHWEq.Name, "[W]", thisZoneHWEq.DesignLevel); } // EMS if (!ErrorsFound) SetupZoneInternalGain(state, - state.dataHeatBal->ZoneHWEq(Loop).ZonePtr, + thisZoneHWEq.ZonePtr, "HotWaterEquipment", - state.dataHeatBal->ZoneHWEq(Loop).Name, + thisZoneHWEq.Name, IntGainTypeOf_HotWaterEquipment, - &state.dataHeatBal->ZoneHWEq(Loop).ConGainRate, + &thisZoneHWEq.ConGainRate, nullptr, - &state.dataHeatBal->ZoneHWEq(Loop).RadGainRate, - &state.dataHeatBal->ZoneHWEq(Loop).LatGainRate); + &thisZoneHWEq.RadGainRate, + &thisZoneHWEq.LatGainRate); - } // Item1 - } // Item - number of hot water statements - } - - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumSteamEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, stmEqModuleObject); - state.dataHeatBal->SteamEqObjects.allocate(state.dataHeatBal->NumSteamEqStatements); - - state.dataHeatBal->TotStmEquip = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - stmEqModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), stmEqModuleObject, ErrorsFound); - - state.dataHeatBal->SteamEqObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->SteamEqObjects(Item).StartPtr = state.dataHeatBal->TotStmEquip + 1; - ++state.dataHeatBal->TotStmEquip; - state.dataHeatBal->SteamEqObjects(Item).NumOfZones = 1; - state.dataHeatBal->SteamEqObjects(Item).ZoneListActive = false; - state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->SteamEqObjects(Item).StartPtr = state.dataHeatBal->TotStmEquip + 1; - state.dataHeatBal->TotStmEquip += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->SteamEqObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->SteamEqObjects(Item).ZoneListActive = true; - state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - stmEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + "=\"" + - AlphaName(2) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } - - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + stmEqModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotStmEquip = 0; - } + } // for hwEqInputNum.NumOfSpaces + } // for hwEqInputNum + } // TotHWEquip > 0 - state.dataHeatBal->ZoneSteamEq.allocate(state.dataHeatBal->TotStmEquip); + setupIHGZonesAndSpaces(state, + stmEqModuleObject, + state.dataHeatBal->SteamEqObjects, + state.dataHeatBal->NumSteamEqStatements, + state.dataHeatBal->TotStmEquip, + ErrorsFound); if (state.dataHeatBal->TotStmEquip > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumSteamEqStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; - + state.dataHeatBal->ZoneSteamEq.allocate(state.dataHeatBal->TotStmEquip); + int stmEqNum = 0; + for (int stmEqInputNum = 1; stmEqInputNum <= state.dataHeatBal->NumSteamEqStatements; ++stmEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, stmEqModuleObject, - Item, + stmEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -3050,62 +2153,37 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->SteamEqObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->SteamEqObjects(Item).ZoneListActive) { - state.dataHeatBal->ZoneSteamEq(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - stmEqModuleObject, - state.dataHeatBal - ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->SteamEqObjects(Item).Name, - state.dataHeatBal->ZoneSteamEq, - Loop - 1, - state.dataHeatBal->ZoneSteamEq(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->SteamEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisStmEqInput = state.dataHeatBal->SteamEqObjects(stmEqInputNum); + for (int Item1 = 1; Item1 <= thisStmEqInput.numOfSpaces; ++Item1) { + ++stmEqNum; + auto &thisZoneStmEq = state.dataHeatBal->ZoneSteamEq(stmEqNum); + int const spaceNum = thisStmEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneStmEq.Name = thisStmEqInput.names(Item1); + thisZoneStmEq.spaceIndex = spaceNum; + thisZoneStmEq.ZonePtr = zoneNum; - state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); + thisZoneStmEq.SchedPtr = GetScheduleIndex(state, AlphaName(3)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr == 0) { + if (thisZoneStmEq.SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { ShowSevereError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisStmEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisStmEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } ErrorsFound = true; } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneSteamEq(Loop).SchedPtr); + SchMin = GetScheduleMinValue(state, thisZoneStmEq.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneStmEq.SchedPtr); if (SchMin < 0.0 || SchMax < 0.0) { if (SchMin < 0.0) { ShowSevereError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisStmEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); @@ -3113,7 +2191,7 @@ namespace InternalHeatGains { } if (SchMax < 0.0) { ShowSevereError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisStmEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); @@ -3122,50 +2200,40 @@ namespace InternalHeatGains { } } - // Set space load fractions - if (int(state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError(state, - std::string(RoutineName) + "Zone floor area is zero when allocating SteamEquipment loads to Spaces."); - ShowContinueError(state, - "Occurs for SteamEquipment object =" + state.dataHeatBal->SteamEqObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } - } - - // Hot Water equipment design level calculation method. + // Steam equipment design level calculation method. { auto const equipmentLevel(AlphaName(4)); if (equipmentLevel == "EQUIPMENTLEVEL") { - state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel = IHGNumbers(1); + Real64 spaceFrac = 1.0; + if (thisStmEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError( + state, std::string(RoutineName) + "Zone floor area is zero when allocating SteamEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for SteamEquipment object =" + thisStmEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + thisZoneStmEq.DesignLevel = IHGNumbers(1) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + hwEqModuleObject + "=\"" + thisStmEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(1) + - ", but that field is blank. 0 Hot Water Equipment will result."); + ", but that field is blank. 0 Steam Equipment will result."); } - } else if (equipmentLevel == "WATTS/AREA" || equipmentLevel == "POWER/AREA") { - if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr != 0) { + if (spaceNum > 0) { if (IHGNumbers(2) >= 0.0) { - state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel = - IHGNumbers(2) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).FloorArea <= 0.0) { + thisZoneStmEq.DesignLevel = IHGNumbers(2) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + - ", but Zone Floor Area = 0. 0 Hot Water Equipment will result."); + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisZoneStmEq.Name + + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + ", but Space Floor Area = 0. 0 Steam Equipment will result."); } } else { ShowSevereError(state, @@ -3180,21 +2248,20 @@ namespace InternalHeatGains { } if (state.dataIPShortCut->lNumericFieldBlanks(2)) { ShowWarningError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisStmEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + - ", but that field is blank. 0 Hot Water Equipment will result."); + ", but that field is blank. 0 Steam Equipment will result."); } } else if (equipmentLevel == "WATTS/PERSON" || equipmentLevel == "POWER/PERSON") { - if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr != 0) { + if (spaceNum != 0) { if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).TotOccupants <= 0.0) { + thisZoneStmEq.DesignLevel = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).totOccupants; + if (state.dataHeatBal->space(spaceNum).totOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + - ", but Total Occupants = 0. 0 Hot Water Equipment will result."); + std::string{RoutineName} + stmEqModuleObject + "=\"" + thisZoneStmEq.Name + + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(2) + + ", but Total Occupants = 0. 0 Steam Equipment will result."); } } else { ShowSevereError(state, @@ -3211,7 +2278,7 @@ namespace InternalHeatGains { ShowWarningError(state, std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + - ", but that field is blank. 0 Hot Water Equipment will result."); + ", but that field is blank. 0 Steam Equipment will result."); } } else { @@ -3226,313 +2293,71 @@ namespace InternalHeatGains { } // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneSteamEq(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel * SchMin; - state.dataHeatBal->ZoneSteamEq(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel * SchMax; + thisZoneStmEq.NomMinDesignLevel = thisZoneStmEq.DesignLevel * SchMin; + thisZoneStmEq.NomMaxDesignLevel = thisZoneStmEq.DesignLevel * SchMax; - state.dataHeatBal->ZoneSteamEq(Loop).FractionLatent = IHGNumbers(4); - state.dataHeatBal->ZoneSteamEq(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneSteamEq(Loop).FractionLost = IHGNumbers(6); + thisZoneStmEq.FractionLatent = IHGNumbers(4); + thisZoneStmEq.FractionRadiant = IHGNumbers(5); + thisZoneStmEq.FractionLost = IHGNumbers(6); // FractionConvected is a calculated field - state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->ZoneSteamEq(Loop).FractionLatent + state.dataHeatBal->ZoneSteamEq(Loop).FractionRadiant + - state.dataHeatBal->ZoneSteamEq(Loop).FractionLost); - if (std::abs(state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected) <= 0.001) - state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->ZoneSteamEq(Loop).FractionConvected < 0.0) { + thisZoneStmEq.FractionConvected = + 1.0 - (thisZoneStmEq.FractionLatent + thisZoneStmEq.FractionRadiant + thisZoneStmEq.FractionLost); + if (std::abs(thisZoneStmEq.FractionConvected) <= 0.001) thisZoneStmEq.FractionConvected = 0.0; + if (thisZoneStmEq.FractionConvected < 0.0) { ShowSevereError(state, std::string{RoutineName} + stmEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } if (NumAlpha > 4) { - state.dataHeatBal->ZoneSteamEq(Loop).EndUseSubcategory = AlphaName(5); + thisZoneStmEq.EndUseSubcategory = AlphaName(5); } else { - state.dataHeatBal->ZoneSteamEq(Loop).EndUseSubcategory = "General"; + thisZoneStmEq.EndUseSubcategory = "General"; } - if (state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Steam Equipment District Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment District Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name, - _, - "DistrictHeating", - "InteriorEquipment", - state.dataHeatBal->ZoneSteamEq(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).ListMultiplier); - - SetupOutputVariable(state, - "Steam Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).LostEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).LostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneSteamEq(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - SetupOutputVariable(state, - "Steam Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneSteamEq(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneSteamEq(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone Steam Equipment District Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment District Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone Steam Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamLost, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamLostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Steam Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).SteamTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr).Name); - } + if (thisZoneStmEq.ZonePtr <= 0) continue; // Error, will be caught and terminated later if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "SteamEquipment", - state.dataHeatBal->ZoneSteamEq(Loop).Name, + thisZoneStmEq.Name, "District Heating Power Level", "[W]", - state.dataHeatBal->ZoneSteamEq(Loop).EMSZoneEquipOverrideOn, - state.dataHeatBal->ZoneSteamEq(Loop).EMSEquipPower); - SetupEMSInternalVariable(state, - "Process Steam District Heat Design Level", - state.dataHeatBal->ZoneSteamEq(Loop).Name, - "[W]", - state.dataHeatBal->ZoneSteamEq(Loop).DesignLevel); + thisZoneStmEq.EMSZoneEquipOverrideOn, + thisZoneStmEq.EMSEquipPower); + SetupEMSInternalVariable( + state, "Process Steam District Heat Design Level", thisZoneStmEq.Name, "[W]", thisZoneStmEq.DesignLevel); } // EMS if (!ErrorsFound) SetupZoneInternalGain(state, - state.dataHeatBal->ZoneSteamEq(Loop).ZonePtr, + thisZoneStmEq.ZonePtr, "SteamEquipment", - state.dataHeatBal->ZoneSteamEq(Loop).Name, + thisZoneStmEq.Name, IntGainTypeOf_SteamEquipment, - &state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate, + &thisZoneStmEq.ConGainRate, nullptr, - &state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate, - &state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate); - - } // Item1 - } // Item - number of hot water statements - } - - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumOtherEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, othEqModuleObject); - state.dataHeatBal->OtherEqObjects.allocate(state.dataHeatBal->NumOtherEqStatements); - - state.dataHeatBal->TotOthEquip = 0; - errFlag = false; - for (int Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { - state.dataInputProcessing->inputProcessor->getObjectItem(state, - othEqModuleObject, - Item, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - errFlag = UtilityRoutines::IsNameEmpty(state, AlphaName(1), othEqModuleObject, ErrorsFound); - - state.dataHeatBal->OtherEqObjects(Item).Name = AlphaName(1); - - int Item1 = UtilityRoutines::FindItemInList(AlphaName(3), state.dataHeatBal->Zone); - int ZLItem = 0; - if (Item1 == 0 && state.dataHeatBal->NumOfZoneLists > 0) - ZLItem = UtilityRoutines::FindItemInList(AlphaName(3), state.dataHeatBal->ZoneList); - if (Item1 > 0) { - state.dataHeatBal->OtherEqObjects(Item).StartPtr = state.dataHeatBal->TotOthEquip + 1; - ++state.dataHeatBal->TotOthEquip; - state.dataHeatBal->OtherEqObjects(Item).NumOfZones = 1; - state.dataHeatBal->OtherEqObjects(Item).ZoneListActive = false; - state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr = Item1; - } else if (ZLItem > 0) { - state.dataHeatBal->OtherEqObjects(Item).StartPtr = state.dataHeatBal->TotOthEquip + 1; - state.dataHeatBal->TotOthEquip += state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->OtherEqObjects(Item).NumOfZones = state.dataHeatBal->ZoneList(ZLItem).NumOfZones; - state.dataHeatBal->OtherEqObjects(Item).ZoneListActive = true; - state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr = ZLItem; - } else { - ShowSevereError(state, - othEqModuleObject + "=\"" + AlphaName(1) + "\" invalid " + state.dataIPShortCut->cAlphaFieldNames(3) + "=\"" + - AlphaName(3) + "\" not found."); - ErrorsFound = true; - errFlag = true; - } - } + &thisZoneStmEq.RadGainRate, + &thisZoneStmEq.LatGainRate); - if (errFlag) { - ShowSevereError(state, std::string{RoutineName} + "Errors with invalid names in " + othEqModuleObject + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - state.dataHeatBal->TotOthEquip = 0; - } + } // for stmEqInputNum.NumOfSpaces + } // for stmEqInputNum + } // TotStmEquip > 0 - state.dataHeatBal->ZoneOtherEq.allocate(state.dataHeatBal->TotOthEquip); + setupIHGZonesAndSpaces(state, + othEqModuleObject, + state.dataHeatBal->OtherEqObjects, + state.dataHeatBal->NumOtherEqStatements, + state.dataHeatBal->TotOthEquip, + ErrorsFound); if (state.dataHeatBal->TotOthEquip > 0) { - int Loop = 0; - for (int Item = 1; Item <= state.dataHeatBal->NumOtherEqStatements; ++Item) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + state.dataHeatBal->ZoneOtherEq.allocate(state.dataHeatBal->TotOthEquip); + int othEqNum = 0; + for (int othEqInputNum = 1; othEqInputNum <= state.dataHeatBal->NumOtherEqStatements; ++othEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, othEqModuleObject, - Item, + othEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -3543,102 +2368,58 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - for (int Item1 = 1; Item1 <= state.dataHeatBal->OtherEqObjects(Item).NumOfZones; ++Item1) { - ++Loop; - if (!state.dataHeatBal->OtherEqObjects(Item).ZoneListActive) { - state.dataHeatBal->ZoneOtherEq(Loop).Name = AlphaName(1); - int zoneNum = state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr; - state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - } else { - CheckCreatedZoneItemName( - state, - RoutineName, - othEqModuleObject, - state.dataHeatBal - ->Zone(state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1)) - .Name, - state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).MaxZoneNameLength, - state.dataHeatBal->OtherEqObjects(Item).Name, - state.dataHeatBal->ZoneOtherEq, - Loop - 1, - state.dataHeatBal->ZoneOtherEq(Loop).Name, - errFlag); - int zoneNum = state.dataHeatBal->ZoneList(state.dataHeatBal->OtherEqObjects(Item).ZoneOrZoneListPtr).Zone(Item1); - state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } - if (errFlag) ErrorsFound = true; - } + auto &thisOthEqInput = state.dataHeatBal->OtherEqObjects(othEqInputNum); + for (int Item1 = 1; Item1 <= thisOthEqInput.numOfSpaces; ++Item1) { + ++othEqNum; + auto &thisZoneOthEq = state.dataHeatBal->ZoneOtherEq(othEqNum); + int const spaceNum = thisOthEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneOthEq.Name = thisOthEqInput.names(Item1); + thisZoneOthEq.spaceIndex = spaceNum; + thisZoneOthEq.ZonePtr = zoneNum; std::string FuelTypeString(""); if (AlphaName(2) == "NONE") { - state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType = ExteriorEnergyUse::ExteriorFuelUsage::Unknown; + thisZoneOthEq.OtherEquipFuelType = ExteriorEnergyUse::ExteriorFuelUsage::Unknown; FuelTypeString = AlphaName(2); } else { ExteriorEnergyUse::ValidateFuelType(state, - state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType, + thisZoneOthEq.OtherEquipFuelType, AlphaName(2), FuelTypeString, othEqModuleObject, state.dataIPShortCut->cAlphaFieldNames(2), AlphaName(2)); - if (state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::Unknown || - state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::WaterUse) { + if (thisZoneOthEq.OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::Unknown || + thisZoneOthEq.OtherEquipFuelType == ExteriorEnergyUse::ExteriorFuelUsage::WaterUse) { ShowSevereError(state, std::string{RoutineName} + othEqModuleObject + ": invalid " + state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2) + " for " + state.dataIPShortCut->cAlphaFieldNames(1) + '=' + - AlphaName(1)); + thisOthEqInput.Name); ErrorsFound = true; } + thisZoneOthEq.otherEquipFuelTypeString = FuelTypeString; // Save for output variable setup later + state.dataHeatBal->Zone(zoneNum).otherEquipFuelTypes.emplace_back(FuelTypeString); + state.dataHeatBal->space(spaceNum).otherEquipFuelTypes.emplace_back(FuelTypeString); } - state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(4)); + thisZoneOthEq.SchedPtr = GetScheduleIndex(state, AlphaName(4)); SchMin = 0.0; SchMax = 0.0; - if (state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr == 0) { + if (thisZoneOthEq.SchedPtr == 0) { if (state.dataIPShortCut->lAlphaFieldBlanks(4)) { ShowSevereError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", " + state.dataIPShortCut->cAlphaFieldNames(4) + " is required."); } else { ShowSevereError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(4) + " entered=" + AlphaName(4)); } ErrorsFound = true; } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneOtherEq(Loop).SchedPtr); - } - - // Set space load fractions - if (int(state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } - } else { - ShowSevereError(state, - std::string(RoutineName) + "Zone floor area is zero when allocating OtherEquipment loads to Spaces."); - ShowContinueError(state, - "Occurs for OtherEquipment object =" + state.dataHeatBal->OtherEqObjects(Item).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - ErrorsFound = true; - } - } + SchMin = GetScheduleMinValue(state, thisZoneOthEq.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneOthEq.SchedPtr); } // equipment design level calculation method. @@ -3647,25 +2428,37 @@ namespace InternalHeatGains { auto const equipmentLevel(AlphaName(5)); if (equipmentLevel == "EQUIPMENTLEVEL") { DesignLevelFieldNumber = 1; - state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel = IHGNumbers(DesignLevelFieldNumber); - if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { + Real64 spaceFrac = 1.0; + if (thisOthEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError( + state, std::string(RoutineName) + "Zone floor area is zero when allocating OtherEquipment loads to Spaces."); + ShowContinueError(state, + "Occurs for OtherEquipment object =" + thisOthEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + thisZoneOthEq.DesignLevel = IHGNumbers(1) * spaceFrac; + if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { ShowWarningError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but that field is blank. 0 Other Equipment will result."); } } else if (equipmentLevel == "WATTS/AREA" || equipmentLevel == "POWER/AREA") { DesignLevelFieldNumber = 2; - if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr != 0) { - state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel = - IHGNumbers(DesignLevelFieldNumber) * - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).FloorArea <= 0.0) { + if (spaceNum > 0) { + thisZoneOthEq.DesignLevel = IHGNumbers(DesignLevelFieldNumber) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisZoneOthEq.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + - ", but Zone Floor Area = 0. 0 Other Equipment will result."); + ", but Space Floor Area = 0. 0 Other Equipment will result."); } } if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { @@ -3677,19 +2470,18 @@ namespace InternalHeatGains { } else if (equipmentLevel == "WATTS/PERSON" || equipmentLevel == "POWER/PERSON") { DesignLevelFieldNumber = 3; - if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr != 0) { - state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).TotOccupants; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).TotOccupants <= 0.0) { + if (thisZoneOthEq.ZonePtr != 0) { + thisZoneOthEq.DesignLevel = IHGNumbers(3) * state.dataHeatBal->Zone(thisZoneOthEq.ZonePtr).TotOccupants; + if (state.dataHeatBal->Zone(thisZoneOthEq.ZonePtr).TotOccupants <= 0.0) { ShowWarningError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisZoneOthEq.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but Total Occupants = 0. 0 Other Equipment will result."); } } if (state.dataIPShortCut->lNumericFieldBlanks(DesignLevelFieldNumber)) { ShowWarningError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + ", but that field is blank. 0 Other Equipment will result."); } @@ -3697,7 +2489,7 @@ namespace InternalHeatGains { } else { if (Item1 == 1) { ShowSevereError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", invalid " + state.dataIPShortCut->cAlphaFieldNames(5) + ", value =" + AlphaName(5)); ShowContinueError(state, "...Valid values are \"EquipmentLevel\", \"Watts/Area\", \"Watts/Person\"."); ErrorsFound = true; @@ -3706,302 +2498,106 @@ namespace InternalHeatGains { } // Throw an error if the design level is negative and we have a fuel type - if (state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel < 0.0 && - state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { + if (thisZoneOthEq.DesignLevel < 0.0 && thisZoneOthEq.OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { ShowSevereError(state, - std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", " + + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", " + state.dataIPShortCut->cNumericFieldNames(DesignLevelFieldNumber) + " is not allowed to be negative"); ShowContinueError(state, "... when a fuel type of " + FuelTypeString + " is specified."); ErrorsFound = true; } // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneOtherEq(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel * SchMin; - state.dataHeatBal->ZoneOtherEq(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel * SchMax; + thisZoneOthEq.NomMinDesignLevel = thisZoneOthEq.DesignLevel * SchMin; + thisZoneOthEq.NomMaxDesignLevel = thisZoneOthEq.DesignLevel * SchMax; - state.dataHeatBal->ZoneOtherEq(Loop).FractionLatent = IHGNumbers(4); - state.dataHeatBal->ZoneOtherEq(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneOtherEq(Loop).FractionLost = IHGNumbers(6); + thisZoneOthEq.FractionLatent = IHGNumbers(4); + thisZoneOthEq.FractionRadiant = IHGNumbers(5); + thisZoneOthEq.FractionLost = IHGNumbers(6); if ((NumNumber == 7) || (!state.dataIPShortCut->lNumericFieldBlanks(7))) { - state.dataHeatBal->ZoneOtherEq(Loop).CO2RateFactor = IHGNumbers(7); + thisZoneOthEq.CO2RateFactor = IHGNumbers(7); } - if (state.dataHeatBal->ZoneOtherEq(Loop).CO2RateFactor < 0.0) { + if (thisZoneOthEq.CO2RateFactor < 0.0) { ShowSevereError(state, format("{}{}=\"{}\", {} < 0.0, value ={:.2R}", RoutineName, othEqModuleObject, - AlphaName(1), + thisOthEqInput.Name, state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); ErrorsFound = true; } - if (state.dataHeatBal->ZoneOtherEq(Loop).CO2RateFactor > 4.0e-7) { + if (thisZoneOthEq.CO2RateFactor > 4.0e-7) { ShowSevereError(state, format("{}{}=\"{}\", {} > 4.0E-7, value ={:.2R}", RoutineName, othEqModuleObject, - AlphaName(1), + thisOthEqInput.Name, state.dataIPShortCut->cNumericFieldNames(7), IHGNumbers(7))); ErrorsFound = true; } // FractionConvected is a calculated field - state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected = - 1.0 - (state.dataHeatBal->ZoneOtherEq(Loop).FractionLatent + state.dataHeatBal->ZoneOtherEq(Loop).FractionRadiant + - state.dataHeatBal->ZoneOtherEq(Loop).FractionLost); - if (std::abs(state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected) <= 0.001) - state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected = 0.0; - if (state.dataHeatBal->ZoneOtherEq(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + othEqModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); + thisZoneOthEq.FractionConvected = + 1.0 - (thisZoneOthEq.FractionLatent + thisZoneOthEq.FractionRadiant + thisZoneOthEq.FractionLost); + if (std::abs(thisZoneOthEq.FractionConvected) <= 0.001) thisZoneOthEq.FractionConvected = 0.0; + if (thisZoneOthEq.FractionConvected < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + othEqModuleObject + "=\"" + thisOthEqInput.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } if (NumAlpha > 5) { - state.dataHeatBal->ZoneOtherEq(Loop).EndUseSubcategory = AlphaName(6); + thisZoneOthEq.EndUseSubcategory = AlphaName(6); } else { - state.dataHeatBal->ZoneOtherEq(Loop).EndUseSubcategory = "General"; + thisZoneOthEq.EndUseSubcategory = "General"; } - if (state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - if (state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { - SetupOutputVariable(state, - "Other Equipment " + FuelTypeString + " Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment " + FuelTypeString + " Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name, - _, - FuelTypeString, - "InteriorEquipment", - state.dataHeatBal->ZoneOtherEq(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).ListMultiplier); - } - - SetupOutputVariable(state, - "Other Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).LatGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).LostEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).LostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneOtherEq(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - SetupOutputVariable(state, - "Other Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneOtherEq(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneOtherEq(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr) = false; - - if (state.dataHeatBal->ZoneOtherEq(Loop).OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { - SetupOutputVariable(state, - "Zone Other Equipment " + FuelTypeString + " Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment " + FuelTypeString + " Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - } - - SetupOutputVariable(state, - "Zone Other Equipment Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherLatGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherLatGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Lost Heat Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherLost, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Lost Heat Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherLostRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Other Equipment Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).OtherTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr).Name); - } if (state.dataGlobal->AnyEnergyManagementSystemInModel) { SetupEMSActuator(state, "OtherEquipment", - state.dataHeatBal->ZoneOtherEq(Loop).Name, + thisZoneOthEq.Name, "Power Level", "[W]", - state.dataHeatBal->ZoneOtherEq(Loop).EMSZoneEquipOverrideOn, - state.dataHeatBal->ZoneOtherEq(Loop).EMSEquipPower); - SetupEMSInternalVariable(state, - "Other Equipment Design Level", - state.dataHeatBal->ZoneOtherEq(Loop).Name, - "[W]", - state.dataHeatBal->ZoneOtherEq(Loop).DesignLevel); + thisZoneOthEq.EMSZoneEquipOverrideOn, + thisZoneOthEq.EMSEquipPower); + SetupEMSInternalVariable(state, "Other Equipment Design Level", thisZoneOthEq.Name, "[W]", thisZoneOthEq.DesignLevel); } // EMS if (!ErrorsFound) SetupZoneInternalGain(state, - state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr, + thisZoneOthEq.ZonePtr, "OtherEquipment", - state.dataHeatBal->ZoneOtherEq(Loop).Name, + thisZoneOthEq.Name, IntGainTypeOf_OtherEquipment, - &state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate, + &thisZoneOthEq.ConGainRate, nullptr, - &state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate, - &state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate); + &thisZoneOthEq.RadGainRate, + &thisZoneOthEq.LatGainRate); - } // Item1 - } // Item - number of other equipment statements - } - - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->NumZoneITEqStatements = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, itEqModuleObject); - errFlag = false; + } // for othEqInputNum.NumOfSpaces + } // for othEqInputNum + } // TotOtherEquip > 0 // Note that this object type does not support ZoneList due to node names in input fields - state.dataHeatBal->ZoneITEq.allocate(state.dataHeatBal->NumZoneITEqStatements); - - if (state.dataHeatBal->NumZoneITEqStatements > 0) { - for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { - AlphaName = std::string{}; - IHGNumbers = 0.0; + bool zoneListNotAllowed = true; + setupIHGZonesAndSpaces(state, + itEqModuleObject, + state.dataHeatBal->ITEqObjects, + state.dataHeatBal->NumZoneITEqStatements, + state.dataHeatBal->TotOthEquip, + ErrorsFound, + zoneListNotAllowed); + + if (state.dataHeatBal->TotITEquip > 0) { + state.dataHeatBal->ZoneITEq.allocate(state.dataHeatBal->TotITEquip); + int itEqNum = 0; + for (int itEqInputNum = 1; itEqInputNum <= state.dataHeatBal->NumZoneITEqStatements; ++itEqInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, itEqModuleObject, - Loop, + itEqInputNum, AlphaName, NumAlpha, IHGNumbers, @@ -4012,883 +2608,424 @@ namespace InternalHeatGains { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - state.dataHeatBal->ZoneITEq(Loop).Name = AlphaName(1); - int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - state.dataHeatBal->ZoneITEq(Loop).ZonePtr = zoneNum; - if (zoneNum > 0) { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneITEq(Loop).spacePtrs.emplace_back(spaceNum); - } - } + auto &thisITEqInput = state.dataHeatBal->ITEqObjects(itEqInputNum); + for (int Item1 = 1; Item1 <= thisITEqInput.numOfSpaces; ++Item1) { + ++itEqNum; + auto &thisZoneITEq = state.dataHeatBal->ZoneITEq(itEqNum); + int const spaceNum = thisITEqInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneITEq.Name = thisITEqInput.names(Item1); + thisZoneITEq.spaceIndex = spaceNum; + thisZoneITEq.ZonePtr = zoneNum; - // Set space load fractions - if (int(state.dataHeatBal->ZoneITEq(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneITEq(Loop).spaceFracs.emplace_back(1.0); - } else { - if (state.dataHeatBal->ZoneITEq(Loop).ZonePtr > 0) { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneITEq(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneITEq(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); - } + // IT equipment design level calculation method. + if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { + thisZoneITEq.FlowControlWithApproachTemps = false; + } else { + if (UtilityRoutines::SameString(AlphaName(3), "FlowFromSystem")) { + thisZoneITEq.FlowControlWithApproachTemps = false; + } else if (UtilityRoutines::SameString(AlphaName(3), "FlowControlWithApproachTemperatures")) { + thisZoneITEq.FlowControlWithApproachTemps = true; + state.dataHeatBal->Zone(thisZoneITEq.ZonePtr).HasAdjustedReturnTempByITE = true; + state.dataHeatBal->Zone(thisZoneITEq.ZonePtr).NoHeatToReturnAir = false; } else { ShowSevereError(state, - std::string(RoutineName) + - "Zone floor area is zero when allocating ElectricEquipment:ITE:AirCooled loads to Spaces."); - ShowContinueError(state, - "Occurs for ElectricEquipment:ITE:AirCooled object =" + state.dataHeatBal->ZoneITEq(Loop).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + + "\": invalid calculation method: " + AlphaName(3)); ErrorsFound = true; } } - } - - // IT equipment design level calculation method. - if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { - state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps = false; - } else { - if (UtilityRoutines::SameString(AlphaName(3), "FlowFromSystem")) { - state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps = false; - } else if (UtilityRoutines::SameString(AlphaName(3), "FlowControlWithApproachTemperatures")) { - state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps = true; - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).HasAdjustedReturnTempByITE = true; - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).NoHeatToReturnAir = false; - } else { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + - "\": invalid calculation method: " + AlphaName(3)); - ErrorsFound = true; - } - } - { - auto const equipmentLevel(AlphaName(4)); - if (equipmentLevel == "WATTS/UNIT") { - state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower = IHGNumbers(1) * IHGNumbers(2); - if (state.dataIPShortCut->lNumericFieldBlanks(1)) { - ShowWarningError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(1) + - ", but that field is blank. 0 IT Equipment will result."); - } - if (state.dataIPShortCut->lNumericFieldBlanks(2)) { - ShowWarningError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(2) + - ", but that field is blank. 0 IT Equipment will result."); - } + { + auto const equipmentLevel(AlphaName(4)); + if (equipmentLevel == "WATTS/UNIT") { + Real64 spaceFrac = 1.0; + if (thisITEqInput.numOfSpaces > 1) { + Real64 const zoneArea = state.dataHeatBal->Zone(zoneNum).FloorArea; + if (zoneArea > 0.0) { + spaceFrac = state.dataHeatBal->space(spaceNum).floorArea / zoneArea; + } else { + ShowSevereError(state, + std::string(RoutineName) + + "Zone floor area is zero when allocating ElectricEquipment:ITE:AirCooled loads to Spaces."); + ShowContinueError(state, + "Occurs for ElectricEquipment:ITE:AirCooled object =" + thisITEqInput.Name + + " in Zone=" + state.dataHeatBal->Zone(zoneNum).Name); + ErrorsFound = true; + } + } + thisZoneITEq.DesignTotalPower = IHGNumbers(1) * spaceFrac; + if (state.dataIPShortCut->lNumericFieldBlanks(1)) { + ShowWarningError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(1) + + ", but that field is blank. 0 IT Equipment will result."); + } + if (state.dataIPShortCut->lNumericFieldBlanks(2)) { + ShowWarningError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(2) + + ", but that field is blank. 0 IT Equipment will result."); + } - } else if (equipmentLevel == "WATTS/AREA") { - if (state.dataHeatBal->ZoneITEq(Loop).ZonePtr != 0) { - if (IHGNumbers(3) >= 0.0) { - state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower = - IHGNumbers(3) * state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea; - if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).FloorArea <= 0.0) { + } else if (equipmentLevel == "WATTS/AREA") { + if (thisZoneITEq.ZonePtr != 0) { + if (IHGNumbers(3) >= 0.0) { + if (spaceNum > 0) { + thisZoneITEq.DesignTotalPower = IHGNumbers(3) * state.dataHeatBal->space(spaceNum).floorArea; + if (state.dataHeatBal->space(spaceNum).floorArea <= 0.0) { + ShowWarningError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + + state.dataIPShortCut->cNumericFieldNames(3) + + ", but Space Floor Area = 0. 0 IT Equipment will result."); + } + } else { + ShowSevereError(state, + format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", + RoutineName, + itEqModuleObject, + AlphaName(1), + state.dataIPShortCut->cNumericFieldNames(3), + IHGNumbers(3))); + ErrorsFound = true; + } + } + if (state.dataIPShortCut->lNumericFieldBlanks(3)) { ShowWarningError(state, std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + state.dataIPShortCut->cNumericFieldNames(3) + - ", but Zone Floor Area = 0. 0 IT Equipment will result."); + ", but that field is blank. 0 IT Equipment will result."); } + } else { ShowSevereError(state, - format("{}{}=\"{}\", invalid {}, value [<0.0]={:.3R}", - RoutineName, - itEqModuleObject, - AlphaName(1), - state.dataIPShortCut->cNumericFieldNames(3), - IHGNumbers(3))); + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); + ShowContinueError(state, "...Valid values are \"Watts/Unit\" or \"Watts/Area\"."); ErrorsFound = true; } } - if (state.dataIPShortCut->lNumericFieldBlanks(3)) { - ShowWarningError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + - state.dataIPShortCut->cNumericFieldNames(3) + - ", but that field is blank. 0 IT Equipment will result."); - } - - } else { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(4) + ", value =" + AlphaName(4)); - ShowContinueError(state, "...Valid values are \"Watts/Unit\" or \"Watts/Area\"."); - ErrorsFound = true; - } - } - if (state.dataIPShortCut->lAlphaFieldBlanks(5)) { - state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr = DataGlobalConstants::ScheduleAlwaysOn; - } else { - state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr = GetScheduleIndex(state, AlphaName(5)); - } - SchMin = 0.0; - SchMax = 0.0; - if (state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr == 0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(5) + " entered=" + AlphaName(5)); - ErrorsFound = true; - } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr); - if (SchMin < 0.0 || SchMax < 0.0) { - if (SchMin < 0.0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(5) + ", minimum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMin)); - ErrorsFound = true; + if (state.dataIPShortCut->lAlphaFieldBlanks(5)) { + thisZoneITEq.OperSchedPtr = DataGlobalConstants::ScheduleAlwaysOn; + } else { + thisZoneITEq.OperSchedPtr = GetScheduleIndex(state, AlphaName(5)); } - if (SchMax < 0.0) { + SchMin = 0.0; + SchMax = 0.0; + if (thisZoneITEq.OperSchedPtr == 0) { ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(5) + ", maximum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMax)); + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(5) + " entered=" + AlphaName(5)); ErrorsFound = true; + } else { // check min/max on schedule + SchMin = GetScheduleMinValue(state, thisZoneITEq.OperSchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneITEq.OperSchedPtr); + if (SchMin < 0.0 || SchMax < 0.0) { + if (SchMin < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + + state.dataIPShortCut->cAlphaFieldNames(5) + ", minimum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMin)); + ErrorsFound = true; + } + if (SchMax < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + + state.dataIPShortCut->cAlphaFieldNames(5) + ", maximum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(5), SchMax)); + ErrorsFound = true; + } + } } - } - } - if (state.dataIPShortCut->lAlphaFieldBlanks(6)) { - state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr = DataGlobalConstants::ScheduleAlwaysOn; - } else { - state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr = GetScheduleIndex(state, AlphaName(6)); - } - SchMin = 0.0; - SchMax = 0.0; - if (state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr == 0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(6) + " entered=" + AlphaName(6)); - ErrorsFound = true; - } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr); - if (SchMin < 0.0 || SchMax < 0.0) { - if (SchMin < 0.0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(6) + ", minimum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMin)); - ErrorsFound = true; - } - if (SchMax < 0.0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(6) + ", maximum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMax)); - ErrorsFound = true; + if (state.dataIPShortCut->lAlphaFieldBlanks(6)) { + thisZoneITEq.CPULoadSchedPtr = DataGlobalConstants::ScheduleAlwaysOn; + } else { + thisZoneITEq.CPULoadSchedPtr = GetScheduleIndex(state, AlphaName(6)); } - } - } - - // Calculate nominal min/max equipment level - state.dataHeatBal->ZoneITEq(Loop).NomMinDesignLevel = state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower * SchMin; - state.dataHeatBal->ZoneITEq(Loop).NomMaxDesignLevel = state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower * SchMax; - - state.dataHeatBal->ZoneITEq(Loop).DesignFanPowerFrac = IHGNumbers(4); - state.dataHeatBal->ZoneITEq(Loop).DesignFanPower = - state.dataHeatBal->ZoneITEq(Loop).DesignFanPowerFrac * state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower; - state.dataHeatBal->ZoneITEq(Loop).DesignCPUPower = - (1.0 - state.dataHeatBal->ZoneITEq(Loop).DesignFanPowerFrac) * state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower; - state.dataHeatBal->ZoneITEq(Loop).DesignAirVolFlowRate = IHGNumbers(5) * state.dataHeatBal->ZoneITEq(Loop).DesignTotalPower; - state.dataHeatBal->ZoneITEq(Loop).DesignTAirIn = IHGNumbers(6); - state.dataHeatBal->ZoneITEq(Loop).DesignRecircFrac = IHGNumbers(7); - state.dataHeatBal->ZoneITEq(Loop).DesignUPSEfficiency = IHGNumbers(8); - state.dataHeatBal->ZoneITEq(Loop).UPSLossToZoneFrac = IHGNumbers(9); - state.dataHeatBal->ZoneITEq(Loop).SupplyApproachTemp = IHGNumbers(10); - state.dataHeatBal->ZoneITEq(Loop).ReturnApproachTemp = IHGNumbers(11); - - bool hasSupplyApproachTemp = !state.dataIPShortCut->lNumericFieldBlanks(10); - bool hasReturnApproachTemp = !state.dataIPShortCut->lNumericFieldBlanks(11); - - // Performance curves - state.dataHeatBal->ZoneITEq(Loop).CPUPowerFLTCurve = GetCurveIndex(state, AlphaName(7)); - if (state.dataHeatBal->ZoneITEq(Loop).CPUPowerFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7)); - ErrorsFound = true; - } - - state.dataHeatBal->ZoneITEq(Loop).AirFlowFLTCurve = GetCurveIndex(state, AlphaName(8)); - if (state.dataHeatBal->ZoneITEq(Loop).AirFlowFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(8) + '=' + AlphaName(8)); - ErrorsFound = true; - } - - state.dataHeatBal->ZoneITEq(Loop).FanPowerFFCurve = GetCurveIndex(state, AlphaName(9)); - if (state.dataHeatBal->ZoneITEq(Loop).FanPowerFFCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(9) + '=' + AlphaName(9)); - ErrorsFound = true; - } - - if (!state.dataIPShortCut->lAlphaFieldBlanks(15)) { - // If this field isn't blank, it must point to a valid curve - state.dataHeatBal->ZoneITEq(Loop).RecircFLTCurve = GetCurveIndex(state, AlphaName(15)); - if (state.dataHeatBal->ZoneITEq(Loop).RecircFLTCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(15) + '=' + AlphaName(15)); - ErrorsFound = true; - } - } else { - // If this curve is left blank, then the curve is assumed to always equal 1.0. - state.dataHeatBal->ZoneITEq(Loop).RecircFLTCurve = 0; - } - - if (!state.dataIPShortCut->lAlphaFieldBlanks(16)) { - // If this field isn't blank, it must point to a valid curve - state.dataHeatBal->ZoneITEq(Loop).UPSEfficFPLRCurve = GetCurveIndex(state, AlphaName(16)); - if (state.dataHeatBal->ZoneITEq(Loop).UPSEfficFPLRCurve == 0) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(16) + '=' + AlphaName(16)); - ErrorsFound = true; - } - } else { - // If this curve is left blank, then the curve is assumed to always equal 1.0. - state.dataHeatBal->ZoneITEq(Loop).UPSEfficFPLRCurve = 0; - } - - // Environmental class - if (UtilityRoutines::SameString(AlphaName(10), "None")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassNone; - } else if (UtilityRoutines::SameString(AlphaName(10), "A1")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassA1; - } else if (UtilityRoutines::SameString(AlphaName(10), "A2")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassA2; - } else if (UtilityRoutines::SameString(AlphaName(10), "A3")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassA3; - } else if (UtilityRoutines::SameString(AlphaName(10), "A4")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassA4; - } else if (UtilityRoutines::SameString(AlphaName(10), "B")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassB; - } else if (UtilityRoutines::SameString(AlphaName(10), "C")) { - state.dataHeatBal->ZoneITEq(Loop).Class = ITEClassC; - } else { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(10) + '=' + AlphaName(10)); - ShowContinueError(state, "Valid entries are None, A1, A2, A3, A4, B or C."); - ErrorsFound = true; - } - - // Air and supply inlet connections - if (UtilityRoutines::SameString(AlphaName(11), "AdjustedSupply")) { - state.dataHeatBal->ZoneITEq(Loop).AirConnectionType = ITEInletAdjustedSupply; - } else if (UtilityRoutines::SameString(AlphaName(11), "ZoneAirNode")) { - state.dataHeatBal->ZoneITEq(Loop).AirConnectionType = ITEInletZoneAirNode; - } else if (UtilityRoutines::SameString(AlphaName(11), "RoomAirModel")) { - // ZoneITEq( Loop ).AirConnectionType = ITEInletRoomAirModel; - ShowWarningError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + - "Air Inlet Connection Type = RoomAirModel is not implemented yet, using ZoneAirNode"); - state.dataHeatBal->ZoneITEq(Loop).AirConnectionType = ITEInletZoneAirNode; - } else { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); - ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(11) + '=' + AlphaName(11)); - ShowContinueError(state, "Valid entries are AdjustedSupply, ZoneAirNode, or RoomAirModel."); - ErrorsFound = true; - } - if (state.dataIPShortCut->lAlphaFieldBlanks(14)) { - if (state.dataHeatBal->ZoneITEq(Loop).AirConnectionType == ITEInletAdjustedSupply) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); - ShowContinueError(state, - "For " + state.dataIPShortCut->cAlphaFieldNames(11) + "= AdjustedSupply, " + - state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); - ErrorsFound = true; - } else if (state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps) { - ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); - ShowContinueError(state, - "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, " + - state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); - ErrorsFound = true; - } - } else { - state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum = GetOnlySingleNode(state, - AlphaName(14), - ErrorsFound, - itEqModuleObject, - AlphaName(1), - DataLoopNode::NodeFluidType::Air, - DataLoopNode::NodeConnectionType::Sensor, - NodeInputManager::compFluidStream::Primary, - ObjectIsNotParent); - } - - // check supply air node for matches with zone equipment supply air node - int zoneEqIndex = - DataZoneEquipment::GetControlledZoneIndex(state, state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - auto itStart = state.dataZoneEquip->ZoneEquipConfig(zoneEqIndex).InletNode.begin(); - auto itEnd = state.dataZoneEquip->ZoneEquipConfig(zoneEqIndex).InletNode.end(); - auto key = state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum; - bool supplyNodeFound = false; - if (std::find(itStart, itEnd, key) != itEnd) { - supplyNodeFound = true; - } - - if (state.dataHeatBal->ZoneITEq(Loop).AirConnectionType == ITEInletAdjustedSupply && !supplyNodeFound) { - // supply air node must match zone equipment supply air node for these conditions - ShowSevereError(state, std::string{RoutineName} + ": ElectricEquipment:ITE:AirCooled " + state.dataHeatBal->ZoneITEq(Loop).Name); - ShowContinueError(state, "Air Inlet Connection Type = AdjustedSupply but no Supply Air Node is specified."); - ErrorsFound = true; - } else if (state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps && !supplyNodeFound) { - // supply air node must match zone equipment supply air node for these conditions - ShowSevereError(state, std::string{RoutineName} + ": ElectricEquipment:ITE:AirCooled " + state.dataHeatBal->ZoneITEq(Loop).Name); - ShowContinueError(state, "Air Inlet Connection Type = AdjustedSupply but no Supply Air Node is specified."); - ErrorsFound = true; - } else if (state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum != 0 && !supplyNodeFound) { - // the given supply air node does not match any zone equipment supply air nodes - ShowWarningError(state, - itEqModuleObject + "name: '" + AlphaName(1) + ". " + "Supply Air Node Name '" + AlphaName(14) + - "' does not match any ZoneHVAC:EquipmentConnections objects."); - } - - // End-Use subcategories - if (NumAlpha > 16) { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryCPU = AlphaName(17); - } else { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryCPU = "ITE-CPU"; - } - - if (NumAlpha > 17) { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryFan = AlphaName(18); - } else { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryFan = "ITE-Fans"; - } - if (state.dataHeatBal->ZoneITEq(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - if (NumAlpha > 18) { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryUPS = AlphaName(19); - } else { - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryUPS = "ITE-UPS"; - } - if (state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps) { - if (!state.dataIPShortCut->lAlphaFieldBlanks(20)) { - state.dataHeatBal->ZoneITEq(Loop).SupplyApproachTempSch = GetScheduleIndex(state, AlphaName(20)); - if (state.dataHeatBal->ZoneITEq(Loop).SupplyApproachTempSch == 0) { + SchMin = 0.0; + SchMax = 0.0; + if (thisZoneITEq.CPULoadSchedPtr == 0) { ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); + state.dataIPShortCut->cAlphaFieldNames(6) + " entered=" + AlphaName(6)); ErrorsFound = true; + } else { // check min/max on schedule + SchMin = GetScheduleMinValue(state, thisZoneITEq.CPULoadSchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneITEq.CPULoadSchedPtr); + if (SchMin < 0.0 || SchMax < 0.0) { + if (SchMin < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + + state.dataIPShortCut->cAlphaFieldNames(6) + ", minimum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMin)); + ErrorsFound = true; + } + if (SchMax < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", " + + state.dataIPShortCut->cAlphaFieldNames(6) + ", maximum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(6), SchMax)); + ErrorsFound = true; + } + } } - } else { - if (!hasSupplyApproachTemp) { + + // Calculate nominal min/max equipment level + thisZoneITEq.NomMinDesignLevel = thisZoneITEq.DesignTotalPower * SchMin; + thisZoneITEq.NomMaxDesignLevel = thisZoneITEq.DesignTotalPower * SchMax; + + thisZoneITEq.DesignFanPowerFrac = IHGNumbers(4); + thisZoneITEq.DesignFanPower = thisZoneITEq.DesignFanPowerFrac * thisZoneITEq.DesignTotalPower; + thisZoneITEq.DesignCPUPower = (1.0 - thisZoneITEq.DesignFanPowerFrac) * thisZoneITEq.DesignTotalPower; + thisZoneITEq.DesignAirVolFlowRate = IHGNumbers(5) * thisZoneITEq.DesignTotalPower; + thisZoneITEq.DesignTAirIn = IHGNumbers(6); + thisZoneITEq.DesignRecircFrac = IHGNumbers(7); + thisZoneITEq.DesignUPSEfficiency = IHGNumbers(8); + thisZoneITEq.UPSLossToZoneFrac = IHGNumbers(9); + thisZoneITEq.SupplyApproachTemp = IHGNumbers(10); + thisZoneITEq.ReturnApproachTemp = IHGNumbers(11); + + bool hasSupplyApproachTemp = !state.dataIPShortCut->lNumericFieldBlanks(10); + bool hasReturnApproachTemp = !state.dataIPShortCut->lNumericFieldBlanks(11); + + // Performance curves + thisZoneITEq.CPUPowerFLTCurve = GetCurveIndex(state, AlphaName(7)); + if (thisZoneITEq.CPUPowerFLTCurve == 0) { ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, - "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, either " + - state.dataIPShortCut->cNumericFieldNames(10) + " or " + state.dataIPShortCut->cAlphaFieldNames(20) + - " is required, but both are left blank."); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(7) + '=' + AlphaName(7)); ErrorsFound = true; } - } - if (!state.dataIPShortCut->lAlphaFieldBlanks(21)) { - state.dataHeatBal->ZoneITEq(Loop).ReturnApproachTempSch = GetScheduleIndex(state, AlphaName(21)); - if (state.dataHeatBal->ZoneITEq(Loop).ReturnApproachTempSch == 0) { - ShowSevereError(state, - std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); + thisZoneITEq.AirFlowFLTCurve = GetCurveIndex(state, AlphaName(8)); + if (thisZoneITEq.AirFlowFLTCurve == 0) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(8) + '=' + AlphaName(8)); ErrorsFound = true; } - } else { - if (!hasReturnApproachTemp) { + + thisZoneITEq.FanPowerFFCurve = GetCurveIndex(state, AlphaName(9)); + if (thisZoneITEq.FanPowerFFCurve == 0) { ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); - ShowContinueError(state, - "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, either " + - state.dataIPShortCut->cNumericFieldNames(11) + " or " + state.dataIPShortCut->cAlphaFieldNames(21) + - " is required, but both are left blank."); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(9) + '=' + AlphaName(9)); ErrorsFound = true; } - } - } - if (state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps) { - Real64 TAirInSizing = 0.0; - // Set the TAirInSizing to the maximun setpoint value to do sizing based on the maximum fan and cpu power of the ite object - SetPointManager::GetSetPointManagerInputData(state, ErrorsFound); - for (int SetPtMgrNum = 1; SetPtMgrNum <= state.dataSetPointManager->NumSZClSetPtMgrs; ++SetPtMgrNum) { - if (state.dataSetPointManager->SingZoneClSetPtMgr(SetPtMgrNum).ControlZoneNum == Loop) { - TAirInSizing = state.dataSetPointManager->SingZoneClSetPtMgr(SetPtMgrNum).MaxSetTemp; + if (!state.dataIPShortCut->lAlphaFieldBlanks(15)) { + // If this field isn't blank, it must point to a valid curve + thisZoneITEq.RecircFLTCurve = GetCurveIndex(state, AlphaName(15)); + if (thisZoneITEq.RecircFLTCurve == 0) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(15) + '=' + AlphaName(15)); + ErrorsFound = true; + } + } else { + // If this curve is left blank, then the curve is assumed to always equal 1.0. + thisZoneITEq.RecircFLTCurve = 0; } - } - state.dataHeatBal->ZoneITEq(Loop).SizingTAirIn = max(TAirInSizing, state.dataHeatBal->ZoneITEq(Loop).DesignTAirIn); - } + if (!state.dataIPShortCut->lAlphaFieldBlanks(16)) { + // If this field isn't blank, it must point to a valid curve + thisZoneITEq.UPSEfficFPLRCurve = GetCurveIndex(state, AlphaName(16)); + if (thisZoneITEq.UPSEfficFPLRCurve == 0) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(16) + '=' + AlphaName(16)); + ErrorsFound = true; + } + } else { + // If this curve is left blank, then the curve is assumed to always equal 1.0. + thisZoneITEq.UPSEfficFPLRCurve = 0; + } - // Object report variables - SetupOutputVariable(state, - "ITE CPU Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).CPUPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Fan Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).FanPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE UPS Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).UPSPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE CPU Electricity Rate at Design Inlet Conditions", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).CPUPowerAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Fan Electricity Rate at Design Inlet Conditions", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).FanPowerAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE UPS Heat Gain to Zone Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).UPSGainRateToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Total Heat Gain to Zone Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneITEq(Loop).ConGainRateToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); + // Environmental class + if (UtilityRoutines::SameString(AlphaName(10), "None")) { + thisZoneITEq.Class = ITEClassNone; + } else if (UtilityRoutines::SameString(AlphaName(10), "A1")) { + thisZoneITEq.Class = ITEClassA1; + } else if (UtilityRoutines::SameString(AlphaName(10), "A2")) { + thisZoneITEq.Class = ITEClassA2; + } else if (UtilityRoutines::SameString(AlphaName(10), "A3")) { + thisZoneITEq.Class = ITEClassA3; + } else if (UtilityRoutines::SameString(AlphaName(10), "A4")) { + thisZoneITEq.Class = ITEClassA4; + } else if (UtilityRoutines::SameString(AlphaName(10), "B")) { + thisZoneITEq.Class = ITEClassB; + } else if (UtilityRoutines::SameString(AlphaName(10), "C")) { + thisZoneITEq.Class = ITEClassC; + } else { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(10) + '=' + AlphaName(10)); + ShowContinueError(state, "Valid entries are None, A1, A2, A3, A4, B or C."); + ErrorsFound = true; + } - SetupOutputVariable(state, - "ITE CPU Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).CPUConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name, - _, - "Electricity", - "InteriorEquipment", - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryCPU, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ListMultiplier); - SetupOutputVariable(state, - "ITE Fan Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).FanConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name, - _, - "Electricity", - "InteriorEquipment", - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryFan, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ListMultiplier); - SetupOutputVariable(state, - "ITE UPS Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).UPSConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name, - _, - "Electricity", - "InteriorEquipment", - state.dataHeatBal->ZoneITEq(Loop).EndUseSubcategoryUPS, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ListMultiplier); - SetupOutputVariable(state, - "ITE CPU Electricity Energy at Design Inlet Conditions", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).CPUEnergyAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Fan Electricity Energy at Design Inlet Conditions", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).FanEnergyAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE UPS Heat Gain to Zone Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).UPSGainEnergyToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Total Heat Gain to Zone Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneITEq(Loop).ConGainEnergyToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); + // Air and supply inlet connections + if (UtilityRoutines::SameString(AlphaName(11), "AdjustedSupply")) { + thisZoneITEq.AirConnectionType = ITEInletAdjustedSupply; + } else if (UtilityRoutines::SameString(AlphaName(11), "ZoneAirNode")) { + thisZoneITEq.AirConnectionType = ITEInletZoneAirNode; + } else if (UtilityRoutines::SameString(AlphaName(11), "RoomAirModel")) { + // ZoneITEq( Loop ).AirConnectionType = ITEInletRoomAirModel; + ShowWarningError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + + "Air Inlet Connection Type = RoomAirModel is not implemented yet, using ZoneAirNode"); + thisZoneITEq.AirConnectionType = ITEInletZoneAirNode; + } else { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); + ShowContinueError(state, "Invalid " + state.dataIPShortCut->cAlphaFieldNames(11) + '=' + AlphaName(11)); + ShowContinueError(state, "Valid entries are AdjustedSupply, ZoneAirNode, or RoomAirModel."); + ErrorsFound = true; + } + if (state.dataIPShortCut->lAlphaFieldBlanks(14)) { + if (thisZoneITEq.AirConnectionType == ITEInletAdjustedSupply) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); + ShowContinueError(state, + "For " + state.dataIPShortCut->cAlphaFieldNames(11) + "= AdjustedSupply, " + + state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); + ErrorsFound = true; + } else if (thisZoneITEq.FlowControlWithApproachTemps) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + ": " + AlphaName(1)); + ShowContinueError(state, + "For " + state.dataIPShortCut->cAlphaFieldNames(3) + "= FlowControlWithApproachTemperatures, " + + state.dataIPShortCut->cAlphaFieldNames(14) + " is required, but this field is blank."); + ErrorsFound = true; + } + } else { + thisZoneITEq.SupplyAirNodeNum = GetOnlySingleNode(state, + AlphaName(14), + ErrorsFound, + itEqModuleObject, + AlphaName(1), + DataLoopNode::NodeFluidType::Air, + DataLoopNode::NodeConnectionType::Sensor, + NodeInputManager::compFluidStream::Primary, + ObjectIsNotParent); + } - SetupOutputVariable(state, - "ITE Standard Density Air Volume Flow Rate", - OutputProcessor::Unit::m3_s, - state.dataHeatBal->ZoneITEq(Loop).AirVolFlowStdDensity, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Current Density Air Volume Flow Rate", - OutputProcessor::Unit::m3_s, - state.dataHeatBal->ZoneITEq(Loop).AirVolFlowCurDensity, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Mass Flow Rate", - OutputProcessor::Unit::kg_s, - state.dataHeatBal->ZoneITEq(Loop).AirMassFlow, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dry-Bulb Temperature", - OutputProcessor::Unit::C, - state.dataHeatBal->ZoneITEq(Loop).AirInletDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dewpoint Temperature", - OutputProcessor::Unit::C, - state.dataHeatBal->ZoneITEq(Loop).AirInletDewpointT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Relative Humidity", - OutputProcessor::Unit::Perc, - state.dataHeatBal->ZoneITEq(Loop).AirInletRelHum, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Outlet Dry-Bulb Temperature", - OutputProcessor::Unit::C, - state.dataHeatBal->ZoneITEq(Loop).AirOutletDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - if (state.dataHeatBal->ZoneITEq(Loop).SupplyAirNodeNum != 0) { - SetupOutputVariable(state, - "ITE Supply Heat Index", - OutputProcessor::Unit::None, - state.dataHeatBal->ZoneITEq(Loop).SHI, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - } - SetupOutputVariable(state, - "ITE Air Inlet Operating Range Exceeded Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeOutOfOperRange, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dry-Bulb Temperature Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeAboveDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dry-Bulb Temperature Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeBelowDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dewpoint Temperature Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeAboveDewpointT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dewpoint Temperature Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeBelowDewpointT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Relative Humidity Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeAboveRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Relative Humidity Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZoneITEq(Loop).TimeBelowRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dry-Bulb Temperature Difference Above Operating Range", - OutputProcessor::Unit::deltaC, - state.dataHeatBal->ZoneITEq(Loop).DryBulbTAboveDeltaT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dry-Bulb Temperature Difference Below Operating Range", - OutputProcessor::Unit::deltaC, - state.dataHeatBal->ZoneITEq(Loop).DryBulbTBelowDeltaT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dewpoint Temperature Difference Above Operating Range", - OutputProcessor::Unit::deltaC, - state.dataHeatBal->ZoneITEq(Loop).DewpointTAboveDeltaT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Dewpoint Temperature Difference Below Operating Range", - OutputProcessor::Unit::deltaC, - state.dataHeatBal->ZoneITEq(Loop).DewpointTBelowDeltaT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Relative Humidity Difference Above Operating Range", - OutputProcessor::Unit::Perc, - state.dataHeatBal->ZoneITEq(Loop).RHAboveDeltaRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); - SetupOutputVariable(state, - "ITE Air Inlet Relative Humidity Difference Below Operating Range", - OutputProcessor::Unit::Perc, - state.dataHeatBal->ZoneITEq(Loop).RHBelowDeltaRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneITEq(Loop).Name); + // check supply air node for matches with zone equipment supply air node + int zoneEqIndex = DataZoneEquipment::GetControlledZoneIndex(state, state.dataHeatBal->Zone(thisZoneITEq.ZonePtr).Name); + auto itStart = state.dataZoneEquip->ZoneEquipConfig(zoneEqIndex).InletNode.begin(); + auto itEnd = state.dataZoneEquip->ZoneEquipConfig(zoneEqIndex).InletNode.end(); + auto key = thisZoneITEq.SupplyAirNodeNum; + bool supplyNodeFound = false; + if (std::find(itStart, itEnd, key) != itEnd) { + supplyNodeFound = true; + } - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneITEq(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneITEq(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone ITE CPU Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqCPUPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Fan Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqFanPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE UPS Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqUPSPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE CPU Electricity Rate at Design Inlet Conditions", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqCPUPowerAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Fan Electricity Rate at Design Inlet Conditions", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqFanPowerAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE UPS Heat Gain to Zone Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqUPSGainRateToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Total Heat Gain to Zone Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqConGainRateToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Adjusted Return Air Temperature", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEAdjReturnTemp, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone ITE CPU Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqCPUConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Fan Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqFanConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE UPS Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqUPSConsumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE CPU Electricity Energy at Design Inlet Conditions", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqCPUEnergyAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Fan Electricity Energy at Design Inlet Conditions", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqFanEnergyAtDesign, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE UPS Heat Gain to Zone Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqUPSGainEnergyToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Total Heat Gain to Zone Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqConGainEnergyToZone, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - - SetupOutputVariable(state, - "Zone ITE Standard Density Air Volume Flow Rate", - OutputProcessor::Unit::m3_s, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqAirVolFlowStdDensity, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Air Mass Flow Rate", - OutputProcessor::Unit::kg_s, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqAirMassFlow, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Average Supply Heat Index", - OutputProcessor::Unit::None, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqSHI, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Operating Range Exceeded Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeOutOfOperRange, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Dry-Bulb Temperature Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeAboveDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Dry-Bulb Temperature Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeBelowDryBulbT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Dewpoint Temperature Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeAboveDewpointT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Dewpoint Temperature Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeBelowDewpointT, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Relative Humidity Above Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeAboveRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone ITE Any Air Inlet Relative Humidity Below Operating Range Time", - OutputProcessor::Unit::hr, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).ITEqTimeBelowRH, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).Name); - } + if (thisZoneITEq.AirConnectionType == ITEInletAdjustedSupply && !supplyNodeFound) { + // supply air node must match zone equipment supply air node for these conditions + ShowSevereError(state, std::string{RoutineName} + ": ElectricEquipment:ITE:AirCooled " + thisZoneITEq.Name); + ShowContinueError(state, "Air Inlet Connection Type = AdjustedSupply but no Supply Air Node is specified."); + ErrorsFound = true; + } else if (thisZoneITEq.FlowControlWithApproachTemps && !supplyNodeFound) { + // supply air node must match zone equipment supply air node for these conditions + ShowSevereError(state, std::string{RoutineName} + ": ElectricEquipment:ITE:AirCooled " + thisZoneITEq.Name); + ShowContinueError(state, "Air Inlet Connection Type = AdjustedSupply but no Supply Air Node is specified."); + ErrorsFound = true; + } else if (thisZoneITEq.SupplyAirNodeNum != 0 && !supplyNodeFound) { + // the given supply air node does not match any zone equipment supply air nodes + ShowWarningError(state, + itEqModuleObject + "name: '" + AlphaName(1) + ". " + "Supply Air Node Name '" + AlphaName(14) + + "' does not match any ZoneHVAC:EquipmentConnections objects."); + } - // MJW - EMS Not in place yet - // if ( AnyEnergyManagementSystemInModel ) { - // SetupEMSActuator( "ElectricEquipment", ZoneITEq( Loop ).Name, "Electric Power Level", "[W]", ZoneITEq( Loop - // ).EMSZoneEquipOverrideOn, ZoneITEq( Loop ).EMSEquipPower ); SetupEMSInternalVariable( "Plug and Process Power Design Level", - // ZoneITEq( Loop ).Name, "[W]", ZoneITEq( Loop ).DesignTotalPower ); } // EMS + // End-Use subcategories + if (NumAlpha > 16) { + thisZoneITEq.EndUseSubcategoryCPU = AlphaName(17); + } else { + thisZoneITEq.EndUseSubcategoryCPU = "ITE-CPU"; + } - if (!ErrorsFound) - SetupZoneInternalGain(state, - state.dataHeatBal->ZoneITEq(Loop).ZonePtr, - "ElectricEquipment:ITE:AirCooled", - state.dataHeatBal->ZoneITEq(Loop).Name, - IntGainTypeOf_ElectricEquipmentITEAirCooled, - &state.dataHeatBal->ZoneITEq(Loop).ConGainRateToZone); - - } // Item - Number of ZoneITEq objects - for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + if (NumAlpha > 17) { + thisZoneITEq.EndUseSubcategoryFan = AlphaName(18); + } else { + thisZoneITEq.EndUseSubcategoryFan = "ITE-Fans"; + } + if (thisZoneITEq.ZonePtr <= 0) continue; // Error, will be caught and terminated later + + if (NumAlpha > 18) { + thisZoneITEq.EndUseSubcategoryUPS = AlphaName(19); + } else { + thisZoneITEq.EndUseSubcategoryUPS = "ITE-UPS"; + } + if (thisZoneITEq.FlowControlWithApproachTemps) { + if (!state.dataIPShortCut->lAlphaFieldBlanks(20)) { + thisZoneITEq.SupplyApproachTempSch = GetScheduleIndex(state, AlphaName(20)); + if (thisZoneITEq.SupplyApproachTempSch == 0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); + ErrorsFound = true; + } + } else { + if (!hasSupplyApproachTemp) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); + ShowContinueError(state, + "For " + state.dataIPShortCut->cAlphaFieldNames(3) + + "= FlowControlWithApproachTemperatures, either " + + state.dataIPShortCut->cNumericFieldNames(10) + " or " + + state.dataIPShortCut->cAlphaFieldNames(20) + " is required, but both are left blank."); + ErrorsFound = true; + } + } + + if (!state.dataIPShortCut->lAlphaFieldBlanks(21)) { + thisZoneITEq.ReturnApproachTempSch = GetScheduleIndex(state, AlphaName(21)); + if (thisZoneITEq.ReturnApproachTempSch == 0) { + ShowSevereError(state, + std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(20) + " entered=" + AlphaName(20)); + ErrorsFound = true; + } + } else { + if (!hasReturnApproachTemp) { + ShowSevereError(state, std::string{RoutineName} + itEqModuleObject + " \"" + AlphaName(1) + "\""); + ShowContinueError(state, + "For " + state.dataIPShortCut->cAlphaFieldNames(3) + + "= FlowControlWithApproachTemperatures, either " + + state.dataIPShortCut->cNumericFieldNames(11) + " or " + + state.dataIPShortCut->cAlphaFieldNames(21) + " is required, but both are left blank."); + ErrorsFound = true; + } + } + } + + if (thisZoneITEq.FlowControlWithApproachTemps) { + Real64 TAirInSizing = 0.0; + // Set the TAirInSizing to the maximun setpoint value to do sizing based on the maximum fan and cpu power of the ite + // object + SetPointManager::GetSetPointManagerInputData(state, ErrorsFound); + for (int SetPtMgrNum = 1; SetPtMgrNum <= state.dataSetPointManager->NumSZClSetPtMgrs; ++SetPtMgrNum) { + if (state.dataSetPointManager->SingZoneClSetPtMgr(SetPtMgrNum).ControlZoneNum == zoneNum) { + TAirInSizing = state.dataSetPointManager->SingZoneClSetPtMgr(SetPtMgrNum).MaxSetTemp; + } + } + + thisZoneITEq.SizingTAirIn = max(TAirInSizing, thisZoneITEq.DesignTAirIn); + } + + // MJW - EMS Not in place yet + // if ( AnyEnergyManagementSystemInModel ) { + // SetupEMSActuator( "ElectricEquipment", ZoneITEq( Loop ).Name, "Electric Power Level", "[W]", ZoneITEq( Loop + // ).EMSZoneEquipOverrideOn, ZoneITEq( Loop ).EMSEquipPower ); SetupEMSInternalVariable( "Plug and Process Power Design + // Level", ZoneITEq( Loop ).Name, "[W]", ZoneITEq( Loop ).DesignTotalPower ); } // EMS + + if (!ErrorsFound) + SetupZoneInternalGain(state, + thisZoneITEq.ZonePtr, + "ElectricEquipment:ITE:AirCooled", + thisZoneITEq.Name, + IntGainTypeOf_ElectricEquipmentITEAirCooled, + &thisZoneITEq.ConGainRateToZone); + } + } // for itEqInputNum.NumOfSpaces + } // for itEqInputNum + for (int Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { if (state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(Loop).ZonePtr).HasAdjustedReturnTempByITE && (!state.dataHeatBal->ZoneITEq(Loop).FlowControlWithApproachTemps)) { ShowSevereError(state, @@ -4898,282 +3035,129 @@ namespace InternalHeatGains { ErrorsFound = true; } } - } // Check on number of ZoneITEq - - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } - state.dataHeatBal->TotBBHeat = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, bbModuleObject); - state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); + } // TotITEquip > 0 - for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { - AlphaName = ""; - IHGNumbers = 0.0; - state.dataInputProcessing->inputProcessor->getObjectItem(state, - bbModuleObject, - Loop, - AlphaName, - NumAlpha, - IHGNumbers, - NumNumber, - IOStat, - state.dataIPShortCut->lNumericFieldBlanks, - state.dataIPShortCut->lAlphaFieldBlanks, - state.dataIPShortCut->cAlphaFieldNames, - state.dataIPShortCut->cNumericFieldNames); - UtilityRoutines::IsNameEmpty(state, AlphaName(1), bbModuleObject, ErrorsFound); + setupIHGZonesAndSpaces(state, + bbModuleObject, + state.dataHeatBal->ZoneElectricObjects, + state.dataHeatBal->NumZoneBBHeatStatements, + state.dataHeatBal->TotBBHeat, + ErrorsFound); - state.dataHeatBal->ZoneBBHeat(Loop).Name = AlphaName(1); + if (state.dataHeatBal->TotBBHeat > 0) { + state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); + int bbHeatNum = 0; + for (int bbHeatInputNum = 1; bbHeatInputNum <= state.dataHeatBal->NumZoneElectricStatements; ++bbHeatInputNum) { + state.dataInputProcessing->inputProcessor->getObjectItem(state, + bbModuleObject, + bbHeatInputNum, + AlphaName, + NumAlpha, + IHGNumbers, + NumNumber, + IOStat, + state.dataIPShortCut->lNumericFieldBlanks, + state.dataIPShortCut->lAlphaFieldBlanks, + state.dataIPShortCut->cAlphaFieldNames, + state.dataIPShortCut->cNumericFieldNames); - int zoneNum = UtilityRoutines::FindItemInList(AlphaName(2), state.dataHeatBal->Zone); - state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr = zoneNum; - if (state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr == 0) { - ShowSevereError(state, - std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(2) + " entered=" + AlphaName(2)); - ErrorsFound = true; - } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.emplace_back(spaceNum); - } + auto &thisBBHeatInput = state.dataHeatBal->ZoneBBHeatObjects(bbHeatInputNum); + for (int Item1 = 1; Item1 <= thisBBHeatInput.numOfSpaces; ++Item1) { + ++bbHeatNum; + auto &thisZoneBBHeat = state.dataHeatBal->ZoneBBHeat(bbHeatNum); + int const spaceNum = thisBBHeatInput.spaceNums(Item1); + int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; + thisZoneBBHeat.Name = thisBBHeatInput.names(Item1); + thisZoneBBHeat.spaceIndex = spaceNum; + thisZoneBBHeat.ZonePtr = zoneNum; - // Set space load fractions - if (int(state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.size()) <= 1) { - state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs.emplace_back(1.0); - } else { - Real64 const zoneArea = state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).FloorArea; - if (zoneArea > 0.0) { - for (int const spaceNum : state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs) { - Real64 const spaceArea = state.dataHeatBal->space(spaceNum).floorArea; - state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs.emplace_back(spaceArea / zoneArea); + thisZoneBBHeat.SchedPtr = GetScheduleIndex(state, AlphaName(3)); + if (thisZoneBBHeat.SchedPtr == 0) { + if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { + ShowSevereError(state, + std::string{RoutineName} + bbModuleObject + "=\"" + thisBBHeatInput.Name + "\", " + + state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); + } else { + ShowSevereError(state, + std::string{RoutineName} + bbModuleObject + "=\"" + thisBBHeatInput.Name + "\", invalid " + + state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); } - } else { - ShowSevereError(state, - std::string(RoutineName) + - "Zone floor area is zero when allocating ZoneBaseboard:OutdoorTemperatureControlled loads to Spaces."); - ShowContinueError( - state, - "Occurs for ZoneBaseboard:OutdoorTemperatureControlled object =" + state.dataHeatBal->ZoneBBHeat(Loop).Name + - " in Zone=" + state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); ErrorsFound = true; + } else { // check min/max on schedule + SchMin = GetScheduleMinValue(state, thisZoneBBHeat.SchedPtr); + SchMax = GetScheduleMaxValue(state, thisZoneBBHeat.SchedPtr); + if (SchMin < 0.0 || SchMax < 0.0) { + if (SchMin < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + bbModuleObject + "=\"" + thisBBHeatInput.Name + "\", " + + state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); + ErrorsFound = true; + } + if (SchMax < 0.0) { + ShowSevereError(state, + std::string{RoutineName} + bbModuleObject + "=\"" + thisBBHeatInput.Name + "\", " + + state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); + ShowContinueError(state, + format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); + ErrorsFound = true; + } + } } - } - } - state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr = GetScheduleIndex(state, AlphaName(3)); - if (state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr == 0) { - if (state.dataIPShortCut->lAlphaFieldBlanks(3)) { - ShowSevereError(state, - std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(3) + " is required."); - } else { - ShowSevereError(state, - std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", invalid " + - state.dataIPShortCut->cAlphaFieldNames(3) + " entered=" + AlphaName(3)); - } - ErrorsFound = true; - } else { // check min/max on schedule - SchMin = GetScheduleMinValue(state, state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr); - SchMax = GetScheduleMaxValue(state, state.dataHeatBal->ZoneBBHeat(Loop).SchedPtr); - if (SchMin < 0.0 || SchMax < 0.0) { - if (SchMin < 0.0) { - ShowSevereError(state, - std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(3) + ", minimum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Minimum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMin)); - ErrorsFound = true; + if (NumAlpha > 3) { + thisZoneBBHeat.EndUseSubcategory = AlphaName(4); + } else { + thisZoneBBHeat.EndUseSubcategory = "General"; } - if (SchMax < 0.0) { + + thisZoneBBHeat.CapatLowTemperature = IHGNumbers(1); + thisZoneBBHeat.LowTemperature = IHGNumbers(2); + thisZoneBBHeat.CapatHighTemperature = IHGNumbers(3); + thisZoneBBHeat.HighTemperature = IHGNumbers(4); + thisZoneBBHeat.FractionRadiant = IHGNumbers(5); + thisZoneBBHeat.FractionConvected = 1.0 - thisZoneBBHeat.FractionRadiant; + if (thisZoneBBHeat.FractionConvected < 0.0) { ShowSevereError(state, - std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", " + - state.dataIPShortCut->cAlphaFieldNames(3) + ", maximum is < 0.0"); - ShowContinueError(state, format("Schedule=\"{}\". Maximum is [{:.1R}]. Values must be >= 0.0.", AlphaName(3), SchMax)); + std::string{RoutineName} + bbModuleObject + "=\"" + thisBBHeatInput.Name + "\", Sum of Fractions > 1.0"); ErrorsFound = true; } - } - } - - if (NumAlpha > 3) { - state.dataHeatBal->ZoneBBHeat(Loop).EndUseSubcategory = AlphaName(4); - } else { - state.dataHeatBal->ZoneBBHeat(Loop).EndUseSubcategory = "General"; - } - - state.dataHeatBal->ZoneBBHeat(Loop).CapatLowTemperature = IHGNumbers(1); - state.dataHeatBal->ZoneBBHeat(Loop).LowTemperature = IHGNumbers(2); - state.dataHeatBal->ZoneBBHeat(Loop).CapatHighTemperature = IHGNumbers(3); - state.dataHeatBal->ZoneBBHeat(Loop).HighTemperature = IHGNumbers(4); - state.dataHeatBal->ZoneBBHeat(Loop).FractionRadiant = IHGNumbers(5); - state.dataHeatBal->ZoneBBHeat(Loop).FractionConvected = 1.0 - state.dataHeatBal->ZoneBBHeat(Loop).FractionRadiant; - if (state.dataHeatBal->ZoneBBHeat(Loop).FractionConvected < 0.0) { - ShowSevereError(state, std::string{RoutineName} + bbModuleObject + "=\"" + AlphaName(1) + "\", Sum of Fractions > 1.0"); - ErrorsFound = true; - } - - if (state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr <= 0) continue; // Error, will be caught and terminated later - - // Object report variables - SetupOutputVariable(state, - "Baseboard Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneBBHeat(Loop).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneBBHeat(Loop).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneBBHeat(Loop).Name, - _, - "Electricity", - "InteriorEquipment", - state.dataHeatBal->ZoneBBHeat(Loop).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).ListMultiplier); - - SetupOutputVariable(state, - "Baseboard Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneBBHeat(Loop).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneBBHeat(Loop).ConGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZoneBBHeat(Loop).TotGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - SetupOutputVariable(state, - "Baseboard Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZoneBBHeat(Loop).TotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->ZoneBBHeat(Loop).Name); - - // Zone total report variables - if (RepVarSet(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr)) { - RepVarSet(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr) = false; - SetupOutputVariable(state, - "Zone Baseboard Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatElecCons, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatRadGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatConGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatConGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatTotGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - SetupOutputVariable(state, - "Zone Baseboard Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).BaseHeatTotGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr).Name); - } + if (thisZoneBBHeat.ZonePtr <= 0) continue; // Error, will be caught and terminated later - if (state.dataGlobal->AnyEnergyManagementSystemInModel) { - SetupEMSActuator(state, - "ZoneBaseboard:OutdoorTemperatureControlled", - state.dataHeatBal->ZoneBBHeat(Loop).Name, - "Power Level", - "[W]", - state.dataHeatBal->ZoneBBHeat(Loop).EMSZoneBaseboardOverrideOn, - state.dataHeatBal->ZoneBBHeat(Loop).EMSZoneBaseboardPower); - SetupEMSInternalVariable(state, - "Simple Zone Baseboard Capacity At Low Temperature", - state.dataHeatBal->ZoneBBHeat(Loop).Name, - "[W]", - state.dataHeatBal->ZoneBBHeat(Loop).CapatLowTemperature); - SetupEMSInternalVariable(state, - "Simple Zone Baseboard Capacity At High Temperature", - state.dataHeatBal->ZoneBBHeat(Loop).Name, + if (state.dataGlobal->AnyEnergyManagementSystemInModel) { + SetupEMSActuator(state, + "ZoneBaseboard:OutdoorTemperatureControlled", + thisZoneBBHeat.Name, + "Power Level", "[W]", - state.dataHeatBal->ZoneBBHeat(Loop).CapatHighTemperature); - } // EMS + thisZoneBBHeat.EMSZoneBaseboardOverrideOn, + thisZoneBBHeat.EMSZoneBaseboardPower); + SetupEMSInternalVariable(state, + "Simple Zone Baseboard Capacity At Low Temperature", + thisZoneBBHeat.Name, + "[W]", + thisZoneBBHeat.CapatLowTemperature); + SetupEMSInternalVariable(state, + "Simple Zone Baseboard Capacity At High Temperature", + thisZoneBBHeat.Name, + "[W]", + thisZoneBBHeat.CapatHighTemperature); + } // EMS - SetupZoneInternalGain(state, - state.dataHeatBal->ZoneBBHeat(Loop).ZonePtr, - "ZoneBaseboard:OutdoorTemperatureControlled", - state.dataHeatBal->ZoneBBHeat(Loop).Name, - IntGainTypeOf_ZoneBaseboardOutdoorTemperatureControlled, - &state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate, - nullptr, - &state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate); - } + SetupZoneInternalGain(state, + thisZoneBBHeat.ZonePtr, + "ZoneBaseboard:OutdoorTemperatureControlled", + thisZoneBBHeat.Name, + IntGainTypeOf_ZoneBaseboardOutdoorTemperatureControlled, + &thisZoneBBHeat.ConGainRate, + nullptr, + &thisZoneBBHeat.RadGainRate); + } // for bbHeatInputNum.NumOfSpaces + } // for bbHeatInputNum + } // TotBBHeat > 0 - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - RepVarSet(zoneNum) = true; - } state.dataHeatBal->TotCO2Gen = state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, contamSSModuleObject); state.dataHeatBal->ZoneCO2Gen.allocate(state.dataHeatBal->TotCO2Gen); @@ -5307,7 +3291,7 @@ namespace InternalHeatGains { if (state.dataHeatBal->ZoneElectric(Loop1).ZonePtr != Loop) continue; ElecTot += state.dataHeatBal->ZoneElectric(Loop1).DesignLevel; } - for (Loop1 = 1; Loop1 <= state.dataHeatBal->NumZoneITEqStatements; ++Loop1) { + for (Loop1 = 1; Loop1 <= state.dataHeatBal->TotITEquip; ++Loop1) { if (state.dataHeatBal->ZoneITEq(Loop1).ZonePtr != Loop) continue; ElecTot += state.dataHeatBal->ZoneITEq(Loop1).DesignTotalPower; } @@ -5715,7 +3699,7 @@ namespace InternalHeatGains { print(state.files.eio, "{:.3R}\n", state.dataHeatBal->ZoneOtherEq(Loop).NomMaxDesignLevel); } - for (int Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (int Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { if (Loop == 1) { print(state.files.eio, Format_723, @@ -5798,7 +3782,8 @@ namespace InternalHeatGains { EPVector &inputObjects, int &numInputObjects, int &numGainInstances, - bool &errors) + bool &errors, + const bool zoneListNotAllowed) { constexpr std::string_view routineName = "setupIHGZonesAndSpaces: "; bool localErrFlag = false; @@ -5818,798 +3803,3155 @@ namespace InternalHeatGains { auto const &thisObjectName = UtilityRoutines::MakeUPPERCase(instance.key()); ip->markObjectAsUsed(objectType, instance.key()); - // For incoming idf, maintain object order - ++counter; - int objNum = ip->getIDFObjNum(state, objectType, counter); - inputObjects(objNum).Name = thisObjectName; - std::string areaName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, "zone_or_zonelist_or_space_or_spacelist_name"); + // For incoming idf, maintain object order + ++counter; + int objNum = ip->getIDFObjNum(state, objectType, counter); + inputObjects(objNum).Name = thisObjectName; + std::string areaFieldName; + if (zoneListNotAllowed) { + areaFieldName = "zone_or_space_name"; + } else { + areaFieldName = "zone_or_zonelist_or_space_or_spacelist_name"; + } + std::string areaName = ip->getAlphaFieldValue(objectFields, objectSchemaProps, areaFieldName); + + int zoneNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->Zone); + if (zoneNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = state.dataHeatBal->Zone(zoneNum).numSpaces; + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).NumOfZones = 1; + inputObjects(objNum).ZoneListActive = false; + inputObjects(objNum).ZoneOrZoneListPtr = zoneNum; + if (numSpaces == 1) { + inputObjects(objNum).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaceIndexes(1)); + inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); + } else { + for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + } + continue; + } + int spaceNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->space); + if (spaceNum > 0) { + inputObjects(objNum).StartPtr = numGainInstances + 1; + ++numGainInstances; + inputObjects(objNum).numOfSpaces = 1; + inputObjects(objNum).spaceListActive = false; + inputObjects(objNum).spaceOrSpaceListPtr = spaceNum; + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); + continue; + } + int zoneListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->ZoneList); + if (zoneListNum > 0) { + if (zoneListNotAllowed) { + ShowSevereError( + state, objectType + "=\"" + thisObjectName + "\" ZoneList Name=\"" + areaName + "\" not allowed for " + objectType + "."); + errors = true; + localErrFlag = true; + } else { + + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = 0; + for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { + numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; + for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaceIndexes) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + } + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; + inputObjects(objNum).ZoneListActive = true; + inputObjects(objNum).ZoneOrZoneListPtr = zoneListNum; + } + continue; + } + int spaceListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->spaceList); + if (spaceListNum > 0) { + if (zoneListNotAllowed) { + ShowSevereError(state, + objectType + "=\"" + thisObjectName + "\" SpaceList Name=\"" + areaName + "\" not allowed for " + objectType + + "."); + errors = true; + localErrFlag = true; + } else { + inputObjects(objNum).StartPtr = numGainInstances + 1; + int numSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; + numGainInstances += numSpaces; + inputObjects(objNum).numOfSpaces = numSpaces; + inputObjects(objNum).spaceListActive = true; + inputObjects(objNum).spaceOrSpaceListPtr = spaceListNum; + for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { + inputObjects(objNum).spaceNums.emplace_back(spaceNum); + inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + } + } + continue; + } + ShowSevereError(state, objectType + "=\"" + thisObjectName + "\" invalid " + areaFieldName + "=\"" + areaName + "\" not found."); + errors = true; + localErrFlag = true; + } + if (localErrFlag) { + ShowSevereError(state, std::string{routineName} + "Errors with invalid names in " + objectType + " objects."); + ShowContinueError(state, "...These will not be read in. Other errors may occur."); + numGainInstances = 0; + } + } + } + + void setupIHGOutputs(EnergyPlusData &state) + { + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + // Overall Zone Variables + SetupOutputVariable(state, + "Zone Total Internal Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotLatentGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotLatentGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Total Internal Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + // Overall Space Variables + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Total Internal Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + + // Add zone and space outputs only where the particular type of equipment is actually present + Array1D_bool addZoneOutputs; + addZoneOutputs.dimension(state.dataGlobal->NumOfZones, false); + Array1D_bool addSpaceOutputs; + addSpaceOutputs.dimension(state.dataGlobal->numSpaces, false); + + for (int peopleNum = 1; peopleNum <= state.dataHeatBal->TotPeople; ++peopleNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->People(peopleNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->People(peopleNum).spaceIndex) = true; + // Object report variables + SetupOutputVariable(state, + "People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->People(peopleNum).NumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).SenGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).SenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->People(peopleNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->People(peopleNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Air Temperature", + OutputProcessor::Unit::C, + state.dataHeatBal->People(peopleNum).TemperatureInZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + SetupOutputVariable(state, + "People Air Relative Humidity", + OutputProcessor::Unit::Perc, + state.dataHeatBal->People(peopleNum).RelativeHumidityInZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->People(peopleNum).Name); + } + + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + // Zone total report variables + SetupOutputVariable(state, + "Zone People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->ZnRpt(zoneNum).PeopleNumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space People Occupant Count", + OutputProcessor::Unit::None, + state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Sensible Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space People Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + + for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->Lights(lightsNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->Lights(lightsNum).spaceIndex) = true; + // Object report variables + SetupOutputVariable(state, + "Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + + SetupOutputVariable(state, + "Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).VisGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + + SetupOutputVariable(state, + "Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).VisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).RetAirGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).RetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->Lights(lightsNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Lights(lightsNum).Name); + SetupOutputVariable(state, + "Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->Lights(lightsNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Lights(lightsNum).Name, + _, + "Electricity", + "InteriorLights", + state.dataHeatBal->Lights(lightsNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->Lights(lightsNum).spaceIndex).spaceType); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + SetupOutputVariable(state, + "Zone Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsVisGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsVisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).LtsTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).LtsTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space Lights Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Visible Radiation Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Visible Radiation Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Return Air Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Return Air Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Lights Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).LtsTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + for (int elecEqNum = 1; elecEqNum <= state.dataHeatBal->TotElecEquip; ++elecEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneElectric(elecEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneElectric(elecEqNum).spaceIndex) = true; + // Object report variables + SetupOutputVariable(state, + "Electric Equipment Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name, + _, + "Electricity", + "InteriorEquipment", + state.dataHeatBal->ZoneElectric(elecEqNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(elecEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(elecEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneElectric(elecEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneElectric(elecEqNum).spaceIndex).spaceType); + + SetupOutputVariable(state, + "Electric Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).LostEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).LostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneElectric(elecEqNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + SetupOutputVariable(state, + "Electric Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneElectric(elecEqNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneElectric(elecEqNum).Name); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + SetupOutputVariable(state, + "Zone Electric Equipment Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone Electric Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ElecTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Electric Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ElecTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space Electric Equipment Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + + SetupOutputVariable(state, + "Space Electric Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ElecTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Electric Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ElecTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + // Object report variables + for (int gasEqNum = 1; gasEqNum <= state.dataHeatBal->TotGasEquip; ++gasEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneGas(gasEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneGas(gasEqNum).spaceIndex) = true; + SetupOutputVariable(state, + "Gas Equipment NaturalGas Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment NaturalGas Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name, + _, + "NaturalGas", + "InteriorEquipment", + state.dataHeatBal->ZoneGas(gasEqNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(gasEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(gasEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneGas(gasEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneGas(gasEqNum).spaceIndex).spaceType); + + SetupOutputVariable(state, + "Gas Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).LostEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneGas(gasEqNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).LostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + SetupOutputVariable(state, + "Gas Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneGas(gasEqNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneGas(gasEqNum).Name); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + + SetupOutputVariable(state, + "Zone Gas Equipment NaturalGas Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment NaturalGas Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone Gas Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).GasTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Gas Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).GasTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + + SetupOutputVariable(state, + "Space Gas Equipment NaturalGas Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment NaturalGas Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + + SetupOutputVariable(state, + "Space Gas Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).GasTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Gas Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).GasTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + + // Object report variables + for (int hwEqNum = 1; hwEqNum <= state.dataHeatBal->TotHWEquip; ++hwEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneHWEq(hwEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneHWEq(hwEqNum).spaceIndex) = true; + SetupOutputVariable(state, + "Hot Water Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name, + _, + "DistrictHeating", + "InteriorEquipment", + state.dataHeatBal->ZoneHWEq(hwEqNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(hwEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(hwEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneHWEq(hwEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneHWEq(hwEqNum).spaceIndex).spaceType); + + SetupOutputVariable(state, + "Hot Water Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).LostEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).LostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneHWEq(hwEqNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + SetupOutputVariable(state, + "Hot Water Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneHWEq(hwEqNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneHWEq(hwEqNum).Name); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + SetupOutputVariable(state, + "Zone Hot Water Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone Hot Water Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).HWTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Hot Water Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).HWTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space Hot Water Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + + SetupOutputVariable(state, + "Space Hot Water Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).HWTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Hot Water Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).HWTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + + // Object report variables + for (int stmEqNum = 1; stmEqNum <= state.dataHeatBal->TotStmEquip; ++stmEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneSteamEq(stmEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneSteamEq(stmEqNum).spaceIndex) = true; + SetupOutputVariable(state, + "Steam Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name, + _, + "DistrictHeating", + "InteriorEquipment", + state.dataHeatBal->ZoneSteamEq(stmEqNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(stmEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(stmEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneSteamEq(stmEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneSteamEq(stmEqNum).spaceIndex).spaceType); + + SetupOutputVariable(state, + "Steam Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).LostEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).LostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneSteamEq(stmEqNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + SetupOutputVariable(state, + "Steam Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneSteamEq(stmEqNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneSteamEq(stmEqNum).Name); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + SetupOutputVariable(state, + "Zone Steam Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone Steam Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).SteamTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Steam Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).SteamTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + SetupOutputVariable(state, + "Space Steam Equipment District Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment District Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + + SetupOutputVariable(state, + "Space Steam Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).SteamTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Steam Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).SteamTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; + } + + // Object report variables + for (int othEqNum = 1; othEqNum <= state.dataHeatBal->TotOthEquip; ++othEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneOtherEq(othEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneOtherEq(othEqNum).spaceIndex) = true; + if (state.dataHeatBal->ZoneOtherEq(othEqNum).OtherEquipFuelType != ExteriorEnergyUse::ExteriorFuelUsage::Unknown) { + std::string fuelTypeString = state.dataHeatBal->ZoneOtherEq(othEqNum).otherEquipFuelTypeString; + SetupOutputVariable(state, + "Other Equipment " + fuelTypeString + " Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).Power, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment " + fuelTypeString + " Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).Consumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name, + _, + fuelTypeString, + "InteriorEquipment", + state.dataHeatBal->ZoneOtherEq(othEqNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(othEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(othEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneOtherEq(othEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneOtherEq(othEqNum).spaceIndex).spaceType); + } + + SetupOutputVariable(state, + "Other Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).RadGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).RadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).ConGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).ConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).LatGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).LatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).LostEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).LostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneOtherEq(othEqNum).TotGainEnergy, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + SetupOutputVariable(state, + "Other Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneOtherEq(othEqNum).TotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneOtherEq(othEqNum).Name); + } + + // Zone total report variables + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + if (addZoneOutputs(zoneNum)) { + bool firstFuelType = true; + for (std::string fuelTypeString : state.dataHeatBal->Zone(zoneNum).otherEquipFuelTypes) { + if (firstFuelType) { + + SetupOutputVariable(state, + "Zone Other Equipment " + fuelTypeString + " Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment " + fuelTypeString + " Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + firstFuelType = false; + } else { + ShowWarningError(state, + "setupIHGOutputs: Output variables=Zone Other Equipment " + fuelTypeString + + " Rate and Energy are not available."); + ShowContinueError(state, "Only the first Other Equipment fuel type used in a zone is reported."); + } + } + + SetupOutputVariable(state, + "Zone Other Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).OtherTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone Other Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).OtherTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; + } + + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + if (addSpaceOutputs(spaceNum)) { + bool firstFuelType = true; + for (std::string fuelTypeString : state.dataHeatBal->space(spaceNum).otherEquipFuelTypes) { + if (firstFuelType) { - int zoneNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->Zone); - if (zoneNum > 0) { - inputObjects(objNum).StartPtr = numGainInstances + 1; - int numSpaces = state.dataHeatBal->Zone(zoneNum).numSpaces; - numGainInstances += numSpaces; - inputObjects(objNum).numOfSpaces = numSpaces; - inputObjects(objNum).NumOfZones = 1; - inputObjects(objNum).ZoneListActive = false; - inputObjects(objNum).ZoneOrZoneListPtr = zoneNum; - if (numSpaces == 1) { - inputObjects(objNum).spaceNums.emplace_back(state.dataHeatBal->Zone(zoneNum).spaceIndexes(1)); - inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); + SetupOutputVariable(state, + "Space Other Equipment " + fuelTypeString + " Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment " + fuelTypeString + " Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherConsump, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + firstFuelType = false; } else { - for (int const spaceNum : state.dataHeatBal->Zone(zoneNum).spaceIndexes) { - inputObjects(objNum).spaceNums.emplace_back(spaceNum); - inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); - } - } - continue; - } - int spaceNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->space); - if (spaceNum > 0) { - inputObjects(objNum).StartPtr = numGainInstances + 1; - ++numGainInstances; - inputObjects(objNum).numOfSpaces = 1; - inputObjects(objNum).spaceListActive = false; - inputObjects(objNum).spaceOrSpaceListPtr = spaceNum; - inputObjects(objNum).spaceNums.emplace_back(spaceNum); - inputObjects(objNum).names.emplace_back(inputObjects(objNum).Name); - continue; - } - int zoneListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->ZoneList); - if (zoneListNum > 0) { - inputObjects(objNum).StartPtr = numGainInstances + 1; - int numSpaces = 0; - for (int const listZoneIdx : state.dataHeatBal->ZoneList(zoneListNum).Zone) { - numSpaces += state.dataHeatBal->Zone(listZoneIdx).numSpaces; - for (int const spaceNum : state.dataHeatBal->Zone(listZoneIdx).spaceIndexes) { - inputObjects(objNum).spaceNums.emplace_back(spaceNum); - inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); - } - } - numGainInstances += numSpaces; - inputObjects(objNum).numOfSpaces = numSpaces; - inputObjects(objNum).NumOfZones = state.dataHeatBal->ZoneList(zoneListNum).NumOfZones; - inputObjects(objNum).ZoneListActive = true; - inputObjects(objNum).ZoneOrZoneListPtr = zoneListNum; - continue; - } - int spaceListNum = UtilityRoutines::FindItemInList(areaName, state.dataHeatBal->spaceList); - if (spaceListNum > 0) { - inputObjects(objNum).StartPtr = numGainInstances + 1; - int numSpaces = state.dataHeatBal->spaceList(spaceListNum).numOfSpaces; - numGainInstances += numSpaces; - inputObjects(objNum).numOfSpaces = numSpaces; - inputObjects(objNum).spaceListActive = true; - inputObjects(objNum).spaceOrSpaceListPtr = spaceListNum; - for (int const spaceNum : state.dataHeatBal->spaceList(spaceListNum).spaces) { - inputObjects(objNum).spaceNums.emplace_back(spaceNum); - inputObjects(objNum).names.emplace_back(state.dataHeatBal->space(spaceNum).Name + ' ' + inputObjects(objNum).Name); + ShowWarningError(state, + "setupIHGOutputs: Output variables=Space Other Equipment " + fuelTypeString + + " Rate and Energy are not available."); + ShowContinueError(state, "Only the first Other Equipment fuel type used in a space is reported."); } - continue; } - ShowSevereError(state, - objectType + "=\"" + thisObjectName + "\" invalid Zone or ZoneList or Space or SpaceList Name=\"" + areaName + - "\" not found."); - errors = true; - localErrFlag = true; - } - if (localErrFlag) { - ShowSevereError(state, std::string{routineName} + "Errors with invalid names in " + objectType + " objects."); - ShowContinueError(state, "...These will not be read in. Other errors may occur."); - numGainInstances = 0; + + SetupOutputVariable(state, + "Space Other Equipment Radiant Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Radiant Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherRadGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Convective Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherConGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Convective Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherConGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Latent Gain Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Latent Gain Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherLatGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Lost Heat Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherLost, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Lost Heat Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherLostRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Total Heating Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).OtherTotGain, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space Other Equipment Total Heating Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).OtherTotGainRate, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; } - } - - void setupIHGOutputs(EnergyPlusData &state) - { - for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { - // Overall Zone Variables - SetupOutputVariable(state, - "Zone Total Internal Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); + // Object report variables + for (int itEqNum = 1; itEqNum <= state.dataHeatBal->TotITEquip; ++itEqNum) { + // Set flags for zone and space total report variables + addZoneOutputs(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneITEq(itEqNum).spaceIndex) = true; SetupOutputVariable(state, - "Zone Total Internal Radiant Heating Rate", + "ITE CPU Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).TotRadiantGainRate, + state.dataHeatBal->ZoneITEq(itEqNum).CPUPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Visible Radiation Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGain, + "ITE Fan Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneITEq(itEqNum).FanPower, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Visible Radiation Heating Rate", + "ITE UPS Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).TotVisHeatGainRate, + state.dataHeatBal->ZoneITEq(itEqNum).UPSPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGain, + "ITE CPU Electricity Rate at Design Inlet Conditions", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneITEq(itEqNum).CPUPowerAtDesign, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Convective Heating Rate", + "ITE Fan Electricity Rate at Design Inlet Conditions", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).TotConvectiveGainRate, + state.dataHeatBal->ZoneITEq(itEqNum).FanPowerAtDesign, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).TotLatentGain, + "ITE UPS Heat Gain to Zone Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZoneITEq(itEqNum).UPSGainRateToZone, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Zone Total Internal Latent Gain Rate", + "ITE Total Heat Gain to Zone Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).TotLatentGainRate, + state.dataHeatBal->ZoneITEq(itEqNum).ConGainRateToZone, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); + SetupOutputVariable(state, - "Zone Total Internal Total Heating Energy", + "ITE CPU Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGain, + state.dataHeatBal->ZoneITEq(itEqNum).CPUConsumption, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name, + _, + "Electricity", + "InteriorEquipment", + state.dataHeatBal->ZoneITEq(itEqNum).EndUseSubcategoryCPU, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneITEq(itEqNum).spaceIndex).spaceType); + SetupOutputVariable(state, - "Zone Total Internal Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).TotTotalHeatGainRate, + "ITE Fan Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneITEq(itEqNum).FanConsumption, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); - } - - for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { - // Overall Space Variables + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name, + _, + "Electricity", + "InteriorEquipment", + state.dataHeatBal->ZoneITEq(itEqNum).EndUseSubcategoryFan, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneITEq(itEqNum).spaceIndex).spaceType); SetupOutputVariable(state, - "Space Total Internal Radiant Heating Energy", + "ITE UPS Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGain, + state.dataHeatBal->ZoneITEq(itEqNum).UPSConsumption, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name, + _, + "Electricity", + "InteriorEquipment", + state.dataHeatBal->ZoneITEq(itEqNum).EndUseSubcategoryUPS, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneITEq(itEqNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneITEq(itEqNum).spaceIndex).spaceType); SetupOutputVariable(state, - "Space Total Internal Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).TotRadiantGainRate, + "ITE CPU Electricity Energy at Design Inlet Conditions", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneITEq(itEqNum).CPUEnergyAtDesign, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Visible Radiation Heating Energy", + "ITE Fan Electricity Energy at Design Inlet Conditions", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGain, + state.dataHeatBal->ZoneITEq(itEqNum).FanEnergyAtDesign, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).TotVisHeatGainRate, + "ITE UPS Heat Gain to Zone Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZoneITEq(itEqNum).UPSGainEnergyToZone, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Convective Heating Energy", + "ITE Total Heat Gain to Zone Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGain, + state.dataHeatBal->ZoneITEq(itEqNum).ConGainEnergyToZone, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); + SetupOutputVariable(state, - "Space Total Internal Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).TotConvectiveGainRate, + "ITE Standard Density Air Volume Flow Rate", + OutputProcessor::Unit::m3_s, + state.dataHeatBal->ZoneITEq(itEqNum).AirVolFlowStdDensity, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).TotLatentGain, + "ITE Current Density Air Volume Flow Rate", + OutputProcessor::Unit::m3_s, + state.dataHeatBal->ZoneITEq(itEqNum).AirVolFlowCurDensity, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).TotLatentGainRate, + "ITE Air Mass Flow Rate", + OutputProcessor::Unit::kg_s, + state.dataHeatBal->ZoneITEq(itEqNum).AirMassFlow, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGain, + "ITE Air Inlet Dry-Bulb Temperature", + OutputProcessor::Unit::C, + state.dataHeatBal->ZoneITEq(itEqNum).AirInletDryBulbT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); + SetupOutputVariable(state, + "ITE Air Inlet Dewpoint Temperature", + OutputProcessor::Unit::C, + state.dataHeatBal->ZoneITEq(itEqNum).AirInletDewpointT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "Space Total Internal Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).TotTotalHeatGainRate, + "ITE Air Inlet Relative Humidity", + OutputProcessor::Unit::Perc, + state.dataHeatBal->ZoneITEq(itEqNum).AirInletRelHum, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); - } - - Array1D_bool addZoneOutputs; - addZoneOutputs.dimension(state.dataGlobal->NumOfZones, false); - Array1D_bool addSpaceOutputs; - addSpaceOutputs.dimension(state.dataGlobal->numSpaces, false); - - for (int peopleNum = 1; peopleNum <= state.dataHeatBal->TotPeople; ++peopleNum) { - // Set flags for zone and space total report variables - addZoneOutputs(state.dataHeatBal->People(peopleNum).ZonePtr) = true; - addSpaceOutputs(state.dataHeatBal->People(peopleNum).spaceIndex) = true; - // Object report variables + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->People(peopleNum).NumOcc, + "ITE Air Outlet Dry-Bulb Temperature", + OutputProcessor::Unit::C, + state.dataHeatBal->ZoneITEq(itEqNum).AirOutletDryBulbT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); + if (state.dataHeatBal->ZoneITEq(itEqNum).SupplyAirNodeNum != 0) { + SetupOutputVariable(state, + "ITE Supply Heat Index", + OutputProcessor::Unit::None, + state.dataHeatBal->ZoneITEq(itEqNum).SHI, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); + } SetupOutputVariable(state, - "People Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(peopleNum).RadGainEnergy, + "ITE Air Inlet Operating Range Exceeded Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeOutOfOperRange, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(peopleNum).RadGainRate, + "ITE Air Inlet Dry-Bulb Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeAboveDryBulbT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(peopleNum).ConGainEnergy, + "ITE Air Inlet Dry-Bulb Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeBelowDryBulbT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(peopleNum).ConGainRate, + "ITE Air Inlet Dewpoint Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeAboveDewpointT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(peopleNum).SenGainEnergy, + "ITE Air Inlet Dewpoint Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeBelowDewpointT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Sensible Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(peopleNum).SenGainRate, + "ITE Air Inlet Relative Humidity Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeAboveRH, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(peopleNum).LatGainEnergy, + "ITE Air Inlet Relative Humidity Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZoneITEq(itEqNum).TimeBelowRH, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(peopleNum).LatGainRate, + "ITE Air Inlet Dry-Bulb Temperature Difference Above Operating Range", + OutputProcessor::Unit::deltaC, + state.dataHeatBal->ZoneITEq(itEqNum).DryBulbTAboveDeltaT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->People(peopleNum).TotGainEnergy, + "ITE Air Inlet Dry-Bulb Temperature Difference Below Operating Range", + OutputProcessor::Unit::deltaC, + state.dataHeatBal->ZoneITEq(itEqNum).DryBulbTBelowDeltaT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->People(peopleNum).Name); + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->People(peopleNum).TotGainRate, + "ITE Air Inlet Dewpoint Temperature Difference Above Operating Range", + OutputProcessor::Unit::deltaC, + state.dataHeatBal->ZoneITEq(itEqNum).DewpointTAboveDeltaT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Air Temperature", - OutputProcessor::Unit::C, - state.dataHeatBal->People(peopleNum).TemperatureInZone, + "ITE Air Inlet Dewpoint Temperature Difference Below Operating Range", + OutputProcessor::Unit::deltaC, + state.dataHeatBal->ZoneITEq(itEqNum).DewpointTBelowDeltaT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); SetupOutputVariable(state, - "People Air Relative Humidity", + "ITE Air Inlet Relative Humidity Difference Above Operating Range", OutputProcessor::Unit::Perc, - state.dataHeatBal->People(peopleNum).RelativeHumidityInZone, + state.dataHeatBal->ZoneITEq(itEqNum).RHAboveDeltaRH, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->People(peopleNum).Name); + state.dataHeatBal->ZoneITEq(itEqNum).Name); + SetupOutputVariable(state, + "ITE Air Inlet Relative Humidity Difference Below Operating Range", + OutputProcessor::Unit::Perc, + state.dataHeatBal->ZoneITEq(itEqNum).RHBelowDeltaRH, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->ZoneITEq(itEqNum).Name); } + // Zone total report variables for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { if (addZoneOutputs(zoneNum)) { - // Zone total report variables SetupOutputVariable(state, - "Zone People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->ZnRpt(zoneNum).PeopleNumOcc, + "Zone ITE CPU Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ITEqCPUPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGain, + "Zone ITE Fan Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ITEqFanPower, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Radiant Heating Rate", + "Zone ITE UPS Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).PeopleRadGainRate, + state.dataHeatBal->ZnRpt(zoneNum).ITEqUPSPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Convective Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).PeopleConGain, + "Zone ITE CPU Electricity Rate at Design Inlet Conditions", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ITEqCPUPowerAtDesign, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Convective Heating Rate", + "Zone ITE Fan Electricity Rate at Design Inlet Conditions", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).PeopleConGainRate, + state.dataHeatBal->ZnRpt(zoneNum).ITEqFanPowerAtDesign, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGain, + "Zone ITE UPS Heat Gain to Zone Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ITEqUPSGainRateToZone, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Sensible Heating Rate", + "Zone ITE Total Heat Gain to Zone Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).PeopleSenGainRate, + state.dataHeatBal->ZnRpt(zoneNum).ITEqConGainRateToZone, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Latent Gain Energy", + "Zone ITE Adjusted Return Air Temperature", + OutputProcessor::Unit::W, + state.dataHeatBal->ZnRpt(zoneNum).ITEAdjReturnTemp, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone ITE CPU Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGain, + state.dataHeatBal->ZnRpt(zoneNum).ITEqCPUConsumption, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).PeopleLatGainRate, + "Zone ITE Fan Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ITEqFanConsumption, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Total Heating Energy", + "Zone ITE UPS Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGain, + state.dataHeatBal->ZnRpt(zoneNum).ITEqUPSConsumption, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).PeopleTotGainRate, + "Zone ITE CPU Electricity Energy at Design Inlet Conditions", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ITEqCPUEnergyAtDesign, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Fan Electricity Energy at Design Inlet Conditions", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ITEqFanEnergyAtDesign, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE UPS Heat Gain to Zone Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ITEqUPSGainEnergyToZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Total Heat Gain to Zone Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->ZnRpt(zoneNum).ITEqConGainEnergyToZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + + SetupOutputVariable(state, + "Zone ITE Standard Density Air Volume Flow Rate", + OutputProcessor::Unit::m3_s, + state.dataHeatBal->ZnRpt(zoneNum).ITEqAirVolFlowStdDensity, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Air Mass Flow Rate", + OutputProcessor::Unit::kg_s, + state.dataHeatBal->ZnRpt(zoneNum).ITEqAirMassFlow, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Average Supply Heat Index", + OutputProcessor::Unit::None, + state.dataHeatBal->ZnRpt(zoneNum).ITEqSHI, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); - // Reset zone output flag - addZoneOutputs(zoneNum) = false; + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Operating Range Exceeded Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeOutOfOperRange, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Dry-Bulb Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeAboveDryBulbT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Dry-Bulb Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeBelowDryBulbT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Dewpoint Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeAboveDewpointT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Dewpoint Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeBelowDewpointT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Relative Humidity Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeAboveRH, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, + "Zone ITE Any Air Inlet Relative Humidity Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->ZnRpt(zoneNum).ITEqTimeBelowRH, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->Zone(zoneNum).Name); } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; } // Space total report variables for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { if (addSpaceOutputs(spaceNum)) { SetupOutputVariable(state, - "Space People Occupant Count", - OutputProcessor::Unit::None, - state.dataHeatBal->spaceRpt(spaceNum).PeopleNumOcc, + "Space ITE CPU Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Fan Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE UPS Electricity Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSPower, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE CPU Electricity Rate at Design Inlet Conditions", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPowerAtDesign, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Fan Electricity Rate at Design Inlet Conditions", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPowerAtDesign, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE UPS Heat Gain to Zone Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainRateToZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Total Heat Gain to Zone Rate", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainRateToZone, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Adjusted Return Air Temperature", + OutputProcessor::Unit::W, + state.dataHeatBal->spaceRpt(spaceNum).ITEAdjReturnTemp, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Average, + state.dataHeatBal->space(spaceNum).Name); + + SetupOutputVariable(state, + "Space ITE CPU Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUConsumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Fan Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanConsumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE UPS Electricity Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSConsumption, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE CPU Electricity Energy at Design Inlet Conditions", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUEnergyAtDesign, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Radiant Heating Energy", + "Space ITE Fan Electricity Energy at Design Inlet Conditions", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGain, + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanEnergyAtDesign, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Radiant Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).PeopleRadGainRate, + "Space ITE UPS Heat Gain to Zone Energy", + OutputProcessor::Unit::J, + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainEnergyToZone, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Convective Heating Energy", + "Space ITE Total Heat Gain to Zone Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).PeopleConGain, + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainEnergyToZone, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, - "Space People Convective Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).PeopleConGainRate, + "Space ITE Standard Density Air Volume Flow Rate", + OutputProcessor::Unit::m3_s, + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirVolFlowStdDensity, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Sensible Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGain, + "Space ITE Air Mass Flow Rate", + OutputProcessor::Unit::kg_s, + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirMassFlow, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, + OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Sensible Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).PeopleSenGainRate, + "Space ITE Average Supply Heat Index", + OutputProcessor::Unit::None, + state.dataHeatBal->spaceRpt(spaceNum).ITEqSHI, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Latent Gain Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGain, + "Space ITE Any Air Inlet Operating Range Exceeded Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Latent Gain Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).PeopleLatGainRate, + "Space ITE Any Air Inlet Dry-Bulb Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDryBulbT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Total Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGain, + "Space ITE Any Air Inlet Dry-Bulb Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDryBulbT, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space People Total Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).PeopleTotGainRate, + "Space ITE Any Air Inlet Dewpoint Temperature Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDewpointT, OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Any Air Inlet Dewpoint Temperature Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDewpointT, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Any Air Inlet Relative Humidity Above Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveRH, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, + state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, + "Space ITE Any Air Inlet Relative Humidity Below Operating Range Time", + OutputProcessor::Unit::hr, + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowRH, + OutputProcessor::SOVTimeStepType::Zone, + OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); - // Reset space output flag - addSpaceOutputs(spaceNum) = false; } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; } - for (int lightsNum = 1; lightsNum <= state.dataHeatBal->TotLights; ++lightsNum) { + // Object report variables + for (int bbHeatNum = 1; bbHeatNum <= state.dataHeatBal->TotGasEquip; ++bbHeatNum) { // Set flags for zone and space total report variables - addZoneOutputs(state.dataHeatBal->Lights(lightsNum).ZonePtr) = true; - addSpaceOutputs(state.dataHeatBal->Lights(lightsNum).spaceIndex) = true; - // Object report variables - SetupOutputVariable(state, - "Lights Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).Power, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); - - SetupOutputVariable(state, - "Lights Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).RadGainEnergy, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name); + addZoneOutputs(state.dataHeatBal->ZoneBBHeat(bbHeatNum).ZonePtr) = true; + addSpaceOutputs(state.dataHeatBal->ZoneBBHeat(bbHeatNum).spaceIndex) = true; SetupOutputVariable(state, - "Lights Radiant Heating Rate", + "Baseboard Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).RadGainRate, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Power, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Visible Radiation Heating Energy", + "Baseboard Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).VisGainEnergy, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Consumption, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name, + _, + "Electricity", + "InteriorEquipment", + state.dataHeatBal->ZoneBBHeat(bbHeatNum).EndUseSubcategory, + "Building", + state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(bbHeatNum).ZonePtr).Name, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(bbHeatNum).ZonePtr).Multiplier, + state.dataHeatBal->Zone(state.dataHeatBal->ZoneBBHeat(bbHeatNum).ZonePtr).ListMultiplier, + _, + _, + state.dataHeatBal->space(state.dataHeatBal->ZoneBBHeat(bbHeatNum).spaceIndex).spaceType); SetupOutputVariable(state, - "Lights Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).VisGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); - SetupOutputVariable(state, - "Lights Convective Heating Energy", + "Baseboard Radiant Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).ConGainEnergy, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).RadGainEnergy, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Convective Heating Rate", + "Baseboard Radiant Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).ConGainRate, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).RadGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Return Air Heating Energy", + "Baseboard Convective Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).RetAirGainEnergy, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).ConGainEnergy, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Return Air Heating Rate", + "Baseboard Convective Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).RetAirGainRate, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).ConGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Total Heating Energy", + "Baseboard Total Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).TotGainEnergy, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).TotGainEnergy, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); SetupOutputVariable(state, - "Lights Total Heating Rate", + "Baseboard Total Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->Lights(lightsNum).TotGainRate, + state.dataHeatBal->ZoneBBHeat(bbHeatNum).TotGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Lights(lightsNum).Name); - SetupOutputVariable(state, - "Lights Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->Lights(lightsNum).Consumption, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Lights(lightsNum).Name, - _, - "Electricity", - "InteriorLights", - state.dataHeatBal->Lights(lightsNum).EndUseSubcategory, - "Building", - state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Name, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).Multiplier, - state.dataHeatBal->Zone(state.dataHeatBal->Lights(lightsNum).ZonePtr).ListMultiplier, - _, - _, - state.dataHeatBal->space(state.dataHeatBal->Lights(lightsNum).spaceIndex).spaceType); + state.dataHeatBal->ZoneBBHeat(bbHeatNum).Name); } // Zone total report variables for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { if (addZoneOutputs(zoneNum)) { SetupOutputVariable(state, - "Zone Lights Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); - SetupOutputVariable(state, - "Zone Lights Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsElecConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); - SetupOutputVariable(state, - "Zone Lights Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->Zone(zoneNum).Name); - SetupOutputVariable(state, - "Zone Lights Radiant Heating Rate", + "Zone Baseboard Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsRadGainRate, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Visible Radiation Heating Energy", + "Zone Baseboard Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsVisGain, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatElecCons, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); + SetupOutputVariable(state, - "Zone Lights Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsVisGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->Zone(zoneNum).Name); - SetupOutputVariable(state, - "Zone Lights Convective Heating Energy", + "Zone Baseboard Radiant Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsConGain, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatRadGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Convective Heating Rate", + "Zone Baseboard Radiant Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsConGainRate, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatRadGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Return Air Heating Energy", + "Zone Baseboard Convective Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGain, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatConGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Return Air Heating Rate", + "Zone Baseboard Convective Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsRetAirGainRate, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatConGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Total Heating Energy", + "Zone Baseboard Total Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->ZnRpt(zoneNum).LtsTotGain, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatTotGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->Zone(zoneNum).Name); SetupOutputVariable(state, - "Zone Lights Total Heating Rate", + "Zone Baseboard Total Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->ZnRpt(zoneNum).LtsTotGainRate, + state.dataHeatBal->ZnRpt(zoneNum).BaseHeatTotGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->Zone(zoneNum).Name); - // Reset zone output flag - addZoneOutputs(zoneNum) = false; } + // Reset zone output flag + addZoneOutputs(zoneNum) = false; } // Space total report variables for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { if (addSpaceOutputs(spaceNum)) { SetupOutputVariable(state, - "Space Lights Electricity Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsPower, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); - SetupOutputVariable(state, - "Space Lights Electricity Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsElecConsump, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); - SetupOutputVariable(state, - "Space Lights Radiant Heating Energy", - OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsRadGain, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Summed, - state.dataHeatBal->space(spaceNum).Name); - SetupOutputVariable(state, - "Space Lights Radiant Heating Rate", + "Space Baseboard Electricity Rate", OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsRadGainRate, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatPower, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Visible Radiation Heating Energy", + "Space Baseboard Electricity Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsVisGain, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatElecCons, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); + SetupOutputVariable(state, - "Space Lights Visible Radiation Heating Rate", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsVisGainRate, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); - SetupOutputVariable(state, - "Space Lights Convective Heating Energy", + "Space Baseboard Radiant Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsConGain, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Convective Heating Rate", + "Space Baseboard Radiant Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsConGainRate, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatRadGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Return Air Heating Energy", + "Space Baseboard Convective Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGain, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Return Air Heating Rate", + "Space Baseboard Convective Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsRetAirGainRate, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatConGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Total Heating Energy", + "Space Baseboard Total Heating Energy", OutputProcessor::Unit::J, - state.dataHeatBal->spaceRpt(spaceNum).LtsTotGain, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatTotGain, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Summed, state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, - "Space Lights Total Heating Rate", + "Space Baseboard Total Heating Rate", OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).LtsTotGainRate, + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatTotGainRate, OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); - // Reset space output flag - addSpaceOutputs(spaceNum) = false; } + // Reset space output flag + addSpaceOutputs(spaceNum) = false; } } @@ -6928,14 +7270,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneElectric(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneElectric(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneElectric(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneElectric(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotGasEquip; ++Loop) { @@ -6959,14 +7298,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneGas(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneGas(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneGas(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneGas(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotOthEquip; ++Loop) { @@ -6988,14 +7324,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneOtherEq(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotHWEquip; ++Loop) { @@ -7018,14 +7351,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneHWEq(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneHWEq(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotStmEquip; ++Loop) { @@ -7048,14 +7378,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneSteamEq(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotBBHeat; ++Loop) { @@ -7085,12 +7412,9 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate; state.dataHeatBal->ZoneIntGain(NZ).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; - for (int index = 1; index <= int(state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs.size()); ++index) { - int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).spacePtrs(index); - Real64 spaceFrac = state.dataHeatBal->ZoneBBHeat(Loop).spaceFracs(index); - state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate * spaceFrac; - state.dataHeatBal->spaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate * spaceFrac; - } + int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).spaceIndex; + state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate; + state.dataHeatBal->spaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; } for (int Loop = 1; Loop <= state.dataHeatBal->TotCO2Gen; ++Loop) { @@ -7100,7 +7424,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(NZ).CO2Rate += state.dataHeatBal->ZoneCO2Gen(Loop).CO2GainRate; } - if (state.dataHeatBal->NumZoneITEqStatements > 0) CalcZoneITEq(state); + if (state.dataHeatBal->TotITEquip > 0) CalcZoneITEq(state); CalcWaterThermalTankZoneGains(state); PipeHeatTransfer::PipeHTData::CalcZonePipesHeatGain(state); @@ -7261,7 +7585,7 @@ namespace InternalHeatGains { // Zero out time step variables // Object report variables - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { state.dataHeatBal->ZoneITEq(Loop).CPUPower = 0.0; state.dataHeatBal->ZoneITEq(Loop).FanPower = 0.0; state.dataHeatBal->ZoneITEq(Loop).UPSPower = 0.0; @@ -7335,7 +7659,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(Loop).SumToutMinusTSup = 0.0; } // Zone init loop - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { // Get schedules NZ = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; OperSchedFrac = GetCurrentScheduleValue(state, state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr); @@ -7575,7 +7899,7 @@ namespace InternalHeatGains { } // ZoneITEq calc loop // Zone-level sensible heat index - for (Loop = 1; Loop <= state.dataHeatBal->NumZoneITEqStatements; ++Loop) { + for (Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { int ZN = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; if (state.dataHeatBal->ZnRpt(NZ).SumToutMinusTSup != 0.0) { state.dataHeatBal->ZnRpt(ZN).ITEqSHI = state.dataHeatBal->ZnRpt(NZ).SumTinMinusTSup / state.dataHeatBal->ZnRpt(NZ).SumToutMinusTSup; diff --git a/src/EnergyPlus/InternalHeatGains.hh b/src/EnergyPlus/InternalHeatGains.hh index 0c27c93f863..d63bbc463d2 100644 --- a/src/EnergyPlus/InternalHeatGains.hh +++ b/src/EnergyPlus/InternalHeatGains.hh @@ -73,7 +73,8 @@ namespace InternalHeatGains { EPVector &inputObjects, int &numInputObjects, int &numGainInstances, - bool &errors); + bool &errors, + const bool zoneListNotAllowed = false); void setupIHGOutputs(EnergyPlusData &state); diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 46d5a4cc8a0..6bee827db2a 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -9665,9 +9665,6 @@ void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, } } - constexpr int bySpaceType = 2; - - int numEndUses = state.dataGlobalConst->iEndUse.size(); int numSubCatOrTypes = 0; int numRows = 0; if (tableType == endUseSubTableType::bySubCategory) { @@ -9682,7 +9679,7 @@ void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, needOtherRow(i) = false; // set array to all false assuming no other rows are needed } for (int iResource = 1; iResource <= 13; ++iResource) { - for (int jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (tableType == endUseSubTableType::bySubCategory) { numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; } else if (tableType == endUseSubTableType::bySpaceType) { @@ -9707,7 +9704,7 @@ void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, } } - for (int jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (tableType == endUseSubTableType::bySubCategory) { numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; } else if (tableType == endUseSubTableType::bySpaceType) { @@ -9738,7 +9735,7 @@ void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, // Build row head and subcategories columns int i = 1; - for (size_t jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (tableType == endUseSubTableType::bySubCategory) { numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; } else if (tableType == endUseSubTableType::bySpaceType) { @@ -9771,7 +9768,7 @@ void writeBEPSEndUseBySubCatOrSpaceType(EnergyPlusData &state, for (int iResource = 1; iResource <= 13; ++iResource) { i = 1; - for (size_t jEndUse = 1; jEndUse <= numEndUses; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (tableType == endUseSubTableType::bySubCategory) { numSubCatOrTypes = state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; } else if (tableType == endUseSubTableType::bySpaceType) { @@ -12043,57 +12040,45 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr } for (int iElecEquip = 1; iElecEquip <= state.dataHeatBal->TotElecEquip; ++iElecEquip) { auto curElecEquip = state.dataHeatBal->ZoneElectric(iElecEquip); - for (int iSpace = 1; iSpace <= int(curElecEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curElecEquip.spacePtrs(iSpace); - Real64 const elecEquip = curElecEquip.DesignLevel * curElecEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += elecEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += elecEquip; - } + int const spaceNum = curElecEquip.spaceIndex; + Real64 const elecEquip = curElecEquip.DesignLevel; + spaceTotPlugProcess(spaceNum) += elecEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += elecEquip; } for (int iGasEquip = 1; iGasEquip <= state.dataHeatBal->TotGasEquip; ++iGasEquip) { auto curGasEquip = state.dataHeatBal->ZoneGas(iGasEquip); - for (int iSpace = 1; iSpace <= int(curGasEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curGasEquip.spacePtrs(iSpace); - Real64 const gasEquip = curGasEquip.DesignLevel * curGasEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += gasEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += gasEquip; - } + int const spaceNum = curGasEquip.spaceIndex; + Real64 const gasEquip = curGasEquip.DesignLevel; + spaceTotPlugProcess(spaceNum) += gasEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += gasEquip; } for (int iOthEquip = 1; iOthEquip <= state.dataHeatBal->TotOthEquip; ++iOthEquip) { auto curOthEquip = state.dataHeatBal->ZoneOtherEq(iOthEquip); - for (int iSpace = 1; iSpace <= int(curOthEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curOthEquip.spacePtrs(iSpace); - Real64 const othEquip = curOthEquip.DesignLevel * curOthEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += othEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += othEquip; - } + int const spaceNum = curOthEquip.spaceIndex; + Real64 const othEquip = curOthEquip.DesignLevel; + spaceTotPlugProcess(spaceNum) += othEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += othEquip; } for (int iHWEquip = 1; iHWEquip <= state.dataHeatBal->TotHWEquip; ++iHWEquip) { auto curHWEquip = state.dataHeatBal->ZoneHWEq(iHWEquip); - for (int iSpace = 1; iSpace <= int(curHWEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curHWEquip.spacePtrs(iSpace); - Real64 const hwEquip = curHWEquip.DesignLevel * curHWEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += hwEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += hwEquip; - } + int const spaceNum = curHWEquip.spaceIndex; + Real64 const hwEquip = curHWEquip.DesignLevel; + spaceTotPlugProcess(spaceNum) += hwEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += hwEquip; } for (int iSteamEquip = 1; iSteamEquip <= state.dataHeatBal->TotStmEquip; ++iSteamEquip) { auto curSteamEquip = state.dataHeatBal->ZoneSteamEq(iSteamEquip); - for (int iSpace = 1; iSpace <= int(curSteamEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curSteamEquip.spacePtrs(iSpace); - Real64 const steamEquip = curSteamEquip.DesignLevel * curSteamEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += steamEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += steamEquip; - } + int const spaceNum = curSteamEquip.spaceIndex; + Real64 const steamEquip = curSteamEquip.DesignLevel; + spaceTotPlugProcess(spaceNum) += steamEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += steamEquip; } - for (int iITEquip = 1; iITEquip <= state.dataHeatBal->NumZoneITEqStatements; ++iITEquip) { + for (int iITEquip = 1; iITEquip <= state.dataHeatBal->TotITEquip; ++iITEquip) { auto curITEquip = state.dataHeatBal->ZoneITEq(iITEquip); - for (int iSpace = 1; iSpace <= int(curITEquip.spacePtrs.size()); ++iSpace) { - int const spaceNum = curITEquip.spacePtrs(iSpace); - Real64 const itEquip = curITEquip.DesignTotalPower * curITEquip.spaceFracs(iSpace); - spaceTotPlugProcess(spaceNum) += itEquip; - spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += itEquip; - } + int const spaceNum = curITEquip.spaceIndex; + Real64 const itEquip = curITEquip.DesignTotalPower; + spaceTotPlugProcess(spaceNum) += itEquip; + spaceTypeTotPlugProcess(state.dataHeatBal->space(spaceNum).spaceTypeNum) += itEquip; } // re-use existing zone total variables diff --git a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON index aa88af8a025..bed05af8cbe 100644 --- a/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON +++ b/testfiles/RefBldgMediumOfficeNew2004_Chicago_epJSON.epJSON @@ -5615,7 +5615,7 @@ "fraction_lost": 0.0, "fraction_radiant": 0.5, "schedule_name": "BLDG_ELEVATORS", - "zone_or_zonelist_name": "Core_bottom" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_bottom" }, "Core_bottom_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5625,7 +5625,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_bottom" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_bottom" }, "Core_mid_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5635,7 +5635,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_mid" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_mid" }, "Core_top_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5645,7 +5645,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Core_top" + "zone_or_zonelist_or_space_or_spacelist_name": "Core_top" }, "Perimeter_bot_ZN_1_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5655,7 +5655,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_1" }, "Perimeter_bot_ZN_2_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5665,7 +5665,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_2" }, "Perimeter_bot_ZN_3_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5675,7 +5675,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_3" }, "Perimeter_bot_ZN_4_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5685,7 +5685,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_bot_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_bot_ZN_4" }, "Perimeter_mid_ZN_1_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5695,7 +5695,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_1" }, "Perimeter_mid_ZN_2_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5705,7 +5705,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_2" }, "Perimeter_mid_ZN_3_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5715,7 +5715,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_3" }, "Perimeter_mid_ZN_4_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5725,7 +5725,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_mid_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_mid_ZN_4" }, "Perimeter_top_ZN_1_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5735,7 +5735,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_1" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_1" }, "Perimeter_top_ZN_2_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5745,7 +5745,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_2" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_2" }, "Perimeter_top_ZN_3_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5755,7 +5755,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_3" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_3" }, "Perimeter_top_ZN_4_PlugMisc_Equip": { "design_level_calculation_method": "Watts/Area", @@ -5765,7 +5765,7 @@ "fraction_radiant": 0.5, "schedule_name": "BLDG_EQUIP_SCH", "watts_per_zone_floor_area": 10.76, - "zone_or_zonelist_name": "Perimeter_top_ZN_4" + "zone_or_zonelist_or_space_or_spacelist_name": "Perimeter_top_ZN_4" } }, "EnvironmentalImpactFactors": { diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 4a171a4750b..c6b99e51a83 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -6290,22 +6290,13 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal) state->dataHeatBal->People(3).NumberOfPeople = 1.0; state->dataHeatBal->ZoneElectric(1).ZonePtr = 1; - state->dataHeatBal->ZoneElectric(1).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(1).spacePtrs(1) = 1; - state->dataHeatBal->ZoneElectric(1).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(1).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(1).spaceIndex = 1; state->dataHeatBal->ZoneElectric(1).DesignLevel = 500.0; state->dataHeatBal->ZoneElectric(2).ZonePtr = 2; - state->dataHeatBal->ZoneElectric(2).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(2).spacePtrs(1) = 2; - state->dataHeatBal->ZoneElectric(2).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(2).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(2).spaceIndex = 2; state->dataHeatBal->ZoneElectric(2).DesignLevel = 50.0; state->dataHeatBal->ZoneElectric(3).ZonePtr = 3; - state->dataHeatBal->ZoneElectric(3).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(3).spacePtrs(1) = 3; - state->dataHeatBal->ZoneElectric(3).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(3).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(3).spaceIndex = 3; state->dataHeatBal->ZoneElectric(3).DesignLevel = 5.0; // zone @@ -9333,22 +9324,13 @@ TEST_F(SQLiteFixture, WriteVeriSumTable_TestNotPartOfTotal_DualUnits) state->dataHeatBal->People(3).NumberOfPeople = 1.0; state->dataHeatBal->ZoneElectric(1).ZonePtr = 1; - state->dataHeatBal->ZoneElectric(1).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(1).spacePtrs(1) = 1; - state->dataHeatBal->ZoneElectric(1).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(1).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(1).spaceIndex = 1; state->dataHeatBal->ZoneElectric(1).DesignLevel = 500.0; state->dataHeatBal->ZoneElectric(2).ZonePtr = 2; - state->dataHeatBal->ZoneElectric(2).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(2).spacePtrs(1) = 2; - state->dataHeatBal->ZoneElectric(2).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(2).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(2).spaceIndex = 2; state->dataHeatBal->ZoneElectric(2).DesignLevel = 50.0; state->dataHeatBal->ZoneElectric(3).ZonePtr = 3; - state->dataHeatBal->ZoneElectric(3).spacePtrs.allocate(1); - state->dataHeatBal->ZoneElectric(3).spacePtrs(1) = 3; - state->dataHeatBal->ZoneElectric(3).spaceFracs.allocate(1); - state->dataHeatBal->ZoneElectric(3).spaceFracs(1) = 1.0; + state->dataHeatBal->ZoneElectric(3).spaceIndex = 3; state->dataHeatBal->ZoneElectric(3).DesignLevel = 5.0; // zone From 3748c1215d2fc3ff8069698e785883954d9c58df Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 15:20:03 -0500 Subject: [PATCH 89/98] Space - Replace new example file --- ...paces.idf => 5ZoneAirCooledWithSpaces.idf} | 699 ++++++++++-------- testfiles/CMakeLists.txt | 2 +- 2 files changed, 388 insertions(+), 313 deletions(-) rename testfiles/{5ZoneAirCooledWithSimpleSpaces.idf => 5ZoneAirCooledWithSpaces.idf} (88%) diff --git a/testfiles/5ZoneAirCooledWithSimpleSpaces.idf b/testfiles/5ZoneAirCooledWithSpaces.idf similarity index 88% rename from testfiles/5ZoneAirCooledWithSimpleSpaces.idf rename to testfiles/5ZoneAirCooledWithSpaces.idf index 4c3b831f813..bbf155377b5 100644 --- a/testfiles/5ZoneAirCooledWithSimpleSpaces.idf +++ b/testfiles/5ZoneAirCooledWithSpaces.idf @@ -3,8 +3,7 @@ !-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. !- Use '!' comments if they need to be retained when using the IDFEditor. - -! 5ZoneAirCooled.idf +! 5ZoneAirCooledWithSpaces.idf ! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones and return plenum. ! ! Highlights: Electric chiller with air cooled condenser; autosized preheating and precooling water coils in the @@ -158,11 +157,26 @@ ScheduleTypeLimits, CONTINUOUS; !- Numeric Type RunPeriod, - Run Period 1, !- Name + January, !- Name 1, !- Begin Month 1, !- Begin Day of Month , !- Begin Year - 12, !- End Month + 1, !- End Month + 31, !- End Day of Month + , !- End Year + Tuesday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +RunPeriod, + July, !- Name + 7, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 7, !- End Month 31, !- End Day of Month , !- End Year Tuesday, !- Day of Week for Start Day @@ -183,8 +197,8 @@ SimulationControl, Yes, !- Do Zone Sizing Calculation Yes, !- Do System Sizing Calculation Yes, !- Do Plant Sizing Calculation - Yes, !- Run Simulation for Sizing Periods - No, !- Run Simulation for Weather File Run Periods + No, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods No, !- Do HVAC Sizing Simulation for Sizing Periods 1; !- Maximum Number of HVAC Sizing Simulation Passes @@ -537,39 +551,52 @@ Schedule:Compact, Until: 24:00, 0.0; !- Field 4 Space, - Space 1, !- Name - SPACE1-1, !- Zone Name + Space 5 Office, !- Name + Zone 5, !- Zone Name , !- Floor Area {m2} Office, !- Space Type - Abc, !- Tag 1 - 123; !- Tag 2 + Std 62.1 Office Space, !- Tag 1 + Std 90.1 Office-Enclosed; !- Tag 2 + +Space, + Space 5 Conference, !- Name + Zone 5, !- Zone Name + , !- Floor Area {m2} + Conference, !- Space Type + Std 62.1 Conference/meeting, !- Tag 1 + Std 90.1 Conference/Meeting/Multipurpose; !- Tag 2 Space, Space 2, !- Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Floor Area {m2} Reception, !- Space Type - 456, !- Tag 1 - DEF, !- Tag 2 - Nonsense; !- Tag 3 + Std 62.1 Reception areas, !- Tag 1 + Std 90.1 Lobby; !- Tag 2 Space, Space 3, !- Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Floor Area {m2} - Office; !- Space Type + Office, !- Space Type + Std 62.1 Office Space, !- Tag 1 + Std 90.1 Office-Open Plan; !- Tag 2 Space, Space 4, !- Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Floor Area {m2} - Office; !- Space Type + Office, !- Space Type + Std 62.1 Office Space, !- Tag 1 + Std 90.1 Office-Open Plan; !- Tag 2 Space, - Space 5, !- Name - SPACE5-1, !- Zone Name + Space 1, !- Name + Zone 1, !- Zone Name , !- Floor Area {m2} - Office; !- Space Type + Office, !- Space Type + Std 62.1 Office Space, !- Tag 1 + Std 90.1 Office-Open Plan; !- Tag 2 SpaceList, AllConditionedSpaces, !- Name @@ -577,7 +604,16 @@ SpaceList, Space 2, !- Space 2 Name Space 3, !- Space 3 Name Space 4, !- Space 4 Name - Space 5; !- Space 5 Name + Space 5 Office, !- Space 5 Name + Space 5 Conference; !- Space 6 Name + +ZoneList, + All Zones, !- Name + Zone 1, !- Zone 1 Name + Zone 2, !- Zone 2 Name + Zone 3, !- Zone 3 Name + Zone 4, !- Zone 4 Name + Zone 5; !- Zone 5 Name Zone, PLENUM-1, !- Name @@ -763,7 +799,7 @@ BuildingSurface:Detailed, 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} Zone, - SPACE1-1, !- Name + Zone 1, !- Name 0, !- Direction of Relative North {deg} 0, 0, 0, !- X,Y,Z {m} 1, !- Type @@ -772,8 +808,8 @@ Zone, 239.247360229; !- Volume {m3} ZoneInfiltration:DesignFlowRate, - SPACE1-1 Infil 1, !- Name - SPACE1-1, !- Zone or ZoneList Name + Zone 1 Infil 1, !- Name + Zone 1, !- Zone or ZoneList Name INFIL-SCH, !- Schedule Name flow/zone, !- Design Flow Rate Calculation Method 0.032, !- Design Flow Rate {m3/s} @@ -786,8 +822,8 @@ ZoneInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient People, - SPACE1-1 People 1, !- Name - SPACE1-1, !- Zone or ZoneList or Space or SpaceList Name + Zone 1 People, !- Name + Zone 1, !- Zone or ZoneList or Space or SpaceList Name OCCUPY-1, !- Number of People Schedule Name people, !- Number of People Calculation Method 11, !- Number of People @@ -798,8 +834,8 @@ People, ActSchd; !- Activity Level Schedule Name Lights, - SPACE1-1 Lights 1, !- Name - SPACE1-1, !- Zone or ZoneList Name + Zone 1 Lights 1, !- Name + Zone 1, !- Zone or ZoneList Name LIGHTS-1, !- Schedule Name LightingLevel, !- Design Level Calculation Method 1584, !- Lighting Level {W} @@ -812,8 +848,8 @@ Lights, GeneralLights; !- End-Use Subcategory ElectricEquipment, - SPACE1-1 ElecEq 1, !- Name - SPACE1-1, !- Zone or ZoneList Name + Zone 1 ElecEq 1, !- Name + Zone 1, !- Zone or ZoneList Name EQUIP-1, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method 1056, !- Design Level {W} @@ -827,7 +863,7 @@ BuildingSurface:Detailed, FRONT-1, !- Name WALL, !- Surface Type WALL-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -894,7 +930,7 @@ BuildingSurface:Detailed, C1-1, !- Name CEILING, !- Surface Type CLNG-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object @@ -911,7 +947,7 @@ BuildingSurface:Detailed, F1-1, !- Name FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -928,7 +964,7 @@ BuildingSurface:Detailed, SB12, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object @@ -945,7 +981,7 @@ BuildingSurface:Detailed, SB14, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object @@ -962,7 +998,7 @@ BuildingSurface:Detailed, SB15, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE1-1, !- Zone Name + Zone 1, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object @@ -976,7 +1012,7 @@ BuildingSurface:Detailed, 3.7, 3.7, 2.4; !- X,Y,Z 4 {m} Zone, - SPACE2-1, !- Name + Zone 2, !- Name 0, !- Direction of Relative North {deg} 0, 0, 0, !- X,Y,Z {m} 1, !- Type @@ -985,8 +1021,8 @@ Zone, 103.311355591; !- Volume {m3} ZoneInfiltration:DesignFlowRate, - SPACE2-1 Infil 1, !- Name - SPACE2-1, !- Zone or ZoneList Name + Zone 2 Infil 1, !- Name + Zone 2, !- Zone or ZoneList Name INFIL-SCH, !- Schedule Name flow/zone, !- Design Flow Rate Calculation Method 0.014, !- Design Flow Rate {m3/s} @@ -999,8 +1035,8 @@ ZoneInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient People, - SPACE2-1 People 1, !- Name - SPACE2-1, !- Zone or ZoneList or Space or SpaceList Name + Zone 2 People, !- Name + Zone 2, !- Zone or ZoneList or Space or SpaceList Name OCCUPY-1, !- Number of People Schedule Name people, !- Number of People Calculation Method 5, !- Number of People @@ -1011,8 +1047,8 @@ People, ActSchd; !- Activity Level Schedule Name Lights, - SPACE2-1 Lights 1, !- Name - SPACE2-1, !- Zone or ZoneList Name + Zone 2 Lights 1, !- Name + Zone 2, !- Zone or ZoneList Name LIGHTS-1, !- Schedule Name LightingLevel, !- Design Level Calculation Method 684, !- Lighting Level {W} @@ -1025,8 +1061,8 @@ Lights, GeneralLights; !- End-Use Subcategory ElectricEquipment, - SPACE2-1 ElecEq 1, !- Name - SPACE2-1, !- Zone or ZoneList Name + Zone 2 ElecEq 1, !- Name + Zone 2, !- Zone or ZoneList Name EQUIP-1, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method 456, !- Design Level {W} @@ -1040,7 +1076,7 @@ BuildingSurface:Detailed, RIGHT-1, !- Name WALL, !- Surface Type WALL-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1072,7 +1108,7 @@ BuildingSurface:Detailed, C2-1, !- Name CEILING, !- Surface Type CLNG-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object @@ -1089,7 +1125,7 @@ BuildingSurface:Detailed, F2-1, !- Name FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1106,7 +1142,7 @@ BuildingSurface:Detailed, SB21, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object @@ -1123,7 +1159,7 @@ BuildingSurface:Detailed, SB23, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object @@ -1140,7 +1176,7 @@ BuildingSurface:Detailed, SB25, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE2-1, !- Zone Name + Zone 2, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object @@ -1154,7 +1190,7 @@ BuildingSurface:Detailed, 26.8, 3.7, 2.4; !- X,Y,Z 4 {m} Zone, - SPACE3-1, !- Name + Zone 3, !- Name 0, !- Direction of Relative North {deg} 0, 0, 0, !- X,Y,Z {m} 1, !- Type @@ -1163,8 +1199,8 @@ Zone, 239.247360229; !- Volume {m3} ZoneInfiltration:DesignFlowRate, - SPACE3-1 Infil 1, !- Name - SPACE3-1, !- Zone or ZoneList Name + Zone 3 Infil 1, !- Name + Zone 3, !- Zone or ZoneList Name INFIL-SCH, !- Schedule Name flow/zone, !- Design Flow Rate Calculation Method 0.032, !- Design Flow Rate {m3/s} @@ -1177,8 +1213,8 @@ ZoneInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient People, - SPACE3-1 People 1, !- Name - SPACE3-1, !- Zone or ZoneList or Space or SpaceList Name + Zone 3 People, !- Name + Zone 3, !- Zone or ZoneList or Space or SpaceList Name OCCUPY-1, !- Number of People Schedule Name people, !- Number of People Calculation Method 11, !- Number of People @@ -1189,8 +1225,8 @@ People, ActSchd; !- Activity Level Schedule Name Lights, - SPACE3-1 Lights 1, !- Name - SPACE3-1, !- Zone or ZoneList Name + Zone 3 Lights 1, !- Name + Zone 3, !- Zone or ZoneList Name LIGHTS-1, !- Schedule Name LightingLevel, !- Design Level Calculation Method 1584, !- Lighting Level {W} @@ -1203,8 +1239,8 @@ Lights, GeneralLights; !- End-Use Subcategory ElectricEquipment, - SPACE3-1 ElecEq 1, !- Name - SPACE3-1, !- Zone or ZoneList Name + Zone 3 ElecEq 1, !- Name + Zone 3, !- Zone or ZoneList Name EQUIP-1, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method 1056, !- Design Level {W} @@ -1218,7 +1254,7 @@ BuildingSurface:Detailed, BACK-1, !- Name WALL, !- Surface Type WALL-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1265,7 +1301,7 @@ BuildingSurface:Detailed, C3-1, !- Name CEILING, !- Surface Type CLNG-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object @@ -1282,7 +1318,7 @@ BuildingSurface:Detailed, F3-1, !- Name FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1299,7 +1335,7 @@ BuildingSurface:Detailed, SB32, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object @@ -1316,7 +1352,7 @@ BuildingSurface:Detailed, SB34, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object @@ -1333,7 +1369,7 @@ BuildingSurface:Detailed, SB35, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE3-1, !- Zone Name + Zone 3, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object @@ -1347,7 +1383,7 @@ BuildingSurface:Detailed, 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} Zone, - SPACE4-1, !- Name + Zone 4, !- Name 0, !- Direction of Relative North {deg} 0, 0, 0, !- X,Y,Z {m} 1, !- Type @@ -1356,8 +1392,8 @@ Zone, 103.311355591; !- Volume {m3} ZoneInfiltration:DesignFlowRate, - SPACE4-1 Infil 1, !- Name - SPACE4-1, !- Zone or ZoneList Name + Zone 4 Infil 1, !- Name + Zone 4, !- Zone or ZoneList Name INFIL-SCH, !- Schedule Name flow/zone, !- Design Flow Rate Calculation Method 0.014, !- Design Flow Rate {m3/s} @@ -1370,8 +1406,8 @@ ZoneInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient People, - SPACE4-1 People 1, !- Name - SPACE4-1, !- Zone or ZoneList or Space or SpaceList Name + Zone 4 People, !- Name + Zone 4, !- Zone or ZoneList or Space or SpaceList Name OCCUPY-1, !- Number of People Schedule Name people, !- Number of People Calculation Method 5, !- Number of People @@ -1382,8 +1418,8 @@ People, ActSchd; !- Activity Level Schedule Name Lights, - SPACE4-1 Lights 1, !- Name - SPACE4-1, !- Zone or ZoneList Name + Zone 4 Lights 1, !- Name + Zone 4, !- Zone or ZoneList Name LIGHTS-1, !- Schedule Name LightingLevel, !- Design Level Calculation Method 684, !- Lighting Level {W} @@ -1396,8 +1432,8 @@ Lights, GeneralLights; !- End-Use Subcategory ElectricEquipment, - SPACE4-1 ElecEq 1, !- Name - SPACE4-1, !- Zone or ZoneList Name + Zone 4 ElecEq 1, !- Name + Zone 4, !- Zone or ZoneList Name EQUIP-1, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method 456, !- Design Level {W} @@ -1411,7 +1447,7 @@ BuildingSurface:Detailed, LEFT-1, !- Name WALL, !- Surface Type WALL-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1443,7 +1479,7 @@ BuildingSurface:Detailed, C4-1, !- Name CEILING, !- Surface Type CLNG-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object @@ -1460,7 +1496,7 @@ BuildingSurface:Detailed, F4-1, !- Name FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object @@ -1477,7 +1513,7 @@ BuildingSurface:Detailed, SB41, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object @@ -1494,7 +1530,7 @@ BuildingSurface:Detailed, SB43, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object @@ -1511,7 +1547,7 @@ BuildingSurface:Detailed, SB45, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE4-1, !- Zone Name + Zone 4, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object @@ -1525,7 +1561,7 @@ BuildingSurface:Detailed, 3.7, 11.6, 2.4; !- X,Y,Z 4 {m} Zone, - SPACE5-1, !- Name + Zone 5, !- Name 0, !- Direction of Relative North {deg} 0, 0, 0, !- X,Y,Z {m} 1, !- Type @@ -1534,8 +1570,8 @@ Zone, 447.682556152; !- Volume {m3} ZoneInfiltration:DesignFlowRate, - SPACE5-1 Infil 1, !- Name - SPACE5-1, !- Zone or ZoneList Name + Zone 5 Infil 1, !- Name + Zone 5, !- Zone or ZoneList Name INFIL-SCH, !- Schedule Name flow/zone, !- Design Flow Rate Calculation Method 0.062, !- Design Flow Rate {m3/s} @@ -1548,8 +1584,8 @@ ZoneInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient People, - SPACE5-1 People 1, !- Name - SPACE5-1, !- Zone or ZoneList or Space or SpaceList Name + Zone 5 People, !- Name + Zone 5, !- Zone or ZoneList or Space or SpaceList Name OCCUPY-1, !- Number of People Schedule Name people, !- Number of People Calculation Method 20, !- Number of People @@ -1559,9 +1595,27 @@ People, , !- Sensible Heat Fraction ActSchd; !- Activity Level Schedule Name +People, + ZoneList People, !- Name + All Zones, !- Zone or ZoneList or Space or SpaceList Name + OCCUPY-1, !- Number of People Schedule Name + People/Area, !- Number of People Calculation Method + , !- Number of People + 0.5, !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + autocalculate, !- Sensible Heat Fraction + ActSchd, !- Activity Level Schedule Name + 0.0000000382, !- 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 Efficiency Schedule Name + ClothingInsulationSchedule; !- Clothing Insulation Calculation Method + Lights, - SPACE5-1 Lights 1, !- Name - SPACE5-1, !- Zone or ZoneList Name + Zone 5 Lights 1, !- Name + Zone 5, !- Zone or ZoneList Name LIGHTS-1, !- Schedule Name LightingLevel, !- Design Level Calculation Method 2964, !- Lighting Level {W} @@ -1574,8 +1628,8 @@ Lights, GeneralLights; !- End-Use Subcategory ElectricEquipment, - SPACE5-1 ElecEq 1, !- Name - SPACE5-1, !- Zone or ZoneList Name + Zone 5 ElecEq 1, !- Name + Zone 5, !- Zone or ZoneList Name EQUIP-1, !- Schedule Name EquipmentLevel, !- Design Level Calculation Method 1976, !- Design Level {W} @@ -1589,7 +1643,7 @@ BuildingSurface:Detailed, C5-1, !- Name CEILING, !- Surface Type CLNG-1, !- Construction Name - SPACE5-1, !- Zone Name + Zone 5, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object @@ -1603,11 +1657,11 @@ BuildingSurface:Detailed, 26.8, 11.6, 2.4; !- X,Y,Z 4 {m} BuildingSurface:Detailed, - F5-1, !- Name + F5-1a, !- Name FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name - SPACE5-1, !- Zone Name - , !- Space Name + Zone 5, !- Zone Name + Space 5 Office, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1616,6 +1670,23 @@ BuildingSurface:Detailed, 4, !- Number of Vertices 26.8, 11.6, 0.0, !- X,Y,Z 1 {m} 26.8, 3.7, 0.0, !- X,Y,Z 2 {m} + 6.7, 3.7, 0.0, !- X,Y,Z 3 {m} + 6.7, 11.6, 0.0; !- X,Y,Z 4 {m} + +BuildingSurface:Detailed, + F5-1b, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + Zone 5, !- Zone Name + Space 5 Conference, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 6.7, 11.6, 0.0, !- X,Y,Z 1 {m} + 6.7, 3.7, 0.0, !- X,Y,Z 2 {m} 3.7, 3.7, 0.0, !- X,Y,Z 3 {m} 3.7, 11.6, 0.0; !- X,Y,Z 4 {m} @@ -1623,7 +1694,7 @@ BuildingSurface:Detailed, SB51, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE5-1, !- Zone Name + Zone 5, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object @@ -1640,7 +1711,7 @@ BuildingSurface:Detailed, SB52, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE5-1, !- Zone Name + Zone 5, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object @@ -1657,7 +1728,7 @@ BuildingSurface:Detailed, SB53, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE5-1, !- Zone Name + Zone 5, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object @@ -1674,7 +1745,7 @@ BuildingSurface:Detailed, SB54, !- Name WALL, !- Surface Type INT-WALL-1, !- Construction Name - SPACE5-1, !- Zone Name + Zone 5, !- Zone Name , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object @@ -1692,7 +1763,7 @@ Sizing:Parameters, 1.0; !- Cooling Sizing Factor Sizing:Zone, - SPACE1-1, !- Zone or ZoneList Name + Zone 1, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -1701,7 +1772,7 @@ Sizing:Zone, , !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - SZ DSOA SPACE1-1, !- Design Specification Outdoor Air Object Name + SZ DSOA Zone 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 @@ -1721,14 +1792,14 @@ Sizing:Zone, autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, - SZ DSOA SPACE1-1, !- Name + SZ DSOA Zone 1, !- Name sum, !- Outdoor Air Method 0.00236, !- Outdoor Air Flow per Person {m3/s-person} 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} Sizing:Zone, - SPACE2-1, !- Zone or ZoneList Name + Zone 2, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -1737,7 +1808,7 @@ Sizing:Zone, , !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - SZ DSOA SPACE2-1, !- Design Specification Outdoor Air Object Name + SZ DSOA Zone 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 @@ -1757,14 +1828,14 @@ Sizing:Zone, autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, - SZ DSOA SPACE2-1, !- Name + SZ DSOA Zone 2, !- Name sum, !- Outdoor Air Method 0.00236, !- Outdoor Air Flow per Person {m3/s-person} 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} Sizing:Zone, - SPACE3-1, !- Zone or ZoneList Name + Zone 3, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -1773,7 +1844,7 @@ Sizing:Zone, , !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - SZ DSOA SPACE3-1, !- Design Specification Outdoor Air Object Name + SZ DSOA Zone 3, !- Design Specification Outdoor Air Object Name 0.0, !- Zone Heating Sizing Factor 0.0, !- Zone Cooling Sizing Factor DesignDayWithLimit, !- Cooling Design Air Flow Method @@ -1793,14 +1864,14 @@ Sizing:Zone, autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, - SZ DSOA SPACE3-1, !- Name + SZ DSOA Zone 3, !- Name sum, !- Outdoor Air Method 0.00236, !- Outdoor Air Flow per Person {m3/s-person} 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} Sizing:Zone, - SPACE4-1, !- Zone or ZoneList Name + Zone 4, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -1809,7 +1880,7 @@ Sizing:Zone, , !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - SZ DSOA SPACE4-1, !- Design Specification Outdoor Air Object Name + SZ DSOA Zone 4, !- Design Specification Outdoor Air Object Name 0.0, !- Zone Heating Sizing Factor 0.0, !- Zone Cooling Sizing Factor DesignDayWithLimit, !- Cooling Design Air Flow Method @@ -1829,14 +1900,14 @@ Sizing:Zone, autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, - SZ DSOA SPACE4-1, !- Name + SZ DSOA Zone 4, !- Name sum, !- Outdoor Air Method 0.00236, !- Outdoor Air Flow per Person {m3/s-person} 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} Sizing:Zone, - SPACE5-1, !- Zone or ZoneList Name + Zone 5, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14., !- Zone Cooling Design Supply Air Temperature {C} , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -1845,7 +1916,7 @@ Sizing:Zone, , !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} - SZ DSOA SPACE5-1, !- Design Specification Outdoor Air Object Name + SZ DSOA Zone 5 List, !- Design Specification Outdoor Air Object Name 0.0, !- Zone Heating Sizing Factor 0.0, !- Zone Cooling Sizing Factor DesignDayWithLimit, !- Cooling Design Air Flow Method @@ -1865,12 +1936,26 @@ Sizing:Zone, autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} DesignSpecification:OutdoorAir, - SZ DSOA SPACE5-1, !- Name + SZ DSOA Zone 5 Office, !- Name sum, !- Outdoor Air Method 0.00236, !- Outdoor Air Flow per Person {m3/s-person} 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} 0.0; !- Outdoor Air Flow per Zone {m3/s} +DesignSpecification:OutdoorAir, + SZ DSOA Zone 5 Conference, !- Name + sum, !- Outdoor Air Method + 0.00436, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + +DesignSpecification:OutdoorAir:SpaceList, + SZ DSOA Zone 5 List, !- Name + Space 5 Office, !- Space 1 Name + SZ DSOA Zone 5 Office, !- Space 1 Design Specification Outdoor Air Object Name + Space 5 Conference, !- Space 2 Name + SZ DSOA Zone 5 Conference; !- Space 2 Design Specification Outdoor Air Object Name + Sizing:System, VAV Sys 1, !- AirLoop Name sensible, !- Type of Load to Size On @@ -2106,48 +2191,48 @@ NodeList, Outside Air Inlet Node 1;!- Node 1 Name ZoneHVAC:EquipmentConnections, - SPACE1-1, !- Zone Name - SPACE1-1 Eq, !- Zone Conditioning Equipment List Name - SPACE1-1 In Node, !- Zone Air Inlet Node or NodeList Name + Zone 1, !- Zone Name + Zone 1 Eq, !- Zone Conditioning Equipment List Name + Zone 1 In Node, !- Zone Air Inlet Node or NodeList Name , !- Zone Air Exhaust Node or NodeList Name - SPACE1-1 Node, !- Zone Air Node Name - SPACE1-1 Out Node; !- Zone Return Air Node or NodeList Name + Zone 1 Node, !- Zone Air Node Name + Zone 1 Out Node; !- Zone Return Air Node or NodeList Name ZoneHVAC:EquipmentConnections, - SPACE2-1, !- Zone Name - SPACE2-1 Eq, !- Zone Conditioning Equipment List Name - SPACE2-1 In Node, !- Zone Air Inlet Node or NodeList Name + Zone 2, !- Zone Name + Zone 2 Eq, !- Zone Conditioning Equipment List Name + Zone 2 In Node, !- Zone Air Inlet Node or NodeList Name , !- Zone Air Exhaust Node or NodeList Name - SPACE2-1 Node, !- Zone Air Node Name - SPACE2-1 Out Node; !- Zone Return Air Node or NodeList Name + Zone 2 Node, !- Zone Air Node Name + Zone 2 Out Node; !- Zone Return Air Node or NodeList Name ZoneHVAC:EquipmentConnections, - SPACE3-1, !- Zone Name - SPACE3-1 Eq, !- Zone Conditioning Equipment List Name - SPACE3-1 In Node, !- Zone Air Inlet Node or NodeList Name + Zone 3, !- Zone Name + Zone 3 Eq, !- Zone Conditioning Equipment List Name + Zone 3 In Node, !- Zone Air Inlet Node or NodeList Name , !- Zone Air Exhaust Node or NodeList Name - SPACE3-1 Node, !- Zone Air Node Name - SPACE3-1 Out Node; !- Zone Return Air Node or NodeList Name + Zone 3 Node, !- Zone Air Node Name + Zone 3 Out Node; !- Zone Return Air Node or NodeList Name ZoneHVAC:EquipmentConnections, - SPACE4-1, !- Zone Name - SPACE4-1 Eq, !- Zone Conditioning Equipment List Name - SPACE4-1 In Node, !- Zone Air Inlet Node or NodeList Name + Zone 4, !- Zone Name + Zone 4 Eq, !- Zone Conditioning Equipment List Name + Zone 4 In Node, !- Zone Air Inlet Node or NodeList Name , !- Zone Air Exhaust Node or NodeList Name - SPACE4-1 Node, !- Zone Air Node Name - SPACE4-1 Out Node; !- Zone Return Air Node or NodeList Name + Zone 4 Node, !- Zone Air Node Name + Zone 4 Out Node; !- Zone Return Air Node or NodeList Name ZoneHVAC:EquipmentConnections, - SPACE5-1, !- Zone Name - SPACE5-1 Eq, !- Zone Conditioning Equipment List Name - SPACE5-1 In Node, !- Zone Air Inlet Node or NodeList Name + Zone 5, !- Zone Name + Zone 5 Eq, !- Zone Conditioning Equipment List Name + Zone 5 In Node, !- Zone Air Inlet Node or NodeList Name , !- Zone Air Exhaust Node or NodeList Name - SPACE5-1 Node, !- Zone Air Node Name - SPACE5-1 Out Node; !- Zone Return Air Node or NodeList Name + Zone 5 Node, !- Zone Air Node Name + Zone 5 Out Node; !- Zone Return Air Node or NodeList Name ZoneControl:Thermostat, - SPACE1-1 Control, !- Name - SPACE1-1, !- Zone or ZoneList Name + Zone 1 Control, !- Name + Zone 1, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name ThermostatSetpoint:SingleCooling, !- Control 1 Object Type CoolingSetPoint, !- Control 1 Name @@ -2157,8 +2242,8 @@ ZoneControl:Thermostat, DualSetPoint; !- Control 3 Name ZoneControl:Thermostat, - SPACE2-1 Control, !- Name - SPACE2-1, !- Zone or ZoneList Name + Zone 2 Control, !- Name + Zone 2, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name ThermostatSetpoint:SingleCooling, !- Control 1 Object Type CoolingSetPoint, !- Control 1 Name @@ -2168,8 +2253,8 @@ ZoneControl:Thermostat, DualSetPoint; !- Control 3 Name ZoneControl:Thermostat, - SPACE3-1 Control, !- Name - SPACE3-1, !- Zone or ZoneList Name + Zone 3 Control, !- Name + Zone 3, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name ThermostatSetpoint:SingleCooling, !- Control 1 Object Type CoolingSetPoint, !- Control 1 Name @@ -2179,8 +2264,8 @@ ZoneControl:Thermostat, DualSetPoint; !- Control 3 Name ZoneControl:Thermostat, - SPACE4-1 Control, !- Name - SPACE4-1, !- Zone or ZoneList Name + Zone 4 Control, !- Name + Zone 4, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name ThermostatSetpoint:SingleCooling, !- Control 1 Object Type CoolingSetPoint, !- Control 1 Name @@ -2190,8 +2275,8 @@ ZoneControl:Thermostat, DualSetPoint; !- Control 3 Name ZoneControl:Thermostat, - SPACE5-1 Control, !- Name - SPACE5-1, !- Zone or ZoneList Name + Zone 5 Control, !- Name + Zone 5, !- Zone or ZoneList Name Zone Control Type Sched, !- Control Type Schedule Name ThermostatSetpoint:SingleCooling, !- Control 1 Object Type CoolingSetPoint, !- Control 1 Name @@ -2222,194 +2307,194 @@ ThermostatSetpoint:DualSetpoint, Clg-SetP-Sch; !- Cooling Setpoint Temperature Schedule Name ZoneHVAC:EquipmentList, - SPACE1-1 Eq, !- Name + Zone 1 Eq, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type - SPACE1-1 ATU, !- Zone Equipment 1 Name + Zone 1 ATU, !- 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, - SPACE2-1 Eq, !- Name + Zone 2 Eq, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type - SPACE2-1 ATU, !- Zone Equipment 1 Name + Zone 2 ATU, !- 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, - SPACE3-1 Eq, !- Name + Zone 3 Eq, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type - SPACE3-1 ATU, !- Zone Equipment 1 Name + Zone 3 ATU, !- 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, - SPACE4-1 Eq, !- Name + Zone 4 Eq, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type - SPACE4-1 ATU, !- Zone Equipment 1 Name + Zone 4 ATU, !- 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, - SPACE5-1 Eq, !- Name + Zone 5 Eq, !- Name SequentialLoad, !- Load Distribution Scheme ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type - SPACE5-1 ATU, !- Zone Equipment 1 Name + Zone 5 ATU, !- 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, - SPACE1-1 ATU, !- Name - SPACE1-1 In Node, !- Air Distribution Unit Outlet Node Name + Zone 1 ATU, !- Name + Zone 1 In Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type - SPACE1-1 VAV Reheat; !- Air Terminal Name + Zone 1 VAV Reheat; !- Air Terminal Name ZoneHVAC:AirDistributionUnit, - SPACE2-1 ATU, !- Name - SPACE2-1 In Node, !- Air Distribution Unit Outlet Node Name + Zone 2 ATU, !- Name + Zone 2 In Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type - SPACE2-1 VAV Reheat; !- Air Terminal Name + Zone 2 VAV Reheat; !- Air Terminal Name ZoneHVAC:AirDistributionUnit, - SPACE3-1 ATU, !- Name - SPACE3-1 In Node, !- Air Distribution Unit Outlet Node Name + Zone 3 ATU, !- Name + Zone 3 In Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type - SPACE3-1 VAV Reheat; !- Air Terminal Name + Zone 3 VAV Reheat; !- Air Terminal Name ZoneHVAC:AirDistributionUnit, - SPACE4-1 ATU, !- Name - SPACE4-1 In Node, !- Air Distribution Unit Outlet Node Name + Zone 4 ATU, !- Name + Zone 4 In Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type - SPACE4-1 VAV Reheat; !- Air Terminal Name + Zone 4 VAV Reheat; !- Air Terminal Name ZoneHVAC:AirDistributionUnit, - SPACE5-1 ATU, !- Name - SPACE5-1 In Node, !- Air Distribution Unit Outlet Node Name + Zone 5 ATU, !- Name + Zone 5 In Node, !- Air Distribution Unit Outlet Node Name AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type - SPACE5-1 VAV Reheat; !- Air Terminal Name + Zone 5 VAV Reheat; !- Air Terminal Name AirTerminal:SingleDuct:VAV:Reheat, - SPACE1-1 VAV Reheat, !- Name + Zone 1 VAV Reheat, !- Name ReheatCoilAvailSched, !- Availability Schedule Name - SPACE1-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name - SPACE1-1 ATU In Node, !- Air Inlet Node Name + Zone 1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + Zone 1 ATU In Node, !- Air Inlet Node Name autosize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction , !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name Coil:Heating:Water, !- Reheat Coil Object Type - SPACE1-1 Zone Coil, !- Reheat Coil Name + Zone 1 Zone 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} - SPACE1-1 In Node, !- Air Outlet Node Name + Zone 1 In Node, !- Air Outlet Node Name 0.001, !- Convergence Tolerance NORMAL, !- Damper Heating Action AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} AUTOCALCULATE; !- Maximum Flow Fraction During Reheat AirTerminal:SingleDuct:VAV:Reheat, - SPACE2-1 VAV Reheat, !- Name + Zone 2 VAV Reheat, !- Name ReheatCoilAvailSched, !- Availability Schedule Name - SPACE2-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name - SPACE2-1 ATU In Node, !- Air Inlet Node Name + Zone 2 Zone Coil Air In Node, !- Damper Air Outlet Node Name + Zone 2 ATU In Node, !- Air Inlet Node Name autosize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction , !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name Coil:Heating:Water, !- Reheat Coil Object Type - SPACE2-1 Zone Coil, !- Reheat Coil Name + Zone 2 Zone 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} - SPACE2-1 In Node, !- Air Outlet Node Name + Zone 2 In Node, !- Air Outlet Node Name 0.001, !- Convergence Tolerance NORMAL, !- Damper Heating Action AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} AUTOCALCULATE; !- Maximum Flow Fraction During Reheat AirTerminal:SingleDuct:VAV:Reheat, - SPACE3-1 VAV Reheat, !- Name + Zone 3 VAV Reheat, !- Name ReheatCoilAvailSched, !- Availability Schedule Name - SPACE3-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name - SPACE3-1 ATU In Node, !- Air Inlet Node Name + Zone 3 Zone Coil Air In Node, !- Damper Air Outlet Node Name + Zone 3 ATU In Node, !- Air Inlet Node Name autosize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction , !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name Coil:Heating:Water, !- Reheat Coil Object Type - SPACE3-1 Zone Coil, !- Reheat Coil Name + Zone 3 Zone 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} - SPACE3-1 In Node, !- Air Outlet Node Name + Zone 3 In Node, !- Air Outlet Node Name 0.001, !- Convergence Tolerance NORMAL, !- Damper Heating Action AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} AUTOCALCULATE; !- Maximum Flow Fraction During Reheat AirTerminal:SingleDuct:VAV:Reheat, - SPACE4-1 VAV Reheat, !- Name + Zone 4 VAV Reheat, !- Name ReheatCoilAvailSched, !- Availability Schedule Name - SPACE4-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name - SPACE4-1 ATU In Node, !- Air Inlet Node Name + Zone 4 Zone Coil Air In Node, !- Damper Air Outlet Node Name + Zone 4 ATU In Node, !- Air Inlet Node Name autosize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction , !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name Coil:Heating:Water, !- Reheat Coil Object Type - SPACE4-1 Zone Coil, !- Reheat Coil Name + Zone 4 Zone 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} - SPACE4-1 In Node, !- Air Outlet Node Name + Zone 4 In Node, !- Air Outlet Node Name 0.001, !- Convergence Tolerance NORMAL, !- Damper Heating Action AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} AUTOCALCULATE; !- Maximum Flow Fraction During Reheat AirTerminal:SingleDuct:VAV:Reheat, - SPACE5-1 VAV Reheat, !- Name + Zone 5 VAV Reheat, !- Name ReheatCoilAvailSched, !- Availability Schedule Name - SPACE5-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name - SPACE5-1 ATU In Node, !- Air Inlet Node Name + Zone 5 Zone Coil Air In Node, !- Damper Air Outlet Node Name + Zone 5 ATU In Node, !- Air Inlet Node Name autosize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction , !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name Coil:Heating:Water, !- Reheat Coil Object Type - SPACE5-1 Zone Coil, !- Reheat Coil Name + Zone 5 Zone 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} - SPACE5-1 In Node, !- Air Outlet Node Name + Zone 5 In Node, !- Air Outlet Node Name 0.001, !- Convergence Tolerance NORMAL, !- Damper Heating Action AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} AUTOCALCULATE; !- Maximum Flow Fraction During Reheat Coil:Heating:Water, - SPACE1-1 Zone Coil, !- Name + Zone 1 Zone Coil, !- Name ReheatCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} autosize, !- Maximum Water Flow Rate {m3/s} - SPACE1-1 Zone Coil Water In Node, !- Water Inlet Node Name - SPACE1-1 Zone Coil Water Out Node, !- Water Outlet Node Name - SPACE1-1 Zone Coil Air In Node, !- Air Inlet Node Name - SPACE1-1 In Node, !- Air Outlet Node Name + Zone 1 Zone Coil Water In Node, !- Water Inlet Node Name + Zone 1 Zone Coil Water Out Node, !- Water Outlet Node Name + Zone 1 Zone Coil Air In Node, !- Air Inlet Node Name + Zone 1 In Node, !- Air Outlet Node Name UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method autosize, !- Rated Capacity {W} 82.2, !- Rated Inlet Water Temperature {C} @@ -2420,14 +2505,14 @@ Coil:Heating:Water, 11; !- Design Water Temperature Difference {deltaC} Coil:Heating:Water, - SPACE2-1 Zone Coil, !- Name + Zone 2 Zone Coil, !- Name ReheatCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} autosize, !- Maximum Water Flow Rate {m3/s} - SPACE2-1 Zone Coil Water In Node, !- Water Inlet Node Name - SPACE2-1 Zone Coil Water Out Node, !- Water Outlet Node Name - SPACE2-1 Zone Coil Air In Node, !- Air Inlet Node Name - SPACE2-1 In Node, !- Air Outlet Node Name + Zone 2 Zone Coil Water In Node, !- Water Inlet Node Name + Zone 2 Zone Coil Water Out Node, !- Water Outlet Node Name + Zone 2 Zone Coil Air In Node, !- Air Inlet Node Name + Zone 2 In Node, !- Air Outlet Node Name UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method autosize, !- Rated Capacity {W} 82.2, !- Rated Inlet Water Temperature {C} @@ -2438,14 +2523,14 @@ Coil:Heating:Water, 11; !- Design Water Temperature Difference {deltaC} Coil:Heating:Water, - SPACE3-1 Zone Coil, !- Name + Zone 3 Zone Coil, !- Name ReheatCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} autosize, !- Maximum Water Flow Rate {m3/s} - SPACE3-1 Zone Coil Water In Node, !- Water Inlet Node Name - SPACE3-1 Zone Coil Water Out Node, !- Water Outlet Node Name - SPACE3-1 Zone Coil Air In Node, !- Air Inlet Node Name - SPACE3-1 In Node, !- Air Outlet Node Name + Zone 3 Zone Coil Water In Node, !- Water Inlet Node Name + Zone 3 Zone Coil Water Out Node, !- Water Outlet Node Name + Zone 3 Zone Coil Air In Node, !- Air Inlet Node Name + Zone 3 In Node, !- Air Outlet Node Name UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method autosize, !- Rated Capacity {W} 82.2, !- Rated Inlet Water Temperature {C} @@ -2456,14 +2541,14 @@ Coil:Heating:Water, 11; !- Design Water Temperature Difference {deltaC} Coil:Heating:Water, - SPACE4-1 Zone Coil, !- Name + Zone 4 Zone Coil, !- Name ReheatCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} autosize, !- Maximum Water Flow Rate {m3/s} - SPACE4-1 Zone Coil Water In Node, !- Water Inlet Node Name - SPACE4-1 Zone Coil Water Out Node, !- Water Outlet Node Name - SPACE4-1 Zone Coil Air In Node, !- Air Inlet Node Name - SPACE4-1 In Node, !- Air Outlet Node Name + Zone 4 Zone Coil Water In Node, !- Water Inlet Node Name + Zone 4 Zone Coil Water Out Node, !- Water Outlet Node Name + Zone 4 Zone Coil Air In Node, !- Air Inlet Node Name + Zone 4 In Node, !- Air Outlet Node Name UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method autosize, !- Rated Capacity {W} 82.2, !- Rated Inlet Water Temperature {C} @@ -2474,14 +2559,14 @@ Coil:Heating:Water, 11; !- Design Water Temperature Difference {deltaC} Coil:Heating:Water, - SPACE5-1 Zone Coil, !- Name + Zone 5 Zone Coil, !- Name ReheatCoilAvailSched, !- Availability Schedule Name autosize, !- U-Factor Times Area Value {W/K} autosize, !- Maximum Water Flow Rate {m3/s} - SPACE5-1 Zone Coil Water In Node, !- Water Inlet Node Name - SPACE5-1 Zone Coil Water Out Node, !- Water Outlet Node Name - SPACE5-1 Zone Coil Air In Node, !- Air Inlet Node Name - SPACE5-1 In Node, !- Air Outlet Node Name + Zone 5 Zone Coil Water In Node, !- Water Inlet Node Name + Zone 5 Zone Coil Water Out Node, !- Water Outlet Node Name + Zone 5 Zone Coil Air In Node, !- Air Inlet Node Name + Zone 5 In Node, !- Air Outlet Node Name UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method autosize, !- Rated Capacity {W} 82.2, !- Rated Inlet Water Temperature {C} @@ -2503,11 +2588,11 @@ AirLoopHVAC:ReturnPlenum, PLENUM-1 Node, !- Zone Node Name PLENUM-1 Out Node, !- Outlet Node Name , !- Induced Air Outlet Node or NodeList Name - SPACE1-1 Out Node, !- Inlet 1 Node Name - SPACE2-1 Out Node, !- Inlet 2 Node Name - SPACE3-1 Out Node, !- Inlet 3 Node Name - SPACE4-1 Out Node, !- Inlet 4 Node Name - SPACE5-1 Out Node; !- Inlet 5 Node Name + Zone 1 Out Node, !- Inlet 1 Node Name + Zone 2 Out Node, !- Inlet 2 Node Name + Zone 3 Out Node, !- Inlet 3 Node Name + Zone 4 Out Node, !- Inlet 4 Node Name + Zone 5 Out Node; !- Inlet 5 Node Name AirLoopHVAC:SupplyPath, Zone Supply Air Path 1, !- Name @@ -2518,11 +2603,11 @@ AirLoopHVAC:SupplyPath, AirLoopHVAC:ZoneSplitter, Zone Supply Air Splitter 1, !- Name Zone Eq In Node, !- Inlet Node Name - SPACE1-1 ATU In Node, !- Outlet 1 Node Name - SPACE2-1 ATU In Node, !- Outlet 2 Node Name - SPACE3-1 ATU In Node, !- Outlet 3 Node Name - SPACE4-1 ATU In Node, !- Outlet 4 Node Name - SPACE5-1 ATU In Node; !- Outlet 5 Node Name + Zone 1 ATU In Node, !- Outlet 1 Node Name + Zone 2 ATU In Node, !- Outlet 2 Node Name + Zone 3 ATU In Node, !- Outlet 3 Node Name + Zone 4 ATU In Node, !- Outlet 4 Node Name + Zone 5 ATU In Node; !- Outlet 5 Node Name AirLoopHVAC, VAV Sys 1, !- Name @@ -2880,11 +2965,11 @@ Pipe:Adiabatic, BranchList, Heating Demand Side Branches, !- Name Heating Demand Inlet Branch, !- Branch 1 Name - SPACE1-1 Reheat Branch, !- Branch 2 Name - SPACE2-1 Reheat Branch, !- Branch 3 Name - SPACE3-1 Reheat Branch, !- Branch 4 Name - SPACE4-1 Reheat Branch, !- Branch 5 Name - SPACE5-1 Reheat Branch, !- Branch 6 Name + Zone 1 Reheat Branch, !- Branch 2 Name + Zone 2 Reheat Branch, !- Branch 3 Name + Zone 3 Reheat Branch, !- Branch 4 Name + Zone 4 Reheat Branch, !- Branch 5 Name + Zone 5 Reheat Branch, !- Branch 6 Name OA Heating Coil Branch, !- Branch 7 Name Main Heating Coil 1 Branch, !- Branch 8 Name Heating Demand Bypass Branch, !- Branch 9 Name @@ -2924,44 +3009,44 @@ Pipe:Adiabatic, HW Demand Outlet Node; !- Outlet Node Name Branch, - SPACE1-1 Reheat Branch, !- Name + Zone 1 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type - SPACE1-1 Zone Coil, !- Component 1 Name - SPACE1-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name - SPACE1-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + Zone 1 Zone Coil, !- Component 1 Name + Zone 1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + Zone 1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name Branch, - SPACE2-1 Reheat Branch, !- Name + Zone 2 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type - SPACE2-1 Zone Coil, !- Component 1 Name - SPACE2-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name - SPACE2-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + Zone 2 Zone Coil, !- Component 1 Name + Zone 2 Zone Coil Water In Node, !- Component 1 Inlet Node Name + Zone 2 Zone Coil Water Out Node; !- Component 1 Outlet Node Name Branch, - SPACE3-1 Reheat Branch, !- Name + Zone 3 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type - SPACE3-1 Zone Coil, !- Component 1 Name - SPACE3-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name - SPACE3-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + Zone 3 Zone Coil, !- Component 1 Name + Zone 3 Zone Coil Water In Node, !- Component 1 Inlet Node Name + Zone 3 Zone Coil Water Out Node; !- Component 1 Outlet Node Name Branch, - SPACE4-1 Reheat Branch, !- Name + Zone 4 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type - SPACE4-1 Zone Coil, !- Component 1 Name - SPACE4-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name - SPACE4-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + Zone 4 Zone Coil, !- Component 1 Name + Zone 4 Zone Coil Water In Node, !- Component 1 Inlet Node Name + Zone 4 Zone Coil Water Out Node; !- Component 1 Outlet Node Name Branch, - SPACE5-1 Reheat Branch, !- Name + Zone 5 Reheat Branch, !- Name , !- Pressure Drop Curve Name Coil:Heating:Water, !- Component 1 Object Type - SPACE5-1 Zone Coil, !- Component 1 Name - SPACE5-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name - SPACE5-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + Zone 5 Zone Coil, !- Component 1 Name + Zone 5 Zone Coil Water In Node, !- Component 1 Inlet Node Name + Zone 5 Zone Coil Water Out Node; !- Component 1 Outlet Node Name Branch, OA Heating Coil Branch, !- Name @@ -2995,11 +3080,11 @@ Pipe:Adiabatic, Connector:Splitter, Heating Demand Splitter, !- Name Heating Demand Inlet Branch, !- Inlet Branch Name - SPACE1-1 Reheat Branch, !- Outlet Branch 1 Name - SPACE2-1 Reheat Branch, !- Outlet Branch 2 Name - SPACE3-1 Reheat Branch, !- Outlet Branch 3 Name - SPACE4-1 Reheat Branch, !- Outlet Branch 4 Name - SPACE5-1 Reheat Branch, !- Outlet Branch 5 Name + Zone 1 Reheat Branch, !- Outlet Branch 1 Name + Zone 2 Reheat Branch, !- Outlet Branch 2 Name + Zone 3 Reheat Branch, !- Outlet Branch 3 Name + Zone 4 Reheat Branch, !- Outlet Branch 4 Name + Zone 5 Reheat Branch, !- Outlet Branch 5 Name OA Heating Coil Branch, !- Outlet Branch 6 Name Main Heating Coil 1 Branch, !- Outlet Branch 7 Name Heating Demand Bypass Branch; !- Outlet Branch 8 Name @@ -3007,11 +3092,11 @@ Connector:Splitter, Connector:Mixer, Heating Demand Mixer, !- Name Heating Demand Outlet Branch, !- Outlet Branch Name - SPACE1-1 Reheat Branch, !- Inlet Branch 1 Name - SPACE2-1 Reheat Branch, !- Inlet Branch 2 Name - SPACE3-1 Reheat Branch, !- Inlet Branch 3 Name - SPACE4-1 Reheat Branch, !- Inlet Branch 4 Name - SPACE5-1 Reheat Branch, !- Inlet Branch 5 Name + Zone 1 Reheat Branch, !- Inlet Branch 1 Name + Zone 2 Reheat Branch, !- Inlet Branch 2 Name + Zone 3 Reheat Branch, !- Inlet Branch 3 Name + Zone 4 Reheat Branch, !- Inlet Branch 4 Name + Zone 5 Reheat Branch, !- Inlet Branch 5 Name OA Heating Coil Branch, !- Inlet Branch 6 Name Main Heating Coil 1 Branch, !- Inlet Branch 7 Name Heating Demand Bypass Branch; !- Inlet Branch 8 Name @@ -3360,43 +3445,30 @@ Output:Variable,*,Zone Air Temperature,hourly; Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; Output:Variable,*,Zone Air System Sensible Cooling Rate,hourly; Output:Variable,*,Zone Air System Sensible Heating Rate,hourly; -Output:Variable,OA Mixing Box 1 Inlet Node,System Node Temperature,hourly; -Output:Variable,OA Mixing Box 1 Inlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,OA Mixing Box 1 Inlet Node,System Node Setpoint Temperature,hourly; -Output:Variable,OA Mixing Box 1 Inlet Node,System Node Humidity Ratio,hourly; -Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Temperature,hourly; -Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Setpoint Temperature,hourly; -Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Humidity Ratio,hourly; -Output:Variable,Mixed Air Node 1,System Node Temperature,hourly; -Output:Variable,Mixed Air Node 1,System Node Humidity Ratio,hourly; -Output:Variable,Mixed Air Node 1,System Node Dewpoint Temperature,hourly; -Output:Variable,VAV Sys 1 Outlet Node,System Node Temperature,hourly; -Output:Variable,VAV Sys 1 Outlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,VAV Sys 1 Outlet Node,System Node Humidity Ratio,hourly; -Output:Variable,VAV Sys 1 Outlet Node,System Node Setpoint Temperature,hourly; -Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Temperature,hourly; -Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,Main Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Temperature,hourly; -Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,Main Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; -Output:Variable,*,Heating Coil Heating Rate,hourly; -Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; -Output:Variable,*,Cooling Coil Sensible Cooling Rate,hourly; -Output:Variable,*,Plant Supply Side Cooling Demand Rate,hourly; -Output:Variable,*,Plant Supply Side Heating Demand Rate,hourly; -Output:Variable,*,Boiler NaturalGas Rate,hourly; -Output:Variable,*,Boiler Heating Rate,hourly; -Output:Variable,*,Chiller Electricity Rate,hourly; -Output:Variable,*,Chiller Evaporator Cooling Rate,hourly; -Output:Variable,*,Chiller Evaporator Inlet Temperature,hourly; -Output:Variable,*,Chiller Evaporator Outlet Temperature,hourly; -Output:Variable,*,Chiller Evaporator Mass Flow Rate,hourly; -Output:Variable,*,Chiller Condenser Heat Transfer Rate,hourly; -Output:Variable,*,Pump Mass Flow Rate,hourly; -Output:Variable,*,Pump Outlet Temperature,hourly; -Output:VariableDictionary,Regular; +Output:Variable,*,Zone People Occupant Count,hourly; +Output:Variable,*,Zone People Total Heating Rate,hourly; +Output:Variable,*,Space People Occupant Count,hourly; +Output:Variable,*,Space People Total Heating Rate,hourly; +Output:Variable,*,People Total Heating Rate,hourly; +Output:Variable,*,People Occupant Count,hourly; +Output:Variable,*,Lights Electricity Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Lights Electricity Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Lights Electricity Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Electric Equipment Electricity Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Electric Equipment Electricity Rate,hourly; !- Zone Average [W] + +Output:Variable,*,Zone Total Internal Radiant Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Total Internal Visible Radiation Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Total Internal Convective Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Total Internal Latent Gain Rate,hourly; !- Zone Average [W] +Output:Variable,*,Zone Total Internal Total Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Total Internal Radiant Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Total Internal Visible Radiation Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Total Internal Convective Heating Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Total Internal Latent Gain Rate,hourly; !- Zone Average [W] +Output:Variable,*,Space Total Internal Total Heating Rate,hourly; !- Zone Average [W] + +Output:VariableDictionary,idf; Output:Meter:MeterFileOnly,Electricity:Facility,monthly; Output:Meter:MeterFileOnly,Electricity:Building,monthly; Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; @@ -3429,16 +3501,18 @@ Output:Meter:MeterFileOnly,MyBuildingOther,runperiod; Meter:Custom, MyGeneralLights, !- Name Electricity, !- Resource Type - SPACE1-1 Lights 1, !- Key Name 1 + Zone 1 Lights 1, !- Key Name 1 Lights Electricity Energy, !- Output Variable or Meter Name 1 - SPACE2-1 Lights 1, !- Key Name 2 + Zone 2 Lights 1, !- Key Name 2 Lights Electricity Energy, !- Output Variable or Meter Name 2 - SPACE3-1 Lights 1, !- Key Name 3 + Zone 3 Lights 1, !- Key Name 3 Lights Electricity Energy, !- Output Variable or Meter Name 3 - SPACE4-1 Lights 1, !- Key Name 4 + Zone 4 Lights 1, !- Key Name 4 Lights Electricity Energy, !- Output Variable or Meter Name 4 - SPACE5-1 Lights 1, !- Key Name 5 - Lights Electricity Energy; !- Output Variable or Meter Name 5 + Space 5 Office Zone 5 Lights 1, !- Key Name 5 + Lights Electricity Energy, !- Output Variable or Meter Name 5 + Space 5 Conference Zone 5 Lights 1, !- Key Name 6 + Lights Electricity Energy; !- Output Variable or Meter Name 6 Meter:Custom, MyBuildingElectric, !- Name @@ -3464,3 +3538,4 @@ Output:Table:SummaryReports, Output:Surfaces:List,Details; Output:Surfaces:List,DecayCurvesFromComponentLoadsSummary; +Output:Surfaces:Drawing,dxf; diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt index 9795e38d8cd..f02865e0fba 100644 --- a/testfiles/CMakeLists.txt +++ b/testfiles/CMakeLists.txt @@ -39,7 +39,7 @@ add_simulation_test(IDF_FILE 4ZoneWithShading_Simple_1.idf EPW_FILE USA_CO_Golde add_simulation_test(IDF_FILE 4ZoneWithShading_Simple_2.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooled.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledConvCoef.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) -add_simulation_test(IDF_FILE 5ZoneAirCooledWithSimpleSpaces.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) +add_simulation_test(IDF_FILE 5ZoneAirCooledWithSpaces.idf PW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting_FixedRateVentilation.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE 5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) From 0fe6f1f98526baca23ff38af0d2adef40893658d Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 15:21:12 -0500 Subject: [PATCH 90/98] Space - Address comments and fix output variables --- idd/Energy+.idd.in | 78 ++++--- src/EnergyPlus/InternalHeatGains.cc | 321 ++++++++++++++++++---------- 2 files changed, 251 insertions(+), 148 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index c0553907202..60b2214e6d7 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -9244,9 +9244,13 @@ GeometryTransform, \note Aspect ratio to transform to during run Space, - \memo Defines a space in the building. All spaces are part of a Zone. + \memo Defines a space in the building. All Spaces are part of a Zone. \memo Every Zone contains one or more spaces. Space is an optional input. - \memo If not used, spaces will be created automatically. + \memo If a Zone has no Space(s) specified in input then a default Space named will be created. + \memo If some surfaces in a Zone are assigned to a space and some are not, then a default Space + \memo named -Remainder will be created. + \memo Input references to Space Names must have a matching Space object + \memo (default space names may not be referenced except in output variable keys). \min-fields 3 \extensible:1 A1, \field Name @@ -9450,8 +9454,12 @@ SpaceList, Zone, \memo Defines a thermal zone of the building. Every zone contains one or more Spaces. - \memo If no spaces are assigned to a zone, then a space named -All will be generated.. - \memo If a portion of a zone is not assigned to a space, then a space namde -Remainder will be generated. + \memo Space is an optional input. + \memo If a Zone has no Space(s) specified in input then a default Space named will be created. + \memo If some surfaces in a Zone are assigned to a space and some are not, then a default Space + \memo named -Remainder will be created. + \memo Input references to Space Names must have a matching Space object + \memo (default space names may not be referenced except in output variable keys). \format vertices A1 , \field Name \required-field @@ -9953,11 +9961,11 @@ BuildingSurface:Detailed, \object-list ConstructionNames A4 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A5 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A6 , \field Outside Boundary Condition @@ -11137,11 +11145,11 @@ Wall:Detailed, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition @@ -11328,11 +11336,11 @@ RoofCeiling:Detailed, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition @@ -11517,11 +11525,11 @@ Floor:Detailed, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition @@ -11705,11 +11713,11 @@ Wall:Exterior, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -11753,11 +11761,11 @@ Wall:Adiabatic, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -11803,11 +11811,11 @@ Wall:Underground, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -11852,11 +11860,11 @@ Wall:Interzone, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone for the inside of the surface + \note Zone for the inside face of the surface. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space for the inside face of the surface (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition Object @@ -11908,11 +11916,11 @@ Roof, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -11958,11 +11966,11 @@ Ceiling:Adiabatic, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -12010,11 +12018,11 @@ Ceiling:Interzone, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone for the inside of the surface + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition Object @@ -12071,11 +12079,11 @@ Floor:GroundContact, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -12123,11 +12131,11 @@ Floor:Adiabatic, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone the surface is a part of + \note Zone the surface is a part of. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). \type object-list \object-list SpaceNames N1, \field Azimuth Angle @@ -12175,11 +12183,11 @@ Floor:Interzone, \object-list ConstructionNames A3 , \field Zone Name \required-field - \note Zone for the inside of the surface + \note Zone for the inside face of the surface. \type object-list \object-list ZoneNames A4 , \field Space Name - \note Space the surface is a part of + \note Space for the inside face of the surface (optional, see description of Space object for more details). \type object-list \object-list SpaceNames A5 , \field Outside Boundary Condition Object @@ -13090,7 +13098,7 @@ InternalMass, \memo Used to describe internal zone surface area that does not need to be part of geometric \memo representation. This should be the total surface area exposed to the zone air. \memo If you use a ZoneList in the Zone or ZoneList name field then this definition applies - \memo to all the zones in the ZoneList. + \memo to all the zones in the ZoneList. Likewise for SpaceList. A1 , \field Name \required-field \type alpha @@ -13106,12 +13114,12 @@ InternalMass, \required-field \type object-list \object-list ZoneAndZoneListNames - \note Zone the surface is a part of + \note Zone the surface is a part of. \note used to be Interior Environment A4 , \field Space or SpaceList Name \type object-list \object-list SpaceAndSpaceListNames - \note Space the surface is a part of + \note Space the surface is a part of (optional, see description of Space object for more details). N1 ; \field Surface Area \required-field \units m2 diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index b9f8d938b88..344f761f163 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -976,17 +976,18 @@ namespace InternalHeatGains { // setup internal gains if (!ErrorsFound) { - SetupZoneInternalGain(state, - state.dataHeatBal->People(peopleNum).ZonePtr, - "People", - state.dataHeatBal->People(peopleNum).Name, - IntGainTypeOf_People, - &state.dataHeatBal->People(peopleNum).ConGainRate, - nullptr, - &state.dataHeatBal->People(peopleNum).RadGainRate, - &state.dataHeatBal->People(peopleNum).LatGainRate, - nullptr, - &state.dataHeatBal->People(peopleNum).CO2GainRate); + SetupSpaceInternalGain(state, + state.dataHeatBal->People(peopleNum).spaceIndex, + 1.0, + "People", + state.dataHeatBal->People(peopleNum).Name, + IntGainTypeOf_People, + &state.dataHeatBal->People(peopleNum).ConGainRate, + nullptr, + &state.dataHeatBal->People(peopleNum).RadGainRate, + &state.dataHeatBal->People(peopleNum).LatGainRate, + nullptr, + &state.dataHeatBal->People(peopleNum).CO2GainRate); } } @@ -1375,19 +1376,20 @@ namespace InternalHeatGains { returnNodeNum = state.dataZoneEquip->ZoneEquipConfig(zoneNum).ReturnNode(state.dataHeatBal->Lights(lightsNum).ZoneReturnNum); } if (!ErrorsFound) { - SetupZoneInternalGain(state, - state.dataHeatBal->Lights(lightsNum).ZonePtr, - "Lights", - state.dataHeatBal->Lights(lightsNum).Name, - IntGainTypeOf_Lights, - &state.dataHeatBal->Lights(lightsNum).ConGainRate, - &state.dataHeatBal->Lights(lightsNum).RetAirGainRate, - &state.dataHeatBal->Lights(lightsNum).RadGainRate, - nullptr, - nullptr, - nullptr, - nullptr, - returnNodeNum); + SetupSpaceInternalGain(state, + state.dataHeatBal->Lights(lightsNum).spaceIndex, + 1.0, + "Lights", + state.dataHeatBal->Lights(lightsNum).Name, + IntGainTypeOf_Lights, + &state.dataHeatBal->Lights(lightsNum).ConGainRate, + &state.dataHeatBal->Lights(lightsNum).RetAirGainRate, + &state.dataHeatBal->Lights(lightsNum).RadGainRate, + nullptr, + nullptr, + nullptr, + nullptr, + returnNodeNum); } if (state.dataHeatBal->Lights(lightsNum).FractionReturnAir > 0) @@ -1656,15 +1658,16 @@ namespace InternalHeatGains { state, "Plug and Process Power Design Level", thisZoneElectric.Name, "[W]", thisZoneElectric.DesignLevel); } // EMS if (!ErrorsFound) { - SetupZoneInternalGain(state, - thisZoneElectric.ZonePtr, - "ElectricEquipment", - thisZoneElectric.Name, - IntGainTypeOf_ElectricEquipment, - &thisZoneElectric.ConGainRate, - nullptr, - &thisZoneElectric.RadGainRate, - &thisZoneElectric.LatGainRate); + SetupSpaceInternalGain(state, + thisZoneElectric.spaceIndex, + 1.0, + "ElectricEquipment", + thisZoneElectric.Name, + IntGainTypeOf_ElectricEquipment, + &thisZoneElectric.ConGainRate, + nullptr, + &thisZoneElectric.RadGainRate, + &thisZoneElectric.LatGainRate); } } // for elecEqInputNum.NumOfSpaces } // for elecEqInputNum @@ -1900,17 +1903,18 @@ namespace InternalHeatGains { } // EMS if (!ErrorsFound) - SetupZoneInternalGain(state, - thisZoneGas.ZonePtr, - "GasEquipment", - thisZoneGas.Name, - IntGainTypeOf_GasEquipment, - &thisZoneGas.ConGainRate, - nullptr, - &thisZoneGas.RadGainRate, - &thisZoneGas.LatGainRate, - nullptr, - &thisZoneGas.CO2GainRate); + SetupSpaceInternalGain(state, + thisZoneGas.spaceIndex, + 1.0, + "GasEquipment", + thisZoneGas.Name, + IntGainTypeOf_GasEquipment, + &thisZoneGas.ConGainRate, + nullptr, + &thisZoneGas.RadGainRate, + &thisZoneGas.LatGainRate, + nullptr, + &thisZoneGas.CO2GainRate); } // for gasEqInputNum.NumOfSpaces } // for gasEqInputNum @@ -2115,15 +2119,16 @@ namespace InternalHeatGains { } // EMS if (!ErrorsFound) - SetupZoneInternalGain(state, - thisZoneHWEq.ZonePtr, - "HotWaterEquipment", - thisZoneHWEq.Name, - IntGainTypeOf_HotWaterEquipment, - &thisZoneHWEq.ConGainRate, - nullptr, - &thisZoneHWEq.RadGainRate, - &thisZoneHWEq.LatGainRate); + SetupSpaceInternalGain(state, + thisZoneHWEq.spaceIndex, + 1.0, + "HotWaterEquipment", + thisZoneHWEq.Name, + IntGainTypeOf_HotWaterEquipment, + &thisZoneHWEq.ConGainRate, + nullptr, + &thisZoneHWEq.RadGainRate, + &thisZoneHWEq.LatGainRate); } // for hwEqInputNum.NumOfSpaces } // for hwEqInputNum @@ -2329,15 +2334,16 @@ namespace InternalHeatGains { } // EMS if (!ErrorsFound) - SetupZoneInternalGain(state, - thisZoneStmEq.ZonePtr, - "SteamEquipment", - thisZoneStmEq.Name, - IntGainTypeOf_SteamEquipment, - &thisZoneStmEq.ConGainRate, - nullptr, - &thisZoneStmEq.RadGainRate, - &thisZoneStmEq.LatGainRate); + SetupSpaceInternalGain(state, + thisZoneStmEq.spaceIndex, + 1.0, + "SteamEquipment", + thisZoneStmEq.Name, + IntGainTypeOf_SteamEquipment, + &thisZoneStmEq.ConGainRate, + nullptr, + &thisZoneStmEq.RadGainRate, + &thisZoneStmEq.LatGainRate); } // for stmEqInputNum.NumOfSpaces } // for stmEqInputNum @@ -2566,15 +2572,16 @@ namespace InternalHeatGains { } // EMS if (!ErrorsFound) - SetupZoneInternalGain(state, - thisZoneOthEq.ZonePtr, - "OtherEquipment", - thisZoneOthEq.Name, - IntGainTypeOf_OtherEquipment, - &thisZoneOthEq.ConGainRate, - nullptr, - &thisZoneOthEq.RadGainRate, - &thisZoneOthEq.LatGainRate); + SetupSpaceInternalGain(state, + thisZoneOthEq.spaceIndex, + 1.0, + "OtherEquipment", + thisZoneOthEq.Name, + IntGainTypeOf_OtherEquipment, + &thisZoneOthEq.ConGainRate, + nullptr, + &thisZoneOthEq.RadGainRate, + &thisZoneOthEq.LatGainRate); } // for othEqInputNum.NumOfSpaces } // for othEqInputNum @@ -3016,12 +3023,13 @@ namespace InternalHeatGains { // Level", ZoneITEq( Loop ).Name, "[W]", ZoneITEq( Loop ).DesignTotalPower ); } // EMS if (!ErrorsFound) - SetupZoneInternalGain(state, - thisZoneITEq.ZonePtr, - "ElectricEquipment:ITE:AirCooled", - thisZoneITEq.Name, - IntGainTypeOf_ElectricEquipmentITEAirCooled, - &thisZoneITEq.ConGainRateToZone); + SetupSpaceInternalGain(state, + thisZoneITEq.spaceIndex, + 1.0, + "ElectricEquipment:ITE:AirCooled", + thisZoneITEq.Name, + IntGainTypeOf_ElectricEquipmentITEAirCooled, + &thisZoneITEq.ConGainRateToZone); } } // for itEqInputNum.NumOfSpaces } // for itEqInputNum @@ -3146,14 +3154,15 @@ namespace InternalHeatGains { thisZoneBBHeat.CapatHighTemperature); } // EMS - SetupZoneInternalGain(state, - thisZoneBBHeat.ZonePtr, - "ZoneBaseboard:OutdoorTemperatureControlled", - thisZoneBBHeat.Name, - IntGainTypeOf_ZoneBaseboardOutdoorTemperatureControlled, - &thisZoneBBHeat.ConGainRate, - nullptr, - &thisZoneBBHeat.RadGainRate); + SetupSpaceInternalGain(state, + thisZoneBBHeat.spaceIndex, + 1.0, + "ZoneBaseboard:OutdoorTemperatureControlled", + thisZoneBBHeat.Name, + IntGainTypeOf_ZoneBaseboardOutdoorTemperatureControlled, + &thisZoneBBHeat.ConGainRate, + nullptr, + &thisZoneBBHeat.RadGainRate); } // for bbHeatInputNum.NumOfSpaces } // for bbHeatInputNum } // TotBBHeat > 0 @@ -6616,13 +6625,14 @@ namespace InternalHeatGains { OutputProcessor::SOVTimeStepType::Zone, OutputProcessor::SOVStoreType::Average, state.dataHeatBal->space(spaceNum).Name); - SetupOutputVariable(state, - "Space ITE Adjusted Return Air Temperature", - OutputProcessor::Unit::W, - state.dataHeatBal->spaceRpt(spaceNum).ITEAdjReturnTemp, - OutputProcessor::SOVTimeStepType::Zone, - OutputProcessor::SOVStoreType::Average, - state.dataHeatBal->space(spaceNum).Name); + // Not applicable for space until space has it's own air temeratures + // SetupOutputVariable(state, + // "Space ITE Adjusted Return Air Temperature", + // OutputProcessor::Unit::W, + // state.dataHeatBal->spaceRpt(spaceNum).ITEAdjReturnTemp, + // OutputProcessor::SOVTimeStepType::Zone, + // OutputProcessor::SOVStoreType::Average, + // state.dataHeatBal->space(spaceNum).Name); SetupOutputVariable(state, "Space ITE CPU Electricity Energy", @@ -7089,6 +7099,16 @@ namespace InternalHeatGains { e.CO2Rate = 0.0; } + for (auto &e : state.dataHeatBal->spaceRpt) { + e.LtsPower = 0.0; + e.ElecPower = 0.0; + e.GasPower = 0.0; + e.HWPower = 0.0; + e.SteamPower = 0.0; + e.BaseHeatPower = 0.0; + e.CO2Rate = 0.0; + } + for (auto &e : state.dataHeatBal->ZonePreDefRep) { e.NumOcc = 0.0; } @@ -7239,6 +7259,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QLTTOT += state.dataHeatBal->Lights(Loop).TotGainRate; int spaceNum = state.dataHeatBal->Lights(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).LtsPower += state.dataHeatBal->Lights(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QLTRAD += state.dataHeatBal->Lights(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QLTSW += state.dataHeatBal->Lights(Loop).VisGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QLTCON += state.dataHeatBal->Lights(Loop).ConGainRate; @@ -7271,6 +7292,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QEELost += state.dataHeatBal->ZoneElectric(Loop).LostRate; int spaceNum = state.dataHeatBal->ZoneElectric(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).ElecPower += state.dataHeatBal->ZoneElectric(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QEERAD += state.dataHeatBal->ZoneElectric(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QEECON += state.dataHeatBal->ZoneElectric(Loop).ConGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QEELAT += state.dataHeatBal->ZoneElectric(Loop).LatGainRate; @@ -7299,6 +7321,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QGELost += state.dataHeatBal->ZoneGas(Loop).LostRate; int spaceNum = state.dataHeatBal->ZoneGas(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).GasPower += state.dataHeatBal->ZoneGas(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QGERAD += state.dataHeatBal->ZoneGas(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QGECON += state.dataHeatBal->ZoneGas(Loop).ConGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QGELAT += state.dataHeatBal->ZoneGas(Loop).LatGainRate; @@ -7319,12 +7342,14 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneOtherEq(Loop).TotGainRate = Q - state.dataHeatBal->ZoneOtherEq(Loop).LostRate; int NZ = state.dataHeatBal->ZoneOtherEq(Loop).ZonePtr; + state.dataHeatBal->ZnRpt(NZ).OtherPower += state.dataHeatBal->ZoneOtherEq(Loop).Power; state.dataHeatBal->ZoneIntGain(NZ).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; state.dataHeatBal->ZoneIntGain(NZ).QOELost += state.dataHeatBal->ZoneOtherEq(Loop).LostRate; int spaceNum = state.dataHeatBal->ZoneOtherEq(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).OtherPower += state.dataHeatBal->ZoneOtherEq(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QOERAD += state.dataHeatBal->ZoneOtherEq(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QOECON += state.dataHeatBal->ZoneOtherEq(Loop).ConGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QOELAT += state.dataHeatBal->ZoneOtherEq(Loop).LatGainRate; @@ -7352,6 +7377,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QHWLost += state.dataHeatBal->ZoneHWEq(Loop).LostRate; int spaceNum = state.dataHeatBal->ZoneHWEq(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).HWPower += state.dataHeatBal->ZoneHWEq(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QHWRAD += state.dataHeatBal->ZoneHWEq(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QHWCON += state.dataHeatBal->ZoneHWEq(Loop).ConGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QHWLAT += state.dataHeatBal->ZoneHWEq(Loop).LatGainRate; @@ -7379,6 +7405,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QSELost += state.dataHeatBal->ZoneSteamEq(Loop).LostRate; int spaceNum = state.dataHeatBal->ZoneSteamEq(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).SteamPower += state.dataHeatBal->ZoneSteamEq(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QSERAD += state.dataHeatBal->ZoneSteamEq(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QSECON += state.dataHeatBal->ZoneSteamEq(Loop).ConGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QSELAT += state.dataHeatBal->ZoneSteamEq(Loop).LatGainRate; @@ -7413,6 +7440,7 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneIntGain(NZ).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; int spaceNum = state.dataHeatBal->ZoneBBHeat(Loop).spaceIndex; + state.dataHeatBal->spaceRpt(spaceNum).BaseHeatPower += state.dataHeatBal->ZoneBBHeat(Loop).Power; state.dataHeatBal->spaceIntGain(spaceNum).QBBRAD += state.dataHeatBal->ZoneBBHeat(Loop).RadGainRate; state.dataHeatBal->spaceIntGain(spaceNum).QBBCON += state.dataHeatBal->ZoneBBHeat(Loop).ConGainRate; } @@ -7659,9 +7687,44 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(Loop).SumToutMinusTSup = 0.0; } // Zone init loop + // Space total report variables + for (int spaceNum = 1; spaceNum <= state.dataGlobal->numSpaces; ++spaceNum) { + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPower = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPower = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSPower = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPowerAtDesign = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPowerAtDesign = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainRateToZone = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainRateToZone = 0.0; + + state.dataHeatBal->spaceRpt(spaceNum).ITEAdjReturnTemp = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUConsumption = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanConsumption = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSConsumption = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUEnergyAtDesign = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanEnergyAtDesign = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainEnergyToZone = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainEnergyToZone = 0.0; + + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirVolFlowStdDensity = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirMassFlow = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqSHI = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDryBulbT = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDryBulbT = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDewpointT = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDewpointT = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveRH = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowRH = 0.0; + + state.dataHeatBal->spaceRpt(spaceNum).SumTinMinusTSup = 0.0; + state.dataHeatBal->spaceRpt(spaceNum).SumToutMinusTSup = 0.0; + } // Space init spaceNum + for (Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { // Get schedules NZ = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; + int spaceNum = state.dataHeatBal->ZoneITEq(Loop).spaceIndex; OperSchedFrac = GetCurrentScheduleValue(state, state.dataHeatBal->ZoneITEq(Loop).OperSchedPtr); CPULoadSchedFrac = GetCurrentScheduleValue(state, state.dataHeatBal->ZoneITEq(Loop).CPULoadSchedPtr); @@ -7816,6 +7879,14 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(NZ).ITEqUPSGainRateToZone += state.dataHeatBal->ZoneITEq(Loop).UPSGainRateToZone; state.dataHeatBal->ZnRpt(NZ).ITEqConGainRateToZone += state.dataHeatBal->ZoneITEq(Loop).ConGainRateToZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPower += state.dataHeatBal->ZoneITEq(Loop).CPUPower; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPower += state.dataHeatBal->ZoneITEq(Loop).FanPower; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSPower += state.dataHeatBal->ZoneITEq(Loop).UPSPower; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUPowerAtDesign += state.dataHeatBal->ZoneITEq(Loop).CPUPowerAtDesign; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanPowerAtDesign += state.dataHeatBal->ZoneITEq(Loop).FanPowerAtDesign; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainRateToZone += state.dataHeatBal->ZoneITEq(Loop).UPSGainRateToZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainRateToZone += state.dataHeatBal->ZoneITEq(Loop).ConGainRateToZone; + state.dataHeatBal->ZoneITEq(Loop).CPUConsumption = CPUPower * state.dataGlobal->TimeStepZoneSec; state.dataHeatBal->ZoneITEq(Loop).FanConsumption = FanPower * state.dataGlobal->TimeStepZoneSec; state.dataHeatBal->ZoneITEq(Loop).UPSConsumption = UPSPower * state.dataGlobal->TimeStepZoneSec; @@ -7835,6 +7906,14 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(NZ).ITEqUPSGainEnergyToZone += state.dataHeatBal->ZoneITEq(Loop).UPSGainEnergyToZone; state.dataHeatBal->ZnRpt(NZ).ITEqConGainEnergyToZone += state.dataHeatBal->ZoneITEq(Loop).ConGainEnergyToZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUConsumption += state.dataHeatBal->ZoneITEq(Loop).CPUConsumption; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanConsumption += state.dataHeatBal->ZoneITEq(Loop).FanConsumption; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSConsumption += state.dataHeatBal->ZoneITEq(Loop).UPSConsumption; + state.dataHeatBal->spaceRpt(spaceNum).ITEqCPUEnergyAtDesign += state.dataHeatBal->ZoneITEq(Loop).CPUEnergyAtDesign; + state.dataHeatBal->spaceRpt(spaceNum).ITEqFanEnergyAtDesign += state.dataHeatBal->ZoneITEq(Loop).FanEnergyAtDesign; + state.dataHeatBal->spaceRpt(spaceNum).ITEqUPSGainEnergyToZone += state.dataHeatBal->ZoneITEq(Loop).UPSGainEnergyToZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqConGainEnergyToZone += state.dataHeatBal->ZoneITEq(Loop).ConGainEnergyToZone; + state.dataHeatBal->ZoneITEq(Loop).AirVolFlowStdDensity = AirMassFlowRate * state.dataEnvrn->StdRhoAir; state.dataHeatBal->ZoneITEq(Loop).AirVolFlowCurDensity = AirVolFlowRate; state.dataHeatBal->ZoneITEq(Loop).AirMassFlow = AirMassFlowRate; @@ -7849,6 +7928,11 @@ namespace InternalHeatGains { state.dataHeatBal->ZnRpt(NZ).SumTinMinusTSup += (TAirIn - TSupply) * AirVolFlowRate; state.dataHeatBal->ZnRpt(NZ).SumToutMinusTSup += (TAirOut - TSupply) * AirVolFlowRate; + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirVolFlowStdDensity += state.dataHeatBal->ZoneITEq(Loop).AirVolFlowStdDensity; + state.dataHeatBal->spaceRpt(spaceNum).ITEqAirMassFlow += state.dataHeatBal->ZoneITEq(Loop).AirMassFlow; + state.dataHeatBal->spaceRpt(spaceNum).SumTinMinusTSup += (TAirIn - TSupply) * AirVolFlowRate; + state.dataHeatBal->spaceRpt(spaceNum).SumToutMinusTSup += (TAirOut - TSupply) * AirVolFlowRate; + // Check environmental class operating range limits (defined as parameters in this subroutine) EnvClass = state.dataHeatBal->ZoneITEq(Loop).Class; if (EnvClass > 0) { @@ -7858,6 +7942,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).DryBulbTAboveDeltaT = TAirIn - DBMax(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeAboveDryBulbT = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDryBulbT = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } if (TAirIn < DBMin(EnvClass)) { state.dataHeatBal->ZoneITEq(Loop).TimeBelowDryBulbT = state.dataGlobal->TimeStepZone; @@ -7865,6 +7951,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).DryBulbTBelowDeltaT = TAirIn - DBMin(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeBelowDryBulbT = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDryBulbT = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } if (TDPAirIn > DPMax(EnvClass)) { state.dataHeatBal->ZoneITEq(Loop).TimeAboveDewpointT = state.dataGlobal->TimeStepZone; @@ -7872,6 +7960,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).DewpointTAboveDeltaT = TDPAirIn - DPMax(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeAboveDewpointT = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveDewpointT = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } if (TDPAirIn < DPMin(EnvClass)) { state.dataHeatBal->ZoneITEq(Loop).TimeBelowDewpointT = state.dataGlobal->TimeStepZone; @@ -7879,6 +7969,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).DewpointTBelowDeltaT = TDPAirIn - DPMin(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeBelowDewpointT = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowDewpointT = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } if (RHAirIn > RHMax(EnvClass)) { state.dataHeatBal->ZoneITEq(Loop).TimeAboveRH = state.dataGlobal->TimeStepZone; @@ -7886,6 +7978,8 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).RHAboveDeltaRH = RHAirIn - RHMax(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeAboveRH = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeAboveRH = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } if (RHAirIn < RHMin(EnvClass)) { state.dataHeatBal->ZoneITEq(Loop).TimeBelowRH = state.dataGlobal->TimeStepZone; @@ -7893,16 +7987,23 @@ namespace InternalHeatGains { state.dataHeatBal->ZoneITEq(Loop).RHBelowDeltaRH = RHAirIn - RHMin(EnvClass); state.dataHeatBal->ZnRpt(NZ).ITEqTimeBelowRH = state.dataGlobal->TimeStepZone; state.dataHeatBal->ZnRpt(NZ).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeBelowRH = state.dataGlobal->TimeStepZone; + state.dataHeatBal->spaceRpt(spaceNum).ITEqTimeOutOfOperRange = state.dataGlobal->TimeStepZone; } } } // ZoneITEq calc loop - // Zone-level sensible heat index + // Zone and space-level sensible heat index for (Loop = 1; Loop <= state.dataHeatBal->TotITEquip; ++Loop) { int ZN = state.dataHeatBal->ZoneITEq(Loop).ZonePtr; - if (state.dataHeatBal->ZnRpt(NZ).SumToutMinusTSup != 0.0) { - state.dataHeatBal->ZnRpt(ZN).ITEqSHI = state.dataHeatBal->ZnRpt(NZ).SumTinMinusTSup / state.dataHeatBal->ZnRpt(NZ).SumToutMinusTSup; + int spaceNum = state.dataHeatBal->ZoneITEq(Loop).spaceIndex; + if (state.dataHeatBal->ZnRpt(ZN).SumToutMinusTSup != 0.0) { + state.dataHeatBal->ZnRpt(ZN).ITEqSHI = state.dataHeatBal->ZnRpt(ZN).SumTinMinusTSup / state.dataHeatBal->ZnRpt(ZN).SumToutMinusTSup; + } + if (state.dataHeatBal->spaceRpt(spaceNum).SumToutMinusTSup != 0.0) { + state.dataHeatBal->spaceRpt(spaceNum).ITEqSHI = + state.dataHeatBal->spaceRpt(spaceNum).SumTinMinusTSup / state.dataHeatBal->spaceRpt(spaceNum).SumToutMinusTSup; } } @@ -8630,12 +8731,10 @@ namespace InternalHeatGains { // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . if (spaceIndex > 0) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).ConvectGainRate; - } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumConvGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).ConvectGainRate; } } } @@ -8768,12 +8867,10 @@ namespace InternalHeatGains { // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . if (spaceIndex > 0) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).RadiantGainRate; - } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumRadiationGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).RadiantGainRate; } } } @@ -8862,12 +8959,10 @@ namespace InternalHeatGains { // TODO MJW: This could be refactored to avoid duplicate code, but for now . . . . if (spaceIndex > 0) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices == 0) { - for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { - for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { - if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { - tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).LatentGainRate; - } + for (int DeviceNum = 1; DeviceNum <= state.dataHeatBal->spaceIntGainDevices(spaceIndex).numberOfDevices; ++DeviceNum) { + for (int TypeNum = 1; TypeNum <= NumberOfTypes; ++TypeNum) { + if (state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).CompTypeOfNum == GainTypeARR(TypeNum)) { + tmpSumLatentGainRate += state.dataHeatBal->spaceIntGainDevices(spaceIndex).device(DeviceNum).LatentGainRate; } } } From 0f1c86aaa2d130df77056b31a450d587817fc7cc Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 15:41:01 -0500 Subject: [PATCH 91/98] Space - address build warnings and use DataGlobalConstantsData::iEndUseSize more --- src/EnergyPlus/InternalHeatGains.cc | 1 - src/EnergyPlus/OutputReportTabular.cc | 94 +++++++++++++-------------- 2 files changed, 47 insertions(+), 48 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 344f761f163..58f1cd4d836 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -229,7 +229,6 @@ namespace InternalHeatGains { Real64 SchMin; Real64 SchMax; std::string liteName; - bool errFlag; // Formats static constexpr fmt::string_view Format_720(" Zone Internal Gains Nominal, {},{:.2R},{:.1R},"); diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 6bee827db2a..291eb91ba2a 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -1764,10 +1764,10 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) ort->endUseNames(state.dataGlobalConst->iEndUse.at(DataGlobalConstants::EndUse::Cogeneration)) = "Cogeneration"; // End use subs must be dynamically allocated to accomodate the end use with the most subcategories - ort->meterNumEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + ort->meterNumEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, numResourceTypes); ort->meterNumEndUseSpTypeBEPS.allocate( - state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), numResourceTypes); - for (int endUse = 1; endUse <= state.dataGlobalConst->iEndUse.size(); ++endUse) { + state.dataOutputProcessor->maxNumEndUseSpaceTypes, DataGlobalConstantsData::iEndUseSize, numResourceTypes); + for (int endUse = 1; endUse <= DataGlobalConstantsData::iEndUseSize; ++endUse) { for (int resType = 1; resType <= numResourceTypes; ++resType) { for (int subCat = 1; subCat <= state.dataOutputProcessor->MaxNumSubcategories; ++subCat) { ort->meterNumEndUseSubBEPS(subCat, endUse, resType) = 0; @@ -1784,7 +1784,7 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) meterNumber = GetMeterIndex(state, meterName); ort->meterNumTotalsBEPS(iResource) = meterNumber; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { meterName = ort->endUseNames(jEndUse) + ':' + ort->resourceTypeNames(iResource); //// ':FACILITY' meterNumber = GetMeterIndex(state, meterName); ort->meterNumEndUseBEPS(iResource, jEndUse) = meterNumber; @@ -1817,15 +1817,15 @@ void GetInputOutputTableSummaryReports(EnergyPlusData &state) ort->gatherEndUseBEPS = 0.0; ort->gatherEndUseBySourceBEPS = 0.0; // End use subs must be dynamically allocated to accommodate the end use with the most subcategories - ort->gatherEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + ort->gatherEndUseSubBEPS.allocate(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, numResourceTypes); ort->gatherEndUseSubBEPS = 0.0; ort->gatherEndUseSpTypeBEPS.allocate( - state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + state.dataOutputProcessor->maxNumEndUseSpaceTypes, DataGlobalConstantsData::iEndUseSize, numResourceTypes); ort->gatherEndUseSpTypeBEPS = 0.0; - ort->gatherDemandEndUseSub.allocate(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + ort->gatherDemandEndUseSub.allocate(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, numResourceTypes); ort->gatherDemandEndUseSub = 0.0; ort->gatherDemandIndEndUseSub.allocate( - state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), numResourceTypes); + state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, numResourceTypes); ort->gatherDemandIndEndUseSub = 0.0; // get meter numbers for other meters relating to electric load components @@ -3932,7 +3932,7 @@ void GatherBEPSResultsForTimestep(EnergyPlusData &state, OutputProcessor::TimeSt ort->gatherTotalsBEPS(iResource) += curResMeterValue; } - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { int curEndUseMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); if (curEndUseMeterNumber > 0) { Real64 curEndUseMeterValue = GetCurrentMeterValue(state, curEndUseMeterNumber); @@ -4098,7 +4098,7 @@ void GatherSourceEnergyEndUseResultsForTimestep(EnergyPlusData &state, } } - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (ort->ffSchedUsed(iResource)) { curMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); if (curMeterNumber > 0) { @@ -4218,7 +4218,7 @@ void GatherPeakDemandForTimestep(EnergyPlusData &state, OutputProcessor::TimeSte ort->gatherDemandTimeStamp(iResource) = timestepTimeStamp; // if new peak demand is set, then gather all of the end use values at this particular // time to find the components of the peak demand - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { curMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); if (curMeterNumber > 0) { curDemandValue = GetCurrentMeterValue(state, curMeterNumber) / state.dataGlobal->TimeStepZoneSec; @@ -4241,7 +4241,7 @@ void GatherPeakDemandForTimestep(EnergyPlusData &state, OutputProcessor::TimeSte if ((ort->displayLEEDSummary) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) { // loop through all of the resources and end uses for the entire facility for (iResource = 1; iResource <= numResourceTypes; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { curMeterNumber = ort->meterNumEndUseBEPS(iResource, jEndUse); if (curMeterNumber > 0) { curDemandValue = GetCurrentMeterValue(state, curMeterNumber) / state.dataGlobal->TimeStepZoneSec; @@ -7776,10 +7776,10 @@ void WriteBEPSTable(EnergyPlusData &state) Array2D useVal(13, 15); Array2D normalVal(13, 4); Array1D collapsedTotal(13); - Array2D collapsedEndUse(13, state.dataGlobalConst->iEndUse.size()); - Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), 13); - Array2D endUseSubOther(13, state.dataGlobalConst->iEndUse.size()); - Array3D collapsedEndUseSpType(state.dataOutputProcessor->maxNumEndUseSpaceTypes, state.dataGlobalConst->iEndUse.size(), 13); + Array2D collapsedEndUse(13, DataGlobalConstantsData::iEndUseSize); + Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, 13); + Array2D endUseSubOther(13, DataGlobalConstantsData::iEndUseSize); + Array3D collapsedEndUseSpType(state.dataOutputProcessor->maxNumEndUseSpaceTypes, DataGlobalConstantsData::iEndUseSize, 13); Real64 totalOnsiteHeat; Real64 totalOnsiteWater; Real64 totalWater; @@ -7855,7 +7855,7 @@ void WriteBEPSTable(EnergyPlusData &state) // determine building floor areas DetermineBuildingFloorArea(state); // collapse the gatherEndUseBEPS array to the resource groups displayed - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(1, jEndUse) = ort->gatherEndUseBEPS(1, jEndUse); // electricity collapsedEndUse(2, jEndUse) = ort->gatherEndUseBEPS(2, jEndUse); // natural gas collapsedEndUse(3, jEndUse) = ort->gatherEndUseBEPS(6, jEndUse); // gasoline @@ -7913,7 +7913,7 @@ void WriteBEPSTable(EnergyPlusData &state) format("{:.2R}", state.dataZoneTempPredictorCorrector->AnnualAnyZoneTempOscillateInDeadband)); } } - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, 1) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 1); // electricity collapsedEndUseSub(kEndUseSub, jEndUse, 2) = ort->gatherEndUseSubBEPS(kEndUseSub, jEndUse, 2); // natural gas @@ -7979,7 +7979,7 @@ void WriteBEPSTable(EnergyPlusData &state) // convert units into GJ (divide by 1,000,000,000) if J otherwise kWh for (iResource = 1; iResource <= 12; ++iResource) { // don't do water - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(iResource, jEndUse) /= largeConversionFactor; for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, iResource) /= largeConversionFactor; @@ -7991,7 +7991,7 @@ void WriteBEPSTable(EnergyPlusData &state) collapsedTotal(iResource) /= largeConversionFactor; } // do water - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(13, jEndUse) /= waterConversionFactor; for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, 13) /= waterConversionFactor; @@ -8608,7 +8608,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody = ""; for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 14; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 14; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(useVal(iResource, jEndUse), 2); } tableBody(iResource, 16) = RealToStr(useVal(iResource, 15), 2); @@ -8945,7 +8945,7 @@ void WriteBEPSTable(EnergyPlusData &state) for (iResource = 1; iResource <= 12; ++iResource) { i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { for (int kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { if (produceTabular) { @@ -9021,7 +9021,7 @@ void WriteBEPSTable(EnergyPlusData &state) } // convert the normalized end use values to MJ from GJ if using J for (iResource = 1; iResource <= 12; ++iResource) { // not including resource=13 water - for (size_t jEndUse = 1; jEndUse <= 4; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 4; ++jEndUse) { normalVal(iResource, jEndUse) *= kConversionFactor; } } @@ -9086,7 +9086,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody = ""; if (convBldgCondFloorArea > 0) { for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 4; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 4; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(normalVal(iResource, jEndUse) / convBldgCondFloorArea, 2); } } @@ -9123,7 +9123,7 @@ void WriteBEPSTable(EnergyPlusData &state) tableBody = ""; if (convBldgGrossFloorArea > 0) { for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 4; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 4; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(normalVal(iResource, jEndUse) / convBldgGrossFloorArea, 2); } } @@ -9856,8 +9856,8 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) // all arrays are in the format: (row, columnm) Array2D useVal(13, 15); Array1D collapsedTotal(13); - Array2D collapsedEndUse(13, state.dataGlobalConst->iEndUse.size()); - Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), 13); + Array2D collapsedEndUse(13, DataGlobalConstantsData::iEndUseSize); + Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, 13); int iResource; Real64 largeConversionFactor; Real64 areaConversionFactor; @@ -9884,7 +9884,7 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) if (produceDualUnitsFlags(iUnitSystem, ort->unitsStyle, ort->unitsStyle_SQLite, unitsStyle_cur, produceTabular, produceSQLite)) break; // collapse the gatherEndUseBEPS array to the resource groups displayed - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(1, jEndUse) = ort->gatherEndUseBySourceBEPS(1, jEndUse); // electricity collapsedEndUse(2, jEndUse) = ort->gatherEndUseBySourceBEPS(2, jEndUse); // natural gas collapsedEndUse(3, jEndUse) = ort->gatherEndUseBySourceBEPS(6, jEndUse); // gasoline @@ -9934,7 +9934,7 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) // convert units into MJ (divide by 1,000,000) if J otherwise kWh for (iResource = 1; iResource <= 12; ++iResource) { // don't do water - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(iResource, jEndUse) /= largeConversionFactor; } collapsedTotal(iResource) /= largeConversionFactor; @@ -10032,7 +10032,7 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) tableBody = ""; for (iResource = 1; iResource <= 12; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 14; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 14; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(useVal(iResource, jEndUse) / largeConversionFactor, 2); } tableBody(iResource, 16) = RealToStr(useVal(iResource, 15) / largeConversionFactor, 2); @@ -10117,7 +10117,7 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) Real64 convBldgCondFloorArea = ort->buildingConditionedFloorArea / areaConversionFactor; if (convBldgCondFloorArea > 0) { for (iResource = 1; iResource <= 12; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 14; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 14; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(useVal(iResource, jEndUse) / convBldgCondFloorArea, 2); } tableBody(iResource, 16) = RealToStr(useVal(iResource, 15) / convBldgCondFloorArea, 2); @@ -10164,7 +10164,7 @@ void WriteSourceEnergyEndUseSummary(EnergyPlusData &state) if (convBldgGrossFloorArea > 0) { for (iResource = 1; iResource <= 12; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 14; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 14; ++jEndUse) { tableBody(iResource, jEndUse) = RealToStr(useVal(iResource, jEndUse) / convBldgGrossFloorArea, 2); } tableBody(iResource, 16) = RealToStr(useVal(iResource, 15) / convBldgGrossFloorArea, 2); @@ -10229,12 +10229,12 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) // all arrays are in the format: (row, column) Array2D useVal(13, 15); Array1D collapsedTotal(13); - Array2D collapsedEndUse(13, state.dataGlobalConst->iEndUse.size()); - Array2D collapsedIndEndUse(13, state.dataGlobalConst->iEndUse.size()); + Array2D collapsedEndUse(13, DataGlobalConstantsData::iEndUseSize); + Array2D collapsedIndEndUse(13, DataGlobalConstantsData::iEndUseSize); Array1D_int collapsedTimeStep(13); - Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), 13); - Array3D collapsedIndEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, state.dataGlobalConst->iEndUse.size(), 13); - Array2D endUseSubOther(13, state.dataGlobalConst->iEndUse.size()); + Array3D collapsedEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, 13); + Array3D collapsedIndEndUseSub(state.dataOutputProcessor->MaxNumSubcategories, DataGlobalConstantsData::iEndUseSize, 13); + Array2D endUseSubOther(13, DataGlobalConstantsData::iEndUseSize); int iResource; int kEndUseSub; int i; @@ -10314,7 +10314,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) // collapse the gatherEndUseBEPS array to the resource groups displayed collapsedEndUse = 0.0; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedEndUse(1, jEndUse) = ort->gatherDemandEndUse(1, jEndUse) * powerConversion; // electricity collapsedEndUse(2, jEndUse) = ort->gatherDemandEndUse(2, jEndUse) * powerConversion; // natural gas collapsedEndUse(3, jEndUse) = ort->gatherDemandEndUse(6, jEndUse) * powerConversion; // gasoline @@ -10329,7 +10329,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) collapsedEndUse(12, jEndUse) = ort->gatherDemandEndUse(distrHeatSelected, jEndUse) * powerConversion; // district heating collapsedEndUse(13, jEndUse) = ort->gatherDemandEndUse(7, jEndUse) * flowConversion; // water } - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedEndUseSub(kEndUseSub, jEndUse, 1) = ort->gatherDemandEndUseSub(kEndUseSub, jEndUse, 1) * powerConversion; // electricity collapsedEndUseSub(kEndUseSub, jEndUse, 2) = ort->gatherDemandEndUseSub(kEndUseSub, jEndUse, 2) * powerConversion; // natural gas @@ -10354,7 +10354,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) // collapse the gatherEndUseBEPS array to the resource groups displayed // no unit conversion, it is done at the reporting stage if necessary collapsedIndEndUse = 0.0; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { collapsedIndEndUse(1, jEndUse) = ort->gatherDemandIndEndUse(1, jEndUse); // electricity collapsedIndEndUse(2, jEndUse) = ort->gatherDemandIndEndUse(2, jEndUse); // natural gas collapsedIndEndUse(3, jEndUse) = ort->gatherDemandIndEndUse(6, jEndUse); // gasoline @@ -10369,7 +10369,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) collapsedIndEndUse(12, jEndUse) = ort->gatherDemandIndEndUse(distrHeatSelected, jEndUse); // district heating collapsedIndEndUse(13, jEndUse) = ort->gatherDemandIndEndUse(7, jEndUse); // water } - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { collapsedIndEndUseSub(kEndUseSub, jEndUse, 1) = ort->gatherDemandIndEndUseSub(kEndUseSub, jEndUse, 1); // electricity collapsedIndEndUseSub(kEndUseSub, jEndUse, 2) = ort->gatherDemandIndEndUseSub(kEndUseSub, jEndUse, 2); // natural gas @@ -10490,7 +10490,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) tableBody = ""; for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= 14; ++jEndUse) { + for (int jEndUse = 1; jEndUse <= 14; ++jEndUse) { tableBody(iResource, 1 + jEndUse) = RealToStr(useVal(iResource, jEndUse), 2); } tableBody(iResource, 1) = DateToString(collapsedTimeStep(iResource)); @@ -10519,7 +10519,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) //---- End Uses By Subcategory Sub-Table numRows = 0; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { ++numRows; @@ -10540,7 +10540,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) // Build row head and subcategories columns i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { rowHead(i) = state.dataOutputProcessor->EndUseCategory(jEndUse).DisplayName; if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { @@ -10601,7 +10601,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) for (iResource = 1; iResource <= 13; ++iResource) { i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { tableBody(iResource + 1, i) = RealToStr(collapsedEndUseSub(kEndUseSub, jEndUse, iResource), 2); @@ -10657,7 +10657,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) // EAp2-4/5. Performance Rating Method Compliance for (iResource = 1; iResource <= 13; ++iResource) { - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (ort->needOtherRowLEED45(jEndUse)) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories == 0) { endUseSubOther(iResource, jEndUse) = @@ -10693,7 +10693,7 @@ void WriteDemandEndUseSummary(EnergyPlusData &state) for (iResource = 1; iResource <= 12; ++iResource) { i = 1; - for (size_t jEndUse = 1; jEndUse <= state.dataGlobalConst->iEndUse.size(); ++jEndUse) { + for (int jEndUse = 1; jEndUse <= DataGlobalConstantsData::iEndUseSize; ++jEndUse) { if (state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories > 0) { for (kEndUseSub = 1; kEndUseSub <= state.dataOutputProcessor->EndUseCategory(jEndUse).NumSubcategories; ++kEndUseSub) { PreDefTableEntry(state, From 3e2d7a168465ba8eba48e78021b8e7f45bb96253 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 16:29:34 -0500 Subject: [PATCH 92/98] Space - fix InternalHeatGains pasteos --- src/EnergyPlus/InternalHeatGains.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 58f1cd4d836..61726076349 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -1700,7 +1700,7 @@ namespace InternalHeatGains { auto &thisGasEqInput = state.dataHeatBal->ZoneGasObjects(gasEqInputNum); for (int Item1 = 1; Item1 <= thisGasEqInput.numOfSpaces; ++Item1) { ++gasEqNum; - auto &thisZoneGas = state.dataHeatBal->ZoneElectric(gasEqNum); + auto &thisZoneGas = state.dataHeatBal->ZoneGas(gasEqNum); int const spaceNum = thisGasEqInput.spaceNums(Item1); int const zoneNum = state.dataHeatBal->space(spaceNum).zoneNum; thisZoneGas.Name = thisGasEqInput.names(Item1); @@ -2592,7 +2592,7 @@ namespace InternalHeatGains { itEqModuleObject, state.dataHeatBal->ITEqObjects, state.dataHeatBal->NumZoneITEqStatements, - state.dataHeatBal->TotOthEquip, + state.dataHeatBal->TotITEquip, ErrorsFound, zoneListNotAllowed); @@ -3046,7 +3046,7 @@ namespace InternalHeatGains { setupIHGZonesAndSpaces(state, bbModuleObject, - state.dataHeatBal->ZoneElectricObjects, + state.dataHeatBal->ZoneBBHeatObjects, state.dataHeatBal->NumZoneBBHeatStatements, state.dataHeatBal->TotBBHeat, ErrorsFound); @@ -6759,7 +6759,7 @@ namespace InternalHeatGains { } // Object report variables - for (int bbHeatNum = 1; bbHeatNum <= state.dataHeatBal->TotGasEquip; ++bbHeatNum) { + for (int bbHeatNum = 1; bbHeatNum <= state.dataHeatBal->TotBBHeat; ++bbHeatNum) { // Set flags for zone and space total report variables addZoneOutputs(state.dataHeatBal->ZoneBBHeat(bbHeatNum).ZonePtr) = true; addSpaceOutputs(state.dataHeatBal->ZoneBBHeat(bbHeatNum).spaceIndex) = true; From f177d9072f7fc0a6dac62d36d1f1385bddc184ca Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 17:48:29 -0500 Subject: [PATCH 93/98] Space - input and output rules --- .../InputRulesFiles/Rules9-5-0-to-9-6-0.md | 61 +++++++++++++++++-- .../OutputChanges9-5-0-to-9-6-0.md | 33 ++++++++-- 2 files changed, 84 insertions(+), 10 deletions(-) diff --git a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md index a1a13c46fe9..82dab2261c6 100644 --- a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md +++ b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md @@ -12,7 +12,7 @@ Field 1 remains the same. Fields 2 remains the same if not blank or is filled in the value of 20.0C if blank. Fields 3-4 remain the same. -See [8807](https://github.com/NREL/EnergyPlus/pull/8807) +See [PR#8807](https://github.com/NREL/EnergyPlus/pull/8807) # Object Change: Coil:Cooling:Water:DetailedGeometry Summary: Appended new optional numeric input field *Design Water Inlet Temperature*. @@ -20,7 +20,7 @@ Summary: Appended new optional numeric input field *Design Water Inlet Temperatu Field 1-24 remains the same. New Field F25 (N18): Design Inlet Water Temperature. Leave blank or assign a typical chilled water supply temperature. -See [8466](https://github.com/NREL/EnergyPlus/pull/8466) +See [PR#8466](https://github.com/NREL/EnergyPlus/pull/8466) # Object Change: AirLoopHVAC:OutdoorAirSystem @@ -29,16 +29,16 @@ Summary: The fourth field (Availability Manager name) was being ignored by Energ Field 1-3 remain the same. Field 4 has been eliminated/deleted and not replace with anything else. -See [8884](https://github.com/NREL/EnergyPlus/pull/8884) +See [PR#8884](https://github.com/NREL/EnergyPlus/pull/8884) # Object Change: PerformancePrecisionTradeoffs Summary: A new override option including cubic spline interpolations in replacement of original psychrometric function PsyTsatFnPb was added as Mode06 in this object. The previous options for the override mode of the object including Mode06 and Mode07 in version 9.5 were switched to Mode07 and Mode08 in version 9.6, respectively. -Fields 1-2 remains the same. +Fields 1-2 remain the same. Fields 3 has been updated by adding a new override mode option. Fields 4-5 remains the same. -See [8946](https://github.com/NREL/EnergyPlus/pull/8946) +See [PR#8946](https://github.com/NREL/EnergyPlus/pull/8946) # Object Change: GroundHeatExchanger:System @@ -48,3 +48,54 @@ Fields 1-9 remain the same. New Field F10 (A7) g-Function Calculation Method. Leave blank or assign a value of 'UHFcalc' or 'UBHWTcalc'. Default value is 'UHFcalc'. Remaining fields remain the same and are shifted. +See [PR#8708](https://github.com/NREL/EnergyPlus/pull/8708) + +# Object Changes: All Base Surface and Internal Gains Objects + +Summary: + +1. A new field for Space Name was added after Zone Name to all surface objects. +2. For all internal gains objects, the "Zone or ZoneList Name" field name was changed to "Zone or ZoneList or Space or SpaceList Name". + +## epJSON transition rules +**For People, Lights, ElectricEquipment, GasEquipment, HotWaterEquipment, SteamEquipment, and OtherEquipment:** + +Field name: "zone_or_zonelist_name" was changed to "zone_or_zonelist_or_space_or_spacelist_name". + +**For BuildingSurface:Detailed, Wall:Detailed, RoofCeiling:Detailed, Floor:Detailed, Wall:Exterior, Wall:Adiabatic, +Wall:Underground, Wall:Interzone, Roof, Ceiling:Adiabatic, Ceiling:Adiabatic, Floor:GroundContact, Floor:Adiabatic, +and Floor:Interzone:** + +No transition required. A new optional field "space_name" was added. + +**For InternalMass:** + +No transition required. A new optional field "space_or_spacelist_name" was added. + +## idf transition rules +**For People, Lights, ElectricEquipment, GasEquipment, HotWaterEquipment, SteamEquipment, and OtherEquipment:** + +No transition required. Field name "Zone or ZoneList Name" changed to "Zone or ZoneList or Space or SpaceList Name". + +**For BuildingSurface:Detailed:** + +Fields 1-4 remain the same. +Insert new Field 5 (A5) "Space Name". This field is optional and may be left blank. +Remaining fields remain the same and are shifted by one. + +**For Wall:Detailed, RoofCeiling:Detailed, Floor:Detailed, Wall:Exterior, Wall:Adiabatic, +Wall:Underground, Wall:Interzone, Roof, Ceiling:Adiabatic, Ceiling:Adiabatic, Floor:GroundContact, Floor:Adiabatic, +and Floor:Interzone:** + +Fields 1-3 remain the same. +Insert new Field 4 (A4) "Space Name". This field is optional and may be left blank. +Remaining fields remain the same and are shifted by one. + +**For InternalMass:** + +Fields 1-3 remain the same. +Insert new Field 4 (A4) "Space or SpaceList Name". This field is optional and may be left blank. +Remaining fields remain the same and are shifted by one. + + +See [PR#8394](https://github.com/NREL/EnergyPlus/pull/8394) diff --git a/src/Transition/OutputRulesFiles/OutputChanges9-5-0-to-9-6-0.md b/src/Transition/OutputRulesFiles/OutputChanges9-5-0-to-9-6-0.md index 37337d65159..b2b7c99b4ee 100644 --- a/src/Transition/OutputRulesFiles/OutputChanges9-5-0-to-9-6-0.md +++ b/src/Transition/OutputRulesFiles/OutputChanges9-5-0-to-9-6-0.md @@ -3,13 +3,36 @@ Output Changes This file documents the structural changes on the output of EnergyPlus that could affect interfaces, etc. -### Description - -This will eventually become a more structured file, but currently it isn't clear what format is best. As an intermediate solution, and to allow the form to be formed organically, this plain text file is being used. Entries should be clearly delimited. It isn't expected that there will be but maybe a couple each release at most. Entries should also include some reference back to the repo. At least a PR number or whatever. - ### Daylight Map Report now supports more than two reference points The header of the map file was changed from only allowing two reference points to allow more than two. The additional points are listed in comma separated order where there used to be only two points. The format will show up in the header as something like the following: “ RefPt1=(2.50:2.00:0.80), RefPt2=(2.50:18.00:0.80), RefPt3=(2.50:18.00:0.50)” -[PR#8889](https://github.com/NREL/EnergyPlus/pull/8889) changed the output format in both the MAP file and the SQL output. +See [PR#8889](https://github.com/NREL/EnergyPlus/pull/8889) changed the output format in both the MAP file and the SQL output. + +### Table outputs for Space and Space Type + +The following table outputs have changed: + +**Lighting Summary** + +*Interior Lighting* + + * The "Zone" column heading was changed to "Zone Name". + * new columns were added for "Space Name" and "Space Type". + * The "Zone Area" column heading was change to "Space Area". + +The following table outputs are new: + +**Annual Building Utility Performance Summary** + +*End Uses By Space Type* + +**Input Verification and Results Summary** + +*Space Summary* + +*Space Type Summary* + + +See [PR#8394](https://github.com/NREL/EnergyPlus/pull/8394) From 7421b46d20af439cba8bd7c543827f937c7996f9 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 20:14:38 -0500 Subject: [PATCH 94/98] Space - final IDD changes and input rules --- design/FY2021/NFP-Spaces.md | 4 +- idd/Energy+.idd.in | 62 ++++++++++----- .../InputRulesFiles/Rules9-5-0-to-9-6-0.md | 77 +++++++++++++++---- 3 files changed, 109 insertions(+), 34 deletions(-) diff --git a/design/FY2021/NFP-Spaces.md b/design/FY2021/NFP-Spaces.md index 2ea0dde5e0b..052be27a4ed 100644 --- a/design/FY2021/NFP-Spaces.md +++ b/design/FY2021/NFP-Spaces.md @@ -25,6 +25,8 @@ * Add clarifications from May 19 conference call - Revised, June 7, 2021 * Add design section + - Revised, August 19, 2021 + * Leave ZoneInfiltration and ZoneVentilation as-is (reference Zone, not Space). ## Table of Contents ## @@ -89,7 +91,7 @@ New Space object (and related objects) with minimal changes to current inputs. * Internal gains reference Zone or ZoneList, *Space or Spacelist*. * Gains specified at the Zone level will be applied proportionally by floor area to all Spaces in the Zone * Gains specified at the Space level will be applied to the Space in addition to any gains specified at the Zone level - * ZoneInfiltration:* and ZoneVentilation:* reference Zone or ZoneList, *Space or Spacelist*. + * ZoneInfiltration:* and ZoneVentilation:* reference Zone or ZoneList, ~*Space or Spacelist*~ (19 Aug). * Daylighting controls will reference a Zone *or Space*. (Daylighting reference points see all windows in an enclosure). * Thermostats remain as-is and continue to reference a Zone or ZoneList. diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index ca582b796b5..628ebf8dfd2 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -9245,7 +9245,7 @@ GeometryTransform, \note Aspect ratio to transform to during run Space, - \memo Defines a space in the building. All Spaces are part of a Zone. + \memo Defines a space (room) in the building. All Spaces are part of a Zone. \memo Every Zone contains one or more spaces. Space is an optional input. \memo If a Zone has no Space(s) specified in input then a default Space named will be created. \memo If some surfaces in a Zone are assigned to a space and some are not, then a default Space @@ -9287,11 +9287,10 @@ Space, \type alpha SpaceList, - \memo Defines a list of thermal Spaces which can be referenced as a group. The SpaceList name + \memo Defines a list of Spaces which can be referenced as a group. The SpaceList name \memo may be used elsewhere in the input to apply a parameter to all Spaces in the list. - \memo SpaceLists can be used effectively with the following objects: People, Lights, - \memo ElectricEquipment, GasEquipment, HotWaterEquipment, ZoneInfiltration:DesignFlowRate, - \memo ZoneVentilation:DesignFlowRate, and others. + \memo SpaceLists can be used effectively with the following objects: InternalMass, People, Lights, + \memo ElectricEquipment, GasEquipment, HotWaterEquipment, and others. \min-fields 2 \extensible:1 A1 , \field Name @@ -18779,7 +18778,8 @@ ZoneProperty:UserViewFactors:BySurfaceName, \extensible:3 - copy last three fields, remembering to remove ; \format ViewFactor A1, \field Space or SpaceList Name - \note View factors may be entered for a single space or for a group of spaces connected by Construction:AirBoundary + \note View factors may be entered for a single space or for a group of spaces in the same enclosure + \note by way of Constructon:AirBoundary or open spaces within a zone. \type object-list \object-list SpaceNames \object-list SpaceListNames @@ -22957,10 +22957,11 @@ Daylighting:Controls, \required-field \type alpha \reference DaylightingControlNames - A2, \field Zone Name + A2, \field Zone or Space Name \required-field \type object-list \object-list ZoneNames + \object-list SpaceNames A3, \field Daylighting Method \type choice \key SplitFlux @@ -23024,7 +23025,7 @@ Daylighting:Controls, \object-list DaylightReferencePointNames \begin-extensible \required-field - N8, \field Fraction of Zone Controlled by Reference Point 1 + N8, \field Fraction of Lights Controlled by Reference Point 1 \type real \minimum 0.0 \maximum 1.0 @@ -23037,7 +23038,7 @@ Daylighting:Controls, A8, \field Daylighting Reference Point 2 Name \type object-list \object-list DaylightReferencePointNames - N10, \field Fraction of Zone Controlled by Reference Point 2 + N10, \field Fraction of Lights Controlled by Reference Point 2 \type real \minimum 0.0 \maximum 1.0 @@ -23050,7 +23051,7 @@ Daylighting:Controls, A9, \field Daylighting Reference Point 3 Name \type object-list \object-list DaylightReferencePointNames - N12, \field Fraction of Zone Controlled by Reference Point 3 + N12, \field Fraction of Lights Controlled by Reference Point 3 \type real \minimum 0.0 \maximum 1.0 @@ -23063,7 +23064,7 @@ Daylighting:Controls, A10, \field Daylighting Reference Point 4 Name \type object-list \object-list DaylightReferencePointNames - N14, \field Fraction of Zone Controlled by Reference Point 4 + N14, \field Fraction of Lights Controlled by Reference Point 4 \type real \minimum 0.0 \maximum 1.0 @@ -23076,7 +23077,7 @@ Daylighting:Controls, A11, \field Daylighting Reference Point 5 Name \type object-list \object-list DaylightReferencePointNames - N16, \field Fraction of Zone Controlled by Reference Point 5 + N16, \field Fraction of Lights Controlled by Reference Point 5 \type real \minimum 0.0 \maximum 1.0 @@ -23102,7 +23103,7 @@ Daylighting:Controls, A13, \field Daylighting Reference Point 7 Name \type object-list \object-list DaylightReferencePointNames - N20, \field Fraction of Zone Controlled by Reference Point 7 + N20, \field Fraction of Lights Controlled by Reference Point 7 \type real \minimum 0.0 \maximum 1.0 @@ -23115,7 +23116,7 @@ Daylighting:Controls, A14, \field Daylighting Reference Point 8 Name \type object-list \object-list DaylightReferencePointNames - N22, \field Fraction of Zone Controlled by Reference Point 8 + N22, \field Fraction of Lights Controlled by Reference Point 8 \type real \minimum 0.0 \maximum 1.0 @@ -23141,7 +23142,7 @@ Daylighting:Controls, A16, \field Daylighting Reference Point 10 Name \type object-list \object-list DaylightReferencePointNames - N26, \field Fraction of Zone Controlled by Reference Point 10 + N26, \field Fraction of Lights Controlled by Reference Point 10 \type real \minimum 0.0 \maximum 1.0 @@ -23156,15 +23157,16 @@ Daylighting:ReferencePoint, \min-fields 5 \memo Used by Daylighting:Controls to identify the reference point coordinates for each sensor. \memo Reference points are given in coordinates specified in the GlobalGeometryRules object - \memo Daylighting Reference Point CoordinateSystem field + \memo Daylighting Reference Point CoordinateSystem field. A1, \field Name \required-field \type alpha \reference DaylightReferencePointNames - A2, \field Zone Name + A2, \field Zone or Space Name \required-field \type object-list \object-list ZoneNames + \object-list SpaceNames N1, \field X-Coordinate of Reference Point \units m \required-field @@ -26913,6 +26915,7 @@ HVACTemplate:Zone:IdealLoadsAirSystem, A11, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the minimum \note outdoor air flow rate will be computed using these specifications. The outdoor air \note flow rate will also be affected by the next two fields. @@ -27030,6 +27033,7 @@ HVACTemplate:Zone:BaseboardHeat, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A8; \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -27184,6 +27188,7 @@ HVACTemplate:Zone:FanCoil, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A13, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -27450,6 +27455,7 @@ HVACTemplate:Zone:PTAC, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A15, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -27753,6 +27759,7 @@ HVACTemplate:Zone:PTHP, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A19, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -28038,6 +28045,7 @@ HVACTemplate:Zone:WaterToAirHeatPump, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A16, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -28191,6 +28199,7 @@ HVACTemplate:Zone:VRF, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A6, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -28483,6 +28492,7 @@ HVACTemplate:Zone:Unitary, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A12; \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -28632,6 +28642,7 @@ HVACTemplate:Zone:VAV, A10, \field Design Specification Outdoor Air Object Name for Control \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -28716,6 +28727,7 @@ HVACTemplate:Zone:VAV, \note (see above) is used to actively control the VAV terminal air flow rate. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A18; \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -28915,6 +28927,7 @@ HVACTemplate:Zone:VAV:FanPowered, A15, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A16; \field Design Specification Zone Air Distribution Object Name \type object-list \object-list DesignSpecificationZoneAirDistributionNames @@ -29000,6 +29013,7 @@ HVACTemplate:Zone:VAV:HeatAndCool, \note (see above) is used to actively control the VAV terminal air flow rate. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A6, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -29161,6 +29175,7 @@ HVACTemplate:Zone:ConstantVolume, \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A6, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -29329,6 +29344,7 @@ HVACTemplate:Zone:DualDuct, \note (see above) is used to actively control the VAV terminal air flow rate. \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames A6, \field Design Specification Zone Air Distribution Object Name \note This field is used only when Outdoor Air Method=DetailedSpecification. \type object-list @@ -29336,6 +29352,7 @@ HVACTemplate:Zone:DualDuct, A7, \field Design Specification Outdoor Air Object Name for Control \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -33399,7 +33416,8 @@ DesignSpecification:OutdoorAir, DesignSpecification:OutdoorAir:SpaceList, \memo Defines a list of DesignSpecification:OutdoorAir names which can be referenced as a group. \memo The DesignSpecification:OutdoorAir:SpaceList name may be used in Sizing:Zone and - \memo Controller:MechanicalVentilation to specify space-by-space OA requirements. + \memo Controller:MechanicalVentilation to specify space-by-space OA requirements and anywhere else + \memo that accepts a DesignSpecification:OutdoorAir object name. \min-fields 3 \extensible:2 A1 , \field Name @@ -35036,6 +35054,7 @@ ZoneHVAC:IdealLoadsAirSystem, A12, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the minimum \note outdoor air flow rate will be computed using these specifications. The outdoor air \note flow rate will also be affected by the next two fields. @@ -36668,6 +36687,7 @@ ZoneHVAC:HybridUnitaryHVAC, A19, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note Enter the name of a DesignSpecification:OutdoorAir object. Information in that object will be used to compute the minimum outdoor air flow rate in each time step. \note If this field is blank, the system may still supply outdoor air, if it is capable as described by lookup tables, when doing so is the most efficient way to satisfy other constraints. A20, \field Mode 0 Name @@ -47318,6 +47338,7 @@ AirTerminal:SingleDuct:ConstantVolume:NoReheat, A5, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note This field is used to modulate the terminal unit flow rate based on the specified outdoor air \note requirement. When the name of a DesignSpecification:OutdoorAir object is entered, the terminal unit will \note adjust flow to meet this outdoor air requirement and no more. There is no control for zone load. @@ -47399,6 +47420,7 @@ AirTerminal:SingleDuct:VAV:NoReheat, A7 , \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -47554,6 +47576,7 @@ AirTerminal:SingleDuct:VAV:Reheat, A11, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -48359,6 +48382,7 @@ AirTerminal:SingleDuct:Mixer, A8, \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will adjust flow to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -48436,6 +48460,7 @@ AirTerminal:DualDuct:VAV, A6 , \field Design Specification Outdoor Air Object Name \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will @@ -48484,6 +48509,7 @@ AirTerminal:DualDuct:VAV:OutdoorAir, \required-field \type object-list \object-list DesignSpecificationOutdoorAirNames + \object-list DSOASpaceListNames \note When the name of a DesignSpecification:OutdoorAir object is entered, the terminal \note unit will increase flow as needed to meet this outdoor air requirement. \note If Outdoor Air Flow per Person is non-zero, then the outdoor air requirement will diff --git a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md index 82dab2261c6..80ff0a1f94c 100644 --- a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md +++ b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md @@ -2,7 +2,6 @@ Input Changes version 9.5.0 to 9.6.0 ============= This file documents the structural changes on the input of EnergyPlus that could affect interfaces, etc. -This was previously an Excel workbook that made for very difficult version control, especially during busy times around code freezes. # Object Change: AirflowNetwork:MultiZone:ReferenceCrackConditions @@ -55,47 +54,95 @@ See [PR#8708](https://github.com/NREL/EnergyPlus/pull/8708) Summary: 1. A new field for Space Name was added after Zone Name to all surface objects. -2. For all internal gains objects, the "Zone or ZoneList Name" field name was changed to "Zone or ZoneList or Space or SpaceList Name". +2. ZoneProperty:UserViewFactors:BySurfaceName is by Space instead of Zone. +3. For all internal gains objects, the "Zone or ZoneList Name" field name was changed to "Zone or ZoneList or Space or SpaceList Name". +4. Daylighting controls may reference a Zone or Space. ## epJSON transition rules **For People, Lights, ElectricEquipment, GasEquipment, HotWaterEquipment, SteamEquipment, and OtherEquipment:** -Field name: "zone_or_zonelist_name" was changed to "zone_or_zonelist_or_space_or_spacelist_name". +* Field name "zone_or_zonelist_name" was changed to "zone_or_zonelist_or_space_or_spacelist_name". + +**For ElectricEquipment:ITE:AirCooled:** + +* Field name "zone_name" was changed to "zone_or_space_name". **For BuildingSurface:Detailed, Wall:Detailed, RoofCeiling:Detailed, Floor:Detailed, Wall:Exterior, Wall:Adiabatic, Wall:Underground, Wall:Interzone, Roof, Ceiling:Adiabatic, Ceiling:Adiabatic, Floor:GroundContact, Floor:Adiabatic, and Floor:Interzone:** -No transition required. A new optional field "space_name" was added. +* No transition required. +* A new optional field "space_name" was added. **For InternalMass:** -No transition required. A new optional field "space_or_spacelist_name" was added. +* No transition required. +* A new optional field "space_or_spacelist_name" was added. + +**For ZoneProperty:UserViewFactors:BySurfaceName:** + +* Field name "zone_or_zonelist_name" was changed to "space_or_spacelist_name". +* The contents of this field do not need to change, because pre-v9.6 input files have no Spaces, so +default spaces will be created with the same names as the zone names. + +**For Daylighting:Controls:** + +* Field name "zone_name" was changed to "zone_or_space_name". +* In array "control_data", field name "fraction_of_zone_controlled_by_reference_point" was changed to +"fraction_of_lights_controlled_by_reference_point". + +**For Daylighting:ReferencePoint:** + +* Field name "zone_name" was changed to "zone_or_space_name". + ## idf transition rules **For People, Lights, ElectricEquipment, GasEquipment, HotWaterEquipment, SteamEquipment, and OtherEquipment:** -No transition required. Field name "Zone or ZoneList Name" changed to "Zone or ZoneList or Space or SpaceList Name". +* No transition required. +* Field name "Zone or ZoneList Name" changed to "Zone or ZoneList or Space or SpaceList Name". + +**For ElectricEquipment:ITE:AirCooled:** + +* No transition required. +* Field name "Zone Name" changed to "Zone or Space Name". **For BuildingSurface:Detailed:** -Fields 1-4 remain the same. -Insert new Field 5 (A5) "Space Name". This field is optional and may be left blank. -Remaining fields remain the same and are shifted by one. +* Fields 1-4 remain the same. +* Insert new Field 5 (A5) "Space Name". This field is optional and may be left blank. +* Remaining fields remain the same and are shifted by one. **For Wall:Detailed, RoofCeiling:Detailed, Floor:Detailed, Wall:Exterior, Wall:Adiabatic, Wall:Underground, Wall:Interzone, Roof, Ceiling:Adiabatic, Ceiling:Adiabatic, Floor:GroundContact, Floor:Adiabatic, and Floor:Interzone:** -Fields 1-3 remain the same. -Insert new Field 4 (A4) "Space Name". This field is optional and may be left blank. -Remaining fields remain the same and are shifted by one. +* Fields 1-3 remain the same. +* Insert new Field 4 (A4) "Space Name". This field is optional and may be left blank. +* Remaining fields remain the same and are shifted by one. **For InternalMass:** -Fields 1-3 remain the same. -Insert new Field 4 (A4) "Space or SpaceList Name". This field is optional and may be left blank. -Remaining fields remain the same and are shifted by one. +* Fields 1-3 remain the same. +* Insert new Field 4 (A4) "Space or SpaceList Name". This field is optional and may be left blank. +* Remaining fields remain the same and are shifted by one. + +**For ZoneProperty:UserViewFactors:BySurfaceName:** + +* No transition required. +* Field name "Zone or ZoneList Name" changed to "Space or SpaceList Name". +* The contents of this field do no need to change, because pre-v9.6 input files have no Spaces, so +default spaces will be created with the same names as the zone names. + +**For Daylighting:Controls:** + +* No transition required. +* Field name "Zone Name" was changed to "Zone or Space Name". +* Field names "Fraction of Zone Controlled by Reference Point n" were changed to "Fraction of Lights Controlled by Reference Point n". + +**For Daylighting:ReferencePoint:** +* No transition required. +* Field name "Zone Name" was changed to "Zone or Space Name". See [PR#8394](https://github.com/NREL/EnergyPlus/pull/8394) From 24376bc6f128c561b8d204c3ac1dc6b4573924e0 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Thu, 19 Aug 2021 20:26:49 -0500 Subject: [PATCH 95/98] Space - one more IDD note --- idd/Energy+.idd.in | 1 + 1 file changed, 1 insertion(+) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 628ebf8dfd2..ce21768fa38 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -13120,6 +13120,7 @@ InternalMass, \type object-list \object-list SpaceAndSpaceListNames \note Space the surface is a part of (optional, see description of Space object for more details). + \note This field is ignored when a ZoneList Name is specified for Zone or ZoneList Name. N1 ; \field Surface Area \required-field \units m2 From 1216007c70a7ab09304a9792c822b7b457795a7a Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 20 Aug 2021 09:40:56 -0500 Subject: [PATCH 96/98] Space - fix more InternalHeatGains pasteos --- src/EnergyPlus/InternalHeatGains.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 61726076349..69fa7e7c01b 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -2660,7 +2660,7 @@ namespace InternalHeatGains { ErrorsFound = true; } } - thisZoneITEq.DesignTotalPower = IHGNumbers(1) * spaceFrac; + thisZoneITEq.DesignTotalPower = IHGNumbers(1) * IHGNumbers(2) * spaceFrac; if (state.dataIPShortCut->lNumericFieldBlanks(1)) { ShowWarningError(state, std::string{RoutineName} + itEqModuleObject + "=\"" + AlphaName(1) + "\", specifies " + @@ -3054,7 +3054,7 @@ namespace InternalHeatGains { if (state.dataHeatBal->TotBBHeat > 0) { state.dataHeatBal->ZoneBBHeat.allocate(state.dataHeatBal->TotBBHeat); int bbHeatNum = 0; - for (int bbHeatInputNum = 1; bbHeatInputNum <= state.dataHeatBal->NumZoneElectricStatements; ++bbHeatInputNum) { + for (int bbHeatInputNum = 1; bbHeatInputNum <= state.dataHeatBal->NumZoneBBHeatStatements; ++bbHeatInputNum) { state.dataInputProcessing->inputProcessor->getObjectItem(state, bbModuleObject, bbHeatInputNum, From 02e72c1711796f545463e6aa5fba6b3facfb14b0 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 20 Aug 2021 09:41:16 -0500 Subject: [PATCH 97/98] Space - update new test files --- .../5ZoneAirCooled_RunaroundHeatRecovery.idf | 40 +++++++++++++++++++ testfiles/GSHP-GLHE-CalcGFunctions-cpg.idf | 6 +++ 2 files changed, 46 insertions(+) diff --git a/testfiles/5ZoneAirCooled_RunaroundHeatRecovery.idf b/testfiles/5ZoneAirCooled_RunaroundHeatRecovery.idf index cc34b984f6c..41ad836a404 100644 --- a/testfiles/5ZoneAirCooled_RunaroundHeatRecovery.idf +++ b/testfiles/5ZoneAirCooled_RunaroundHeatRecovery.idf @@ -915,6 +915,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -931,6 +932,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -947,6 +949,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -963,6 +966,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -979,6 +983,7 @@ ROOF, !- Surface Type ROOF-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -995,6 +1000,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1011,6 +1017,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1027,6 +1034,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1043,6 +1051,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1059,6 +1068,7 @@ FLOOR, !- Surface Type CLNG-1, !- Construction Name PLENUM-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1138,6 +1148,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1204,6 +1215,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C1-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1220,6 +1232,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1236,6 +1249,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB21, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1252,6 +1266,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB41, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1268,6 +1283,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE1-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB51, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1347,6 +1363,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1378,6 +1395,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C2-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1394,6 +1412,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1410,6 +1429,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB12, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1426,6 +1446,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB32, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1442,6 +1463,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE2-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB52, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1521,6 +1543,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1567,6 +1590,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C3-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1583,6 +1607,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1599,6 +1624,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB23, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1615,6 +1641,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB43, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1631,6 +1658,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE3-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB53, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1710,6 +1738,7 @@ WALL, !- Surface Type WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -1741,6 +1770,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C4-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1757,6 +1787,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1773,6 +1804,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB14, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1789,6 +1821,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB34, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1805,6 +1838,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE4-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB54, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1884,6 +1918,7 @@ CEILING, !- Surface Type CLNG-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition C5-1P, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1900,6 +1935,7 @@ FLOOR, !- Surface Type FLOOR-SLAB-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1916,6 +1952,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB15, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1932,6 +1969,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB25, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1948,6 +1986,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB35, !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1964,6 +2003,7 @@ WALL, !- Surface Type INT-WALL-1, !- Construction Name SPACE5-1, !- Zone Name + , !- Space Name Surface, !- Outside Boundary Condition SB45, !- Outside Boundary Condition Object NoSun, !- Sun Exposure diff --git a/testfiles/GSHP-GLHE-CalcGFunctions-cpg.idf b/testfiles/GSHP-GLHE-CalcGFunctions-cpg.idf index e5ce508e2e5..759826a87dd 100644 --- a/testfiles/GSHP-GLHE-CalcGFunctions-cpg.idf +++ b/testfiles/GSHP-GLHE-CalcGFunctions-cpg.idf @@ -395,6 +395,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -411,6 +412,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -427,6 +429,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -443,6 +446,7 @@ Wall, !- Surface Type Main Floor Wall Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -459,6 +463,7 @@ Roof, !- Surface Type Roof Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -475,6 +480,7 @@ Floor, !- Surface Type Floor Construction, !- Construction Name Main Floor, !- Zone Name + , !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure From 70389a2cc8bed868e52993e33ede1944434c05d9 Mon Sep 17 00:00:00 2001 From: mjwitte Date: Fri, 20 Aug 2021 13:50:20 -0500 Subject: [PATCH 98/98] Space - one more input rule --- src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md index 80ff0a1f94c..bb6e4ff725f 100644 --- a/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md +++ b/src/Transition/InputRulesFiles/Rules9-5-0-to-9-6-0.md @@ -67,6 +67,10 @@ Summary: * Field name "zone_name" was changed to "zone_or_space_name". +**For ZoneBaseboard:OutdoorTemperatureControlled:** + +* Field name "zone_name" was changed to "zone_or_zonelist_or_space_or_spacelist_name". + **For BuildingSurface:Detailed, Wall:Detailed, RoofCeiling:Detailed, Floor:Detailed, Wall:Exterior, Wall:Adiabatic, Wall:Underground, Wall:Interzone, Roof, Ceiling:Adiabatic, Ceiling:Adiabatic, Floor:GroundContact, Floor:Adiabatic, and Floor:Interzone:** @@ -107,6 +111,11 @@ default spaces will be created with the same names as the zone names. * No transition required. * Field name "Zone Name" changed to "Zone or Space Name". +**For ZoneBaseboard:OutdoorTemperatureControlled:** + +* No transition required. +* Field name "Zone Name" changed to "Zone or ZoneList or Space or SpaceList Name". + **For BuildingSurface:Detailed:** * Fields 1-4 remain the same.